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
8ac5eedd62aee2abe7c9ecbc9027d3402e4f9de5
88db173be45ce452c7a0b29dd1f06c088de43dae
/include/Maze/maze_interface.h
7ef03aa77291d916ead5045b0f49d00e2f0d32c5
[]
no_license
T4ng10r/RLMazeExplorer
04308ce716097b98812a468f7f4b48964b80a203
cf2d316d21ac1f5e14a7b3e9333cb7b3a5652c4d
refs/heads/master
2021-01-02T22:30:41.448219
2014-11-07T13:47:43
2014-11-07T13:47:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
470
h
maze_interface.h
#pragma once #include <Maze/location.h> #include <memory> #include <boost/optional.hpp> #include <string> class maze_interface { public: virtual int get_size_x() const = 0; virtual int get_size_y() const = 0; virtual void save_maze(const std::string& file_path) = 0; virtual bool load_maze(const std::string& file_path) = 0; virtual boost::optional<location> get_location(int X, int Y) const = 0; }; typedef std::shared_ptr<maze_interface> maze_interface_type;
2c64103539016bffec8b250107d17a428fdf732c
f6de90cc34efe176a2d030082f5206f5e3e3a2b5
/db/table_stats_collector.cc
91e89ce4c04d2f50e1892ad0c2174b6ddefde9da
[ "BSD-3-Clause" ]
permissive
forhappy/rocksdb
010adda3b8cb72a98533b761c66d7779b9eee16d
55baa3d955e86f155b141e17ea920150999db8fb
refs/heads/master
2020-04-06T06:47:19.653816
2013-11-16T06:23:12
2013-11-16T06:23:12
14,443,177
1
1
null
null
null
null
UTF-8
C++
false
false
1,558
cc
table_stats_collector.cc
// Copyright (c) 2013, Facebook, Inc. All rights reserved. // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. An additional grant // of patent rights can be found in the PATENTS file in the same directory. #include "db/table_stats_collector.h" #include "db/dbformat.h" #include "util/coding.h" namespace rocksdb { Status InternalKeyStatsCollector::Add(const Slice& key, const Slice& value) { ParsedInternalKey ikey; if (!ParseInternalKey(key, &ikey)) { return Status::InvalidArgument("Invalid internal key"); } if (ikey.type == ValueType::kTypeDeletion) { ++deleted_keys_; } return Status::OK(); } Status InternalKeyStatsCollector::Finish( TableStats::UserCollectedStats* stats) { assert(stats); assert(stats->find(InternalKeyTableStatsNames::kDeletedKeys) == stats->end()); std::string val; PutVarint64(&val, deleted_keys_); stats->insert(std::make_pair(InternalKeyTableStatsNames::kDeletedKeys, val)); return Status::OK(); } Status UserKeyTableStatsCollector::Add(const Slice& key, const Slice& value) { ParsedInternalKey ikey; if (!ParseInternalKey(key, &ikey)) { return Status::InvalidArgument("Invalid internal key"); } return collector_->Add(ikey.user_key, value); } Status UserKeyTableStatsCollector::Finish( TableStats::UserCollectedStats* stats) { return collector_->Finish(stats); } const std::string InternalKeyTableStatsNames::kDeletedKeys = "rocksdb.deleted.keys"; } // namespace rocksdb
649fffafb7303353f60f3187bcbd426c755dd618
592cd56aec18bab41cc5356cdee44409d36e925d
/src/ResourceManager.cpp
de8ecfcfdc8942c64241304704d5ea11e2e25c63
[ "MIT" ]
permissive
Incenium/platformer
572228bcc36c0002434143c7d09e7f4b7f604c7b
c24c42fd544fa96720b04b778fc654830f4059ef
refs/heads/master
2020-07-06T04:06:18.740995
2014-06-20T19:32:36
2014-06-20T19:32:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,937
cpp
ResourceManager.cpp
#include "ResourceManager.hpp" ResourceManager::ResourceManager() { } ResourceManager::~ResourceManager() { // Deallocate the spritesheets in m_spritesheets std::vector<std::pair<std::string, Spritesheet*>> ss( m_spritesheets.begin(), m_spritesheets.end()); for (int i = 0; i < ss.size(); i++) delete ss[i].second; ss.clear(); // Deallocate the animations in m_animations std::vector<std::pair<std::string, Animation*>> a(m_animations.begin(), m_animations.end()); for (int i = 0; i < a.size(); i++) delete a[i].second; a.clear(); } bool ResourceManager::loadResources(std::string path, SDL_Renderer* renderer) { bool success = true; std::string line; std::ifstream file; file.open(path); if (!file.is_open()){ DEBUG_LOG << "ResourceManager loadResources(): Unable to open resource file " << path << '\n' << std::endl; success = false; } else { while (std::getline(file, line)){ std::vector<std::string> temp = stringSplit(line); if (temp.size() != 2){ DEBUG_LOG << "ResourceManager loadResources(): Malformed line in resource file " << path << '\n' << std::endl; success = false; break; } else { std::string resType = temp[0]; std::string name = temp[1]; if (resType == "spritesheet"){ Spritesheet* s = new Spritesheet; if (!s->loadFromFile(name, renderer)){ DEBUG_LOG << "ResourceManager loadResources(): Unable to load spritesheet " << name << '\n' << std::endl; success = false; break; } else m_spritesheets[name] = s; } else if (resType == "animation"){ Animation* a = new Animation; if (!a->loadFromFile(name)){ DEBUG_LOG << "Resource Manager: Unable to load animation " << name << '\n' << std::endl; success = false; break; } else m_animations[name] = a; } else if (resType == "music"){ Music* m = new Music; if (!m->loadFromFile(name)){ DEBUG_LOG << "ResourceManager loadResources(): Unable to load music " << name << '\n' << std::endl; success = false; break; } else m_music[name] = m; } else if (resType == "soundeffect"){ SoundEffect* se = new SoundEffect; if (!se->loadFromFile(name)){ DEBUG_LOG << "ResourceManager loadResources(): Unable to load sound effect " << name << '\n' << std::endl; success = false; } else m_soundeffects[name] = se; } } } } return success; } Spritesheet* ResourceManager::getSpritesheet(std::string spritesheet) { std::map<std::string, Spritesheet*>::iterator it = m_spritesheets.find(spritesheet); if (it == m_spritesheets.end()){ DEBUG_LOG << "ResourceManager getSpritesheet(): Unable to find spritesheet " << spritesheet << '\n' << std::endl; return nullptr; } else return it->second; } Animation* ResourceManager::getAnimation(std::string animation) { std::map<std::string, Animation*>::iterator it = m_animations.find(animation); if (it == m_animations.end()){ DEBUG_LOG << "ResourceManager getAnimation(): Unable to find animation " << animation << '\n' << std::endl; return nullptr; } else return it->second; } Music* ResourceManager::getMusic(std::string music) { std::map<std::string, Music*>::iterator it = m_music.find(music); if (it == m_music.end()){ DEBUG_LOG << "ResourceManager getMusic(): Unable to find music " << music << '\n' << std::endl; return nullptr; } else return it->second; } SoundEffect* ResourceManager::getSoundEffect(std::string soundEffect) { std::map<std::string, SoundEffect*>::iterator it = m_soundeffects.find(soundEffect); if (it == m_soundeffects.end()){ DEBUG_LOG << "ResourceManager getSoundEffect(): Unable to find sound effect " << soundEffect << '\n' << std::endl; return nullptr; } else return it->second; }
12a91ff573e8b9ad0752cab09fd68542c5166eee
7d137bbff04f7f3870c86101816943d7b8040f5f
/N-ary_Trie/code/windowsort.h
37a686acfe8be4372eb733ed2967865789759b00
[ "MIT" ]
permissive
qzhsdu/DataStructureCourseDesign
3e78a33d1246a641271ce7416fcdbea068ef6fcf
ea8c1cd422714ca39f8100927f044159c58fc74e
refs/heads/master
2022-09-15T10:03:48.203149
2020-05-15T20:21:38
2020-05-15T20:21:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,009
h
windowsort.h
#ifndef WINDOWSORT_H #define WINDOWSORT_H #include <QMainWindow> #include "trie.h" #include <QMessageBox> #include "threadsortfrequency.h" #include "dialogsearch.h" #include <QProgressBar> #include <QLabel> #include "threadsortinsidefrequency.h" #include <QFontDialog> namespace Ui { class windowSort; } class windowSort : public QMainWindow { Q_OBJECT public: explicit windowSort(QWidget *parent = nullptr); ~windowSort(); void set(Trie *); void sortFrequency(); void sortFrequencyFinish(QString); void sortTrie(); void output(QString); void searchRow(); void updateProgressBar(int,int); void sortInsideFrequency(); void sortInsideFrequencyFinish(QString); void updateProgressBarInside(int); void fontChange(); private: Ui::windowSort *ui; Trie * trie; threadSortFrequency threadA; threadSortInsideFrequency threadB; void iniSignol(); QProgressBar * progressBar = NULL; QLabel * label = NULL; }; #endif // WINDOWSORT_H
e3f54566f2ae834adf5a872d9c52a3b1bd23ea04
9f219bcc66e1e6a09958f2bf5838000503e9f109
/Accepted/11326.cpp
1cfe68100eabf7ba7af5d1f08cafae40f1aeaa19
[]
no_license
naeemulhassan/ACM-Problems
48ddbb0e591064673ea1148d0d97d940932d2a2f
4038e8fe8555741fc209ed2fb4031876ca814d64
refs/heads/master
2021-01-01T05:46:53.348166
2015-08-29T04:34:52
2015-08-29T04:34:52
41,580,223
0
0
null
null
null
null
UTF-8
C++
false
false
467
cpp
11326.cpp
#include<iostream> #include<math.h> using namespace std; main() { #ifndef ONLINE_JUDGE freopen("input","r",stdin); freopen("output","w",stdout); #endif int t,n; double L,W,th,w,x,y,z,A,B; cin>>t; while(t--) { cin>>L>>W>>th; th = th*3.14159265358979323846264338327950288419716939937511/180.0; A = L/cos(th); B = L*tan(th); x = B/W; n = (int)floor(x); if(n%2)x = W-(x-n)*W; else x = (x-n)*W; B = sqrt(L*L+x*x); printf("%0.3f\n",A/B); } }
5bf3aaefafad92675dbec8ee4165a39f458dc011
627a978ac34ee8b7b709ec9422bf4bd6ce6b853f
/OpenGL/CUDA_OpenGL_glfw_glew/CUDA_OpenGL_glfw_glew/OpenGL.cpp
84b5902b3e4b9b2bf5ad84e231502a328b2b1b61
[ "MIT" ]
permissive
pklong007/Examples_lixiaoguang
a28891b0541d037b14ca5853cd6a8f3d4bf246e3
8d844823b9cc33a710337cb544c40d71d833dbbc
refs/heads/master
2022-03-03T15:03:12.043841
2018-04-23T05:15:27
2018-04-23T05:15:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,705
cpp
OpenGL.cpp
#include "stdafx.h" #include "OpenGL.h" OpenGL::OpenGL() { IsCreate = false; } OpenGL::~OpenGL() { } bool OpenGL::Create_GL(int width, int height, int Parent) { glfwSetErrorCallback(error_callback); if (!glfwInit()) { IsCreate = false; return false; } glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 2); glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 0); window = glfwCreateWindowEx(width, height, "Simple example", NULL, NULL, Parent); if (!window) { glfwTerminate(); IsCreate = false; return false; } glfwSetKeyCallback(window, key_callback); glfwMakeContextCurrent(window); gladLoadGLLoader((GLADloadproc)glfwGetProcAddress); glfwSwapInterval(1); // NOTE: OpenGL error checks have been omitted for brevity glGenBuffers(1, &vertex_buffer); glBindBuffer(GL_ARRAY_BUFFER, vertex_buffer); glBufferData(GL_ARRAY_BUFFER, sizeof(vertices), vertices, GL_STATIC_DRAW); vertex_shader = glCreateShader(GL_VERTEX_SHADER); glShaderSource(vertex_shader, 1, &vertex_shader_text, NULL); glCompileShader(vertex_shader); fragment_shader = glCreateShader(GL_FRAGMENT_SHADER); glShaderSource(fragment_shader, 1, &fragment_shader_text, NULL); glCompileShader(fragment_shader); program = glCreateProgram(); glAttachShader(program, vertex_shader); glAttachShader(program, fragment_shader); glLinkProgram(program); mvp_location = glGetUniformLocation(program, "MVP"); vpos_location = glGetAttribLocation(program, "vPos"); vcol_location = glGetAttribLocation(program, "vCol"); glEnableVertexAttribArray(vpos_location); glVertexAttribPointer(vpos_location, 2, GL_FLOAT, GL_FALSE, sizeof(float) * 5, (void*)0); glEnableVertexAttribArray(vcol_location); glVertexAttribPointer(vcol_location, 3, GL_FLOAT, GL_FALSE, sizeof(float) * 5, (void*)(sizeof(float) * 2)); IsCreate = true; return true; } void OpenGL::Release_GL() { glfwDestroyWindow(window); glfwTerminate(); //exit(EXIT_SUCCESS); } void OpenGL::Render_GL(void) { if (!glfwWindowShouldClose(window)) { float ratio; int width, height; mat4x4 m, p, mvp; glfwGetFramebufferSize(window, &width, &height); ratio = width / (float)height; glViewport(0, 0, width, height); glClear(GL_COLOR_BUFFER_BIT); mat4x4_identity(m); mat4x4_rotate_Z(m, m, (float)glfwGetTime()); mat4x4_ortho(p, -ratio, ratio, -1.f, 1.f, 1.f, -1.f); mat4x4_mul(mvp, p, m); glUseProgram(program); glUniformMatrix4fv(mvp_location, 1, GL_FALSE, (const GLfloat*)mvp); glDrawArrays(GL_TRIANGLES, 0, 3); glfwSwapBuffers(window); //glfwPollEvents(); } } bool OpenGL::IsCreate_GL() { return IsCreate; } void OpenGL::ResizeWindows_GL(int width, int height) { glfwSetWindowSize(window, width, height); }
67d79f2dda211571b04767d85ea206258bee081e
dbdf5d78338021e1b4a2d499e3179afa506b36ea
/backends/qscreen/qscreenconfig.h
b1653a616b8c732aaea867f5810ba1ea858857b5
[]
no_license
KDE/libkscreen
9ad1664912e44f43c72903de2421abbf6d2e32e9
b9dedc554fe3043c61653471f02750ccbc5cfaa8
refs/heads/master
2023-09-05T15:02:48.856337
2023-09-03T02:59:36
2023-09-03T02:59:36
42,733,370
21
14
null
2022-05-12T06:19:53
2015-09-18T16:21:12
C++
UTF-8
C++
false
false
1,006
h
qscreenconfig.h
/* * SPDX-FileCopyrightText: 2014 Sebastian Kügler <sebas@kde.org> * * SPDX-License-Identifier: LGPL-2.1-or-later */ #ifndef QSCREEN_CONFIG_H #define QSCREEN_CONFIG_H #include "types.h" #include <QScreen> namespace KScreen { class Output; class QScreenOutput; class QScreenScreen; class QScreenConfig : public QObject { Q_OBJECT public: explicit QScreenConfig(QObject *parent = nullptr); ~QScreenConfig() override; KScreen::ConfigPtr toKScreenConfig() const; void updateKScreenConfig(KScreen::ConfigPtr &config) const; QMap<int, QScreenOutput *> outputMap() const; int outputId(const QScreen *qscreen); private Q_SLOTS: void screenAdded(const QScreen *qscreen); void screenRemoved(QScreen *qscreen); Q_SIGNALS: void configChanged(const KScreen::ConfigPtr &config); private: QMap<int, QScreenOutput *> m_outputMap; QScreenScreen *m_screen; int m_lastOutputId = -1; bool m_blockSignals; }; } // namespace #endif // QSCREEN_CONFIG_H
14df7aa9589f0573ce878e4d0e5c4bcf768c6f9f
bd42d669af0c4185a1aa36335bdc745f343dd51f
/src/game/components/editor.cpp
7600f76c613a676dfb2825731676a942f648219a
[ "Zlib" ]
permissive
HolyBlackCat/circuit-bros
be561a89e93926fbef369513b9eb7f0191d50ecd
2d1947f52722a458c84b0c4baeee969d499c7a8b
refs/heads/master
2023-07-16T11:09:33.947300
2021-08-22T17:35:26
2021-08-22T17:35:26
250,238,157
0
0
null
null
null
null
UTF-8
C++
false
false
57,090
cpp
editor.cpp
#include "editor.h" #include <array> #include <vector> #include <set> #include "game/components/circuit.h" #include "game/draw.h" #include "game/main.h" #include "reflection/full_with_poly.h" #include "signals/signal_slot.h" namespace Components { struct Editor::State : Sig::Slot { SIMPLE_STRUCT( Atlas DECL(Graphics::TextureAtlas::Region) editor_frame, editor_buttons, cursor VERBATIM Atlas() {texture_atlas().InitRegions(*this, ".png");} ) inline static Atlas atlas; SIMPLE_STRUCT( Strings DECL(InterfaceStrings::Str<>) ButtonTooltip_Start, ButtonTooltip_Pause, ButtonTooltip_AdvanceOneTick, ButtonTooltip_Stop, ButtonTooltip_Continue, ButtonTooltip_AddOrGate, ButtonTooltip_AddAndGate, ButtonTooltip_AddOther, ButtonTooltip_Erase, ButtonTooltip_ConnectionMode_Regular, ButtonTooltip_ConnectionMode_Inverted VERBATIM Strings() {interface_strings().InitStrings(*this, "Editor/");} ) inline static Strings strings; static constexpr int panel_h = 24; static constexpr ivec2 window_size_with_panel = screen_size - 40, window_size = window_size_with_panel - ivec2(0, panel_h); static constexpr ivec2 area_size = ivec2(1024, 512), min_view_offset = -(area_size - window_size) / 2, max_view_offset = -min_view_offset + 1; static constexpr int mouse_min_drag_distance = 1, hover_radius = 3; GameState game_state = GameState::stopped; bool want_open = false; float open_close_state = 0; bool partially_extended = false; bool fully_extended = false; bool prev_fully_extended = false; float background_transparency_state = 0; // Gradually changes between 0 when paused and 1 when playing. fvec2 view_offset_float{}; ivec2 view_offset{}, prev_view_offset{}; // Camera offset in the editor. bool now_dragging_view = false; bool now_dragging_view_using_rmb = false; // This is set in addition to `now_dragging_view` if needed. ivec2 view_drag_offset_relative_to_mouse{}; fvec2 view_offset_vel{}; ivec2 frame_offset{}; // Offset of the editor frame relative to the center of the screen. ivec2 window_offset{}; // Offset of the editor viewport (not counting the panel) relative to the center of the screen. bool mouse_in_window = false; NodeStorage held_node; bool eraser_mode = false, prev_eraser_mode = false; // If not holding a node, this is the index of the currently hovered node. // If we do hold a node, this is the index of a node that overlaps with the hovered one. size_t hovering_over_node_index = -1; // -1 if no node. bool need_recalc_hovered_node = false; std::set<std::size_t> selected_node_indices; bool selection_add_modifier_down = false, selection_subtract_modifier_down = false; bool now_creating_rect_selection = false; ivec2 rect_selection_initial_click_pos{}; ivec2 rect_selection_pos{}, rect_selection_size{}; bool now_dragging_selected_nodes = false; ivec2 dragging_nodes_initial_click_pos{}; std::vector<ivec2> dragged_nodes_offsets_to_mouse_pos{}; // The indices match `selected_node_indices`. size_t node_connection_src_node_index = -1; // -1 if no node. This is set when clicking any unselected node in selection mode. bool now_creating_node_connection = false; // Then, if stop hovering that node, `now_creating_node_connection` is set to true. int node_connection_src_point_index = -1; // This has indeterminate value if `node_connection_src_node_index == -1`. bool create_inverted_connections = false; // Whether new connections should be inverted. size_t erasing_node_connection_node_index = -1; // -1 if no node. This is set when clicking a node in eraser mode. int erasing_node_connection_point_index = -1; // -1 if no node or no point. Set when clicking a node in eraser mode. bool erasing_node_connection_point_type_is_out = false; // Same, but can sometimes be updated when selecting a connection, if the points overlap. int erasing_node_connection_con_index = -1; // Continuously updated when selecting a connection to be erased (can be -1 if no connection), otherwise -1. fvec2 erasing_node_connection_pos_a{}, erasing_node_connection_pos_b{}; // Those are set only when `erasing_node_connection_con_index != -1`. bool now_erasing_connections_instead_of_nodes = false; // Has a meaningful value only if `(mouse.left.down() || mouse.left.released()) && eraser_mode`. std::vector<BasicNode::id_t> recently_deleted_node_ids; // When deleting nodes, their IDs should be added here. static constexpr int circuit_tick_period_when_in_editor_mode = 15; int circuit_tick_timer_for_editor_mode = 0; struct Button { ivec2 pos{}, size{}; ivec2 tex_pos{}; using tick_func_t = void(Button &button, State &state, TooltipController &tooltip_controller); tick_func_t *tick = nullptr; bool enabled = true; enum class Status {normal, hovered, pressed}; // Do not reorder. Status status = Status::normal; bool mouse_pressed_here = false; bool mouse_released_here_at_this_tick = false; Button() {} Button(ivec2 pos, ivec2 size, ivec2 tex_pos, tick_func_t *tick = nullptr, bool enabled = true) : pos(pos), size(size), tex_pos(tex_pos), tick(tick), enabled(enabled) {} [[nodiscard]] static ivec2 IndexToTexPos(int index) { constexpr int wide_button_count = 5; ivec2 ret(6 + 24 * index, 0); if (index >= wide_button_count) ret.x -= (index - wide_button_count) * 4; return ret; } [[nodiscard]] bool IsPressed() const { return mouse_released_here_at_this_tick; } // Internal, use in `tick` callback. template <typename F> void TooltipFunc(TooltipController &c, F &&func) { if (status == Status::hovered && c.ShouldShowTooltip()) c.SetTooltip(pos with(y += size.y), std::forward<F>(func)()); } }; struct Buttons { MEMBERS( DECL(Button) stop, start_pause_continue, advance_one_tick, separator1, add_gate_or, add_gate_and, add_gate_other, erase_gate, separator2, toggle_inverted_connections ) MAYBE_CONST( template <typename F> void ForEachButton(F &&func) CV // `func` is `void func(CV Button &)`. { Meta::cexpr_for<Refl::Class::member_count<Buttons>>([&](auto index) { func(Refl::Class::Member<index.value>(*this)); }); } ) Buttons() { ivec2 pos = -window_size_with_panel/2 + 2; stop = Button(pos, ivec2(24,20), Button::IndexToTexPos(0), [](Button &b, State &s, TooltipController &t) { if (s.game_state == GameState::stopped) { b.enabled = false; b.tex_pos = Button::IndexToTexPos(0); } else { b.enabled = true; b.tex_pos = Button::IndexToTexPos(3); b.TooltipFunc(t,[&]{return s.strings.ButtonTooltip_Stop();}); } }); pos.x += 24; start_pause_continue = Button(pos, ivec2(24,20), Button::IndexToTexPos(1), [](Button &b, State &s, TooltipController &t) { b.tex_pos = Button::IndexToTexPos(s.game_state == GameState::playing ? 2 : 1); switch (s.game_state) { case GameState::_count: break; // This shouldn't happen. case GameState::stopped: b.TooltipFunc(t,[&]{return s.strings.ButtonTooltip_Start();}); break; case GameState::playing: b.TooltipFunc(t,[&]{return s.strings.ButtonTooltip_Pause();}); break; case GameState::paused: b.TooltipFunc(t,[&]{return s.strings.ButtonTooltip_Continue();}); break; } }); pos.x += 24; advance_one_tick = Button(pos, ivec2(24,20), Button::IndexToTexPos(4), [](Button &b, State &s, TooltipController &t) { b.TooltipFunc(t,[&]{return s.strings.ButtonTooltip_AdvanceOneTick();}); }); pos.x += 24; separator1 = Button(pos, ivec2(6,20), ivec2(0), nullptr, false); pos.x += 6; add_gate_or = Button(pos, ivec2(20,20), Button::IndexToTexPos(5), [](Button &b, State &s, TooltipController &t) { b.TooltipFunc(t,[&]{return s.strings.ButtonTooltip_AddOrGate();}); }); pos.x += 20; add_gate_and = Button(pos, ivec2(20,20), Button::IndexToTexPos(6), [](Button &b, State &s, TooltipController &t) { b.TooltipFunc(t,[&]{return s.strings.ButtonTooltip_AddAndGate();}); }); pos.x += 20; add_gate_other = Button(pos, ivec2(20,20), Button::IndexToTexPos(7), [](Button &b, State &s, TooltipController &t) { b.TooltipFunc(t,[&]{return s.strings.ButtonTooltip_AddOther();}); }); pos.x += 20; erase_gate = Button(pos, ivec2(20,20), Button::IndexToTexPos(8), [](Button &b, State &s, TooltipController &t) { b.TooltipFunc(t,[&]{return s.strings.ButtonTooltip_Erase();}); }); pos.x += 20; separator2 = Button(pos, ivec2(6,20), ivec2(0), nullptr, false); pos.x += 6; toggle_inverted_connections = Button(pos, ivec2(20,20), Button::IndexToTexPos(9), [](Button &b, State &s, TooltipController &t) { b.tex_pos = Button::IndexToTexPos(s.create_inverted_connections ? 10 : 9); if (s.create_inverted_connections) b.TooltipFunc(t,[&]{return s.strings.ButtonTooltip_ConnectionMode_Inverted();}); else b.TooltipFunc(t,[&]{return s.strings.ButtonTooltip_ConnectionMode_Regular();}); }); pos.x += 20; } }; Buttons buttons; struct Hotkeys { Input::Button stop = Input::r; Input::Button play_pause = Input::space; Input::Button advance_one_tick = Input::f; }; Hotkeys hotkeys; struct MiscNodeEntry { std::string name; NodeStorage original_node; }; const std::vector<MiscNodeEntry> &GetMiscNodeList() const { static std::vector<MiscNodeEntry> ret = []{ std::vector<MiscNodeEntry> ret; size_t count = Refl::Polymorphic::DerivedClassCount<BasicNode>(); for (size_t i = 0; i < count; i++) { NodeStorage tmp_node = Refl::Polymorphic::ConstructFromIndex<BasicNode>(i); if (tmp_node->GetPositionInNodeList() == -1) continue; MiscNodeEntry &entry = ret.emplace_back(); entry.name = tmp_node->GetName(); entry.original_node = std::move(tmp_node); } std::sort(ret.begin(), ret.end(), [](const MiscNodeEntry &a, const MiscNodeEntry &b){return a.original_node->GetPositionInNodeList() < b.original_node->GetPositionInNodeList();}); return ret; }(); return ret; } State() {} // Returns -1 if we don't hover over a node. size_t CalcHoveredNodeIndex(const std::vector<NodeStorage> &nodes, ivec2 radius) const { if (!mouse_in_window) return -1; ivec2 mouse_abs_pos = mouse.pos() - window_offset + view_offset; size_t closest_index = -1; int closest_dist_sqr = std::numeric_limits<int>::max(); for (size_t i = 0; i < nodes.size(); i++) { if (!nodes[i]->VisuallyContainsPoint(mouse_abs_pos, radius)) continue; int this_dist_sqr = (mouse_abs_pos - nodes[i]->pos).len_sqr(); if (this_dist_sqr < closest_dist_sqr) { closest_dist_sqr = this_dist_sqr; closest_index = i; } } return closest_index; } static void RunWorldTick(World &world, Circuit &circuit) { circuit.Tick(world); world.Tick(); } static void RunWorldTickPersistent(World &world) { world.PersistentTick(); } }; Editor::Editor() : state(std::make_unique<State>()) {} Editor::Editor(Editor &&other) noexcept : state(std::move(other.state)) {} Editor &Editor::operator=(Editor &&other) noexcept {state = std::move(other.state); return *this;} Editor::~Editor() = default; bool Editor::IsOpen() const { return state->want_open; } void Editor::SetOpen(bool is_open, bool immediately) { state->want_open = is_open; if (immediately) state->open_close_state = is_open; } Editor::GameState Editor::GetState() const { return state->game_state; } void Editor::Tick(std::optional<World> &world, const std::optional<World> &saved_world, Circuit &circuit, MenuController &menu_controller, TooltipController &tooltip_controller) { static constexpr float open_close_state_step = 0.025; State &s = *state; { // Open/close clamp_var(s.open_close_state += open_close_state_step * (s.want_open ? 1 : -1)); s.partially_extended = s.open_close_state > 0.001; s.fully_extended = s.open_close_state > 0.999; } // Stop interactions if just closed if (!s.fully_extended && s.prev_fully_extended) { s.now_dragging_view = false; s.view_offset_vel = fvec2(0); s.now_creating_rect_selection = false; s.now_dragging_selected_nodes = false; s.dragged_nodes_offsets_to_mouse_pos = std::vector<ivec2>{}; s.now_creating_node_connection = false; s.node_connection_src_node_index = -1; s.erasing_node_connection_node_index = -1; menu_controller.RemoveMenu(); tooltip_controller.RemoveTooltipAndResetTimer(); } // Do things if just opened if (s.fully_extended && !s.prev_fully_extended) { s.need_recalc_hovered_node = true; s.hovering_over_node_index = -1; } { // Update background transparency clamp_var(s.background_transparency_state += 0.02 * (s.game_state == GameState::playing ? 1 : -1)); } { // Update mouse-related variables // Check if the window is hovered. s.mouse_in_window = ((mouse.pos() - s.window_offset).abs() <= s.window_size/2).all(); } bool drag_modifier_down = Input::Button(Input::l_shift).down() || Input::Button(Input::r_shift).down(); s.selection_add_modifier_down = drag_modifier_down; s.selection_subtract_modifier_down = !s.selection_add_modifier_down && (Input::Button(Input::l_ctrl).down() || Input::Button(Input::r_ctrl).down()); // Change view offset if (s.fully_extended) { // Start dragging if (s.fully_extended && s.mouse_in_window && (mouse.middle.pressed() || (drag_modifier_down && mouse.right.pressed()))) { s.now_dragging_view = true; s.now_dragging_view_using_rmb = !mouse.middle.pressed(); s.view_drag_offset_relative_to_mouse = mouse.pos() + s.view_offset; s.view_offset_vel = fvec2(0); } // Stop dragging if (s.now_dragging_view && (s.now_dragging_view_using_rmb ? mouse.right : mouse.middle).up()) { s.now_dragging_view = false; s.view_offset_vel = -mouse.pos_delta(); } // Change offset if (s.now_dragging_view) { s.view_offset_float = s.view_drag_offset_relative_to_mouse - mouse.pos(); } else { constexpr float view_offset_vel_drag = 0.05, view_offset_min_vel = 0.25; if (s.view_offset_vel != fvec2(0)) { s.view_offset_float += s.view_offset_vel; s.view_offset_vel *= 1 - view_offset_vel_drag; if ((s.view_offset_vel.abs() < view_offset_min_vel).all()) s.view_offset_vel = fvec2(0); } } { // Clamp offset for (int i = 0; i < 2; i++) { if (s.view_offset_float[i] < s.min_view_offset[i]) { s.view_offset_float[i] = s.min_view_offset[i]; s.view_offset_vel[i] = 0; } else if (s.view_offset_float[i] > s.max_view_offset[i]) { s.view_offset_float[i] = s.max_view_offset[i]; s.view_offset_vel[i] = 0; } } } // Compute rounded offset s.view_offset = iround(s.view_offset_float); } { // Compute frame and window offsets s.frame_offset = ivec2(0, iround(smoothstep(1 - s.open_close_state) * screen_size.y)); s.window_offset = ivec2(s.frame_offset.x, s.frame_offset.y + s.panel_h / 2); } // Buttons if (s.partially_extended) // Sic { s.buttons.ForEachButton([&](State::Button &button) { if (button.tick) button.tick(button, s, tooltip_controller); button.mouse_released_here_at_this_tick = false; // Skip if disabled. if (!button.enabled) { button.status = State::Button::Status::normal; button.mouse_pressed_here = false; button.mouse_released_here_at_this_tick = false; return; } bool hovered = s.fully_extended && (mouse.pos() >= button.pos).all() && (mouse.pos() < button.pos + button.size).all(); bool can_press = !s.now_creating_rect_selection && !s.now_dragging_selected_nodes; if (button.mouse_pressed_here && mouse.left.up()) { button.mouse_pressed_here = false; if (hovered && can_press) button.mouse_released_here_at_this_tick = true; } if (hovered && mouse.left.pressed() && can_press) { button.mouse_pressed_here = true; } if (hovered && button.mouse_pressed_here) button.status = State::Button::Status::pressed; else if (hovered && mouse.left.up()) button.status = State::Button::Status::hovered; else button.status = State::Button::Status::normal; }); } { // Change editor mode (add/remove node) // Disable tools if not extended if (!s.partially_extended) { s.held_node = nullptr; s.eraser_mode = false; } // Disable tools on right click if (s.fully_extended && mouse.right.pressed() && !drag_modifier_down) { s.held_node = nullptr; s.eraser_mode = false; } } { // Button actions if (s.buttons.add_gate_or.IsPressed()) { s.held_node = Refl::Polymorphic::ConstructFromName<BasicNode>("Or"); s.eraser_mode = false; } if (s.buttons.add_gate_and.IsPressed()) { s.held_node = Refl::Polymorphic::ConstructFromName<BasicNode>("And"); s.eraser_mode = false; } if (s.buttons.add_gate_other.IsPressed()) { MenuController::Menu menu; menu.pos = s.buttons.add_gate_other.pos with(y += s.buttons.add_gate_other.size.y); for (const State::MiscNodeEntry &entry : s.GetMiscNodeList()) { MenuController::MenuEntry::signal_t sig; Sig::Connect(sig, s, [&entry = entry](State &s) { s.held_node = entry.original_node; s.eraser_mode = false; }); menu.entries.push_back(MenuController::MenuEntry(std::move(sig), Graphics::Text(font_main(), entry.name))); } menu_controller.SetMenu(std::move(menu)); } if (s.buttons.erase_gate.IsPressed()) { s.held_node = nullptr; s.eraser_mode = true; } if (s.buttons.toggle_inverted_connections.IsPressed()) { s.create_inverted_connections = !s.create_inverted_connections; } if (s.buttons.stop.IsPressed() || s.hotkeys.stop.pressed()) { s.game_state = GameState::stopped; if (world && saved_world) { World tmp_world = std::move(*world); world.emplace(*saved_world); world->CopyPersistentStateFrom(tmp_world); } circuit.RestoreState(); } if (s.buttons.start_pause_continue.IsPressed() || s.hotkeys.play_pause.pressed()) { if (s.game_state == GameState::stopped) circuit.SaveState(); if (s.game_state == GameState::playing) s.game_state = GameState::paused; else s.game_state = GameState::playing; } if (s.buttons.advance_one_tick.IsPressed() || s.hotkeys.advance_one_tick.pressed()) { s.game_state = GameState::paused; if (world) s.RunWorldTick(*world, circuit); } } { // Detect hovered node if needed if (!s.fully_extended) { s.hovering_over_node_index = -1; } else if (s.eraser_mode != s.prev_eraser_mode || mouse.pos_delta() || s.view_offset != s.prev_view_offset || s.need_recalc_hovered_node) { s.need_recalc_hovered_node = false; s.hovering_over_node_index = s.CalcHoveredNodeIndex(circuit.nodes, s.held_node ? s.held_node->GetVisualHalfExtent() : ivec2(s.hover_radius)); } } // Selection (and erasing nodes) if (s.fully_extended) { ivec2 abs_mouse_pos = mouse.pos() - s.window_offset + s.view_offset; // Clear selection when holding a node or when in the eraser mode. if (s.held_node || s.eraser_mode) { s.selected_node_indices.clear(); } // Process clicks in selection or eraser mode. if (s.mouse_in_window && !s.held_node) { // Clicked on an empty space, form a rectangular selection if (mouse.left.pressed() && s.hovering_over_node_index == size_t(-1) && !menu_controller.MenuIsOpen() && s.game_state == GameState::stopped) { s.now_creating_rect_selection = true; s.rect_selection_initial_click_pos = mouse.pos() - s.window_offset + s.view_offset; } // Clicked on a node if (mouse.left.released() && s.hovering_over_node_index != size_t(-1) && !s.now_creating_rect_selection && !s.now_dragging_selected_nodes && !s.now_creating_node_connection && !menu_controller.MenuIsOpen() && s.game_state == GameState::stopped) { if (s.eraser_mode) { if (!s.now_erasing_connections_instead_of_nodes) // If not erasing a connection... { s.recently_deleted_node_ids.push_back(circuit.nodes[s.hovering_over_node_index]->id); circuit.nodes.erase(circuit.nodes.begin() + s.hovering_over_node_index); s.hovering_over_node_index = -1; s.need_recalc_hovered_node = true; } } else if (s.selection_add_modifier_down) { s.selected_node_indices.insert(s.hovering_over_node_index); // Add node to selection. } else if (s.selection_subtract_modifier_down) { s.selected_node_indices.erase(s.hovering_over_node_index); // Remove node from selection. } else if (!s.selected_node_indices.contains(s.hovering_over_node_index)) { s.selected_node_indices = {s.hovering_over_node_index}; // Replace selection. } } // Start dragging if (mouse.left.pressed() && !s.selection_add_modifier_down && !s.selection_subtract_modifier_down && s.hovering_over_node_index != size_t(-1) && s.selected_node_indices.contains(s.hovering_over_node_index) && !menu_controller.MenuIsOpen() && s.game_state == GameState::stopped) { s.now_dragging_selected_nodes = true; s.dragging_nodes_initial_click_pos = abs_mouse_pos; s.dragged_nodes_offsets_to_mouse_pos.clear(); s.dragged_nodes_offsets_to_mouse_pos.reserve(s.selected_node_indices.size()); for (size_t index : s.selected_node_indices) s.dragged_nodes_offsets_to_mouse_pos.push_back(circuit.nodes[index]->pos - abs_mouse_pos); s.dragged_nodes_offsets_to_mouse_pos.shrink_to_fit(); } } // Process a rectangular selection if (s.now_creating_rect_selection) { if (mouse.left.up()) { // Released mouse button, determine which nodes should be selected or erased s.now_creating_rect_selection = false; if (!menu_controller.MenuIsOpen() && s.game_state == GameState::stopped) { auto NodeIsInSelection = [&](const NodeStorage &node) { ivec2 half_extent = node->GetVisualHalfExtent(); return (node->pos - half_extent >= s.rect_selection_pos).all() && (node->pos + half_extent < s.rect_selection_pos + s.rect_selection_size).all(); }; if (s.eraser_mode) { s.hovering_over_node_index = -1; s.need_recalc_hovered_node = true; std::erase_if(circuit.nodes, [&](const NodeStorage &node) { if (!NodeIsInSelection(node)) return false; s.recently_deleted_node_ids.push_back(node->id); return true; }); } else { if (!s.selection_add_modifier_down && !s.selection_subtract_modifier_down) s.selected_node_indices.clear(); for (size_t i = 0; i < circuit.nodes.size(); i++) { if (!NodeIsInSelection(circuit.nodes[i])) continue; if (s.selection_subtract_modifier_down) s.selected_node_indices.erase(i); else s.selected_node_indices.insert(i); } } } } else { // Still selecting, update rectangle bounds ivec2 abs_mouse_pos = mouse.pos() - s.window_offset + s.view_offset; s.rect_selection_pos = min(s.rect_selection_initial_click_pos, abs_mouse_pos); s.rect_selection_size = max(s.rect_selection_initial_click_pos, abs_mouse_pos) - s.rect_selection_pos + 1; } } // Drag selected nodes if (s.now_dragging_selected_nodes) { if (mouse.left.up()) { DebugAssertNameless(s.selected_node_indices.size() == s.dragged_nodes_offsets_to_mouse_pos.size()); s.now_dragging_selected_nodes = false; if (!menu_controller.MenuIsOpen() && s.game_state == GameState::stopped) { bool can_move = true; // Make sure the nodes are not dragged out of bounds if (can_move) { for (size_t i = 0; i < s.selected_node_indices.size(); i++) { ivec2 new_pos = abs_mouse_pos + s.dragged_nodes_offsets_to_mouse_pos[i]; if ((new_pos < -s.area_size/2).any() || (new_pos > s.area_size/2).any()) { can_move = false; break; } } } // Make sure the dragged nodes don't overlap with the other nodes. if (can_move) { auto sel_index_iter = s.selected_node_indices.begin(); for (size_t static_node_index = 0; static_node_index < circuit.nodes.size(); static_node_index++) { // Skip node indices that are selected. if (sel_index_iter != s.selected_node_indices.end() && *sel_index_iter == static_node_index) { sel_index_iter++; continue; } const BasicNode &static_node = *circuit.nodes[static_node_index]; size_t i = 0; for (size_t moving_node_index : s.selected_node_indices) { const BasicNode &moving_node = *circuit.nodes[moving_node_index]; ivec2 new_moving_node_pos = abs_mouse_pos + s.dragged_nodes_offsets_to_mouse_pos[i++]; if (static_node.VisuallyContainsPoint(new_moving_node_pos, moving_node.GetVisualHalfExtent())) { can_move = false; break; } } if (!can_move) break; } } // If there's something wrong with the new node positions, move them back to their original location. if (!can_move) { s.need_recalc_hovered_node = true; size_t i = 0; for (size_t index : s.selected_node_indices) { circuit.nodes[index]->pos = s.dragging_nodes_initial_click_pos + s.dragged_nodes_offsets_to_mouse_pos[i++]; } } } } else { size_t i = 0; for (size_t index : s.selected_node_indices) { circuit.nodes[index]->pos = abs_mouse_pos + s.dragged_nodes_offsets_to_mouse_pos[i++]; } } } } // Creating node connections if (s.fully_extended) { bool can_create_con = !s.held_node && !s.eraser_mode; if (can_create_con && mouse.left.pressed() && s.hovering_over_node_index != size_t(-1) && !s.selection_add_modifier_down && !s.selection_subtract_modifier_down && !menu_controller.MenuIsOpen() && s.game_state == GameState::stopped) { ivec2 mouse_abs_pos = mouse.pos() - s.window_offset + s.view_offset; if ((s.node_connection_src_point_index = circuit.nodes[s.hovering_over_node_index]->GetClosestConnectionPoint<BasicNode::Dir::out>(mouse_abs_pos)) != -1) { // If successfully found a connection node... s.node_connection_src_node_index = s.hovering_over_node_index; } } if (can_create_con && s.node_connection_src_node_index != size_t(-1) && mouse.left.down() && s.node_connection_src_node_index != s.hovering_over_node_index) s.now_creating_node_connection = true; if (mouse.left.up()) { if (can_create_con && s.now_creating_node_connection && s.node_connection_src_node_index != size_t(-1) && s.hovering_over_node_index != size_t(-1) && s.hovering_over_node_index != s.node_connection_src_node_index && !menu_controller.MenuIsOpen() && s.game_state == GameState::stopped) { ivec2 mouse_abs_pos = mouse.pos() - s.window_offset + s.view_offset; BasicNode &src_node = *circuit.nodes[s.node_connection_src_node_index]; BasicNode &dst_node = *circuit.nodes[s.hovering_over_node_index]; int dst_point_index = dst_node.GetClosestConnectionPoint<BasicNode::Dir::in>(mouse_abs_pos); if (dst_point_index != -1) { src_node.Connect(s.node_connection_src_point_index, dst_node, dst_point_index, s.create_inverted_connections); } } s.node_connection_src_node_index = -1; s.now_creating_node_connection = false; } } // Erasing node connections if (s.fully_extended) { ivec2 mouse_abs_pos = mouse.pos() - s.window_offset + s.view_offset; if (s.eraser_mode && mouse.left.pressed() && s.hovering_over_node_index != size_t(-1) && !menu_controller.MenuIsOpen() && s.game_state == GameState::stopped) { s.now_erasing_connections_instead_of_nodes = false; s.erasing_node_connection_point_index = circuit.nodes[s.hovering_over_node_index]->GetClosestConnectionPoint<BasicNode::Dir::in_out>(mouse_abs_pos, &s.erasing_node_connection_point_type_is_out); if (s.erasing_node_connection_point_index != -1) { // If successfully found a connection point... s.erasing_node_connection_node_index = s.hovering_over_node_index; s.erasing_node_connection_con_index = -1; } } if (s.eraser_mode && s.erasing_node_connection_node_index != size_t(-1) && mouse.left.down()) { s.erasing_node_connection_con_index = -1; if (s.erasing_node_connection_node_index != s.hovering_over_node_index) { s.now_erasing_connections_instead_of_nodes = true; const BasicNode &node = *circuit.nodes[s.erasing_node_connection_node_index]; float dist_to_nearest_con = 10; // Minimal distance to connection. auto UpdateSelectedCon = [&](bool is_out, int point_index) { Meta::with_cexpr_flags(is_out) >> [&](auto is_out_tag) { constexpr bool is_out = is_out_tag.value; const auto &point = node.GetInOrOutPoint<is_out>(point_index); for (int con_index = 0; con_index < int(point.connections.size()); con_index++) { const BasicNode::NodeAndPointId &remote_ids = point.connections[con_index].ids; const BasicNode &remote_node = *circuit.FindNodeOrThrow(remote_ids.node); const auto &remote_point = remote_node.GetInOrOutPoint<!is_out>(remote_ids.point); ivec2 a = node.pos + point.info->offset_to_node; ivec2 b = remote_node.pos + remote_point.info->offset_to_node; fvec2 dir = fvec2(b - a).norm(); if (fvec2(mouse_abs_pos - a) /dot/ dir <= 0) continue; fvec2 normal = dir.rot90(); float dist = abs(fvec2(mouse_abs_pos - a) /dot/ normal); if (dist < dist_to_nearest_con) { // Update the nearest connection info. dist_to_nearest_con = dist; s.erasing_node_connection_con_index = con_index; s.erasing_node_connection_pos_a = a + dir * point.info->visual_radius; // Note that we don't add `extra_out_visual_radius` here, it looks better without it. s.erasing_node_connection_pos_b = b - dir * remote_point.info->visual_radius; // ^ // Yeah, we also need to set those because of how we handle overlapping connection points. s.erasing_node_connection_point_index = point_index; s.erasing_node_connection_point_type_is_out = is_out; } } }; }; UpdateSelectedCon(s.erasing_node_connection_point_type_is_out, s.erasing_node_connection_point_index); int overlapping_point_index = s.erasing_node_connection_point_type_is_out ? node.GetInPointOverlappingOutPoint(s.erasing_node_connection_point_index) : node.GetOutPointOverlappingInPoint(s.erasing_node_connection_point_index); if (overlapping_point_index != -1) UpdateSelectedCon(!s.erasing_node_connection_point_type_is_out, overlapping_point_index); } } if (mouse.left.up()) { if (s.eraser_mode && s.erasing_node_connection_node_index != size_t(-1) && s.erasing_node_connection_con_index != -1 && !menu_controller.MenuIsOpen() && s.game_state == GameState::stopped) { BasicNode &node = *circuit.nodes[s.erasing_node_connection_node_index]; node.Disconnect(circuit, s.erasing_node_connection_point_index, s.erasing_node_connection_point_type_is_out, s.erasing_node_connection_con_index); } s.erasing_node_connection_node_index = -1; s.erasing_node_connection_point_index = -1; s.erasing_node_connection_con_index = -1; } } // Add a node if (s.fully_extended) { if (mouse.left.pressed() && s.mouse_in_window && s.held_node && s.hovering_over_node_index == size_t(-1) && !menu_controller.MenuIsOpen() && s.game_state == GameState::stopped) { BasicNode::id_t new_node_id = circuit.nodes.empty() ? 0 : circuit.nodes.back()->id + 1; BasicNode &new_node = *circuit.nodes.emplace_back(s.held_node); new_node.pos = mouse.pos() - s.window_offset + s.view_offset; new_node.id = new_node_id; s.need_recalc_hovered_node = true; } } { // Renormalize nodes, if needed (this must be close to the end of `Tick()`, after all node manipulations) if (s.recently_deleted_node_ids.size() > 0) { // Sort IDs to allow binary search. std::sort(s.recently_deleted_node_ids.begin(), s.recently_deleted_node_ids.end()); // Check if a node with the specified ID was recently deleted. auto NodeIdWasDeleted = [&](BasicNode::id_t id) { return std::binary_search(s.recently_deleted_node_ids.begin(), s.recently_deleted_node_ids.end(), id); }; // For each existing node, remove all connections to nodes that were deleted. for (NodeStorage &node : circuit.nodes) { int in_points = node->InPointCount(); int out_points = node->OutPointCount(); for (int i = 0; i < in_points; i++) { BasicNode::InPoint &point = node->GetInPoint(i); std::erase_if(point.connections, [&](const BasicNode::InPointCon &con){return NodeIdWasDeleted(con.ids.node);}); } for (int i = 0; i < out_points; i++) { BasicNode::OutPoint &point = node->GetOutPoint(i); std::erase_if(point.connections, [&](const BasicNode::OutPointCon &con){return NodeIdWasDeleted(con.ids.node);}); } } // Clear the list of deleted IDs. s.recently_deleted_node_ids.clear(); } } { // Circuit tick (in the editor mode only) if (s.game_state != GameState::stopped) { s.circuit_tick_timer_for_editor_mode = 0; } else { s.circuit_tick_timer_for_editor_mode++; if (s.circuit_tick_timer_for_editor_mode >= s.circuit_tick_period_when_in_editor_mode) { s.circuit_tick_timer_for_editor_mode = 0; circuit.Tick(*world); } } } { // World tick (has to be done after the circuit tick) if (world) { if (s.game_state == GameState::playing) s.RunWorldTick(*world, circuit); s.RunWorldTickPersistent(*world); } } { // Update `prev_*` variables s.prev_fully_extended = s.fully_extended; s.prev_eraser_mode = s.eraser_mode; s.prev_view_offset = s.view_offset; } } void Editor::Render(const Circuit &circuit) const { const State &s = *state; { // Fade static constexpr float fade_alpha = 0.6; float t = smoothstep(pow(s.open_close_state, 2)); float alpha = t * fade_alpha; if (s.partially_extended) { // Fill only the thin stripe around the frame (which should be fully extended at this point). constexpr int width = 5; // Depends on the frame texture. // Top r.iquad(-screen_size/2, ivec2(screen_size.x, width + s.frame_offset.y)).color(fvec3(0)).alpha(alpha); // Bottom r.iquad(s.frame_offset + ivec2(-screen_size.x/2, screen_size.y/2 - width), ivec2(screen_size.x, width)).color(fvec3(0)).alpha(alpha); // Left r.iquad(s.frame_offset + ivec2(-screen_size.x/2, -screen_size.y/2 + width), ivec2(width, screen_size.y - width*2)).color(fvec3(0)).alpha(alpha); // Right r.iquad(s.frame_offset + ivec2(screen_size.x/2 - width, -screen_size.y/2 + width), ivec2(width, screen_size.y - width*2)).color(fvec3(0)).alpha(alpha); } } // Background if (s.partially_extended) { float t = s.background_transparency_state; t = smoothstep(t); r.iquad(s.frame_offset, s.window_size_with_panel).center().color(fvec3(0)).alpha(mix(t, 0.9, 0.55)); } // Grid if (s.partially_extended) { constexpr int cell_size = 32, sub_cell_count = 4; // constexpr fvec3 grid_color(0,0.5,1); constexpr fvec3 grid_color(0.1,0.2,0.5); constexpr float grid_alpha = 0.25, grid_alpha_alt = 0.5; auto GetLineAlpha = [&](int index) {return index % sub_cell_count == 0 ? grid_alpha_alt : grid_alpha;}; ivec2 grid_center_cell = div_ex(-s.view_offset, cell_size); ivec2 grid_center = mod_ex(-s.view_offset, cell_size); for (int x = 0;; x++) { int pixel_x = grid_center.x + x * cell_size; if (pixel_x > s.window_size.x/2) break; r.iquad(s.window_offset + ivec2(pixel_x,-s.window_size.y/2), ivec2(1,s.window_size.y)).color(grid_color).alpha(GetLineAlpha(grid_center_cell.x - x)); } for (int x = -1;; x--) { int pixel_x = grid_center.x + x * cell_size; if (pixel_x < -s.window_size.x/2) break; r.iquad(s.window_offset + ivec2(pixel_x,-s.window_size.y/2), ivec2(1,s.window_size.y)).color(grid_color).alpha(GetLineAlpha(grid_center_cell.x - x)); } for (int y = 0;; y++) { int pixel_y = grid_center.y + y * cell_size; if (pixel_y > s.window_size.y/2) break; r.iquad(s.window_offset + ivec2(-s.window_size.x/2,pixel_y), ivec2(s.window_size.x,1)).color(grid_color).alpha(GetLineAlpha(grid_center_cell.y - y)); } for (int y = -1;; y--) { int pixel_y = grid_center.y + y * cell_size; if (pixel_y < -s.window_size.y/2) break; r.iquad(s.window_offset + ivec2(-s.window_size.x/2,pixel_y), ivec2(s.window_size.x,1)).color(grid_color).alpha(GetLineAlpha(grid_center_cell.y - y)); } } // Toolbar if (s.partially_extended) { { // Buttons s.buttons.ForEachButton([&](const State::Button &button) { r.iquad(button.pos + s.frame_offset, button.size).tex(s.atlas.editor_buttons.pos + button.tex_pos + ivec2(0, button.size.y * int(button.status))); }); } { // Minimap constexpr fvec3 color_bg = fvec3(0,20,40)/255, color_border = fvec3(0,80,160)/255, color_marker_border(0.75), color_marker_bg(0.2); constexpr float alpha_bg = 0.5; ivec2 minimap_size(s.panel_h - 6); minimap_size.x = minimap_size.x * s.area_size.x / s.area_size.y; ivec2 minimap_pos(s.frame_offset.x + s.window_size_with_panel.x/2 - minimap_size.x - 4, s.frame_offset.y - s.window_size_with_panel.y/2 + 4); // Background r.iquad(minimap_pos, minimap_size).color(color_bg).alpha(alpha_bg); // Border Draw::RectFrame(minimap_pos-1, minimap_size+2, 1, false, color_border); ivec2 rect_size = iround(s.window_size / fvec2(s.area_size) * minimap_size); fvec2 relative_view_offset = (s.view_offset - s.min_view_offset) / fvec2(s.max_view_offset -s.min_view_offset); ivec2 rect_pos = iround((minimap_size - rect_size) * relative_view_offset); r.iquad(minimap_pos + rect_pos, rect_size).color(color_marker_border); r.iquad(minimap_pos + rect_pos+1, rect_size-2).color(color_marker_bg); } } // Circuit if (s.partially_extended) { // Set scissor box r.Finish(); Graphics::Scissor::Enable(); FINALLY( r.Finish(); Graphics::Scissor::Disable(); ) Graphics::Scissor::SetBounds_FlipY(screen_size/2 + s.window_offset - s.window_size/2, s.window_size, screen_size.y); // Render nodes for (const NodeStorage &node : circuit.nodes) { if (((node->pos - s.view_offset).abs() > s.window_size/2 + node->GetVisualHalfExtent()).any()) continue; node->Render(s.window_offset - s.view_offset); } // Render node connections for (const NodeStorage &node_ptr : circuit.nodes) { const BasicNode &dst_node = *node_ptr; int dst_point_count = dst_node.InPointCount(); for (int i = 0; i < dst_point_count; i++) { const BasicNode::InPoint &dst_point = dst_node.GetInPoint(i); for (const BasicNode::InPointCon &in_con : dst_point.connections) { const BasicNode &src_node = *circuit.FindNodeOrThrow(in_con.ids.node); const BasicNode::OutPoint &src_point = src_node.GetOutPoint(in_con.ids.point); BasicNode::DrawConnection(s.window_offset, src_node.pos + src_point.info->offset_to_node - s.view_offset, dst_node.pos + dst_point.info->offset_to_node - s.view_offset, in_con.is_inverted, src_point.is_powered ^ in_con.is_inverted, src_point.info->visual_radius + src_point.info->extra_out_visual_radius, dst_point.info->visual_radius); } } } // Render a connection that's being created if (s.now_creating_node_connection) { const BasicNode &src_node = *circuit.nodes[s.node_connection_src_node_index]; const BasicNode::OutPoint &src_point = src_node.GetOutPoint(s.node_connection_src_point_index); float visual_radius = src_point.info->visual_radius + src_point.info->extra_out_visual_radius; BasicNode::DrawConnection(s.window_offset, src_node.pos + src_point.info->offset_to_node - s.view_offset, mouse.pos() - s.window_offset, s.create_inverted_connections, false, visual_radius, 0); } // Indicators on selected nodes for (size_t index : s.selected_node_indices) { const BasicNode &node = *circuit.nodes[index]; ivec2 half_extent = node.GetVisualHalfExtent() + 2; Draw::RectFrame(s.window_offset + node.pos - s.view_offset - half_extent+1, half_extent*2-1, 1, true, fvec3(31,240,255)/255, 143/255.f); } // Indicator on a hovered node if (s.game_state == GameState::stopped && s.hovering_over_node_index != size_t(-1) && !s.now_creating_rect_selection && !s.now_dragging_selected_nodes && (!s.eraser_mode || mouse.left.up() || !s.now_erasing_connections_instead_of_nodes)) { const BasicNode &node = *circuit.nodes[s.hovering_over_node_index]; ivec2 half_extent = node.GetVisualHalfExtent() + 3; fvec4 color = s.held_node || s.eraser_mode ? fvec4(1,55/255.f,0,0.5) : fvec4(0,81,255,100)/255.f; Draw::RectFrame(s.window_offset + node.pos - s.view_offset - half_extent+1, half_extent*2-1, 1, true, color.to_vec3(), color.a); } // Indicator on a hovered connection (when in eraser mode) if (s.eraser_mode && s.erasing_node_connection_node_index != size_t(-1) && s.erasing_node_connection_con_index != -1) { constexpr float half_size = 2; constexpr fvec3 frame_color(1,55/255.f,0); constexpr float frame_alpha = 0.5; fvec2 a = s.erasing_node_connection_pos_a - s.view_offset + s.window_offset; fvec2 b = s.erasing_node_connection_pos_b - s.view_offset + s.window_offset; fvec2 delta = b - a; float dist = clamp_min(delta.len(), 1); fvec2 dir = delta / dist; fvec2 normal = dir.rot90(); r.fquad(a + 0.5, fvec2(dist, half_size * 2 - 1)).center(fvec2(0, half_size - 0.5)).matrix(fmat2(dir, normal)).color(frame_color).alpha(frame_alpha); } // Rectangular selection if (s.now_creating_rect_selection && s.rect_selection_size != 1) { fvec4 color = s.eraser_mode ? fvec4(1,55/255.f,0,0.5) : fvec4(71,243,255,173)/255; Draw::RectFrame(s.rect_selection_pos - s.view_offset + s.window_offset, s.rect_selection_size, 1, true, color.to_vec3(), color.a); } } // Active node or tool if (s.partially_extended && s.mouse_in_window) { // A node if (s.held_node) { // The node itself s.held_node->Render(mouse.pos() + s.frame_offset); // And indicator r.iquad(s.frame_offset + mouse.pos() + ivec2(5), s.atlas.cursor.region(ivec2(16,0), ivec2(16))).center(); } // Eraser indicator if (s.eraser_mode) r.iquad(s.frame_offset + mouse.pos() + ivec2(5), s.atlas.cursor.region(ivec2(32,0), ivec2(16))).center(); // Selection modifier if (!s.held_node && !s.eraser_mode) { if (s.selection_add_modifier_down) r.iquad(s.frame_offset + mouse.pos() + ivec2(5), s.atlas.cursor.region(ivec2(48,0), ivec2(16))).center(); else if (s.selection_subtract_modifier_down) r.iquad(s.frame_offset + mouse.pos() + ivec2(5), s.atlas.cursor.region(ivec2(64,0), ivec2(16))).center(); } } // Frame if (s.partially_extended) r.iquad(s.frame_offset, s.atlas.editor_frame).center(); } void Editor::RenderCursor() const { const State &s = *state; // Cursor if (s.partially_extended) { if (window.HasMouseFocus()) r.iquad(mouse.pos(), s.atlas.cursor.region(ivec2(0), ivec2(16))).center().alpha(smoothstep(pow(s.open_close_state, 1.5))); } } }
ed848f9aa685941e8eb356985dd687255eded134
d3f777d3be5714ca2f627faef865022a757818c8
/catkin_limo_workspace/devel/include/rosinterface_handler/DefaultsConfig.h
bab0b02b2cceaaab8fc6939624ccb013eea94864
[]
no_license
Bill-Deng/limo_code
3567c1ba8acfe5745fe86f0320cb009a10105dba
7304de6f940e8c840f7efaea0670e05f19edcc69
refs/heads/master
2021-01-09T20:06:53.445371
2020-02-23T02:54:23
2020-02-23T02:54:23
242,442,778
0
0
null
null
null
null
UTF-8
C++
false
false
62,407
h
DefaultsConfig.h
//#line 2 "/opt/ros/melodic/share/dynamic_reconfigure/cmake/../templates/ConfigType.h.template" // ********************************************************* // // File autogenerated for the rosinterface_handler package // by the dynamic_reconfigure package. // Please do not edit. // // ********************************************************/ #ifndef __rosinterface_handler__DEFAULTSCONFIG_H__ #define __rosinterface_handler__DEFAULTSCONFIG_H__ #if __cplusplus >= 201103L #define DYNAMIC_RECONFIGURE_FINAL final #else #define DYNAMIC_RECONFIGURE_FINAL #endif #include <dynamic_reconfigure/config_tools.h> #include <limits> #include <ros/node_handle.h> #include <dynamic_reconfigure/ConfigDescription.h> #include <dynamic_reconfigure/ParamDescription.h> #include <dynamic_reconfigure/Group.h> #include <dynamic_reconfigure/config_init_mutex.h> #include <boost/any.hpp> namespace rosinterface_handler { class DefaultsConfigStatics; class DefaultsConfig { public: class AbstractParamDescription : public dynamic_reconfigure::ParamDescription { public: AbstractParamDescription(std::string n, std::string t, uint32_t l, std::string d, std::string e) { name = n; type = t; level = l; description = d; edit_method = e; } virtual void clamp(DefaultsConfig &config, const DefaultsConfig &max, const DefaultsConfig &min) const = 0; virtual void calcLevel(uint32_t &level, const DefaultsConfig &config1, const DefaultsConfig &config2) const = 0; virtual void fromServer(const ros::NodeHandle &nh, DefaultsConfig &config) const = 0; virtual void toServer(const ros::NodeHandle &nh, const DefaultsConfig &config) const = 0; virtual bool fromMessage(const dynamic_reconfigure::Config &msg, DefaultsConfig &config) const = 0; virtual void toMessage(dynamic_reconfigure::Config &msg, const DefaultsConfig &config) const = 0; virtual void getValue(const DefaultsConfig &config, boost::any &val) const = 0; }; typedef boost::shared_ptr<AbstractParamDescription> AbstractParamDescriptionPtr; typedef boost::shared_ptr<const AbstractParamDescription> AbstractParamDescriptionConstPtr; // Final keyword added to class because it has virtual methods and inherits // from a class with a non-virtual destructor. template <class T> class ParamDescription DYNAMIC_RECONFIGURE_FINAL : public AbstractParamDescription { public: ParamDescription(std::string a_name, std::string a_type, uint32_t a_level, std::string a_description, std::string a_edit_method, T DefaultsConfig::* a_f) : AbstractParamDescription(a_name, a_type, a_level, a_description, a_edit_method), field(a_f) {} T (DefaultsConfig::* field); virtual void clamp(DefaultsConfig &config, const DefaultsConfig &max, const DefaultsConfig &min) const { if (config.*field > max.*field) config.*field = max.*field; if (config.*field < min.*field) config.*field = min.*field; } virtual void calcLevel(uint32_t &comb_level, const DefaultsConfig &config1, const DefaultsConfig &config2) const { if (config1.*field != config2.*field) comb_level |= level; } virtual void fromServer(const ros::NodeHandle &nh, DefaultsConfig &config) const { nh.getParam(name, config.*field); } virtual void toServer(const ros::NodeHandle &nh, const DefaultsConfig &config) const { nh.setParam(name, config.*field); } virtual bool fromMessage(const dynamic_reconfigure::Config &msg, DefaultsConfig &config) const { return dynamic_reconfigure::ConfigTools::getParameter(msg, name, config.*field); } virtual void toMessage(dynamic_reconfigure::Config &msg, const DefaultsConfig &config) const { dynamic_reconfigure::ConfigTools::appendParameter(msg, name, config.*field); } virtual void getValue(const DefaultsConfig &config, boost::any &val) const { val = config.*field; } }; class AbstractGroupDescription : public dynamic_reconfigure::Group { public: AbstractGroupDescription(std::string n, std::string t, int p, int i, bool s) { name = n; type = t; parent = p; state = s; id = i; } std::vector<AbstractParamDescriptionConstPtr> abstract_parameters; bool state; virtual void toMessage(dynamic_reconfigure::Config &msg, const boost::any &config) const = 0; virtual bool fromMessage(const dynamic_reconfigure::Config &msg, boost::any &config) const =0; virtual void updateParams(boost::any &cfg, DefaultsConfig &top) const= 0; virtual void setInitialState(boost::any &cfg) const = 0; void convertParams() { for(std::vector<AbstractParamDescriptionConstPtr>::const_iterator i = abstract_parameters.begin(); i != abstract_parameters.end(); ++i) { parameters.push_back(dynamic_reconfigure::ParamDescription(**i)); } } }; typedef boost::shared_ptr<AbstractGroupDescription> AbstractGroupDescriptionPtr; typedef boost::shared_ptr<const AbstractGroupDescription> AbstractGroupDescriptionConstPtr; // Final keyword added to class because it has virtual methods and inherits // from a class with a non-virtual destructor. template<class T, class PT> class GroupDescription DYNAMIC_RECONFIGURE_FINAL : public AbstractGroupDescription { public: GroupDescription(std::string a_name, std::string a_type, int a_parent, int a_id, bool a_s, T PT::* a_f) : AbstractGroupDescription(a_name, a_type, a_parent, a_id, a_s), field(a_f) { } GroupDescription(const GroupDescription<T, PT>& g): AbstractGroupDescription(g.name, g.type, g.parent, g.id, g.state), field(g.field), groups(g.groups) { parameters = g.parameters; abstract_parameters = g.abstract_parameters; } virtual bool fromMessage(const dynamic_reconfigure::Config &msg, boost::any &cfg) const { PT* config = boost::any_cast<PT*>(cfg); if(!dynamic_reconfigure::ConfigTools::getGroupState(msg, name, (*config).*field)) return false; for(std::vector<AbstractGroupDescriptionConstPtr>::const_iterator i = groups.begin(); i != groups.end(); ++i) { boost::any n = &((*config).*field); if(!(*i)->fromMessage(msg, n)) return false; } return true; } virtual void setInitialState(boost::any &cfg) const { PT* config = boost::any_cast<PT*>(cfg); T* group = &((*config).*field); group->state = state; for(std::vector<AbstractGroupDescriptionConstPtr>::const_iterator i = groups.begin(); i != groups.end(); ++i) { boost::any n = boost::any(&((*config).*field)); (*i)->setInitialState(n); } } virtual void updateParams(boost::any &cfg, DefaultsConfig &top) const { PT* config = boost::any_cast<PT*>(cfg); T* f = &((*config).*field); f->setParams(top, abstract_parameters); for(std::vector<AbstractGroupDescriptionConstPtr>::const_iterator i = groups.begin(); i != groups.end(); ++i) { boost::any n = &((*config).*field); (*i)->updateParams(n, top); } } virtual void toMessage(dynamic_reconfigure::Config &msg, const boost::any &cfg) const { const PT config = boost::any_cast<PT>(cfg); dynamic_reconfigure::ConfigTools::appendGroup<T>(msg, name, id, parent, config.*field); for(std::vector<AbstractGroupDescriptionConstPtr>::const_iterator i = groups.begin(); i != groups.end(); ++i) { (*i)->toMessage(msg, config.*field); } } T (PT::* field); std::vector<DefaultsConfig::AbstractGroupDescriptionConstPtr> groups; }; class DEFAULT { public: DEFAULT() { state = true; name = "Default"; } void setParams(DefaultsConfig &config, const std::vector<AbstractParamDescriptionConstPtr> params) { for (std::vector<AbstractParamDescriptionConstPtr>::const_iterator _i = params.begin(); _i != params.end(); ++_i) { boost::any val; (*_i)->getValue(config, val); if("int_param_w_default"==(*_i)->name){int_param_w_default = boost::any_cast<int>(val);} if("enum_int_param_w_default"==(*_i)->name){enum_int_param_w_default = boost::any_cast<int>(val);} if("enum_str_param_w_default"==(*_i)->name){enum_str_param_w_default = boost::any_cast<std::string>(val);} if("publisher_w_default_topic"==(*_i)->name){publisher_w_default_topic = boost::any_cast<std::string>(val);} if("publisher_w_default_queue_size"==(*_i)->name){publisher_w_default_queue_size = boost::any_cast<int>(val);} if("publisher_diag_w_default_topic"==(*_i)->name){publisher_diag_w_default_topic = boost::any_cast<std::string>(val);} if("publisher_diag_w_default_queue_size"==(*_i)->name){publisher_diag_w_default_queue_size = boost::any_cast<int>(val);} if("publisher_diag_w_default_min_frequency"==(*_i)->name){publisher_diag_w_default_min_frequency = boost::any_cast<double>(val);} if("publisher_diag_w_default_max_delay"==(*_i)->name){publisher_diag_w_default_max_delay = boost::any_cast<double>(val);} if("publisher_public_w_default_topic"==(*_i)->name){publisher_public_w_default_topic = boost::any_cast<std::string>(val);} if("publisher_public_w_default_queue_size"==(*_i)->name){publisher_public_w_default_queue_size = boost::any_cast<int>(val);} if("publisher_global_w_default_topic"==(*_i)->name){publisher_global_w_default_topic = boost::any_cast<std::string>(val);} if("publisher_global_w_default_queue_size"==(*_i)->name){publisher_global_w_default_queue_size = boost::any_cast<int>(val);} if("subscriber_w_default_topic"==(*_i)->name){subscriber_w_default_topic = boost::any_cast<std::string>(val);} if("subscriber_w_default_queue_size"==(*_i)->name){subscriber_w_default_queue_size = boost::any_cast<int>(val);} if("subscriber_diag_w_default_topic"==(*_i)->name){subscriber_diag_w_default_topic = boost::any_cast<std::string>(val);} if("subscriber_diag_w_default_queue_size"==(*_i)->name){subscriber_diag_w_default_queue_size = boost::any_cast<int>(val);} if("subscriber_diag_w_default_min_frequency"==(*_i)->name){subscriber_diag_w_default_min_frequency = boost::any_cast<double>(val);} if("subscriber_diag_w_default_max_delay"==(*_i)->name){subscriber_diag_w_default_max_delay = boost::any_cast<double>(val);} if("subscriber_public_w_default_topic"==(*_i)->name){subscriber_public_w_default_topic = boost::any_cast<std::string>(val);} if("subscriber_public_w_default_queue_size"==(*_i)->name){subscriber_public_w_default_queue_size = boost::any_cast<int>(val);} if("subscriber_global_w_default_topic"==(*_i)->name){subscriber_global_w_default_topic = boost::any_cast<std::string>(val);} if("subscriber_global_w_default_queue_size"==(*_i)->name){subscriber_global_w_default_queue_size = boost::any_cast<int>(val);} if("subscriber_smart_topic"==(*_i)->name){subscriber_smart_topic = boost::any_cast<std::string>(val);} if("subscriber_smart_queue_size"==(*_i)->name){subscriber_smart_queue_size = boost::any_cast<int>(val);} } } int int_param_w_default; int enum_int_param_w_default; std::string enum_str_param_w_default; std::string publisher_w_default_topic; int publisher_w_default_queue_size; std::string publisher_diag_w_default_topic; int publisher_diag_w_default_queue_size; double publisher_diag_w_default_min_frequency; double publisher_diag_w_default_max_delay; std::string publisher_public_w_default_topic; int publisher_public_w_default_queue_size; std::string publisher_global_w_default_topic; int publisher_global_w_default_queue_size; std::string subscriber_w_default_topic; int subscriber_w_default_queue_size; std::string subscriber_diag_w_default_topic; int subscriber_diag_w_default_queue_size; double subscriber_diag_w_default_min_frequency; double subscriber_diag_w_default_max_delay; std::string subscriber_public_w_default_topic; int subscriber_public_w_default_queue_size; std::string subscriber_global_w_default_topic; int subscriber_global_w_default_queue_size; std::string subscriber_smart_topic; int subscriber_smart_queue_size; bool state; std::string name; }groups; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" int int_param_w_default; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" int enum_int_param_w_default; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" std::string enum_str_param_w_default; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" std::string publisher_w_default_topic; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" int publisher_w_default_queue_size; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" std::string publisher_diag_w_default_topic; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" int publisher_diag_w_default_queue_size; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" double publisher_diag_w_default_min_frequency; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" double publisher_diag_w_default_max_delay; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" std::string publisher_public_w_default_topic; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" int publisher_public_w_default_queue_size; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" std::string publisher_global_w_default_topic; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" int publisher_global_w_default_queue_size; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" std::string subscriber_w_default_topic; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" int subscriber_w_default_queue_size; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" std::string subscriber_diag_w_default_topic; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" int subscriber_diag_w_default_queue_size; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" double subscriber_diag_w_default_min_frequency; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" double subscriber_diag_w_default_max_delay; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" std::string subscriber_public_w_default_topic; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" int subscriber_public_w_default_queue_size; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" std::string subscriber_global_w_default_topic; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" int subscriber_global_w_default_queue_size; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" std::string subscriber_smart_topic; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" int subscriber_smart_queue_size; //#line 228 "/opt/ros/melodic/share/dynamic_reconfigure/cmake/../templates/ConfigType.h.template" bool __fromMessage__(dynamic_reconfigure::Config &msg) { const std::vector<AbstractParamDescriptionConstPtr> &__param_descriptions__ = __getParamDescriptions__(); const std::vector<AbstractGroupDescriptionConstPtr> &__group_descriptions__ = __getGroupDescriptions__(); int count = 0; for (std::vector<AbstractParamDescriptionConstPtr>::const_iterator i = __param_descriptions__.begin(); i != __param_descriptions__.end(); ++i) if ((*i)->fromMessage(msg, *this)) count++; for (std::vector<AbstractGroupDescriptionConstPtr>::const_iterator i = __group_descriptions__.begin(); i != __group_descriptions__.end(); i ++) { if ((*i)->id == 0) { boost::any n = boost::any(this); (*i)->updateParams(n, *this); (*i)->fromMessage(msg, n); } } if (count != dynamic_reconfigure::ConfigTools::size(msg)) { ROS_ERROR("DefaultsConfig::__fromMessage__ called with an unexpected parameter."); ROS_ERROR("Booleans:"); for (unsigned int i = 0; i < msg.bools.size(); i++) ROS_ERROR(" %s", msg.bools[i].name.c_str()); ROS_ERROR("Integers:"); for (unsigned int i = 0; i < msg.ints.size(); i++) ROS_ERROR(" %s", msg.ints[i].name.c_str()); ROS_ERROR("Doubles:"); for (unsigned int i = 0; i < msg.doubles.size(); i++) ROS_ERROR(" %s", msg.doubles[i].name.c_str()); ROS_ERROR("Strings:"); for (unsigned int i = 0; i < msg.strs.size(); i++) ROS_ERROR(" %s", msg.strs[i].name.c_str()); // @todo Check that there are no duplicates. Make this error more // explicit. return false; } return true; } // This version of __toMessage__ is used during initialization of // statics when __getParamDescriptions__ can't be called yet. void __toMessage__(dynamic_reconfigure::Config &msg, const std::vector<AbstractParamDescriptionConstPtr> &__param_descriptions__, const std::vector<AbstractGroupDescriptionConstPtr> &__group_descriptions__) const { dynamic_reconfigure::ConfigTools::clear(msg); for (std::vector<AbstractParamDescriptionConstPtr>::const_iterator i = __param_descriptions__.begin(); i != __param_descriptions__.end(); ++i) (*i)->toMessage(msg, *this); for (std::vector<AbstractGroupDescriptionConstPtr>::const_iterator i = __group_descriptions__.begin(); i != __group_descriptions__.end(); ++i) { if((*i)->id == 0) { (*i)->toMessage(msg, *this); } } } void __toMessage__(dynamic_reconfigure::Config &msg) const { const std::vector<AbstractParamDescriptionConstPtr> &__param_descriptions__ = __getParamDescriptions__(); const std::vector<AbstractGroupDescriptionConstPtr> &__group_descriptions__ = __getGroupDescriptions__(); __toMessage__(msg, __param_descriptions__, __group_descriptions__); } void __toServer__(const ros::NodeHandle &nh) const { const std::vector<AbstractParamDescriptionConstPtr> &__param_descriptions__ = __getParamDescriptions__(); for (std::vector<AbstractParamDescriptionConstPtr>::const_iterator i = __param_descriptions__.begin(); i != __param_descriptions__.end(); ++i) (*i)->toServer(nh, *this); } void __fromServer__(const ros::NodeHandle &nh) { static bool setup=false; const std::vector<AbstractParamDescriptionConstPtr> &__param_descriptions__ = __getParamDescriptions__(); for (std::vector<AbstractParamDescriptionConstPtr>::const_iterator i = __param_descriptions__.begin(); i != __param_descriptions__.end(); ++i) (*i)->fromServer(nh, *this); const std::vector<AbstractGroupDescriptionConstPtr> &__group_descriptions__ = __getGroupDescriptions__(); for (std::vector<AbstractGroupDescriptionConstPtr>::const_iterator i = __group_descriptions__.begin(); i != __group_descriptions__.end(); i++){ if (!setup && (*i)->id == 0) { setup = true; boost::any n = boost::any(this); (*i)->setInitialState(n); } } } void __clamp__() { const std::vector<AbstractParamDescriptionConstPtr> &__param_descriptions__ = __getParamDescriptions__(); const DefaultsConfig &__max__ = __getMax__(); const DefaultsConfig &__min__ = __getMin__(); for (std::vector<AbstractParamDescriptionConstPtr>::const_iterator i = __param_descriptions__.begin(); i != __param_descriptions__.end(); ++i) (*i)->clamp(*this, __max__, __min__); } uint32_t __level__(const DefaultsConfig &config) const { const std::vector<AbstractParamDescriptionConstPtr> &__param_descriptions__ = __getParamDescriptions__(); uint32_t level = 0; for (std::vector<AbstractParamDescriptionConstPtr>::const_iterator i = __param_descriptions__.begin(); i != __param_descriptions__.end(); ++i) (*i)->calcLevel(level, config, *this); return level; } static const dynamic_reconfigure::ConfigDescription &__getDescriptionMessage__(); static const DefaultsConfig &__getDefault__(); static const DefaultsConfig &__getMax__(); static const DefaultsConfig &__getMin__(); static const std::vector<AbstractParamDescriptionConstPtr> &__getParamDescriptions__(); static const std::vector<AbstractGroupDescriptionConstPtr> &__getGroupDescriptions__(); private: static const DefaultsConfigStatics *__get_statics__(); }; template <> // Max and min are ignored for strings. inline void DefaultsConfig::ParamDescription<std::string>::clamp(DefaultsConfig &config, const DefaultsConfig &max, const DefaultsConfig &min) const { (void) config; (void) min; (void) max; return; } class DefaultsConfigStatics { friend class DefaultsConfig; DefaultsConfigStatics() { DefaultsConfig::GroupDescription<DefaultsConfig::DEFAULT, DefaultsConfig> Default("Default", "", 0, 0, true, &DefaultsConfig::groups); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.int_param_w_default = -2147483648; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.int_param_w_default = 2147483647; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.int_param_w_default = 1; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("int_param_w_default", "int", 0, "An Integer parameter", "", &DefaultsConfig::int_param_w_default))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("int_param_w_default", "int", 0, "An Integer parameter", "", &DefaultsConfig::int_param_w_default))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.enum_int_param_w_default = -2147483648; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.enum_int_param_w_default = 2147483647; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.enum_int_param_w_default = 1; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("enum_int_param_w_default", "int", 0, "enum", "{'enum_description': 'enum', 'enum': [{'srcline': 15, 'description': '', 'srcfile': '/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg', 'cconsttype': 'const int', 'value': 0, 'ctype': 'int', 'type': 'int', 'name': 'Small'}, {'srcline': 16, 'description': '', 'srcfile': '/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg', 'cconsttype': 'const int', 'value': 1, 'ctype': 'int', 'type': 'int', 'name': 'Medium'}, {'srcline': 17, 'description': '', 'srcfile': '/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg', 'cconsttype': 'const int', 'value': 2, 'ctype': 'int', 'type': 'int', 'name': 'Large'}, {'srcline': 18, 'description': '', 'srcfile': '/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg', 'cconsttype': 'const int', 'value': 3, 'ctype': 'int', 'type': 'int', 'name': 'ExtraLarge'}]}", &DefaultsConfig::enum_int_param_w_default))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("enum_int_param_w_default", "int", 0, "enum", "{'enum_description': 'enum', 'enum': [{'srcline': 15, 'description': '', 'srcfile': '/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg', 'cconsttype': 'const int', 'value': 0, 'ctype': 'int', 'type': 'int', 'name': 'Small'}, {'srcline': 16, 'description': '', 'srcfile': '/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg', 'cconsttype': 'const int', 'value': 1, 'ctype': 'int', 'type': 'int', 'name': 'Medium'}, {'srcline': 17, 'description': '', 'srcfile': '/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg', 'cconsttype': 'const int', 'value': 2, 'ctype': 'int', 'type': 'int', 'name': 'Large'}, {'srcline': 18, 'description': '', 'srcfile': '/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg', 'cconsttype': 'const int', 'value': 3, 'ctype': 'int', 'type': 'int', 'name': 'ExtraLarge'}]}", &DefaultsConfig::enum_int_param_w_default))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.enum_str_param_w_default = ""; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.enum_str_param_w_default = ""; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.enum_str_param_w_default = "One"; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<std::string>("enum_str_param_w_default", "str", 0, "string enum", "{'enum_description': 'string enum', 'enum': [{'srcline': 21, 'description': '', 'srcfile': '/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg', 'cconsttype': 'const char * const', 'value': 'Zero', 'ctype': 'std::string', 'type': 'str', 'name': 'Zero'}, {'srcline': 22, 'description': '', 'srcfile': '/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg', 'cconsttype': 'const char * const', 'value': 'One', 'ctype': 'std::string', 'type': 'str', 'name': 'One'}, {'srcline': 23, 'description': '', 'srcfile': '/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg', 'cconsttype': 'const char * const', 'value': 'Two', 'ctype': 'std::string', 'type': 'str', 'name': 'Two'}, {'srcline': 24, 'description': '', 'srcfile': '/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg', 'cconsttype': 'const char * const', 'value': 'Three', 'ctype': 'std::string', 'type': 'str', 'name': 'Three'}]}", &DefaultsConfig::enum_str_param_w_default))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<std::string>("enum_str_param_w_default", "str", 0, "string enum", "{'enum_description': 'string enum', 'enum': [{'srcline': 21, 'description': '', 'srcfile': '/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg', 'cconsttype': 'const char * const', 'value': 'Zero', 'ctype': 'std::string', 'type': 'str', 'name': 'Zero'}, {'srcline': 22, 'description': '', 'srcfile': '/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg', 'cconsttype': 'const char * const', 'value': 'One', 'ctype': 'std::string', 'type': 'str', 'name': 'One'}, {'srcline': 23, 'description': '', 'srcfile': '/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg', 'cconsttype': 'const char * const', 'value': 'Two', 'ctype': 'std::string', 'type': 'str', 'name': 'Two'}, {'srcline': 24, 'description': '', 'srcfile': '/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg', 'cconsttype': 'const char * const', 'value': 'Three', 'ctype': 'std::string', 'type': 'str', 'name': 'Three'}]}", &DefaultsConfig::enum_str_param_w_default))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.publisher_w_default_topic = ""; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.publisher_w_default_topic = ""; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.publisher_w_default_topic = "out_topic"; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<std::string>("publisher_w_default_topic", "str", 0, "Topic for publisher", "", &DefaultsConfig::publisher_w_default_topic))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<std::string>("publisher_w_default_topic", "str", 0, "Topic for publisher", "", &DefaultsConfig::publisher_w_default_topic))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.publisher_w_default_queue_size = 0; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.publisher_w_default_queue_size = 2147483647; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.publisher_w_default_queue_size = 5; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("publisher_w_default_queue_size", "int", 0, "Queue size for publisher", "", &DefaultsConfig::publisher_w_default_queue_size))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("publisher_w_default_queue_size", "int", 0, "Queue size for publisher", "", &DefaultsConfig::publisher_w_default_queue_size))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.publisher_diag_w_default_topic = ""; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.publisher_diag_w_default_topic = ""; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.publisher_diag_w_default_topic = "out_point_topic"; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<std::string>("publisher_diag_w_default_topic", "str", 0, "Topic for publisher", "", &DefaultsConfig::publisher_diag_w_default_topic))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<std::string>("publisher_diag_w_default_topic", "str", 0, "Topic for publisher", "", &DefaultsConfig::publisher_diag_w_default_topic))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.publisher_diag_w_default_queue_size = 0; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.publisher_diag_w_default_queue_size = 2147483647; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.publisher_diag_w_default_queue_size = 5; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("publisher_diag_w_default_queue_size", "int", 0, "Queue size for publisher", "", &DefaultsConfig::publisher_diag_w_default_queue_size))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("publisher_diag_w_default_queue_size", "int", 0, "Queue size for publisher", "", &DefaultsConfig::publisher_diag_w_default_queue_size))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.publisher_diag_w_default_min_frequency = -std::numeric_limits<double>::infinity(); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.publisher_diag_w_default_min_frequency = std::numeric_limits<double>::infinity(); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.publisher_diag_w_default_min_frequency = 0.0; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<double>("publisher_diag_w_default_min_frequency", "double", 0, "Minimal message frequency for publisher", "", &DefaultsConfig::publisher_diag_w_default_min_frequency))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<double>("publisher_diag_w_default_min_frequency", "double", 0, "Minimal message frequency for publisher", "", &DefaultsConfig::publisher_diag_w_default_min_frequency))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.publisher_diag_w_default_max_delay = -std::numeric_limits<double>::infinity(); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.publisher_diag_w_default_max_delay = std::numeric_limits<double>::infinity(); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.publisher_diag_w_default_max_delay = 1e+308; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<double>("publisher_diag_w_default_max_delay", "double", 0, "Maximal delay for publisher", "", &DefaultsConfig::publisher_diag_w_default_max_delay))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<double>("publisher_diag_w_default_max_delay", "double", 0, "Maximal delay for publisher", "", &DefaultsConfig::publisher_diag_w_default_max_delay))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.publisher_public_w_default_topic = ""; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.publisher_public_w_default_topic = ""; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.publisher_public_w_default_topic = "out_topic"; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<std::string>("publisher_public_w_default_topic", "str", 0, "Topic for public publisher", "", &DefaultsConfig::publisher_public_w_default_topic))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<std::string>("publisher_public_w_default_topic", "str", 0, "Topic for public publisher", "", &DefaultsConfig::publisher_public_w_default_topic))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.publisher_public_w_default_queue_size = 0; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.publisher_public_w_default_queue_size = 2147483647; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.publisher_public_w_default_queue_size = 5; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("publisher_public_w_default_queue_size", "int", 0, "Queue size for public publisher", "", &DefaultsConfig::publisher_public_w_default_queue_size))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("publisher_public_w_default_queue_size", "int", 0, "Queue size for public publisher", "", &DefaultsConfig::publisher_public_w_default_queue_size))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.publisher_global_w_default_topic = ""; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.publisher_global_w_default_topic = ""; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.publisher_global_w_default_topic = "out_topic"; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<std::string>("publisher_global_w_default_topic", "str", 0, "Topic for global publisher", "", &DefaultsConfig::publisher_global_w_default_topic))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<std::string>("publisher_global_w_default_topic", "str", 0, "Topic for global publisher", "", &DefaultsConfig::publisher_global_w_default_topic))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.publisher_global_w_default_queue_size = 0; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.publisher_global_w_default_queue_size = 2147483647; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.publisher_global_w_default_queue_size = 5; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("publisher_global_w_default_queue_size", "int", 0, "Queue size for global publisher", "", &DefaultsConfig::publisher_global_w_default_queue_size))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("publisher_global_w_default_queue_size", "int", 0, "Queue size for global publisher", "", &DefaultsConfig::publisher_global_w_default_queue_size))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.subscriber_w_default_topic = ""; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.subscriber_w_default_topic = ""; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.subscriber_w_default_topic = "in_topic"; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<std::string>("subscriber_w_default_topic", "str", 0, "Topic for subscriber", "", &DefaultsConfig::subscriber_w_default_topic))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<std::string>("subscriber_w_default_topic", "str", 0, "Topic for subscriber", "", &DefaultsConfig::subscriber_w_default_topic))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.subscriber_w_default_queue_size = 0; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.subscriber_w_default_queue_size = 2147483647; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.subscriber_w_default_queue_size = 5; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("subscriber_w_default_queue_size", "int", 0, "Queue size for subscriber", "", &DefaultsConfig::subscriber_w_default_queue_size))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("subscriber_w_default_queue_size", "int", 0, "Queue size for subscriber", "", &DefaultsConfig::subscriber_w_default_queue_size))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.subscriber_diag_w_default_topic = ""; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.subscriber_diag_w_default_topic = ""; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.subscriber_diag_w_default_topic = "in_point_topic"; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<std::string>("subscriber_diag_w_default_topic", "str", 0, "Topic for subscriber", "", &DefaultsConfig::subscriber_diag_w_default_topic))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<std::string>("subscriber_diag_w_default_topic", "str", 0, "Topic for subscriber", "", &DefaultsConfig::subscriber_diag_w_default_topic))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.subscriber_diag_w_default_queue_size = 0; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.subscriber_diag_w_default_queue_size = 2147483647; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.subscriber_diag_w_default_queue_size = 5; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("subscriber_diag_w_default_queue_size", "int", 0, "Queue size for subscriber", "", &DefaultsConfig::subscriber_diag_w_default_queue_size))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("subscriber_diag_w_default_queue_size", "int", 0, "Queue size for subscriber", "", &DefaultsConfig::subscriber_diag_w_default_queue_size))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.subscriber_diag_w_default_min_frequency = -std::numeric_limits<double>::infinity(); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.subscriber_diag_w_default_min_frequency = std::numeric_limits<double>::infinity(); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.subscriber_diag_w_default_min_frequency = 0.0; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<double>("subscriber_diag_w_default_min_frequency", "double", 0, "Minimal message frequency for subscriber", "", &DefaultsConfig::subscriber_diag_w_default_min_frequency))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<double>("subscriber_diag_w_default_min_frequency", "double", 0, "Minimal message frequency for subscriber", "", &DefaultsConfig::subscriber_diag_w_default_min_frequency))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.subscriber_diag_w_default_max_delay = -std::numeric_limits<double>::infinity(); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.subscriber_diag_w_default_max_delay = std::numeric_limits<double>::infinity(); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.subscriber_diag_w_default_max_delay = 1e+308; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<double>("subscriber_diag_w_default_max_delay", "double", 0, "Maximal delay for subscriber", "", &DefaultsConfig::subscriber_diag_w_default_max_delay))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<double>("subscriber_diag_w_default_max_delay", "double", 0, "Maximal delay for subscriber", "", &DefaultsConfig::subscriber_diag_w_default_max_delay))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.subscriber_public_w_default_topic = ""; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.subscriber_public_w_default_topic = ""; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.subscriber_public_w_default_topic = "in_topic"; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<std::string>("subscriber_public_w_default_topic", "str", 0, "Topic for public subscriber", "", &DefaultsConfig::subscriber_public_w_default_topic))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<std::string>("subscriber_public_w_default_topic", "str", 0, "Topic for public subscriber", "", &DefaultsConfig::subscriber_public_w_default_topic))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.subscriber_public_w_default_queue_size = 0; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.subscriber_public_w_default_queue_size = 2147483647; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.subscriber_public_w_default_queue_size = 5; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("subscriber_public_w_default_queue_size", "int", 0, "Queue size for public subscriber", "", &DefaultsConfig::subscriber_public_w_default_queue_size))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("subscriber_public_w_default_queue_size", "int", 0, "Queue size for public subscriber", "", &DefaultsConfig::subscriber_public_w_default_queue_size))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.subscriber_global_w_default_topic = ""; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.subscriber_global_w_default_topic = ""; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.subscriber_global_w_default_topic = "in_topic"; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<std::string>("subscriber_global_w_default_topic", "str", 0, "Topic for global subscriber", "", &DefaultsConfig::subscriber_global_w_default_topic))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<std::string>("subscriber_global_w_default_topic", "str", 0, "Topic for global subscriber", "", &DefaultsConfig::subscriber_global_w_default_topic))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.subscriber_global_w_default_queue_size = 0; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.subscriber_global_w_default_queue_size = 2147483647; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.subscriber_global_w_default_queue_size = 5; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("subscriber_global_w_default_queue_size", "int", 0, "Queue size for global subscriber", "", &DefaultsConfig::subscriber_global_w_default_queue_size))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("subscriber_global_w_default_queue_size", "int", 0, "Queue size for global subscriber", "", &DefaultsConfig::subscriber_global_w_default_queue_size))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.subscriber_smart_topic = ""; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.subscriber_smart_topic = ""; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.subscriber_smart_topic = "in_topic2"; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<std::string>("subscriber_smart_topic", "str", 0, "Topic for smart subscriber", "", &DefaultsConfig::subscriber_smart_topic))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<std::string>("subscriber_smart_topic", "str", 0, "Topic for smart subscriber", "", &DefaultsConfig::subscriber_smart_topic))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __min__.subscriber_smart_queue_size = 0; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __max__.subscriber_smart_queue_size = 2147483647; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __default__.subscriber_smart_queue_size = 5; //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.abstract_parameters.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("subscriber_smart_queue_size", "int", 0, "Queue size for smart subscriber", "", &DefaultsConfig::subscriber_smart_queue_size))); //#line 291 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __param_descriptions__.push_back(DefaultsConfig::AbstractParamDescriptionConstPtr(new DefaultsConfig::ParamDescription<int>("subscriber_smart_queue_size", "int", 0, "Queue size for smart subscriber", "", &DefaultsConfig::subscriber_smart_queue_size))); //#line 246 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" Default.convertParams(); //#line 246 "/opt/ros/melodic/lib/python2.7/dist-packages/dynamic_reconfigure/parameter_generator_catkin.py" __group_descriptions__.push_back(DefaultsConfig::AbstractGroupDescriptionConstPtr(new DefaultsConfig::GroupDescription<DefaultsConfig::DEFAULT, DefaultsConfig>(Default))); //#line 366 "/opt/ros/melodic/share/dynamic_reconfigure/cmake/../templates/ConfigType.h.template" for (std::vector<DefaultsConfig::AbstractGroupDescriptionConstPtr>::const_iterator i = __group_descriptions__.begin(); i != __group_descriptions__.end(); ++i) { __description_message__.groups.push_back(**i); } __max__.__toMessage__(__description_message__.max, __param_descriptions__, __group_descriptions__); __min__.__toMessage__(__description_message__.min, __param_descriptions__, __group_descriptions__); __default__.__toMessage__(__description_message__.dflt, __param_descriptions__, __group_descriptions__); } std::vector<DefaultsConfig::AbstractParamDescriptionConstPtr> __param_descriptions__; std::vector<DefaultsConfig::AbstractGroupDescriptionConstPtr> __group_descriptions__; DefaultsConfig __max__; DefaultsConfig __min__; DefaultsConfig __default__; dynamic_reconfigure::ConfigDescription __description_message__; static const DefaultsConfigStatics *get_instance() { // Split this off in a separate function because I know that // instance will get initialized the first time get_instance is // called, and I am guaranteeing that get_instance gets called at // most once. static DefaultsConfigStatics instance; return &instance; } }; inline const dynamic_reconfigure::ConfigDescription &DefaultsConfig::__getDescriptionMessage__() { return __get_statics__()->__description_message__; } inline const DefaultsConfig &DefaultsConfig::__getDefault__() { return __get_statics__()->__default__; } inline const DefaultsConfig &DefaultsConfig::__getMax__() { return __get_statics__()->__max__; } inline const DefaultsConfig &DefaultsConfig::__getMin__() { return __get_statics__()->__min__; } inline const std::vector<DefaultsConfig::AbstractParamDescriptionConstPtr> &DefaultsConfig::__getParamDescriptions__() { return __get_statics__()->__param_descriptions__; } inline const std::vector<DefaultsConfig::AbstractGroupDescriptionConstPtr> &DefaultsConfig::__getGroupDescriptions__() { return __get_statics__()->__group_descriptions__; } inline const DefaultsConfigStatics *DefaultsConfig::__get_statics__() { const static DefaultsConfigStatics *statics; if (statics) // Common case return statics; boost::mutex::scoped_lock lock(dynamic_reconfigure::__init_mutex__); if (statics) // In case we lost a race. return statics; statics = DefaultsConfigStatics::get_instance(); return statics; } //#line 15 "/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg" const int Defaults_Small = 0; //#line 16 "/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg" const int Defaults_Medium = 1; //#line 17 "/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg" const int Defaults_Large = 2; //#line 18 "/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg" const int Defaults_ExtraLarge = 3; //#line 21 "/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg" const char * const Defaults_Zero = "Zero"; //#line 22 "/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg" const char * const Defaults_One = "One"; //#line 23 "/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg" const char * const Defaults_Two = "Two"; //#line 24 "/home/dlx/catkin_limo_workspace/devel/share/rosinterface_handler/cfg/Defaults.cfg" const char * const Defaults_Three = "Three"; } #undef DYNAMIC_RECONFIGURE_FINAL #endif // __DEFAULTSRECONFIGURATOR_H__
be476b7ece5e770bf73b9fd273fea357c962934a
26df6604faf41197c9ced34c3df13839be6e74d4
/src/org/apache/poi/hssf/record/FilePassRecord.cpp
ee5b85fc8aa05ffc85b5e38c1c8a8be0bdc01404
[ "Apache-2.0" ]
permissive
pebble2015/cpoi
58b4b1e38a7769b13ccfb2973270d15d490de07f
6dcc0c5e13e3e722b4ef9fd0baffbf62bf71ead6
refs/heads/master
2021-07-09T09:02:41.986901
2017-10-08T12:12:56
2017-10-08T12:12:56
105,988,119
0
0
null
null
null
null
UTF-8
C++
false
false
9,267
cpp
FilePassRecord.cpp
// Generated from /POI/java/org/apache/poi/hssf/record/FilePassRecord.java #include <org/apache/poi/hssf/record/FilePassRecord.hpp> #include <java/io/ByteArrayOutputStream.hpp> #include <java/io/IOException.hpp> #include <java/lang/ClassCastException.hpp> #include <java/lang/CloneNotSupportedException.hpp> #include <java/lang/NullPointerException.hpp> #include <java/lang/Object.hpp> #include <java/lang/String.hpp> #include <java/lang/StringBuilder.hpp> #include <java/lang/Throwable.hpp> #include <org/apache/poi/EncryptedDocumentException.hpp> #include <org/apache/poi/hssf/record/RecordInputStream.hpp> #include <org/apache/poi/poifs/crypt/EncryptionHeader.hpp> #include <org/apache/poi/poifs/crypt/EncryptionInfo.hpp> #include <org/apache/poi/poifs/crypt/EncryptionMode.hpp> #include <org/apache/poi/poifs/crypt/EncryptionVerifier.hpp> #include <org/apache/poi/poifs/crypt/binaryrc4/BinaryRC4EncryptionHeader.hpp> #include <org/apache/poi/poifs/crypt/binaryrc4/BinaryRC4EncryptionVerifier.hpp> #include <org/apache/poi/poifs/crypt/cryptoapi/CryptoAPIEncryptionHeader.hpp> #include <org/apache/poi/poifs/crypt/cryptoapi/CryptoAPIEncryptionVerifier.hpp> #include <org/apache/poi/poifs/crypt/xor_/XOREncryptionHeader.hpp> #include <org/apache/poi/poifs/crypt/xor_/XOREncryptionVerifier.hpp> #include <org/apache/poi/util/HexDump.hpp> #include <org/apache/poi/util/LittleEndianByteArrayOutputStream.hpp> #include <org/apache/poi/util/LittleEndianOutput.hpp> #include <org/apache/poi/util/LittleEndianOutputStream.hpp> #include <Array.hpp> template<typename T, typename U> static T java_cast(U* u) { if(!u) return static_cast<T>(nullptr); auto t = dynamic_cast<T>(u); if(!t) throw new ::java::lang::ClassCastException(); return t; } template<typename T> static T* npc(T* t) { if(!t) throw new ::java::lang::NullPointerException(); return t; } poi::hssf::record::FilePassRecord::FilePassRecord(const ::default_init_tag&) : super(*static_cast< ::default_init_tag* >(0)) { clinit(); } poi::hssf::record::FilePassRecord::FilePassRecord(FilePassRecord* other) : FilePassRecord(*static_cast< ::default_init_tag* >(0)) { ctor(other); } poi::hssf::record::FilePassRecord::FilePassRecord(::poi::poifs::crypt::EncryptionMode* encryptionMode) : FilePassRecord(*static_cast< ::default_init_tag* >(0)) { ctor(encryptionMode); } poi::hssf::record::FilePassRecord::FilePassRecord(RecordInputStream* in) : FilePassRecord(*static_cast< ::default_init_tag* >(0)) { ctor(in); } constexpr int16_t poi::hssf::record::FilePassRecord::sid; constexpr int32_t poi::hssf::record::FilePassRecord::ENCRYPTION_XOR; constexpr int32_t poi::hssf::record::FilePassRecord::ENCRYPTION_OTHER; void poi::hssf::record::FilePassRecord::ctor(FilePassRecord* other) { super::ctor(); encryptionType = npc(other)->encryptionType; try { encryptionInfo = npc(npc(other)->encryptionInfo)->clone(); } catch (::java::lang::CloneNotSupportedException* e) { throw new ::poi::EncryptedDocumentException(static_cast< ::java::lang::Throwable* >(e)); } } void poi::hssf::record::FilePassRecord::ctor(::poi::poifs::crypt::EncryptionMode* encryptionMode) { super::ctor(); encryptionType = (encryptionMode == ::poi::poifs::crypt::EncryptionMode::xor_) ? ENCRYPTION_XOR : ENCRYPTION_OTHER; encryptionInfo = new ::poi::poifs::crypt::EncryptionInfo(encryptionMode); } void poi::hssf::record::FilePassRecord::ctor(RecordInputStream* in) { super::ctor(); encryptionType = npc(in)->readUShort(); ::poi::poifs::crypt::EncryptionMode* preferredMode; switch (encryptionType) { case ENCRYPTION_XOR: preferredMode = ::poi::poifs::crypt::EncryptionMode::xor_; break; case ENCRYPTION_OTHER: preferredMode = ::poi::poifs::crypt::EncryptionMode::cryptoAPI; break; default: throw new ::poi::EncryptedDocumentException(u"invalid encryption type"_j); } try { encryptionInfo = new ::poi::poifs::crypt::EncryptionInfo(in, preferredMode); } catch (::java::io::IOException* e) { throw new ::poi::EncryptedDocumentException(static_cast< ::java::lang::Throwable* >(e)); } } void poi::hssf::record::FilePassRecord::serialize(::poi::util::LittleEndianOutput* out) { npc(out)->writeShort(encryptionType); auto data = new ::int8_tArray(int32_t(1024)); auto bos = new ::poi::util::LittleEndianByteArrayOutputStream(data, int32_t(0)); { auto v = npc(encryptionInfo)->getEncryptionMode(); if((v == ::poi::poifs::crypt::EncryptionMode::xor_)) { npc((java_cast< ::poi::poifs::crypt::xor_::XOREncryptionHeader* >(npc(encryptionInfo)->getHeader())))->write(bos); npc((java_cast< ::poi::poifs::crypt::xor_::XOREncryptionVerifier* >(npc(encryptionInfo)->getVerifier())))->write(bos); goto end_switch0;; } if((v == ::poi::poifs::crypt::EncryptionMode::binaryRC4)) { npc(out)->writeShort(npc(encryptionInfo)->getVersionMajor()); npc(out)->writeShort(npc(encryptionInfo)->getVersionMinor()); npc((java_cast< ::poi::poifs::crypt::binaryrc4::BinaryRC4EncryptionHeader* >(npc(encryptionInfo)->getHeader())))->write(bos); npc((java_cast< ::poi::poifs::crypt::binaryrc4::BinaryRC4EncryptionVerifier* >(npc(encryptionInfo)->getVerifier())))->write(bos); goto end_switch0;; } if((v == ::poi::poifs::crypt::EncryptionMode::cryptoAPI)) { npc(out)->writeShort(npc(encryptionInfo)->getVersionMajor()); npc(out)->writeShort(npc(encryptionInfo)->getVersionMinor()); npc(out)->writeInt(npc(encryptionInfo)->getEncryptionFlags()); npc((java_cast< ::poi::poifs::crypt::cryptoapi::CryptoAPIEncryptionHeader* >(npc(encryptionInfo)->getHeader())))->write(bos); npc((java_cast< ::poi::poifs::crypt::cryptoapi::CryptoAPIEncryptionVerifier* >(npc(encryptionInfo)->getVerifier())))->write(bos); goto end_switch0;; } if((((v != ::poi::poifs::crypt::EncryptionMode::xor_) && (v != ::poi::poifs::crypt::EncryptionMode::binaryRC4) && (v != ::poi::poifs::crypt::EncryptionMode::cryptoAPI)))) { throw new ::poi::EncryptedDocumentException(u"not supported"_j); } end_switch0:; } npc(out)->write(data, 0, npc(bos)->getWriteIndex()); } int32_t poi::hssf::record::FilePassRecord::getDataSize() { auto bos = new ::java::io::ByteArrayOutputStream(); auto leos = new ::poi::util::LittleEndianOutputStream(bos); serialize(static_cast< ::poi::util::LittleEndianOutput* >(leos)); return npc(bos)->size(); } poi::poifs::crypt::EncryptionInfo* poi::hssf::record::FilePassRecord::getEncryptionInfo() { return encryptionInfo; } int16_t poi::hssf::record::FilePassRecord::getSid() { return sid; } poi::hssf::record::FilePassRecord* poi::hssf::record::FilePassRecord::clone() { return new FilePassRecord(this); } java::lang::String* poi::hssf::record::FilePassRecord::toString() { auto buffer = new ::java::lang::StringBuilder(); npc(buffer)->append(u"[FILEPASS]\n"_j); npc(npc(npc(buffer)->append(u" .type = "_j))->append(::poi::util::HexDump::shortToHex(encryptionType)))->append(u'\u000a'); auto prefix = ::java::lang::StringBuilder().append(u" ."_j)->append(static_cast< ::java::lang::Object* >(npc(encryptionInfo)->getEncryptionMode()))->toString(); npc(npc(npc(buffer)->append(::java::lang::StringBuilder().append(prefix)->append(u".info = "_j)->toString()))->append(::poi::util::HexDump::shortToHex(npc(encryptionInfo)->getVersionMajor())))->append(u'\u000a'); npc(npc(npc(buffer)->append(::java::lang::StringBuilder().append(prefix)->append(u".ver = "_j)->toString()))->append(::poi::util::HexDump::shortToHex(npc(encryptionInfo)->getVersionMinor())))->append(u'\u000a'); npc(npc(npc(buffer)->append(::java::lang::StringBuilder().append(prefix)->append(u".salt = "_j)->toString()))->append(::poi::util::HexDump::toHex(npc(npc(encryptionInfo)->getVerifier())->getSalt())))->append(u'\u000a'); npc(npc(npc(buffer)->append(::java::lang::StringBuilder().append(prefix)->append(u".verifier = "_j)->toString()))->append(::poi::util::HexDump::toHex(npc(npc(encryptionInfo)->getVerifier())->getEncryptedVerifier())))->append(u'\u000a'); npc(npc(npc(buffer)->append(::java::lang::StringBuilder().append(prefix)->append(u".verifierHash = "_j)->toString()))->append(::poi::util::HexDump::toHex(npc(npc(encryptionInfo)->getVerifier())->getEncryptedVerifierHash())))->append(u'\u000a'); npc(buffer)->append(u"[/FILEPASS]\n"_j); return npc(buffer)->toString(); } extern java::lang::Class *class_(const char16_t *c, int n); java::lang::Class* poi::hssf::record::FilePassRecord::class_() { static ::java::lang::Class* c = ::class_(u"org.apache.poi.hssf.record.FilePassRecord", 41); return c; } int32_t poi::hssf::record::FilePassRecord::serialize(int32_t offset, ::int8_tArray* data) { return super::serialize(offset, data); } int8_tArray* poi::hssf::record::FilePassRecord::serialize() { return super::serialize(); } java::lang::Class* poi::hssf::record::FilePassRecord::getClass0() { return class_(); }
3c228abfda00016d370f752a914c292089019dff
50d13432e3eeaa24b361a41288b10b58fadfe667
/libhsh/include/hsh/bits/source_location.h
6d32059ad8f75944f3cf8d7efdc7302b22070abf
[]
no_license
jackoalan/llvm-project
1d20f4332509269bf73ecee5779f15b1c1fe4f13
48afd8eb62dfdbcf7a87be75068d07d42cf2ac4d
refs/heads/hsh
2021-12-19T14:11:15.362711
2020-10-04T06:56:14
2020-10-04T06:56:14
224,776,491
0
2
null
2020-10-06T20:49:50
2019-11-29T04:25:23
C++
UTF-8
C++
false
false
3,151
h
source_location.h
#pragma once #ifndef NDEBUG #if __has_include(<source_location>) #include <source_location> #define HSH_SOURCE_LOCATION_REP std::source_location #elif __has_include(<experimental/source_location>) #include <experimental/source_location> #define HSH_SOURCE_LOCATION_REP std::experimental::source_location #elif __APPLE__ && __clang__ namespace std { namespace experimental { struct source_location { private: unsigned int __m_line = 0; unsigned int __m_col = 0; const char *__m_file = nullptr; const char *__m_func = nullptr; public: static constexpr source_location current( const char *__file = __builtin_FILE(), const char *__func = __builtin_FUNCTION(), unsigned int __line = __builtin_LINE(), unsigned int __col = __builtin_COLUMN()) noexcept { source_location __loc; __loc.__m_line = __line; __loc.__m_col = __col; __loc.__m_file = __file; __loc.__m_func = __func; return __loc; } constexpr source_location() = default; constexpr source_location(source_location const &) = default; constexpr unsigned int line() const noexcept { return __m_line; } constexpr unsigned int column() const noexcept { return __m_col; } constexpr const char *file_name() const noexcept { return __m_file; } constexpr const char *function_name() const noexcept { return __m_func; } }; } // namespace experimental } // namespace std #define HSH_SOURCE_LOCATION_REP std::experimental::source_location #endif #endif #ifdef HSH_SOURCE_LOCATION_REP #include <sstream> namespace hsh { class SourceLocation : public HSH_SOURCE_LOCATION_REP { const char *m_field = nullptr; std::uint32_t m_fieldIdx = UINT32_MAX; public: constexpr SourceLocation(const HSH_SOURCE_LOCATION_REP &location, const char *field = nullptr, std::uint32_t fieldIdx = UINT32_MAX) noexcept : HSH_SOURCE_LOCATION_REP(location), m_field(field), m_fieldIdx(fieldIdx) {} constexpr SourceLocation with_field(const char *f, std::uint32_t idx = UINT32_MAX) const noexcept { return SourceLocation(*this, f, idx); } bool has_field() const noexcept { return m_field != nullptr; } const char *field() const noexcept { return m_field; } bool has_field_idx() const noexcept { return m_fieldIdx != UINT32_MAX; } std::uint32_t field_idx() const noexcept { return m_fieldIdx; } std::string to_string() const noexcept { std::ostringstream ss; ss << file_name() << ':' << line() << ' ' << function_name(); if (has_field()) { ss << " (" << field() << ')'; if (has_field_idx()) ss << '[' << field_idx() << ']'; } return ss.str(); } }; } // namespace hsh #undef HSH_SOURCE_LOCATION_REP #define HSH_SOURCE_LOCATION_ENABLED 1 #else namespace hsh { class SourceLocation { public: constexpr static SourceLocation current() noexcept { return {}; } constexpr SourceLocation with_field(const char *f, std::uint32_t idx = UINT32_MAX) const noexcept { return {}; } }; } // namespace hsh #define HSH_SOURCE_LOCATION_ENABLED 0 #endif
7bd80ee3c38452738dacd6940da2e7f067cfd63a
9647072f16225fe4cbf943ca024bff69e8eaefc7
/src/BFS&DFS/findLadders.cpp
a562e3079e9032249a314fadcb0df7a3197dbf6c
[]
no_license
liuhaibohyde/OJ
2f1b02383f59b7439a1d0e438a23d8672e8eea5b
8596e32283f85945b1e0e178395f713994ec692b
refs/heads/master
2020-09-06T13:09:08.445841
2020-07-29T07:31:54
2020-07-29T07:31:54
220,432,576
0
0
null
null
null
null
UTF-8
C++
false
false
7,371
cpp
findLadders.cpp
/* 给定两个单词(beginWord 和 endWord)和一个字典 wordList,找出所有从 beginWord 到 endWord 的最短转换序列。转换需遵循如下规则: 每次转换只能改变一个字母。 转换过程中的中间单词必须是字典中的单词。 说明: 如果不存在这样的转换序列,返回一个空列表。 所有单词具有相同的长度。 所有单词只由小写字母组成。 字典中不存在重复的单词。 你可以假设 beginWord 和 endWord 是非空的,且二者不相同。 示例 1: 输入: beginWord = "hit", endWord = "cog", wordList = ["hot","dot","dog","lot","log","cog"] 输出: [ ["hit","hot","dot","dog","cog"],   ["hit","hot","lot","log","cog"] ] 示例 2: 输入: beginWord = "hit" endWord = "cog" wordList = ["hot","dot","dog","lot","log"] 输出: [] 解释: endWord "cog" 不在字典中,所以不存在符合要求的转换序列。 */ #include <stdio.h> #include <stdlib.h> #include <string> #include <vector> #include <map> #include <unordered_map> #include <set> #include <unordered_set> #include <iostream> #include <algorithm> using namespace std; // BFS + DFS class Solution { public: vector<vector<string>> res; unordered_map<string, vector<string>> trace; // 记录单词变化路径,逆向(key-变化后单词) vector<vector<string>> findLadders(string beginWord, string endWord, vector<string>& wordList) { unordered_set<string> dict(wordList.begin(), wordList.end()); if (dict.find(endWord) == dict.end()) { // 字典中没有endqord,直接返回空 return res; } unordered_set<string> q{beginWord}; // q:当前需要遍历的集合 while (q.size() && trace.find(endWord) == trace.end()) { // 如果trace中有endWord,表示最短路径已经产生 for (auto& word : q) { // 已经在待访问集合q中的单词,从dict中删除 dict.erase(word); } unordered_set<string> tmp; // 必须要用set,防止“菱形”变换导致重复单词 for (auto& word : q) { // 遍历q中待访问的单词 for (int i = 0; i < word.length(); ++i) { // 每个单词从a~z替换一遍,看是否存在字典中 string s = word; for (char ch = 'a'; ch <= 'z'; ++ch) { if (s[i] == ch) { continue; } s[i] = ch; // 替换一个字母 if (dict.find(s) == dict.end()) { // 字典中没有这个单词,跳过 continue; } trace[s].emplace_back(word); // 保存字典中这个单词的前驱(即当前遍历单词) tmp.insert(s); // 作为下一轮BFS遍历的单词,同时下一轮从字典中删除 if (s == endWord) { cout << word << endl; } } } } q = tmp; // 下一轮待遍历的单词赋值给q } if (trace.find(endWord) == trace.end()) { // trace中没有endWord,返回 return res; } vector<string> path; dfs(path, beginWord, endWord); cout << "trace: " << endl; return res; } // 这里没有像双向BFS那样传path引用,因为找到路径后还需要翻转,实测执行速度没有传值快 void dfs(vector<string> path, const string& begin, const string& end) { path.emplace_back(end); // trace中的路径逆向 if (end == begin) { reverse(path.begin(), path.end()); // 逆序 res.emplace_back(path); // 找到最短序列,存入结果中 return; } for (auto word : trace[end]) { dfs(path, begin, word); } } }; // 双向BFS class Solution { public: vector<vector<string>> res; unordered_map<string, vector<string>> trace; // 记录单词变化路径,正向(key-变化前单词) vector<vector<string>> findLadders(string beginWord, string endWord, vector<string>& wordList) { unordered_set<string> dict(wordList.begin(), wordList.end()); if (dict.find(endWord) == dict.end()) { return res; } unordered_set<string> beginq{beginWord}; // 双向BFS,保存下一轮待访问单词是集合 unordered_set<string> endq{endWord}; bool found = false, flip = false; // found-是否找到最短序列标志, flip-是否反转标志 while (!beginq.empty()) { unordered_set<string> tmp; for (auto& word : beginq) { // 清空访问过的单词 dict.erase(word); } for (auto& word : beginq) { for (int i = 0; i < word.size(); ++i) { string s = word; for (char ch = 'a'; ch <= 'z'; ++ch) { // 每个单词的字母从a-z替换一遍 if (s[i] == ch) { continue; } s[i] = ch; // 替换一个字母后,字典中不存在则跳过 if (dict.find(s) == dict.end()) { continue; } if (endq.find(s) != endq.end()) { // 总是遍历beginq,所以在endq中查找,找到表示最短序列产生 found = true; // 本层循环还要继续,防止多条最短路径 } tmp.insert(s); flip ? trace[s].emplace_back(word) : trace[word].emplace_back(s); } } } if (found) { break; // 已经找到最短序列,不需要再进行下一轮BFS } if (tmp.size() <= endq.size()) { // 首尾均衡查找,每次都是遍历beginq中的单词 beginq = tmp; } else { beginq = endq; endq = tmp; flip = !flip; // beginq与endq交换,flip需要使用!反转 } } vector<string> path; dfs(path, beginWord, endWord); return res; } void dfs(vector<string>& path, const string& begin, const string& end) { path.emplace_back(begin); if (begin == end) { // 找到最短序列,存入结果中 res.emplace_back(path); return; } for (auto word : trace[begin]) { dfs(path, word, end); path.pop_back(); // 传path引用,回溯 } } };
a66a00bc5a54d077a2b3b267b849607ea5e312fd
00d4aca628e46fc06c597c19ba0d919a580815eb
/app/CalibADC/analyze_output.cc
c0d6991c664510d4ff7b99bd5d89a329bc4327d6
[]
no_license
yeonjaej/LArCV
a9f1d706c12f1e183378e38268e2a4ee3b9060d9
c92117bffea0c8ec89cff305e3def5385497e805
refs/heads/master
2020-03-25T00:58:25.318085
2016-08-24T20:15:19
2016-08-24T20:15:19
143,215,231
0
0
null
2018-08-01T22:37:08
2018-08-01T22:37:08
null
UTF-8
C++
false
false
3,898
cc
analyze_output.cc
#include <iostream> #include <vector> #include <cstdlib> #include "TFile.h" #include "TTree.h" #include "TF1.h" #include "TGraph.h" #include "TH1D.h" int main( int nargs, char** argv ) { std::string inputfile = "ana_data.root"; int maxchs = 900; float lowerbounds[3] = { 100, 70, 100}; float upperbounds[3] = {300,250,300}; TFile* fin = new TFile(inputfile.c_str()); TTree* tree = (TTree*)fin->Get("adc"); int plane,wireid; float peak; tree->SetBranchAddress("planeid",&plane); tree->SetBranchAddress("wireid", &wireid); tree->SetBranchAddress("peak", &peak); TFile* fout = new TFile("test_out_data_analysis.root","recreate"); TH1D** hists[3] = {NULL}; for (int p=0; p<3; p++) { hists[p] = new TH1D*[maxchs]; for ( int ch=0; ch<maxchs; ch++ ) { char histname[500]; sprintf( histname, "hadc_p%d_ch%d", p, ch ); char histtitle[500]; sprintf( histtitle, "Plane %d, Channel %d", p, ch ); hists[p][ch] = new TH1D(histname, histtitle, 50, 0, 500); } } size_t entry = 0; size_t numbytes = tree->GetEntry(entry); while ( numbytes>0 ) { if ( entry%100000==0 ) std::cout << "Entry " << entry << " p=" << plane << " ch=" << wireid << " peak=" << peak << std::endl; hists[plane][wireid]->Fill( peak ); entry++; numbytes = tree->GetEntry(entry); } for (int p=0; p<3; p++) { for ( int ch=0; ch<maxchs; ch++ ) { hists[p][ch]->Write(); } } int nbadfits = 0; for ( int p=0;p<3;p++ ) { TGraph* gmean = new TGraph( maxchs ); TGraph* gsigma = new TGraph( maxchs ); for ( int ch=0; ch<maxchs; ch++ ) { float integral = hists[p][ch]->Integral(); float mean = 0; float rms = 0; if ( integral>500 ) { mean = hists[p][ch]->GetMean(); rms = hists[p][ch]->GetRMS(); char fitname[500]; sprintf( fitname, "fit_p%d_ch%d", p, ch ); TF1* fit = new TF1(fitname,"gaus"); fit->SetParameter(0, hists[p][ch]->GetMaximum() ); fit->SetParameter(1, mean ); fit->SetParameter(2, rms ); hists[p][ch]->Fit( fit, "RQ", "", lowerbounds[p], upperbounds[p] ); mean = fit->GetParameter(1); rms = fit->GetParameter(2); if ( mean<0 ) { std::cout << "Bad fit plane=" << p << " ch=" << ch << ": " << mean << std::endl; hists[p][ch]->GetXaxis()->SetRange( lowerbounds[p], upperbounds[p] ); mean = hists[p][ch]->GetMean(); rms = hists[p][ch]->GetRMS(); fit->SetParameter(0, hists[p][ch]->GetMaximum() ); fit->SetParameter(1, mean ); fit->SetParameter(2, rms ); hists[p][ch]->GetXaxis()->SetRange( 1, 500 ); } else { std::cout << "Fit plane=" << p << " ch=" << ch << " mean=" << mean << std::endl; // really on arithmetic mean instead of poor fits // if ( (p!=1 && mean<150) || (p==1 && mean<80) ) { // if ( p!=1 ) // hists[p][ch]->GetXaxis()->SetRange( hists[p][ch]->GetXaxis()->FindBin(50), hists[p][ch]->GetXaxis()->FindBin(150) ); // else // hists[p][ch]->GetXaxis()->SetRange( hists[p][ch]->GetXaxis()->FindBin(10), hists[p][ch]->GetXaxis()->FindBin(80) ); // mean = hists[p][ch]->GetMean(); // } // else { // if ( p!=1 ) { // hists[p][ch]->GetXaxis()->SetRange(hists[p][ch]->GetXaxis()->FindBin(100), hists[p][ch]->GetXaxis()->FindBin(300) ); // mean = hists[p][ch]->GetMean(); // } // else { // hists[p][ch]->GetXaxis()->SetRange(hists[p][ch]->GetXaxis()->FindBin(50), hists[p][ch]->GetXaxis()->FindBin(250) ); // mean = hists[p][ch]->GetMean(); // } // } } fit->Write(fitname); delete fit; } gmean->SetPoint(ch,ch,mean); gsigma->SetPoint(ch,ch,rms); } char meanname[100]; sprintf( meanname, "gmean_plane%d", p ); char sigmaname[100]; sprintf( sigmaname, "gsigma_plane%d", p ); gmean->Write( meanname ); gsigma->Write( sigmaname ); } std::cout << "Fin." << std::endl; }
fcdb4cb46f78db1dab08b47ca5a75c2712f1aedc
ff984fbbe100851595c71182766543460686c1fd
/3ºSemestre/Estrutura de Dados/TabelaHash_EndereçamentoAberto/tabela.h
82250bd0b77098b66f4d21f93a00dc1aa1c73856
[]
no_license
jroslindo/UNIVALI
d407c6ce6275eb7c6290c00c093ccfff08450a04
3fee2f978a1a0eef4b4913f5663ea0ab345e8c3d
refs/heads/master
2021-03-16T08:34:41.778126
2017-08-30T15:57:05
2017-08-30T15:57:05
102,357,429
0
0
null
null
null
null
UTF-8
C++
false
false
1,986
h
tabela.h
#ifndef TABELA_H_INCLUDED #define TABELA_H_INCLUDED #include "windows.h" using namespace std; template <typename TIPO> struct Tabela{ TIPO Elemento; char Situacao; }; template <typename TIPO> void Inicializa(Tabela<TIPO> t[], int tamanho){ for(int i=0; i<tamanho; i++){ t[i].Situacao='L'; } } template <typename TIPO> void inserir(Tabela<TIPO> t[], int tamanho){ int dado; cout<<"Valor para inserir:"<<endl; cin>>dado; int pos = dado; int contador=0; int inserido=0; while(inserido==0){ int hash = pos % tamanho; if (t[hash].Situacao=='L' || t[hash].Situacao=='R'){ t[hash].Elemento=dado; t[hash].Situacao='O'; inserido++; break; } pos++; contador++; if (contador>=tamanho){ cout<<"\nTabela Cheia"<<endl; system("pause"); break; } } } template <typename TIPO> void remover(Tabela<TIPO> t[], int tamanho){ int dado; cout<<"Valor para remover:"<<endl; cin>>dado; int pos = dado; int contador=0; int removido=0; while(removido==0){ int hash = pos % tamanho; if(t[hash].Situacao=='O' && t[hash].Elemento==dado){ t[hash].Situacao= 'R'; removido++; break; } pos++; contador++; if (contador>=tamanho){ cout<<"\nValor nao Encontrado"<<endl; removido++; system("pause"); break; } } } template<typename TIPO> void imprimir(Tabela<TIPO> t[],int tamanho){ cout<<"\nTABELA"<<endl; cout<<"Posicao-Situcacao-Elemento"<<endl; for(int i=0;i<tamanho; i++){ if(t[i].Situacao=='O'){ cout<<i<<".\t"<<t[i].Situacao<<"\t"<<t[i].Elemento<<endl; }else{ cout<<i<<".\t"<<t[i].Situacao<<"\tVazio"<<endl; } } cout<<endl; system("pause"); } #endif // TABELA_H_INCLUDED
b0d1d9450d3553f5a733ebd7c5af548117934b5a
2ef0e696b0b8d1b762a3df21a258406f1e0c73e2
/include/EASTL/shared_ptr.h
3ac9bc77a02a4a864cfce0ce09dd6e64aa0868bf
[ "BSD-3-Clause" ]
permissive
electronicarts/EASTL
3fdf65152aaadae7c86e94aa482b950494f31c2f
05f4b4aef33f2f3ded08f19fa97f5a27ff35ff9f
refs/heads/master
2023-08-30T16:35:49.267717
2023-08-16T17:55:47
2023-08-16T17:55:47
48,068,902
7,952
1,216
BSD-3-Clause
2023-08-16T17:55:48
2015-12-15T21:04:13
C++
UTF-8
C++
false
false
58,408
h
shared_ptr.h
/////////////////////////////////////////////////////////////////////////////// // Copyright (c) Electronic Arts Inc. All rights reserved. /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// // This class implements the C++11 shared_ptr template. A shared_ptr is like // the C++ Standard Library unique_ptr except that it allows sharing of pointers // between instances via reference counting. shared_ptr objects can safely be // copied and can safely be used in containers such as vector or list. // // Notes regarding safe usage of shared_ptr: // - http://www.boost.org/doc/libs/1_53_0/libs/smart_ptr/shared_ptr.htm#ThreadSafety // - If you construct a shared_ptr with a raw pointer, you cannot construct another shared_ptr // with just that raw pointer. Insted you need to construct additional shared_ptrs with // the originally created shared_ptr. Otherwise you will get a crash. // - Usage of shared_ptr is thread-safe, but what it points to isn't automatically thread safe. // Multiple shared_ptrs that refer to the same object can be used arbitrarily by multiple threads. // - You can use a single shared_ptr between multiple threads in all ways except one: assigment // to that shared_ptr. The following is not thread-safe, and needs to be guarded by a mutex // or the shared_ptr atomic functions: // shared_ptr<Foo> pFoo; // // Thread 1: // shared_ptr<Foo> pFoo2 = pFoo; // // Thread 2: // pFoo = make_shared<Foo>(); // // Compatibility note: // This version of shared_ptr updates the previous version to have full C++11 // compatibility. However, in order to add C++11 compatibility there needed to // be a few breaking changes which may affect some users. It's likely that most // or all breaking changes can be rectified by doing the same thing in a slightly // different way. Here's a list of the primary signficant breaking changes: // - shared_ptr now takes just one template parameter instead of three. // (allocator and deleter). You now specify the allocator and deleter // as part of the shared_ptr constructor at runtime. // - shared_ptr has thread safety, which // /////////////////////////////////////////////////////////////////////////////// #ifndef EASTL_SHARED_PTR_H #define EASTL_SHARED_PTR_H #include <EASTL/internal/config.h> #include <EASTL/internal/smart_ptr.h> #include <EASTL/internal/thread_support.h> #include <EASTL/unique_ptr.h> #include <EASTL/functional.h> #include <EASTL/allocator.h> #include <EASTL/atomic.h> #if EASTL_RTTI_ENABLED #include <typeinfo> #endif #if EASTL_EXCEPTIONS_ENABLED #include <exception> #endif EA_DISABLE_ALL_VC_WARNINGS() #include <new> #include <stddef.h> EA_RESTORE_ALL_VC_WARNINGS() EA_DISABLE_VC_WARNING(4530); // C++ exception handler used, but unwind semantics are not enabled. Specify /EHsc EA_DISABLE_VC_WARNING(4571); // catch(...) semantics changed since Visual C++ 7.1; structured exceptions (SEH) are no longer caught. #if defined(EA_PRAGMA_ONCE_SUPPORTED) #pragma once // Some compilers (e.g. VC++) benefit significantly from using this. We've measured 3-4% build speed improvements in apps as a result. #endif namespace eastl { /////////////////////////////////////////////////////////////////////////// // shared_ptr /////////////////////////////////////////////////////////////////////////// /// EASTL_SHARED_PTR_DEFAULT_NAME /// /// Defines a default container name in the absence of a user-provided name. /// #ifndef EASTL_SHARED_PTR_DEFAULT_NAME #define EASTL_SHARED_PTR_DEFAULT_NAME EASTL_DEFAULT_NAME_PREFIX " shared_ptr" // Unless the user overrides something, this is "EASTL shared_ptr". #endif /// EASTL_SHARED_PTR_DEFAULT_ALLOCATOR /// #ifndef EASTL_SHARED_PTR_DEFAULT_ALLOCATOR #define EASTL_SHARED_PTR_DEFAULT_ALLOCATOR EASTLAllocatorType(EASTL_SHARED_PTR_DEFAULT_NAME) #endif // Forward declarations template <typename T, typename Deleter> class unique_ptr; template <typename T> class weak_ptr; template <typename T> class enable_shared_from_this; #if EASTL_EXCEPTIONS_ENABLED // We define eastl::bad_weak_ptr as opposed to std::bad_weak_ptr. The reason is that // we can't easily know of std::bad_weak_ptr exists and we would have to #include <memory> // to use it. EASTL "owns" the types that are defined in EASTL headers, and std::bad_weak_ptr // is declared in <memory>. struct bad_weak_ptr : std::exception { const char* what() const EA_NOEXCEPT EA_OVERRIDE { return "bad weak_ptr"; } }; #endif /// ref_count_sp /// /// This is a small utility class used by shared_ptr and weak_ptr. struct ref_count_sp { atomic<int32_t> mRefCount; /// Reference count on the contained pointer. Starts as 1 by default. atomic<int32_t> mWeakRefCount; /// Reference count on contained pointer plus this ref_count_sp object itself. Starts as 1 by default. public: ref_count_sp(int32_t refCount = 1, int32_t weakRefCount = 1) EA_NOEXCEPT; virtual ~ref_count_sp() EA_NOEXCEPT {} int32_t use_count() const EA_NOEXCEPT; void addref() EA_NOEXCEPT; void release(); void weak_addref() EA_NOEXCEPT; void weak_release(); ref_count_sp* lock() EA_NOEXCEPT; virtual void free_value() EA_NOEXCEPT = 0; // Release the contained object. virtual void free_ref_count_sp() EA_NOEXCEPT = 0; // Release this instance. #if EASTL_RTTI_ENABLED virtual void* get_deleter(const std::type_info& type) const EA_NOEXCEPT = 0; #else virtual void* get_deleter() const EA_NOEXCEPT = 0; #endif }; inline ref_count_sp::ref_count_sp(int32_t refCount, int32_t weakRefCount) EA_NOEXCEPT : mRefCount(refCount), mWeakRefCount(weakRefCount) {} inline int32_t ref_count_sp::use_count() const EA_NOEXCEPT { return mRefCount.load(memory_order_relaxed); // To figure out: is this right? } inline void ref_count_sp::addref() EA_NOEXCEPT { mRefCount.fetch_add(1, memory_order_relaxed); mWeakRefCount.fetch_add(1, memory_order_relaxed); } inline void ref_count_sp::release() { EASTL_ASSERT((mRefCount.load(memory_order_relaxed) > 0)); if(mRefCount.fetch_sub(1, memory_order_release) == 1) { atomic_thread_fence(memory_order_acquire); free_value(); } weak_release(); } inline void ref_count_sp::weak_addref() EA_NOEXCEPT { mWeakRefCount.fetch_add(1, memory_order_relaxed); } inline void ref_count_sp::weak_release() { EASTL_ASSERT(mWeakRefCount.load(memory_order_relaxed) > 0); if(mWeakRefCount.fetch_sub(1, memory_order_release) == 1) { atomic_thread_fence(memory_order_acquire); free_ref_count_sp(); } } inline ref_count_sp* ref_count_sp::lock() EA_NOEXCEPT { for(int32_t refCountTemp = mRefCount.load(memory_order_relaxed); refCountTemp != 0; ) { if(mRefCount.compare_exchange_weak(refCountTemp, refCountTemp + 1, memory_order_relaxed)) { mWeakRefCount.fetch_add(1, memory_order_relaxed); return this; } } return nullptr; } /// ref_count_sp_t /// /// This is a version of ref_count_sp which is used to delete the contained pointer. template <typename T, typename Allocator, typename Deleter> class ref_count_sp_t : public ref_count_sp { public: typedef ref_count_sp_t<T, Allocator, Deleter> this_type; typedef T value_type; typedef Allocator allocator_type; typedef Deleter deleter_type; value_type mValue; // This is expected to be a pointer. deleter_type mDeleter; allocator_type mAllocator; ref_count_sp_t(value_type value, deleter_type deleter, allocator_type allocator) : ref_count_sp(), mValue(value), mDeleter(eastl::move(deleter)), mAllocator(eastl::move(allocator)) {} void free_value() EA_NOEXCEPT { mDeleter(mValue); mValue = nullptr; } void free_ref_count_sp() EA_NOEXCEPT { allocator_type allocator = mAllocator; this->~ref_count_sp_t(); EASTLFree(allocator, this, sizeof(*this)); } #if EASTL_RTTI_ENABLED void* get_deleter(const std::type_info& type) const EA_NOEXCEPT { return (type == typeid(deleter_type)) ? (void*)&mDeleter : nullptr; } #else void* get_deleter() const EA_NOEXCEPT { return (void*)&mDeleter; } #endif }; /// ref_count_sp_t_inst /// /// This is a version of ref_count_sp which is used to actually hold an instance of /// T (instead of a pointer). This is useful to allocate the object and ref count /// in a single memory allocation. template<typename T, typename Allocator> class ref_count_sp_t_inst : public ref_count_sp { public: typedef ref_count_sp_t_inst<T, Allocator> this_type; typedef T value_type; typedef Allocator allocator_type; typedef typename aligned_storage<sizeof(T), eastl::alignment_of<T>::value>::type storage_type; storage_type mMemory; allocator_type mAllocator; value_type* GetValue() { return static_cast<value_type*>(static_cast<void*>(&mMemory)); } template <typename... Args> ref_count_sp_t_inst(allocator_type allocator, Args&&... args) : ref_count_sp(), mAllocator(eastl::move(allocator)) { new (&mMemory) value_type(eastl::forward<Args>(args)...); } void free_value() EA_NOEXCEPT { GetValue()->~value_type(); } void free_ref_count_sp() EA_NOEXCEPT { allocator_type allocator = mAllocator; this->~ref_count_sp_t_inst(); EASTLFree(allocator, this, sizeof(*this)); } #if EASTL_RTTI_ENABLED void* get_deleter(const std::type_info&) const EA_NOEXCEPT { return nullptr; // Default base implementation. } #else void* get_deleter() const EA_NOEXCEPT { return nullptr; } #endif }; /// do_enable_shared_from_this /// /// If a user calls this function, it sets up mWeakPtr member of /// the enable_shared_from_this parameter to point to the ref_count_sp /// object that's passed in. Normally, the user doesn't need to call /// this function, as the shared_ptr constructor will do it for them. /// template <typename T, typename U> void do_enable_shared_from_this(const ref_count_sp* pRefCount, const enable_shared_from_this<T>* pEnableSharedFromThis, const U* pValue) { if (pEnableSharedFromThis) pEnableSharedFromThis->mWeakPtr.assign(const_cast<U*>(pValue), const_cast<ref_count_sp*>(pRefCount)); } inline void do_enable_shared_from_this(const ref_count_sp*, ...) {} // Empty specialization. This no-op version is // called by shared_ptr when shared_ptr's T type // is anything but an enabled_shared_from_this // class. /// shared_ptr_traits /// This exists for the sole purpose of creating a typedef called /// reference_type which is specialized for type void. The reason /// for this is that shared_ptr::operator*() returns a reference /// to T but if T is void, it needs to return void, not *void, /// as the latter is not valid C++. template <typename T> struct shared_ptr_traits { typedef T& reference_type; }; template <> struct shared_ptr_traits<void> { typedef void reference_type; }; template <> struct shared_ptr_traits<void const> { typedef void reference_type; }; template <> struct shared_ptr_traits<void volatile> { typedef void reference_type; }; template <> struct shared_ptr_traits<void const volatile> { typedef void reference_type; }; /// shared_ptr /// /// This class implements the C++11 shared_ptr template. A shared_ptr is like the C++ /// Standard Library unique_ptr except that it allows sharing of pointers between /// instances via reference counting. shared_ptr objects can safely be copied and /// can safely be used in C++ Standard Library containers such as std::vector or /// std::list. /// /// This class is not thread safe in that you cannot use an instance of it from /// two threads at the same time and cannot use two separate instances of it, which /// own the same pointer, at the same time. Use standard multithread mutex techniques /// to address the former problems and use shared_ptr_mt to address the latter. /// Note that this is contrary to the C++11 standard. /// /// As of this writing, arrays aren't supported, but they are planned in the future /// based on the C++17 proposal: http://isocpp.org/files/papers/N3920.html /// template <typename T> class shared_ptr { public: typedef shared_ptr<T> this_type; typedef T element_type; typedef typename shared_ptr_traits<T>::reference_type reference_type; // This defines what a reference to a T is. It's always simply T&, except for the case where T is void, whereby the reference is also just void. typedef EASTLAllocatorType default_allocator_type; typedef default_delete<T> default_deleter_type; typedef weak_ptr<T> weak_type; protected: element_type* mpValue; ref_count_sp* mpRefCount; /// Base pointer to Reference count for owned pointer and the owned pointer. public: /// Initializes and "empty" shared_ptr. /// Postcondition: use_count() == zero and get() == 0 shared_ptr() EA_NOEXCEPT : mpValue(nullptr), mpRefCount(nullptr) { // Intentionally leaving mpRefCount as NULL. Can't allocate here due to noexcept. } /// Takes ownership of the pointer and sets the reference count /// to the pointer to 1. It is OK if the input pointer is null. /// The shared reference count is allocated on the heap using the /// default eastl allocator. /// Throws: bad_alloc, or an implementation-defined exception when /// a resource other than memory could not be obtained. /// Exception safety: If an exception is thrown, delete p is called. /// Postcondition in the event of no exception: use_count() == 1 && get() == p template <typename U> explicit shared_ptr(U* pValue, typename eastl::enable_if<eastl::is_convertible<U*, element_type*>::value>::type* = 0) : mpValue(nullptr), mpRefCount(nullptr) // alloc_internal will set this. { // We explicitly use default_delete<U>. You can use the other version of this constructor to provide a // custom version. alloc_internal(pValue, default_allocator_type(), default_delete<U>()); // Problem: We want to be able to use default_deleter_type() instead of // default_delete<U>, but if default_deleter_type's type is void or // otherwise mismatched then this will fail to compile. What we really // want to be able to do is "rebind" default_allocator_type to U // instead of its original type. } shared_ptr(std::nullptr_t) EA_NOEXCEPT : mpValue(nullptr), mpRefCount(nullptr) { // Intentionally leaving mpRefCount as NULL. Can't allocate here due to noexcept. } /// Takes ownership of the pointer and sets the reference count /// to the pointer to 1. It is OK if the input pointer is null. /// The shared reference count is allocated on the heap using the /// default eastl allocator. The pointer will be disposed using the /// provided deleter. /// If an exception occurs during the allocation of the shared /// reference count, the owned pointer is deleted and the exception /// is rethrown. /// Postcondition: use_count() == 1 && get() == p template <typename U, typename Deleter> shared_ptr(U* pValue, Deleter deleter, typename eastl::enable_if<eastl::is_convertible<U*, element_type*>::value>::type* = 0) : mpValue(nullptr), mpRefCount(nullptr) { alloc_internal(pValue, default_allocator_type(), eastl::move(deleter)); } template <typename Deleter> shared_ptr(std::nullptr_t, Deleter deleter) : mpValue(nullptr), mpRefCount(nullptr) // alloc_internal will set this. { alloc_internal(nullptr, default_allocator_type(), eastl::move(deleter)); } /// Takes ownership of the pointer and sets the reference count /// to the pointer to 1. It is OK if the input pointer is null. /// The shared reference count is allocated on the heap using the /// supplied allocator. The pointer will be disposed using the /// provided deleter. /// If an exception occurs during the allocation of the shared /// reference count, the owned pointer is deleted and the exception /// is rethrown. /// Postcondition: use_count() == 1 && get() == p template <typename U, typename Deleter, typename Allocator> explicit shared_ptr(U* pValue, Deleter deleter, const Allocator& allocator, typename eastl::enable_if<eastl::is_convertible<U*, element_type*>::value>::type* = 0) : mpValue(nullptr), mpRefCount(nullptr) // alloc_internal will set this. { alloc_internal(pValue, eastl::move(allocator), eastl::move(deleter)); } template <typename Deleter, typename Allocator> shared_ptr(std::nullptr_t, Deleter deleter, Allocator allocator) : mpValue(nullptr), mpRefCount(nullptr) // alloc_internal will set this. { alloc_internal(nullptr, eastl::move(allocator), eastl::move(deleter)); } /// shared_ptr /// construction with self type. /// If we want a shared_ptr constructor that is templated on shared_ptr<U>, /// then we need to make it in addition to this function, as otherwise /// the compiler will generate this function and things will go wrong. /// To accomplish this in a thread-safe way requires use of shared_ptr atomic_store. shared_ptr(const shared_ptr& sharedPtr) EA_NOEXCEPT : mpValue(sharedPtr.mpValue), mpRefCount(sharedPtr.mpRefCount) { if(mpRefCount) mpRefCount->addref(); } /// shared_ptr /// Shares ownership of a pointer with another instance of shared_ptr. /// This function increments the shared reference count on the pointer. /// To accomplish this in a thread-safe way requires use of shared_ptr atomic_store. template <typename U> shared_ptr(const shared_ptr<U>& sharedPtr, typename eastl::enable_if<eastl::is_convertible<U*, element_type*>::value>::type* = 0) EA_NOEXCEPT : mpValue(sharedPtr.mpValue), mpRefCount(sharedPtr.mpRefCount) { if (mpRefCount) mpRefCount->addref(); } /// shared_ptr /// /// 20.7.2.2.1p13: Constructs a shared_ptr instance that stores p and shares ownership with r. /// Postconditions: get() == pValue && use_count() == sharedPtr.use_count(). /// To avoid the possibility of a dangling pointer, the user of this constructor must /// ensure that pValue remains valid at least until the ownership group of sharedPtr is destroyed. /// This constructor allows creation of an empty shared_ptr instance with a non-NULL stored pointer. /// /// Shares ownership of a pointer with another instance of shared_ptr while storing a potentially /// different pointer. This function increments the shared reference count on the sharedPtr if it exists. /// If sharedPtr has no shared reference then a shared reference is not created an pValue is not /// deleted in our destructor and effectively the pointer is not actually shared. /// /// To accomplish this in a thread-safe way requires the user to maintain the lifetime of sharedPtr /// as described above. /// template <typename U> shared_ptr(const shared_ptr<U>& sharedPtr, element_type* pValue) EA_NOEXCEPT : mpValue(pValue), mpRefCount(sharedPtr.mpRefCount) { if(mpRefCount) mpRefCount->addref(); } shared_ptr(shared_ptr&& sharedPtr) EA_NOEXCEPT : mpValue(sharedPtr.mpValue), mpRefCount(sharedPtr.mpRefCount) { sharedPtr.mpValue = nullptr; sharedPtr.mpRefCount = nullptr; } template <typename U> shared_ptr(shared_ptr<U>&& sharedPtr, typename eastl::enable_if<eastl::is_convertible<U*, element_type*>::value>::type* = 0) EA_NOEXCEPT : mpValue(sharedPtr.mpValue), mpRefCount(sharedPtr.mpRefCount) { sharedPtr.mpValue = nullptr; sharedPtr.mpRefCount = nullptr; } // unique_ptr constructor template <typename U, typename Deleter> shared_ptr(unique_ptr<U, Deleter>&& uniquePtr, typename eastl::enable_if<!eastl::is_array<U>::value && !is_lvalue_reference<Deleter>::value && eastl::is_convertible<U*, element_type*>::value>::type* = 0) : mpValue(nullptr), mpRefCount(nullptr) { alloc_internal(uniquePtr.release(), default_allocator_type(), uniquePtr.get_deleter()); } // unique_ptr constructor // The following is not in the C++11 Standard. template <typename U, typename Deleter, typename Allocator> shared_ptr(unique_ptr<U, Deleter>&& uniquePtr, const Allocator& allocator, typename eastl::enable_if<!eastl::is_array<U>::value && !is_lvalue_reference<Deleter>::value && eastl::is_convertible<U*, element_type*>::value>::type* = 0) : mpValue(nullptr), mpRefCount(nullptr) { alloc_internal(uniquePtr.release(), allocator, uniquePtr.get_deleter()); } /// shared_ptr(weak_ptr) /// Shares ownership of a pointer with an instance of weak_ptr. /// This function increments the shared reference count on the pointer. template <typename U> explicit shared_ptr(const weak_ptr<U>& weakPtr, typename eastl::enable_if<eastl::is_convertible<U*, element_type*>::value>::type* = 0) : mpValue(weakPtr.mpValue) , mpRefCount(weakPtr.mpRefCount ? weakPtr.mpRefCount->lock() : weakPtr.mpRefCount) // mpRefCount->lock() addref's the return value for us. { if (!mpRefCount) { mpValue = nullptr; // Question: Is it right for us to NULL this or not? #if EASTL_EXCEPTIONS_ENABLED throw eastl::bad_weak_ptr(); #else EASTL_FAIL_MSG("eastl::shared_ptr -- bad_weak_ptr"); #endif } } /// ~shared_ptr /// Decrements the reference count for the owned pointer. If the /// reference count goes to zero, the owned pointer is deleted and /// the shared reference count is deleted. ~shared_ptr() { if (mpRefCount) { mpRefCount->release(); } // else if mpValue is non-NULL then we just lose it because it wasn't actually shared (can happen with // shared_ptr(const shared_ptr<U>& sharedPtr, element_type* pValue) constructor). #if EASTL_DEBUG mpValue = nullptr; mpRefCount = nullptr; #endif } // The following is disabled because it is not specified by the C++11 Standard, as it leads to // potential collisions. Use the reset(p) and reset() functions instead. // // template <typename U> // typename eastl::enable_if<eastl::is_convertible<U*, element_type*>::value, this_type&>::type // operator=(const U* pValue) EA_NOEXCEPT // { // reset(pValue); // return *this; // } // // template <typename U> // this_type& operator=(std::nullptr_t) EA_NOEXCEPT // { // reset(); // return *this; // } /// operator= /// Assignment to self type. /// If we want a shared_ptr operator= that is templated on shared_ptr<U>, /// then we need to make it in addition to this function, as otherwise /// the compiler will generate this function and things will go wrong. shared_ptr& operator=(const shared_ptr& sharedPtr) EA_NOEXCEPT { if(&sharedPtr != this) this_type(sharedPtr).swap(*this); return *this; } /// operator= /// Copies another shared_ptr to this object. Note that this object /// may already own a shared pointer with another different pointer /// (but still of the same type) before this call. In that case, /// this function releases the old pointer, decrementing its reference /// count and deleting it if zero, takes shared ownership of the new /// pointer and increments its reference count. template <typename U> typename eastl::enable_if<eastl::is_convertible<U*, element_type*>::value, this_type&>::type operator=(const shared_ptr<U>& sharedPtr) EA_NOEXCEPT { if(!equivalent_ownership(sharedPtr)) this_type(sharedPtr).swap(*this); return *this; } /// operator= /// Assignment to self type. /// If we want a shared_ptr operator= that is templated on shared_ptr<U>, /// then we need to make it in addition to this function, as otherwise /// the compiler will generate this function and things will go wrong. this_type& operator=(shared_ptr&& sharedPtr) EA_NOEXCEPT { if(&sharedPtr != this) this_type(eastl::move(sharedPtr)).swap(*this); return *this; } /// operator= /// Moves another shared_ptr to this object. Note that this object /// may already own a shared pointer with another different pointer /// (but still of the same type) before this call. In that case, /// this function releases the old pointer, decrementing its reference /// count and deleting it if zero, takes shared ownership of the new /// pointer and increments its reference count. template <typename U> typename eastl::enable_if<eastl::is_convertible<U*, element_type*>::value, this_type&>::type operator=(shared_ptr<U>&& sharedPtr) EA_NOEXCEPT { if(!equivalent_ownership(sharedPtr)) shared_ptr(eastl::move(sharedPtr)).swap(*this); return *this; } // unique_ptr operator= template <typename U, typename Deleter> typename eastl::enable_if<!eastl::is_array<U>::value && eastl::is_convertible<U*, element_type*>::value, this_type&>::type operator=(unique_ptr<U, Deleter>&& uniquePtr) { // Note that this will use the default EASTL allocator this_type(eastl::move(uniquePtr)).swap(*this); return *this; } /// reset /// Releases the owned pointer. void reset() EA_NOEXCEPT { this_type().swap(*this); } /// reset /// Releases the owned pointer and takes ownership of the /// passed in pointer. template <typename U> typename eastl::enable_if<eastl::is_convertible<U*, element_type*>::value, void>::type reset(U* pValue) { this_type(pValue).swap(*this); } /// reset /// Releases the owned pointer and takes ownership of the /// passed in pointer. template <typename U, typename Deleter> typename eastl::enable_if<eastl::is_convertible<U*, element_type*>::value, void>::type reset(U* pValue, Deleter deleter) { shared_ptr(pValue, deleter).swap(*this); } /// reset /// Resets the shared_ptr template <typename U, typename Deleter, typename Allocator> typename eastl::enable_if<eastl::is_convertible<U*, element_type*>::value, void>::type reset(U* pValue, Deleter deleter, const Allocator& allocator) { shared_ptr(pValue, deleter, allocator).swap(*this); } /// swap /// Exchanges the owned pointer between two shared_ptr objects. /// This function is not intrinsically thread-safe. You must use atomic_exchange(shared_ptr<T>*, shared_ptr<T>) /// or manually coordinate the swap. void swap(this_type& sharedPtr) EA_NOEXCEPT { element_type* const pValue = sharedPtr.mpValue; sharedPtr.mpValue = mpValue; mpValue = pValue; ref_count_sp* const pRefCount = sharedPtr.mpRefCount; sharedPtr.mpRefCount = mpRefCount; mpRefCount = pRefCount; } /// operator* /// Returns the owner pointer dereferenced. /// Example usage: /// shared_ptr<int> ptr(new int(3)); /// int x = *ptr; reference_type operator*() const EA_NOEXCEPT { return *mpValue; } /// operator-> /// Allows access to the owned pointer via operator->() /// Example usage: /// struct X{ void DoSomething(); }; /// shared_ptr<int> ptr(new X); /// ptr->DoSomething(); element_type* operator->() const EA_NOEXCEPT { // assert(mpValue); return mpValue; } /// operator[] /// Index into the array pointed to by the owned pointer. /// The behaviour is undefined if the owned pointer is nullptr, if the user specified index is negative, or if /// the index is outside the referred array bounds. /// /// When T is not an array type, it is unspecified whether this function is declared. If the function is declared, /// it is unspecified what its return type is, except that the declaration (although not necessarily the /// definition) of the function is guaranteed to be legal. // // TODO(rparolin): This is disabled because eastl::shared_ptr needs array support. // element_type& operator[](ptrdiff_t idx) // { // return get()[idx]; // } /// get /// Returns the owned pointer. Note that this class does /// not provide an operator T() function. This is because such /// a thing (automatic conversion) is deemed unsafe. /// Example usage: /// struct X{ void DoSomething(); }; /// shared_ptr<int> ptr(new X); /// X* pX = ptr.get(); /// pX->DoSomething(); element_type* get() const EA_NOEXCEPT { return mpValue; } /// use_count /// Returns: the number of shared_ptr objects, *this included, that share ownership with *this, or 0 when *this is empty. int use_count() const EA_NOEXCEPT { return mpRefCount ? mpRefCount->use_count() : 0; } /// unique /// Returns: use_count() == 1. bool unique() const EA_NOEXCEPT { return (mpRefCount && (mpRefCount->use_count() == 1)); } /// owner_before /// C++11 function for ordering. template <typename U> bool owner_before(const shared_ptr<U>& sharedPtr) const EA_NOEXCEPT { return (mpRefCount < sharedPtr.mpRefCount); } template <typename U> bool owner_before(const weak_ptr<U>& weakPtr) const EA_NOEXCEPT { return (mpRefCount < weakPtr.mpRefCount); } template <typename Deleter> Deleter* get_deleter() const EA_NOEXCEPT { #if EASTL_RTTI_ENABLED return mpRefCount ? static_cast<Deleter*>(mpRefCount->get_deleter(typeid(typename remove_cv<Deleter>::type))) : nullptr; #else // This is probably unsafe but without typeid there is no way to ensure that the // stored deleter is actually of the templated Deleter type. return nullptr; // Alternatively: // return mpRefCount ? static_cast<Deleter*>(mpRefCount->get_deleter()) : nullptr; #endif } #ifdef EA_COMPILER_NO_EXPLICIT_CONVERSION_OPERATORS /// Note that below we do not use operator bool(). The reason for this /// is that booleans automatically convert up to short, int, float, etc. /// The result is that this: if(sharedPtr == 1) would yield true (bad). typedef T* (this_type::*bool_)() const; operator bool_() const EA_NOEXCEPT { if(mpValue) return &this_type::get; return nullptr; } bool operator!() const EA_NOEXCEPT { return (mpValue == nullptr); } #else /// Explicit operator bool /// Allows for using a shared_ptr as a boolean. /// Example usage: /// shared_ptr<int> ptr(new int(3)); /// if(ptr) /// ++*ptr; explicit operator bool() const EA_NOEXCEPT { return (mpValue != nullptr); } #endif /// Returns true if the given shared_ptr ows the same T pointer that we do. template <typename U> bool equivalent_ownership(const shared_ptr<U>& sharedPtr) const { // We compare mpRefCount instead of mpValue, because it's feasible that there are two sets of shared_ptr // objects that are unconnected to each other but happen to own the same value pointer. return (mpRefCount == sharedPtr.mpRefCount); } protected: // Friend declarations. template <typename U> friend class shared_ptr; template <typename U> friend class weak_ptr; template <typename U> friend void allocate_shared_helper(shared_ptr<U>&, ref_count_sp*, U*); // Handles the allocating of mpRefCount, while assigning mpValue. // The provided pValue may be NULL, as with constructing with a deleter and allocator but NULL pointer. template <typename U, typename Allocator, typename Deleter> void alloc_internal(U pValue, Allocator allocator, Deleter deleter) { typedef ref_count_sp_t<U, Allocator, Deleter> ref_count_type; #if EASTL_EXCEPTIONS_ENABLED try { void* const pMemory = EASTLAlloc(allocator, sizeof(ref_count_type)); if(!pMemory) throw std::bad_alloc(); mpRefCount = ::new(pMemory) ref_count_type(pValue, eastl::move(deleter), eastl::move(allocator)); mpValue = pValue; do_enable_shared_from_this(mpRefCount, pValue, pValue); } catch(...) // The exception would usually be std::bad_alloc. { deleter(pValue); // 20.7.2.2.1 p7: If an exception is thrown, delete p is called. throw; // Throws: bad_alloc, or an implementation-defined exception when a resource other than memory could not be obtained. } #else void* const pMemory = EASTLAlloc(allocator, sizeof(ref_count_type)); if(pMemory) { mpRefCount = ::new(pMemory) ref_count_type(pValue, eastl::move(deleter), eastl::move(allocator)); mpValue = pValue; do_enable_shared_from_this(mpRefCount, pValue, pValue); } else { deleter(pValue); // We act the same as we do above with exceptions enabled. } #endif } }; // class shared_ptr /// get_pointer /// returns shared_ptr::get() via the input shared_ptr. template <typename T> inline typename shared_ptr<T>::element_type* get_pointer(const shared_ptr<T>& sharedPtr) EA_NOEXCEPT { return sharedPtr.get(); } /// get_deleter /// returns the deleter in the input shared_ptr. template <typename Deleter, typename T> Deleter* get_deleter(const shared_ptr<T>& sharedPtr) EA_NOEXCEPT { return sharedPtr.template get_deleter<Deleter>(); } /// swap /// Exchanges the owned pointer beween two shared_ptr objects. /// This non-member version is useful for compatibility of shared_ptr /// objects with the C++ Standard Library and other libraries. template <typename T> inline void swap(shared_ptr<T>& a, shared_ptr<T>& b) EA_NOEXCEPT { a.swap(b); } /// shared_ptr comparison operators template <typename T, typename U> inline bool operator==(const shared_ptr<T>& a, const shared_ptr<U>& b) EA_NOEXCEPT { // assert((a.get() != b.get()) || (a.use_count() == b.use_count())); return (a.get() == b.get()); } #if defined(EA_COMPILER_HAS_THREE_WAY_COMPARISON) template <typename T, typename U> std::strong_ordering operator<=>(const shared_ptr<T>& a, const shared_ptr<U>& b) EA_NOEXCEPT { return a.get() <=> b.get(); } #else template <typename T, typename U> inline bool operator!=(const shared_ptr<T>& a, const shared_ptr<U>& b) EA_NOEXCEPT { // assert((a.get() != b.get()) || (a.use_count() == b.use_count())); return (a.get() != b.get()); } template <typename T, typename U> inline bool operator<(const shared_ptr<T>& a, const shared_ptr<U>& b) EA_NOEXCEPT { //typedef typename eastl::common_type<T*, U*>::type CPointer; //return less<CPointer>()(a.get(), b.get()); typedef typename eastl::common_type<T*, U*>::type CPointer; // We currently need to make these temporary variables, as otherwise clang complains about CPointer being int*&&&. CPointer pT = a.get(); // I wonder if there's something wrong with our common_type type trait implementation. CPointer pU = b.get(); // "in instantiation of function template specialization 'eastl::operator<<int, int>, no known conversion from 'element_type *' (aka 'int *') to 'int *&&&' for 1st argument" return less<CPointer>()(pT, pU); // It looks like common_type is making CPointer be (e.g.) int*&& instead of int*, though the problem may be in how less<> deals with that. } template <typename T, typename U> inline bool operator>(const shared_ptr<T>& a, const shared_ptr<U>& b) EA_NOEXCEPT { return (b < a); } template <typename T, typename U> inline bool operator<=(const shared_ptr<T>& a, const shared_ptr<U>& b) EA_NOEXCEPT { return !(b < a); } template <typename T, typename U> inline bool operator>=(const shared_ptr<T>& a, const shared_ptr<U>& b) EA_NOEXCEPT { return !(a < b); } #endif template <typename T> inline bool operator==(const shared_ptr<T>& a, std::nullptr_t) EA_NOEXCEPT { return !a; } #if defined(EA_COMPILER_HAS_THREE_WAY_COMPARISON) template <typename T> inline std::strong_ordering operator<=>(const shared_ptr<T>& a, std::nullptr_t) EA_NOEXCEPT { return a.get() <=> nullptr; } #else template <typename T> inline bool operator==(std::nullptr_t, const shared_ptr<T>& b) EA_NOEXCEPT { return !b; } template <typename T> inline bool operator!=(const shared_ptr<T>& a, std::nullptr_t) EA_NOEXCEPT { return static_cast<bool>(a); } template <typename T> inline bool operator!=(std::nullptr_t, const shared_ptr<T>& b) EA_NOEXCEPT { return static_cast<bool>(b); } template <typename T> inline bool operator<(const shared_ptr<T>& a, std::nullptr_t) EA_NOEXCEPT { return less<T*>()(a.get(), nullptr); } template <typename T> inline bool operator<(std::nullptr_t, const shared_ptr<T>& b) EA_NOEXCEPT { return less<T*>()(nullptr, b.get()); } template <typename T> inline bool operator>(const shared_ptr<T>& a, std::nullptr_t) EA_NOEXCEPT { return (nullptr < a); } template <typename T> inline bool operator>(std::nullptr_t, const shared_ptr<T>& b) EA_NOEXCEPT { return (b < nullptr); } template <typename T> inline bool operator<=(const shared_ptr<T>& a, std::nullptr_t) EA_NOEXCEPT { return !(nullptr < a); } template <typename T> inline bool operator<=(std::nullptr_t, const shared_ptr<T>& b) EA_NOEXCEPT { return !(b < nullptr); } template <typename T> inline bool operator>=(const shared_ptr<T>& a, std::nullptr_t) EA_NOEXCEPT { return !(a < nullptr); } template <typename T> inline bool operator>=(std::nullptr_t, const shared_ptr<T>& b) EA_NOEXCEPT { return !(nullptr < b); } #endif /// reinterpret_pointer_cast /// /// Returns a shared_ptr<T> reinterpret-casted from a const shared_ptr<U>&. /// http://isocpp.org/files/papers/N3920.html /// /// Requires: The expression reinterpret_cast<T*>(sharedPtr.get()) shall be well formed. /// Returns: If sharedPtr is empty, an empty shared_ptr<T>; otherwise, a shared_ptr<T> /// object that stores const_cast<T*>(sharedPtr.get()) and shares ownership with sharedPtr. /// Postconditions: w.get() == const_cast<T*>(sharedPtr.get()) and w.use_count() == sharedPtr.use_count(), /// where w is the return value. template <typename T, typename U> inline shared_ptr<T> reinterpret_pointer_cast(shared_ptr<U> const& sharedPtr) EA_NOEXCEPT { return shared_ptr<T>(sharedPtr, reinterpret_cast<T*>(sharedPtr.get())); } /// static_pointer_cast /// /// Returns a shared_ptr<T> static-casted from a shared_ptr<U>&. /// /// Requires: The expression const_cast<T*>(sharedPtr.get()) shall be well formed. /// Returns: If sharedPtr is empty, an empty shared_ptr<T>; otherwise, a shared_ptr<T> /// object that stores const_cast<T*>(sharedPtr.get()) and shares ownership with sharedPtr. /// Postconditions: w.get() == const_cast<T*>(sharedPtr.get()) and w.use_count() == sharedPtr.use_count(), /// where w is the return value. template <typename T, typename U> inline shared_ptr<T> static_pointer_cast(const shared_ptr<U>& sharedPtr) EA_NOEXCEPT { return shared_ptr<T>(sharedPtr, static_cast<T*>(sharedPtr.get())); } template <typename T, typename U> // Retained for support for pre-C++11 shared_ptr. inline shared_ptr<T> static_shared_pointer_cast(const shared_ptr<U>& sharedPtr) EA_NOEXCEPT { return static_pointer_cast<T, U>(sharedPtr); } /// const_pointer_cast /// /// Returns a shared_ptr<T> const-casted from a const shared_ptr<U>&. /// Normally, this means that the source shared_ptr holds a const data type. // /// Requires: The expression const_cast<T*>(sharedPtr.get()) shall be well formed. /// Returns: If sharedPtr is empty, an empty shared_ptr<T>; otherwise, a shared_ptr<T> /// object that stores const_cast<T*>(sharedPtr.get()) and shares ownership with sharedPtr. /// Postconditions: w.get() == const_cast<T*>(sharedPtr.get()) and w.use_count() == sharedPtr.use_count(), /// where w is the return value. template <typename T, typename U> inline shared_ptr<T> const_pointer_cast(const shared_ptr<U>& sharedPtr) EA_NOEXCEPT { return shared_ptr<T>(sharedPtr, const_cast<T*>(sharedPtr.get())); } template <typename T, typename U> // Retained for support for pre-C++11 shared_ptr. inline shared_ptr<T> const_shared_pointer_cast(const shared_ptr<U>& sharedPtr) EA_NOEXCEPT { return const_pointer_cast<T, U>(sharedPtr); } #if EASTL_RTTI_ENABLED /// dynamic_pointer_cast /// /// Returns a shared_ptr<T> dynamic-casted from a const shared_ptr<U>&. /// /// Requires: The expression dynamic_cast<T*>(sharedPtr.get()) shall be well formed and shall have well defined behavior. /// Returns: When dynamic_cast<T*>(sharedPtr.get()) returns a nonzero value, a shared_ptr<T> object that stores /// a copy of it and shares ownership with sharedPtr; Otherwise, an empty shared_ptr<T> object. /// Postcondition: w.get() == dynamic_cast<T*>(sharedPtr.get()), where w is the return value /// template <typename T, typename U> inline shared_ptr<T> dynamic_pointer_cast(const shared_ptr<U>& sharedPtr) EA_NOEXCEPT { if(T* p = dynamic_cast<T*>(sharedPtr.get())) return shared_ptr<T>(sharedPtr, p); return shared_ptr<T>(); } template <typename T, typename U> // Retained for support for pre-C++11 shared_ptr. inline typename eastl::enable_if<!eastl::is_array<T>::value && !eastl::is_array<U>::value, shared_ptr<T> >::type dynamic_shared_pointer_cast(const shared_ptr<U>& sharedPtr) EA_NOEXCEPT { return dynamic_pointer_cast<T, U>(sharedPtr); } #endif /// hash specialization for shared_ptr. /// It simply returns eastl::hash(x.get()). If your unique_ptr pointer type (the return value of shared_ptr<T>::get) is /// a custom type and not a built-in pointer type then you will need to independently define eastl::hash for that type. template <typename T> struct hash< shared_ptr<T> > { size_t operator()(const shared_ptr<T>& x) const EA_NOEXCEPT { return eastl::hash<T*>()(x.get()); } }; template <typename T> void allocate_shared_helper(eastl::shared_ptr<T>& sharedPtr, ref_count_sp* pRefCount, T* pValue) { sharedPtr.mpRefCount = pRefCount; sharedPtr.mpValue = pValue; do_enable_shared_from_this(pRefCount, pValue, pValue); } template <typename T, typename Allocator, typename... Args> shared_ptr<T> allocate_shared(const Allocator& allocator, Args&&... args) { typedef ref_count_sp_t_inst<T, Allocator> ref_count_type; shared_ptr<T> ret; void* const pMemory = EASTLAlloc(const_cast<Allocator&>(allocator), sizeof(ref_count_type)); if(pMemory) { ref_count_type* pRefCount = ::new(pMemory) ref_count_type(allocator, eastl::forward<Args>(args)...); allocate_shared_helper(ret, pRefCount, pRefCount->GetValue()); } return ret; } template <typename T, typename... Args> shared_ptr<T> make_shared(Args&&... args) { // allocate with the default allocator. return eastl::allocate_shared<T>(EASTL_SHARED_PTR_DEFAULT_ALLOCATOR, eastl::forward<Args>(args)...); } /////////////////////////////////////////////////////////////////////////// // shared_ptr atomic access // // These functions allow shared_ptr to act like other C++11 atomic operations. // So the same way you can use atomic_load on a raw pointer, you can also // use it on a shared_ptr. This allows for transparent use of shared_ptr in // place of raw pointers (e.g. in templates). You do not need to use these // functions for regular thread-safe direct usage of shared_ptr construction // and copying, as it's intrinsically thread-safe for that already. // // That being said, the following is not thread-safe and needs to be guarded by // a mutex or the following atomic functions, as it's assigning the *same* // shared_ptr object from multiple threads as opposed to different shared_ptr // objects underlying object: // shared_ptr<Foo> pFoo; // // Thread 1: // shared_ptr<Foo> pFoo2 = pFoo; // // Thread 2: // pFoo = make_shared<Foo>(); /////////////////////////////////////////////////////////////////////////// template <typename T> inline bool atomic_is_lock_free(const shared_ptr<T>*) { // Return true if atomic access to the provided shared_ptr instance is lock-free, false otherwise. // For this to be lock-free, we would have to be able to copy shared_ptr objects in an atomic way // as opposed to wrapping it with a mutex like we do below. Given the nature of shared_ptr, it's // probably not feasible to implement these operations without a mutex. atomic_is_lock_free exists // in the C++11 Standard because it also applies to other types such as built-in types which can // be lock-free in their access. return false; } template <typename T> inline shared_ptr<T> atomic_load(const shared_ptr<T>* pSharedPtr) { Internal::shared_ptr_auto_mutex autoMutex(pSharedPtr); return *pSharedPtr; } template <typename T> inline shared_ptr<T> atomic_load_explicit(const shared_ptr<T>* pSharedPtr, ... /*std::memory_order memoryOrder*/) { return atomic_load(pSharedPtr); } template <typename T> inline void atomic_store(shared_ptr<T>* pSharedPtrA, shared_ptr<T> sharedPtrB) { Internal::shared_ptr_auto_mutex autoMutex(pSharedPtrA); pSharedPtrA->swap(sharedPtrB); } template <typename T> inline void atomic_store_explicit(shared_ptr<T>* pSharedPtrA, shared_ptr<T> sharedPtrB, ... /*std::memory_order memoryOrder*/) { atomic_store(pSharedPtrA, sharedPtrB); } template <typename T> shared_ptr<T> atomic_exchange(shared_ptr<T>* pSharedPtrA, shared_ptr<T> sharedPtrB) { Internal::shared_ptr_auto_mutex autoMutex(pSharedPtrA); pSharedPtrA->swap(sharedPtrB); return sharedPtrB; } template <typename T> inline shared_ptr<T> atomic_exchange_explicit(shared_ptr<T>* pSharedPtrA, shared_ptr<T> sharedPtrB, ... /*std::memory_order memoryOrder*/) { return atomic_exchange(pSharedPtrA, sharedPtrB); } // Compares the shared pointers pointed-to by p and expected. If they are equivalent (share ownership of the // same pointer and refer to the same pointer), assigns sharedPtrNew into *pSharedPtr using the memory ordering constraints // specified by success and returns true. If they are not equivalent, assigns *pSharedPtr into *pSharedPtrCondition using the // memory ordering constraints specified by failure and returns false. template <typename T> bool atomic_compare_exchange_strong(shared_ptr<T>* pSharedPtr, shared_ptr<T>* pSharedPtrCondition, shared_ptr<T> sharedPtrNew) { Internal::shared_ptr_auto_mutex autoMutex(pSharedPtr); if(pSharedPtr->equivalent_ownership(*pSharedPtrCondition)) { *pSharedPtr = sharedPtrNew; return true; } *pSharedPtrCondition = *pSharedPtr; return false; } template <typename T> inline bool atomic_compare_exchange_weak(shared_ptr<T>* pSharedPtr, shared_ptr<T>* pSharedPtrCondition, shared_ptr<T> sharedPtrNew) { return atomic_compare_exchange_strong(pSharedPtr, pSharedPtrCondition, sharedPtrNew); } template <typename T> // Returns true if pSharedPtr was equivalent to *pSharedPtrCondition. inline bool atomic_compare_exchange_strong_explicit(shared_ptr<T>* pSharedPtr, shared_ptr<T>* pSharedPtrCondition, shared_ptr<T> sharedPtrNew, ... /*memory_order memoryOrderSuccess, memory_order memoryOrderFailure*/) { return atomic_compare_exchange_strong(pSharedPtr, pSharedPtrCondition, sharedPtrNew); } template <typename T> inline bool atomic_compare_exchange_weak_explicit(shared_ptr<T>* pSharedPtr, shared_ptr<T>* pSharedPtrCondition, shared_ptr<T> sharedPtrNew, ... /*memory_order memoryOrderSuccess, memory_order memoryOrderFailure*/) { return atomic_compare_exchange_weak(pSharedPtr, pSharedPtrCondition, sharedPtrNew); } /////////////////////////////////////////////////////////////////////////// // weak_ptr /////////////////////////////////////////////////////////////////////////// /// EASTL_WEAK_PTR_DEFAULT_NAME /// /// Defines a default container name in the absence of a user-provided name. /// #ifndef EASTL_WEAK_PTR_DEFAULT_NAME #define EASTL_WEAK_PTR_DEFAULT_NAME EASTL_DEFAULT_NAME_PREFIX " weak_ptr" // Unless the user overrides something, this is "EASTL weak_ptr". #endif /// EASTL_WEAK_PTR_DEFAULT_ALLOCATOR /// #ifndef EASTL_WEAK_PTR_DEFAULT_ALLOCATOR #define EASTL_WEAK_PTR_DEFAULT_ALLOCATOR allocator_type(EASTL_WEAK_PTR_DEFAULT_NAME) #endif /// weak_ptr /// /// The weak_ptr class template stores a "weak reference" to an object /// that's already managed by a shared_ptr. To access the object, a weak_ptr /// can be converted to a shared_ptr using the shared_ptr constructor or /// the lock() member function. When the last shared_ptr to the object goes /// away and the object is deleted, the attempt to obtain a shared_ptr /// from the weak_ptr instances that refer to the deleted object will fail via /// lock() returning an empty shared_ptr. /// /// The Allocator template argument manages the memory of the shared reference /// count and not the stored object. weak_ptr will not delete the stored object /// but instead can only delete the reference count on that object. /// template <typename T> class weak_ptr { public: typedef weak_ptr<T> this_type; typedef T element_type; public: /// weak_ptr weak_ptr() EA_NOEXCEPT : mpValue(nullptr), mpRefCount(nullptr) { } /// weak_ptr /// Construction with self type. weak_ptr(const this_type& weakPtr) EA_NOEXCEPT : mpValue(weakPtr.mpValue), mpRefCount(weakPtr.mpRefCount) { if(mpRefCount) mpRefCount->weak_addref(); } /// weak_ptr /// Move construction with self type. weak_ptr(this_type&& weakPtr) EA_NOEXCEPT : mpValue(weakPtr.mpValue), mpRefCount(weakPtr.mpRefCount) { weakPtr.mpValue = nullptr; weakPtr.mpRefCount = nullptr; } /// weak_ptr /// Constructs a weak_ptr from another weak_ptr. template <typename U> weak_ptr(const weak_ptr<U>& weakPtr, typename eastl::enable_if<eastl::is_convertible<U*, element_type*>::value>::type* = 0) EA_NOEXCEPT : mpValue(weakPtr.mpValue), mpRefCount(weakPtr.mpRefCount) { if(mpRefCount) mpRefCount->weak_addref(); } /// weak_ptr /// Move constructs a weak_ptr from another weak_ptr. template <typename U> weak_ptr(weak_ptr<U>&& weakPtr, typename eastl::enable_if<eastl::is_convertible<U*, element_type*>::value>::type* = 0) EA_NOEXCEPT : mpValue(weakPtr.mpValue), mpRefCount(weakPtr.mpRefCount) { weakPtr.mpValue = nullptr; weakPtr.mpRefCount = nullptr; } /// weak_ptr /// Constructs a weak_ptr from a shared_ptr. template <typename U> weak_ptr(const shared_ptr<U>& sharedPtr, typename eastl::enable_if<eastl::is_convertible<U*, element_type*>::value>::type* = 0) EA_NOEXCEPT : mpValue(sharedPtr.mpValue), mpRefCount(sharedPtr.mpRefCount) { if (mpRefCount) mpRefCount->weak_addref(); } /// ~weak_ptr ~weak_ptr() { if(mpRefCount) mpRefCount->weak_release(); } /// operator=(weak_ptr) /// assignment to self type. this_type& operator=(const this_type& weakPtr) EA_NOEXCEPT { assign(weakPtr); return *this; } this_type& operator=(this_type&& weakPtr) EA_NOEXCEPT { weak_ptr(eastl::move(weakPtr)).swap(*this); return *this; } /// operator=(weak_ptr) template <typename U> typename eastl::enable_if<eastl::is_convertible<U*, element_type*>::value, this_type&>::type operator=(const weak_ptr<U>& weakPtr) EA_NOEXCEPT { assign(weakPtr); return *this; } template <typename U> typename eastl::enable_if<eastl::is_convertible<U*, element_type*>::value, this_type&>::type operator=(weak_ptr<U>&& weakPtr) EA_NOEXCEPT { weak_ptr(eastl::move(weakPtr)).swap(*this); return *this; } /// operator=(shared_ptr) /// Assigns to a weak_ptr from a shared_ptr. template <typename U> typename eastl::enable_if<eastl::is_convertible<U*, element_type*>::value, this_type&>::type operator=(const shared_ptr<U>& sharedPtr) EA_NOEXCEPT { if(mpRefCount != sharedPtr.mpRefCount) // This check encompasses assignment to self. { // Release old reference if(mpRefCount) mpRefCount->weak_release(); mpValue = sharedPtr.mpValue; mpRefCount = sharedPtr.mpRefCount; if(mpRefCount) mpRefCount->weak_addref(); } return *this; } shared_ptr<T> lock() const EA_NOEXCEPT { // We can't just return shared_ptr<T>(*this), as the object may go stale while we are doing this. shared_ptr<T> temp; temp.mpRefCount = mpRefCount ? mpRefCount->lock() : mpRefCount; // mpRefCount->lock() addref's the return value for us. if(temp.mpRefCount) temp.mpValue = mpValue; return temp; } // Returns: 0 if *this is empty ; otherwise, the number of shared_ptr instances that share ownership with *this. int use_count() const EA_NOEXCEPT { return mpRefCount ? mpRefCount->use_count() : 0; } // Returns: use_count() == 0 bool expired() const EA_NOEXCEPT { return (!mpRefCount || (mpRefCount->use_count() == 0)); } void reset() { if(mpRefCount) mpRefCount->weak_release(); mpValue = nullptr; mpRefCount = nullptr; } void swap(this_type& weakPtr) { T* const pValue = weakPtr.mpValue; weakPtr.mpValue = mpValue; mpValue = pValue; ref_count_sp* const pRefCount = weakPtr.mpRefCount; weakPtr.mpRefCount = mpRefCount; mpRefCount = pRefCount; } /// assign /// /// Assignment via another weak_ptr. /// template <typename U> void assign(const weak_ptr<U>& weakPtr, typename eastl::enable_if<eastl::is_convertible<U*, element_type*>::value>::type* = 0) EA_NOEXCEPT { if(mpRefCount != weakPtr.mpRefCount) // This check encompasses assignment to self. { // Release old reference if(mpRefCount) mpRefCount->weak_release(); // Add new reference mpValue = weakPtr.mpValue; mpRefCount = weakPtr.mpRefCount; if(mpRefCount) mpRefCount->weak_addref(); } } /// owner_before /// C++11 function for ordering. template <typename U> bool owner_before(const weak_ptr<U>& weakPtr) const EA_NOEXCEPT { return (mpRefCount < weakPtr.mpRefCount); } /// owner_before template <typename U> bool owner_before(const shared_ptr<U>& sharedPtr) const EA_NOEXCEPT { return (mpRefCount < sharedPtr.mpRefCount); } /// less_than /// For compatibility with pre-C++11 weak_ptr. Use owner_before instead. template <typename U> bool less_than(const weak_ptr<U>& weakPtr) const EA_NOEXCEPT { return (mpRefCount < weakPtr.mpRefCount); } /// assign /// /// Assignment through a T/ref_count_sp pair. This is used by /// external utility functions. /// void assign(element_type* pValue, ref_count_sp* pRefCount) { mpValue = pValue; if(pRefCount != mpRefCount) { if(mpRefCount) mpRefCount->weak_release(); mpRefCount = pRefCount; if(mpRefCount) mpRefCount->weak_addref(); } } protected: element_type* mpValue; /// The (weakly) owned pointer. ref_count_sp* mpRefCount; /// Reference count for owned pointer. // Friend declarations template <typename U> friend class shared_ptr; template <typename U> friend class weak_ptr; }; // class weak_ptr /// Note that the C++11 Standard does not specify that weak_ptr has comparison operators, /// though it does specify that the owner_before function exists in weak_ptr. template <typename T, typename U> inline bool operator<(const weak_ptr<T>& weakPtr1, const weak_ptr<U>& weakPtr2) { return weakPtr1.owner_before(weakPtr2); } template <typename T> void swap(weak_ptr<T>& weakPtr1, weak_ptr<T>& weakPtr2) { weakPtr1.swap(weakPtr2); } /////////////////////////////////////////////////////////////////////////// // owner_less // // Implements less (operator <) for shared_ptr and thus allows it to participate // in algorithms and containers that use strict weak ordering, such as map. /////////////////////////////////////////////////////////////////////////// template <typename T> struct owner_less; template <typename T> struct owner_less< shared_ptr<T> > { EASTL_REMOVE_AT_2024_APRIL typedef bool result_type; bool operator()(shared_ptr<T> const& a, shared_ptr<T> const& b) const { return a.owner_before(b); } bool operator()(shared_ptr<T> const& a, weak_ptr<T> const& b) const { return a.owner_before(b); } bool operator()(weak_ptr<T> const& a, shared_ptr<T> const& b) const { return a.owner_before(b); } }; template <typename T> struct owner_less< weak_ptr<T> > { EASTL_REMOVE_AT_2024_APRIL typedef bool result_type; bool operator()(weak_ptr<T> const& a, weak_ptr<T> const& b) const { return a.owner_before(b); } bool operator()(weak_ptr<T> const& a, shared_ptr<T> const& b) const { return a.owner_before(b); } bool operator()(shared_ptr<T> const& a, weak_ptr<T> const& b) const { return a.owner_before(b); } }; } // namespace eastl EA_RESTORE_VC_WARNING(); EA_RESTORE_VC_WARNING(); // We have to either #include enable_shared.h here or we need to move the enable_shared source code to here. #include <EASTL/internal/enable_shared.h> #endif // Header include guard
88ed5f0ba8cf75d121655648428e87fe8b9b0ac6
f22845ffd08b5104940ce668859c014450526635
/hdu/hdu6609.cpp
8d4c6116df4b7c23f82bcf3eb9c6da8b31b23ac9
[]
no_license
btnkij/ACM
ffd2797548ab13ac8670f5b2ef873af023280daf
36bf2950146e1477cbd201ba0281912dd0a289aa
refs/heads/master
2022-12-15T15:01:57.690973
2020-09-16T11:13:30
2020-09-16T11:13:30
172,726,050
0
0
null
null
null
null
UTF-8
C++
false
false
2,528
cpp
hdu6609.cpp
#include <cstdio> #include <iostream> #include <algorithm> #include <cmath> #include <cstring> #include <vector> #include <queue> #include <stack> using namespace std; #define INF 0x3f3f3f3f #define PI acos(-1) typedef long long ll; typedef unsigned long long ull; inline int readi(int& i1) { return scanf("%d", &i1); } inline int readi(int& i1, int& i2) { return scanf("%d %d", &i1, &i2); } inline int readi(int& i1, int& i2, int& i3) { return scanf("%d %d %d", &i1, &i2, &i3); } inline int readi(int& i1, int& i2, int& i3, int& i4) { return scanf("%d %d %d %d", &i1, &i2, &i3, &i4); } inline int reads(char* s1) { return scanf("%s", s1); } #define mset(mem, val) memset(mem, val, sizeof(mem)) #define rep(i, begin, end) for (register int i = (begin); i <= (end); i++) #define rep2(i1, begin1, end1, i2, begin2, end2) rep(i1, begin1, end1) rep(i2, begin2, end2) #define repne(i, begin, end) for (register int i = (begin); i < (end); i++) #define repne2(i1, begin1, end1, i2, begin2, end2) repne(i1, begin1, end1) repne(i2, begin2, end2) struct binary_indexed_tree { ll data[200010]; int size; void clear(int size) { this->size = size; memset(data + 1, 0, sizeof(ll) * size); } void add(int idx, ll delta) { while (idx <= size) { data[idx] += delta; idx += idx & -idx; } } ll query(int end) { ll sum = 0; while (end) { sum += data[end]; end ^= end & -end; } return sum; } }sum,cnt; struct Node { int val,idx; bool operator<(const Node& rhs)const { return val<rhs.val; } }ord[200010]; int arr[200010],id[200010]; int main() { #ifdef __DEBUG__ freopen("in.txt", "r", stdin); freopen("out.txt", "w", stdout); #endif int T; readi(T); while(T--) { int n,m; readi(n,m); rep(i,1,n) { readi(arr[i]); ord[i]=(Node){arr[i],i}; } sort(ord+1,ord+n+1); rep(i,1,n)id[ord[i].idx]=i; sum.clear(n+2); cnt.clear(n+2); rep(i,1,n) { int lt=0, rt=n+1; int mm=m-arr[i]; while(lt<rt) { int mid=(lt+rt+1)>>1; if(sum.query(mid)>mm)rt=mid-1; else lt=mid; } printf("%lld ",i-1-cnt.query(lt)); sum.add(id[i],arr[i]); cnt.add(id[i],1); } printf("\n"); } return 0; }
beca84e7329d93405585696915bbf57596052c21
5520a2bff33639c1643beeb094965a1d4c1ca07e
/src/lib/LofarPelicanClientApp.h
a235ff7e66f5918fab16fa20effcfb1553584028
[]
no_license
pelican/pelican-lofar
d04315a095a65c1136bca58a825d8fa85b2a92b2
8e953fc46c7ec37caba9773f1404a2c3e4951da4
refs/heads/master
2020-05-21T15:05:45.630643
2019-08-12T14:48:46
2019-08-12T14:48:46
580,978
4
5
null
2015-05-13T14:15:08
2010-03-26T16:59:51
C++
UTF-8
C++
false
false
1,053
h
LofarPelicanClientApp.h
#ifndef LOFARPELICANCLIENTAPP_H #define LOFARPELICANCLIENTAPP_H #include "pelican/utility/Config.h" #include <QMap> /** * @file LofarPelicanClientApp.h */ namespace pelican { class AbstractBlobClient; class ThreadedDataBlobClient; namespace ampp { /** * @class LofarPelicanClientApp * * @brief * convenience class for applications wishing to do downstream * processing of data streamed from a pelican-lofar pipeline * * @details * */ class LofarPelicanClientApp { public: typedef QMap<QString,ThreadedDataBlobClient*> ClientMapContainer_T; public: LofarPelicanClientApp(int argc, char** argv, const Config::TreeAddress& baseNode ); ~LofarPelicanClientApp(); ClientMapContainer_T clients() const; ConfigNode config(const Config::TreeAddress address) const; protected: pelican::Config _config; Config::TreeAddress _address; private: ClientMapContainer_T _clients; }; } // namespace ampp } // namespace pelican #endif // LOFARPELICANCLIENTAPP_H
87df99ff85d98d532ec77a3c12044a4285ad65b0
80c314286bf7476dcf9cfd983c41f6a58a2b68ed
/graduation/proj.win32/SlingSprite.h
e7272f45db36d1e0b3c677e9fe7a964f4ca935e3
[]
no_license
BellyABC123/graduation
2b3a0edeea04125a3687e7d18d578528c772e7af
30e9a7974009a269c8f5d230fff6a5423312791c
refs/heads/master
2021-05-26T21:32:10.307137
2013-05-23T22:04:35
2013-05-23T22:04:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
380
h
SlingSprite.h
#ifndef __SLING_SPRITE__ #define __SLING_SPRITE__ #include "cocos2d.h" using namespace cocos2d; class SlingSprite : public CCSprite { public: SlingSprite(int x = 0, int y = 0): _radius(50) { init(); setPosition(CCPoint(x,y)); } ~SlingSprite(); private: int _radius; public: int getRadius(){ return _radius;} virtual void draw(); }; #endif // !__BIRD_SPRITE__
fbf7a949e261eab5be83d3c502d3a548c81baec5
547eb08d4c68a5410cce2389f6f2d74e4882f2c0
/material/queens-recursive.cp
b5b2684e40af0639ac3e533ec15a39fedfc836c1
[]
no_license
deymoumita/ECE6122_APT
1bb3f25b265f6a132b94de42f2180ce12cb5c24e
7246f6d1d53e9dfb8ce75f77f9f2eef0b8ecf98f
refs/heads/main
2023-03-12T04:42:54.001301
2021-02-26T23:25:41
2021-02-26T23:25:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,584
cp
queens-recursive.cp
// Implementation of the eight queens problem // YOUR NAME HERE #include "cs1372.h" #include "qdisplay.h" #include "RectHelpers.h" #include <Qt/QPainter.h> #include <iostream> #include <sstream> using namespace std; const int nrows = 8; const int ncols = 8; // For the board, zero means unoccupied and not attacked // -1 means occupied // Non-zero is the number of previously placed pieces attacking this space int board[nrows][ncols]; int nSolutions = 0; void PrintBoard() { // Debug for (int r = 0; r < nrows; ++r) { for (int c = 0; c < ncols; ++c) { if (board[r][c] < 0) cout << " Q "; else if (board[r][c] > 0) cout << " " << board[r][c] << " "; else cout << " "; } cout << endl; } } void PrintSolution() { // Debug for (int r = 0; r < nrows; ++r) { for (int c = 0; c < ncols; ++c) { if (board[r][c] < 0) cout << " Q "; else cout << " - "; } cout << endl; } } void Place(int r, int c) { board[r][c] = -1; // Occupied for (int c1 = 0; c1 < ncols; ++c1) { if (board[r][c1] < 0 && c != c1) { // this check not necssary, for debug now cout << "Oops, found occupied square r " << r << " c " << c1 << endl; exit(0); } if (c != c1) board[r][c1]++; // attacked } for (int r1 = 0; r1 < nrows; ++r1) { if (board[r1][c] < 0 && r != r1) { // this check not necssary, for debug now cout << "Oops, found occupied square r " << r1 << " c " << c << endl; exit(0); } if (r != r1) board[r1][c]++; // attacked } int r1 = r - 1; int c1 = c - 1; // upper left diagonal while (r1 >= 0 && c1 >= 0) { board[r1--][c1--]++; } r1 = r - 1; c1 = c + 1; // upper right diagonal while (r1 >= 0 && c1 < ncols) { board[r1--][c1++]++; } r1 = r + 1; c1 = c - 1; // lower left diagonal while (r1 < nrows && c1 >= 0) { board[r1++][c1--]++; } r1 = r + 1; c1 = c + 1; // lower right diagonal while (r1 < nrows && c1 < ncols) { board[r1++][c1++]++; } } void Remove(int r, int c) { board[r][c] = 0; // Not occupied for (int c1 = 0; c1 < ncols; ++c1) { if (board[r][c1] < 0 && c != c1) { // this check not necssary, for debug now cout << "Oops, found occupied square r " << r << " c " << c1 << endl; exit(0); } if (c1 != c) board[r][c1]--; // no longer attacked } for (int r1 = 0; r1 < nrows; ++r1) { if (board[r1][c] < 0 && r != r1) { // this check not necssary, for debug now cout << "Oops, found occupied square r " << r1 << " c " << c << endl; exit(0); } if (r1 != r) board[r1][c]--; // no longer attacked } int r1 = r - 1; int c1 = c - 1; // upper left diagonal while (r1 >= 0 && c1 >= 0) { board[r1--][c1--]--; } r1 = r - 1; c1 = c + 1; // upper right diagonal while (r1 >= 0 && c1 < ncols) { board[r1--][c1++]--; } r1 = r + 1; c1 = c - 1; // lower left diagonal while (r1 < nrows && c1 >= 0) { board[r1++][c1--]--; } r1 = r + 1; c1 = c + 1; // lower right diagonal while (r1 < nrows && c1 < ncols) { board[r1++][c1++]--; } } static int saveIndex = 0; void DisplayBoard(QDisplay& d, int row, int col) { QPainter p(d.Pixmap()); QRect r(0, 0, d.width(), d.height()); EraseRect(p, r); // Find height of Q letter QRect txt = p.boundingRect(r, Qt::AlignCenter, "Q"); unsigned h = txt.height() + txt.height()/2; // Allow 1/4 margin top/bottom // Draw horizontal and vertical lines unsigned y = h/2; // Leave room for column arrow unsigned x = h/2; // And left margin for (int y1 = 0; y1 < 9; ++y1) { // Horizontal lines p.drawLine(x, y, x + 8 * h, y); y += h; } y = h/2; for (int x1 = 0; x1 < 9; ++x1) { // Vertical lines p.drawLine(x, y, x, y + 8 * h); x += h; } if (col >= 0) { // Draw the column arrow unsigned xc = h/2 + h/2 + col * h; unsigned yc = h/2; p.drawLine(xc, 0, xc, yc); p.drawLine(xc, yc, xc - 4, yc - 4); p.drawLine(xc, yc, xc + 4, yc - 4); } if (row >= 0) { // Draw the row arrow unsigned xc = h/2; unsigned yc = h/2 + h/2 + row * h; p.drawLine(0, yc, xc, yc); p.drawLine(xc, yc, xc - 4, yc - 4); p.drawLine(xc, yc, xc - 4, yc + 4); } // Now draw the Queen icons for (int c = 0; c < ncols; ++c) { for (int r = 0; r < nrows; ++r) { QRect r1(0, 0, h-2, h-2); r1 = MoveRectRightBy(r1, (c) * h + h/2 + 1); r1 = MoveRectDownBy(r1, (r) * h + h/2 + 1); if (board[r][c] < 0) { // Place a queen here p.drawText(r1, Qt::AlignCenter, "Q"); } else if (board[r][c] > 0) { // Square is attacked, grey out QBrush grayBrush(QColor(0xc0, 0xc0, 0xc0)); p.fillRect(r1, grayBrush); } else if (r < row && c == col) { // Already checked this square, draw a small x p.drawText(r1, Qt::AlignCenter, "x"); } } } d.Update(); // Save the image ostringstream oss; oss.width(5); oss.fill('0'); oss << saveIndex++; string sn = "Queens" + oss.str() + ".png"; //string sn = "Solutions" + oss.str() + ".png"; d.Pixmap()->save(sn.c_str()); } void Try(QDisplay& d, int c) { if (c == ncols) { // Solution found nSolutions++; cout << "Found solution number " << nSolutions << " on frame " << saveIndex << endl; PrintSolution(); DisplayBoard(d, -1, -1); return; } for (int r = 0; r < nrows; ++r) { DisplayBoard(d, r, c); if (board[r][c] == 0) { // We can place on this square //cout << "Placing square r " << r << " c " << c << endl; Place(r,c); DisplayBoard(d, r, c); //PrintBoard(); //cout << endl << endl; Try(d, c + 1); Remove(r,c); //DisplayBoard(d, r, c); } } DisplayBoard(d, nrows, c); // Show we advance row counter off end } int main(int argc, char** argv) { QApp app(argc, argv); QDisplay d(app); d.BlankPixmap(256, 256); d.Show(); Try(d, 0); cout << "Found " << nSolutions << " solutions" << endl; }
3baff200d92d76563e421637bcdfff9b316c256f
6b28df12d3a45c20a19503e0eeb3649460d587f9
/data/862.cpp
ae93548936176f401937a7097f5db3c56bab6c0e
[ "MIT" ]
permissive
TianyiChen/rdcpp-data
9bb1f0319de5a22c601192c3eef33e4024b172fe
75c6868c876511e3ce143fdc3c08ddd74c7aa4ea
refs/heads/master
2021-04-15T09:26:01.359253
2018-03-21T18:57:09
2018-03-21T18:57:09
126,216,374
0
0
null
null
null
null
UTF-8
C++
false
false
10,620
cpp
862.cpp
int P ,J1o , /*hI*/ aG, cQ ,JB , lKW, R4,ZMW , nUI ,OFw, Lxgi , YH , qd , ATR ,tbn , SA , /*JH*/uapK ,/*kxKlB*/bshG , RLYq,GZ,O9 , F62 , ih , h6o , sh, inO ,//Qr nWz , zEXD,DF, QY7,gG , IEo, xX,Qges ,BcQJ , Wr ,RZ0 , HgM/*CqP*/, qQs , bPR/*R*/, ar , Nh /*0*/ ,eCL0G ,plzKyY/*TB*/,mt ,oj ,Yf4Zu ;void f_f0 (){int b; volatile int aqB8, fm , K, Mkx,iwsQ ; {volatile int fD , kB , qix4Nr, EXgtqy , /*S9*/ Zx;{/*W*/ { volatile int/*wvl*/ GQV, AzZ,PYw ; { } Yf4Zu= PYw + GQV + AzZ ; } ;{;/**/}} {{;if (true ) for (int i=1; i<1;++i/*nS3C*/) //GfZ /*Y5*/for (int i=1 ; i< 2 ;++i) {if(true) {; } else for (int i=1 ; i< 3 ;++i //Hv3e ) { } } else { }if (true /*kF*/ ){ } else//E4 if (true //u ) if (true) { volatile int uA6t , tR ,JmnkAH ;P = JmnkAH+ uA6t + tR ; }//A else for//8TLSB (int i=1 ;i<4 ;++i) {} else//ot { { { } { /*h*/} return ;} }{//W for (int i=1 ;i<5 ;++i); if( true) /*d6QO*/{//9h {}} else if(true ) { } else {{/*1X*/} { } }}} for(int i=1 ;i<6;++i ) {{ for (int i=1;// i< /*4*/7 ;++i ) if ( true ) { }else{ // for (int i=1; i< 8 /*j2*/;++i ); { }} }{/*3*/ { }}; } /*9X1*/} return ; for (int i=1 ; i<9;++i ) {int zrpmsp ; volatile int/*qg*/ a5 , LWi ,D, nr, RbU,FJ , CG ,// SyI; {{ ; }{{volatile int KXHu ; for (int /*E*/i=1;i<10;++i )for(int i=1 ; i< 11 ;++i) /*Fe*/J1o= KXHu;}} {} } aG= SyI + a5+ LWi/*uEr*/+ D; {{volatile int //q Tya2P // , laq ;cQ = laq + Tya2P ;}} ; ;;//lNEl zrpmsp//h = nr +RbU +FJ+CG ; }for(int i=1;i< 12;++i )JB= Zx + fD + kB+qix4Nr+ EXgtqy; ; /*Exr*/{ if ( true)if ( true) {/*7*/ {} } else if ( true ) for (int i=1;i<13 ;++i);else {{//l {//A1RRk {}} } { }//r2 }else{{ {} ;} {/*Jq*/ { } } } { { if ( true )return //PJ ; else{ } } } { //IE { } } } }{int npmH ; volatile int RT , ucSzj, Sim , xY2; { volatile int O, e ,// I1c2wJ , G ,YkQl ; { //mvxc if ( true ) { int i ; volatile int pofr, XlSi;for (int i=1 ; i< 14 ;++i )i = XlSi+ pofr;} else return ; } { /*UfV*/{ {{ } {}} { } }return//8p ; } lKW= YkQl/**/+ O +e + I1c2wJ/*4W*/+G; } { for(int i=1; i<15 ;++i ) /*eXRP*/; for//u (int i=1 ; i<//Lq 16;++i/*qeO*/) { if //FdT ( true )for (int i=1 /*jUn*/; i<17 ;++i ) // //uj for(int i=1 ; i<18;++i/*Q*/ ){ {} { { } } { {} } } else{{ }//e {volatile int prR//H ;R4= prR ;}//S } {} }}for(int i=1 ;i< 19 ;++i ) npmH=xY2/*o*/+RT + ucSzj+ Sim ; //ndL } { int vR7; volatile int DMhDe ,JIJ,DeVMce , Lh8r ,kKe ;for (int i=1;i< /*UMqy*/ 20 ;++i)return ; if ( true ) {volatile int l, EOWa,Hl ;for (int i=1//YxX ;i< 21 ;++i )return ; return ;if(true ); else ZMW = Hl + l + EOWa ; ;//es }else vR7=/*cGP*/kKe +DMhDe +JIJ + DeVMce// + Lh8r ; {;/*rkB*/{ { volatile int rE2;nUI = rE2;}/*L*/{volatile int EvpS,oT;return ;{}//2LjO { } OFw =oT + EvpS ;} { { } { }//S } }}//F }return ; if (true) return ; else b =iwsQ +/*oU*//*D*/ aqB8+ fm + K+Mkx ;return ;/*uy*/} void f_f1(){volatile int wHX , YQNr ,//um Z ,Kj , iZ0 , nm5jf ; { ;;/*Ib*/ { {{ { } for (int i=1 ; i< 22 ;++i){{ } { }} ; }}{ { ; } } // for (int i=1 ;i<23 ;++i ) {int lFoCs//G0wiW ;volatile int tAuq//ixlI ,Zje,qn;{} lFoCs/*1wV*/ =qn/*z1*/+tAuq+ Zje ; }/*1o*/ }{return ; {return ; {}{volatile int sTIw , Na ; ; Lxgi =Na ; /*1S*/ if( true )YH = sTIw ;else { }} }return ;}}qd =nm5jf+ wHX+ YQNr+ Z + Kj +iZ0 // ; { volatile int FRo ,d0 ,//k6 qWv ,onvqB ; return ; { return ; {int APjFB2 ;volatile int xRg , r ,pb3gD;{ }APjFB2 = pb3gD+ xRg//xTNvoBQ + r ;{ int Jum ; volatile int fSON , PQ7a , KP8 ; Jum/**/= KP8 ; ATR = fSON+PQ7a ; } } return ; for//P5tDO (int i=1; i< 24;++i/**/ ); } { {// ;}//K if(true ) {{ ;} }else/*W*/ {{ } ; } { { /*Gpn*/}{ { }} { } return ; }{ return ;for(int i=1 ;i< 25//EW ;++i ) { {}}} {if ( true)if(true ) {volatile int// kfJe ,/*isfZ*/St2tp//Y ; tbn = St2tp +/*u*/kfJe ; if ( true ) ;/*8A*/else {int B ; /*He*/volatile int PdW// , g5, iEy4U;//Tz /*kx*/; B=iEy4U; SA /*bO*/=/*g*/PdW/*M*/+ g5 ; } /*yoj*/ {} }else { } else{ //S } ; } }uapK= onvqB +FRo +d0 +qWv ;return ;{; if//f0 (true ) {{}} else { return ; } {volatile int FVr ,x ; {{}} bshG= x +FVr ; }//L9f {{ }{}}} ; {return ; {{{} { ;{ }}for(int i=1 /*p*/;//b i< 26;++i ){ } }//za {int//8 al07; volatile int LvN//1K ,/**/B7t ;{ if ( true) { } else{} } if( true) for (int i=1 ; i< 27;++i);else al07 = B7t+ LvN; } } } } { for (int i=1 ; //qK3H i< 28 ;++i)//3gj0 { int W;volatile int MI0 ,Nqez, Izn ,qM;return/*G*/ ; ; W=/*gd*/qM +MI0+ //7Tj Nqez/**/ + Izn;} return//Kx4j0 ;{; if/*Lln*/ ( true//b0 ) return ;else {for (int i=1 ; i<29 ;++i ) return ; }return ; } { int LZ ; //VXG volatile int PM5 , Dho,//Hd Oi//JuFk /*9g*/,bvA ,bq , S, SKjD, BW21 ;;LZ =BW21+ PM5 + Dho +Oi +bvA; RLYq= bq + S+ SKjD ;}} {volatile int p ,I, Uez4 , HV ,dHkG ; for (int i=1; i<30;++i ) for (int i=1 ; i< 31 ;++i )for /*Iu*/ //z (int i=1 ; i<32;++i)GZ= dHkG + /*H*/p+I +Uez4 + HV ; if ( true) ;else if (true ) {;{{int lbZ5; volatile int Yms;if//p ( true) for(int i=1 ;i<33 ;++i ) { } else { }lbZ5 = Yms ; } { //U { }} } return ; } else//dDs { ; return ; {volatile int d, y5 , k2nZ1 ;O9 = k2nZ1 +d + y5 ;}{/*SCDA*/for(int i=1 ;i< 34;++i )/*h*/return//E ; } } {//cyBx { { };} {/*I5*/{{ }} for(int i=1 ; i<35//w ;++i) {volatile int bQfBP , s ; ; F62 =s +bQfBP ; } }/*i8Q*/return ;}}/*U*/ ; return ; //8 } void f_f2 () { int u6HY; volatile int Cd4H, o58 ,Rv3,jv , jFP ; //pybo { int J0q; volatile int kgfw , //Z KuJ , aUdI ,Uk6A1, IzaTR , d2R ,vD, t0D0, Vwq ,gGt ,/*xa*/Ts,dKE , H ; J0q =//Qr H + kgfw +KuJ + aUdI ; for(int i=1;//e16 i<36 ;++i){ { int z8l ;//z volatile int sugK1qa ,dhk , tMq/*M8y9Y*/,ud /*6Ft*/ ; { { return ; } if( true )// /*J*///1N /*FY*/{ ;}else{ volatile int JyG0 ; ih = JyG0 ;}} z8l = ud +sugK1qa+ dhk +tMq ;{ { { } } } }//XcU { for(int i=1 ; //Xyd i<37;++i ){ {/*e*/ } //TR } { } } }{{//2 volatile int V,iX/*p*/,XjV4R;{ {} } h6o=/*Vy6*/XjV4R+V+iX;} { { int TtZd2K ;volatile int uSM ; ; for (int i=1; i<38 ;++i) TtZd2K=/*0ND*/uSM//aOG ;} } } sh//DI =Uk6A1 + IzaTR + d2R + vD+ t0D0;inO =Vwq +gGt+ Ts + dKE /*9*/; } { volatile int Ujlu, Eqwb , IjQ , KR;/**/return ; for(int i=1; i< 39 ;++i ) //cOgs {{volatile int tMl, h,/*L*/ //1 PZY4; for (int i=1; i< 40 ;++i )nWz =PZY4 +tMl + h ; for(int i=1;i< 41 ;++i) ; } for (int i=1//JxEa ;//BI i<42 ;++i) return ; }zEXD=KR+ //5 Ujlu+Eqwb/*kt*/ + IjQ//3 ;{for(int i=1 ; i< 43 ;++i ) //9P {int n ; //6ys5 volatile int EfV ,ko ,u ;{volatile int uS3/*re*/, G2v; if(true ){ volatile int kdA ;/**/ DF = kdA; } else for (int i=1 ; i< 44;++i ) if( true ) { volatile int//m awb;QY7= awb ; } else gG//gs = G2v +//xim uS3;/*Aw*/ }n = u + EfV //W + ko /*5*/; }; ; } } { volatile int//g F1S , kI ,RpY ,E2wp,ilwQ ; {{{volatile int yx //0 ; if (true ) { {} for(int i=1;i<45 ;++i ) for(int i=1;i<// 46;++i ){}/*M*/} else IEo= yx ; { } }return ; { {//E {} }} } { { volatile int k4YRS ,//GWS Yu , N;/*77*/xX =N+k4YRS+ Yu; } return ; { ; {}/*ui*/} }for (int i=1 //iV ; i< 47;++i ) {return ; {/*O*/ } }} //Z {/*1p*/ { {return ; }} if ( true) for(int i=1 ; i< 48 ;++i )for(int i=1 ; i< 49/*EqunF*/ ;++i ){ volatile int SYl , yJ ;Qges =yJ + SYl ; } else{ ; //NcY for(int i=1; i< 50;++i ){/*4sf*/volatile int YOxHM7h , qmGa ; if /**/(true ) {} else BcQJ=qmGa+YOxHM7h;/*s*/{/*9*/int NP ; volatile int UQ;NP=UQ; }}//PKyt }; { //h int j; volatile int t , OyNN , gB//mm ,tZid ;// j= tZid +t +/*q*/ OyNN+gB ; { } }} for (int i=1 ; i<51;++i){ for(int i=1 ;//1B i< 52 /*O*/;++i) ;{ if ( true) { return ;//m04 } else if (/*Uw*/ true)/**/{}else ;{ { } }{ } }}{ volatile int R, S4xBb, VOHZ ; {int Lhws; volatile int tghY,//Pvc kM; Lhws =kM+/*cX*/ tghY ; //cqP { volatile int aF8 ; if(true) return ; else if(true )if ( true){ } else/*T*/ { } /**/ else/*T*/ Wr = aF8 ; } } RZ0 =VOHZ+R + S4xBb ; }HgM = ilwQ + F1S+kI + /*TcH*/RpY + E2wp ; }if( true )/*t*/ u6HY=jFP+ Cd4H + o58 + Rv3 +jv;/**/else { int FHdb ; volatile int VJ, bLU,Iw , z4t9, a5a ; if/*1M9*/(true ) if (true //CeQ )FHdb=a5a +VJ/*Lm5*/+bLU +Iw + z4t9 ;else { //Mf if (true ){{ }//d } //A else/*h*/ if( true ) for //QTa (int i=1 ; i< 53//25ZGf ;++i /*3*/){return ; {if( true ) return ; /*zx2*/else { {}/*tZ4p*/ } } } else ;;}else{return/**/ ; ; { { { int PQ;volatile int Z2 ; PQ= Z2/**/;} { /*Kz55T*/{} } return ; }{} } {/*n*/ if (true/*je*//*F*/) {} else{ } {//Jo {} return ;} }}{ {//jx {if (true ) {} else {for (int i=1 ;i< 54;++i){/*RcR*/} }/*VC*/{ }}} ;/*5k5*/ /*V*/ for (int i=1; i<55;++i ) { { } { } {return ; } }if(true/*nh*/); else { return ; { } {volatile int qfBo ,//bO /*uR*/ wh4 ; if( true){ }//yEp else if( /**/true )if(true ) { ; } else if/*xD5*/(true) {{ } } else {; } else qQs = wh4 + qfBo;//H }} }return ; if (true ) return ;else ;} //noDnb return ; return ;}int main(){/*6Maw*/int sOV; // volatile int//O /**/ nU ,esoqxF ,NJ// , lWS, IMz5,/*x88u6*/IZGK,JElM , lb8 , oC, PFsv ,oj8 ,//dw Lk /*aXJ*/ ,deYH, nn7ON ,Twa ,jReg ; ; bPR=jReg/*iDR*/ + nU+ // esoqxF +NJ + lWS ;{ return 611648678; {/*bQ*/return 1583206136 ; { //03uxb for (int //pTxl i=1;i< 56 ;++i//c7 )//x99x { int HZ ;volatile int C , U8 , No;HZ=No+ C +U8 ;}//7 } { return 219858084 ; { volatile int UO , SPA1, dK ;for (int i=1; i< 57 /*D5MNMZ*/;++i) return 93229115; { }ar =dK +UO+ SPA1; }; {}}/*hsXJX*/return 349941407 ; } { volatile int Pb,F2 , qJd //wt ,o;; Nh = //CZU o +Pb + F2 +qJd;}} for/*xh*/(int i=1; //G i< 58 ;++i ) sOV =IMz5 +//1IF /*1*/ IZGK//UGE /*m*/+ JElM +lb8+ oC; { volatile int xTe, DTr , sEk, PI ; //XRm eCL0G//I =PI +xTe+DTr +sEk ;;{ int Dwr ; volatile int k , K8n , Tbo, D9Fu, ap5p, oow ,NMPilP , PNQS9 ,Tbv4 ,F0 ,J ,kzL;plzKyY /*X*/= kzL + //3D k + K8n + Tbo ;for (int i=1 ;i<59 ;++i)Dwr = D9Fu + ap5p +/*A*/oow //eo + NMPilP ;/*m*/ /*b6Mk*/ ; mt=PNQS9 +//qP Tbv4 +F0 + J ;}}if (true ) oj/*L*/= PFsv+ oj8+ Lk+ deYH+nn7ON + Twa ; else return 1768631898 ; }
62a87083a6a1f3f3155ea156f13502480be3c030
9ac887713ffc194682d6f088b690b76b8525b260
/online_judge/atcoder/abc200/d.cpp
22414366ffeb57ef4199df2315377ef408c3b803
[]
no_license
ganmacs/playground
27b3e0625796f6ee5324a70b06d3d3e5c77e1511
a007f9fabc337561784b2a6040b5be77361460f8
refs/heads/master
2022-05-25T05:52:49.583453
2022-05-09T03:39:12
2022-05-09T04:06:15
36,348,909
6
0
null
2019-06-18T07:23:16
2015-05-27T06:50:59
C++
UTF-8
C++
false
false
966
cpp
d.cpp
#include <algorithm> #include <iostream> #include <sstream> #include <string> #include <vector> #include <cstdio> #include <cmath> #include <array> #include <queue> #include <stack> #include <map> #include <set> using namespace std; int main() { int N; cin >> N; vector<long long> V(N); map<int, vector<int>> M; for (auto& vi: V) { cin >> vi; }; int m = min(N, 8); for (int i = 0; i < (1 << m); i++) { vector<int> s; int c = 0; for (int j = 0; j < N; j++) { if (i & (1 << j)) { s.push_back(j + 1); c += V[j]; c %= 200; } } if (M[c].size() != 0) { cout << "Yes\n"; cout << M[c].size() << " "; for (auto& vi: M[c]) { cout << vi << " "; }; puts(""); cout << s.size() << " "; for (auto& vi: s) { cout << vi << " "; }; puts(""); return 0; } else { M[c] = s; } } cout << "No\n"; return 0; }
32a9761c66b2d42d195dc77b907a4acbd3bb564e
09c4c7a2c2140c33848a953251c91b795e35d378
/src/pattern/dp02/src/Builder.cpp
440c456f91e18176cb510df3087561999e59e747
[]
no_license
sanstwy777/Design-Patterns
3b728bc7a822f6ae5b9596c44660e64abebe8876
2718341eca45cbdaf90b0c2e5c681f8dbcb41e62
refs/heads/master
2023-01-01T12:11:48.997827
2020-08-09T17:24:45
2020-11-01T04:18:41
286,283,967
0
0
null
null
null
null
UTF-8
C++
false
false
298
cpp
Builder.cpp
/* * Builder.cpp * * Created on: Mar 28, 2020 * Author: sanstwy27 */ #include "Builder.hpp" using namespace BuilderSpace; Builder::~Builder() { // TODO Auto-generated destructor stub } void Builder::init() { product.init(); } Product Builder::get() { return product; }
34b5d0f2e8bd06a3a7f99a2375488cf02788e335
3ff79f17140dcdfbe8da551c9cf5aee133ff3002
/lab2/lab2.cpp
f8645c6b7dbd2b78b8aff6711aef526a557b5989
[]
no_license
Elin16/fduoop
98c21f955dde12d1adb9cd400069788da1dde6fc
5862948c9c60a37e8f63057dc565672dff5fe926
refs/heads/main
2023-05-13T23:17:07.397247
2021-05-27T13:01:23
2021-05-27T13:01:23
360,132,646
0
0
null
null
null
null
UTF-8
C++
false
false
5,193
cpp
lab2.cpp
#include<stdio.h> #include<stdlib.h> #include<time.h> #include<string.h> #define WIDTH 4 #define LENGTH 4 #define TOTAL 16 #define BUFF "n" #define N 50 #define DOWN "z" #define UP "w" #define LEFT "a" #define RIGHT "s" #define TEST_MODLE "-t" #define MERGE 2 int sum,numberOfWinning,table[TOTAL]={0}; typedef enum { victory,fail,play }statement; char com[N]; void drawTheLine(){ for(int i=0;i<WIDTH;++i)printf("+-----"); printf("+\n"); } void printTable(){ drawTheLine(); for(int i=0;i<TOTAL;++i){ if(table[i]){ if(table[i]<16)printf("| %d ",table[i]); else if(table[i]<128) printf("| %d ",table[i]); else if(table[i]<1024) printf("| %d ",table[i]); else printf("| %d",table[i]); } else printf("| "); if((i+1)%WIDTH==0){ printf("|\n"); drawTheLine(); } } } int addNumber(){ int t=rand()%TOTAL; while(table[t]) t=rand()%TOTAL; table[t]=2; sum++; return (sum!=TOTAL); } void initial(){ sum=0; numberOfWinning=2048; srand((unsigned)time(NULL)); addNumber(); puts("Welcome to 2048 !\n\n enter \'-t\' then you can win this game by generating the number 64\n"); printTable(); } void gameOver(){ puts("game over"); } void winGame(){ puts("~~~~~Congratulations!You get a Victory~~~~~"); } void loseGame(){ puts("-----Sorry about that,you are failed-----"); } statement checkState(){ for(int i=0;i<TOTAL;++i) if(table[i]==numberOfWinning) return victory; if(sum<TOTAL) return play; int nearNum; for(int i=0;i<TOTAL;++i){ nearNum=i+1; if((nearNum%WIDTH)&&(table[nearNum]==table[i])) return play; nearNum=i+WIDTH; if(nearNum<TOTAL&&table[nearNum]==table[i]) return play; } return fail; } void changeWinningNumber(){ numberOfWinning=64; puts("Now you can win this game when number 64 appears"); } int allDown(){ int x,y,f=0; for(int i=TOTAL-WIDTH;i<TOTAL;++i){ x=i; while(x>=0){ if(table[x]==0){ y=x-WIDTH; while(y>=0&&table[y]==0) y-=WIDTH; if(y>=0&&table[y]) table[x]=table[y],table[y]=0,f=1; } x-=WIDTH; } } return f; } int colliationDown(){ int f=0; for(int i=TOTAL;i-WIDTH>=0;i--) if(table[i]&&table[i]==table[i-WIDTH]){ table[i]=table[i]<<1; table[i-WIDTH]=0; sum--; f=1; } return f; } int moveDown(){ int f[3]; f[0]=allDown(); f[1]=colliationDown(); f[2]=allDown(); return(f[0]|f[1]|f[2]); } int allUp(){ int x,y,f=0; for(int i=0;i<WIDTH;++i){ x=i; while(x<TOTAL){ if(table[x]==0){ y=x+WIDTH; while(y<TOTAL&&table[y]==0) y+=WIDTH; if(y<TOTAL&&table[y]) table[x]=table[y],table[y]=0,f=1; } x+=WIDTH; } } return f; } int colliationUp(){ int f=0; for(int i=0;i+WIDTH<TOTAL;i++) if(table[i]&&table[i]==table[i+WIDTH]){ table[i]=table[i]<<1; table[i+WIDTH]=0; sum--; f=1; } return f; } int moveUp(){ int f[3]; f[1]=allUp(); f[2]=colliationUp(); f[0]=allUp(); return(f[0]|f[1]|f[2]); } int allLeft(){ int x,y,f=0; for(int i=0;i<LENGTH;++i){ x=i*WIDTH; while(x<(i+1)*WIDTH){ if(table[x]==0){ y=x+1; while((y%WIDTH)&&table[y]==0) y++; if((y%WIDTH)&&table[y]) table[x]=table[y],table[y]=0,f=1; } x++; } } return f; } int colliationLeft(){ int f=0; for(int i=0;i<TOTAL;i++) if(table[i]&&(i+1)%WIDTH&&table[i]==table[i+1]){ table[i]=table[i]<<1; table[i+1]=0; sum--; f=1; } return f; } int moveLeft(){ int f[3]; f[0] = allLeft(); f[1]=colliationLeft(); f[2]=allLeft(); return(f[0]|f[1]|f[2]); } int allRight(){ int x,y,f=0; for(int i=0;i<LENGTH;++i){ x=i*WIDTH+WIDTH-1; while(x>i*WIDTH){ if(table[x]==0){ y=x-1; while((y>=i*WIDTH)&&table[y]==0) y--; if((y>=i*WIDTH)&&table[y]) table[x]=table[y],table[y]=0,f=1; } x--; } } return f; } int colliationRight(){ int f=0; for(int i=TOTAL-1;i>=0;i--) if(table[i]&&i%WIDTH&&table[i]==table[i-1]){ table[i]=table[i]<<1; table[i-1]=0; sum--; f=1; } return f; } int moveRight(){ int f[3]; f[0]=allRight(); f[1]=colliationRight(); f[2]=allRight(); return(f[0]|f[1]|f[2]); } int commend(){ if(strcmp(com,TEST_MODLE)==0) { changeWinningNumber(); return 2; } else if(strcmp(com,UP)==0){ return moveUp(); } else if(strcmp(com,DOWN)==0){ return moveDown(); } else if(strcmp(com,LEFT)==0){ return moveLeft(); } else if(strcmp(com,RIGHT)==0) { return moveRight(); } else return -1; } void generateNumber(){ if(sum<TOTAL) addNumber(); } int main( ){ initial(); int playing=1,flag; while(playing){ fgets(com,50,stdin); com[strlen(com)-1]='\0'; flag=commend(); switch (flag){ case -1:puts("error input");break; case 1:addNumber(); case 0:system("clear");printTable();break; case 2:break; } switch (checkState()){ case victory:winGame();playing=0;break; case fail:loseGame();playing=0;break; default:continue; } } return 0; }
09e273ffc7479c6d5b58628af9dd58636d6606d7
f5078ac81ca51d59f36c271401fe21cbff4ad77e
/esp32/SensorBoard/instructions.cpp
7f66009065b61f728b7a3de411369f31cf048211
[]
no_license
clubrobot/team-2021
e80001f4ee360c0b3272bd4d4f37181e7a498230
9b818a370f79c9ff954c3fd09bfbf742381c2745
refs/heads/master
2023-04-30T05:01:16.393773
2021-05-25T08:16:52
2021-05-25T08:16:52
282,040,852
1
0
null
2020-10-25T17:59:40
2020-07-23T19:43:28
C++
UTF-8
C++
false
false
1,518
cpp
instructions.cpp
#include "instructions.h" #include "constants.h" #include <SerialTalks.h> #include <TaskManager.h> extern uint16_t vl53_status[VL53L0X_COUNT]; extern uint16_t vl53_measurement[VL53L0X_COUNT]; void GET_SENSOR1(SerialTalks &inst, Deserializer &input, Serializer &output) { output.write<uint16_t>(vl53_measurement[0]); } void GET_SENSOR2(SerialTalks &inst, Deserializer &input, Serializer &output) { output.write<uint16_t>(vl53_measurement[1]); } void GET_SENSOR3(SerialTalks &inst, Deserializer &input, Serializer &output) { output.write<uint16_t>(vl53_measurement[2]); } void GET_SENSOR4(SerialTalks &inst, Deserializer &input, Serializer &output) { output.write<uint16_t>(vl53_measurement[3]); } void GET_SENSOR5(SerialTalks &inst, Deserializer &input, Serializer &output) { output.write<uint16_t>(vl53_measurement[4]); } void GET_SENSOR6(SerialTalks &inst, Deserializer &input, Serializer &output) { output.write<uint16_t>(vl53_measurement[5]); } void GET_SENSOR7(SerialTalks &inst, Deserializer &input, Serializer &output) { output.write<uint16_t>(vl53_measurement[6]); } void GET_SENSOR8(SerialTalks &inst, Deserializer &input, Serializer &output) { output.write<uint16_t>(vl53_measurement[7]); } void CHECK_ERROR(SerialTalks &inst, Deserializer &input, Serializer &output) { uint8_t error = 0; for (int i; i < VL53L0X_COUNT; i++) { if (vl53_status[i] == 1) { error |= (1 << i); } } output.write<uint8_t>(error); }
c37425c0f7823c949c057a3c05a5a7a72435953d
716bacc87d11bcbdc6d9e509f8092c75c0e05aeb
/MATRIXCLASS.cpp
cb30763d59a6aad29a28d2ef661a7634e806cd88
[]
no_license
NimeshJohari02/CppProjects
6e7d296cf9f2d5458ec1afe54b05ae822dbc85a7
eb1ec481932e66a7677cc72a72c19159347446b3
refs/heads/master
2022-11-22T18:59:57.927691
2020-07-26T19:34:52
2020-07-26T19:34:52
263,316,516
15
1
null
null
null
null
UTF-8
C++
false
false
1,475
cpp
MATRIXCLASS.cpp
#include<iostream> using namespace std; class matrix { int a[100][100],size; public: int returnsize(); matrix operator+(matrix o1); matrix operator-(matrix o1); matrix operator*(matrix o1); friend void operator >>(istream &i1,matrix &o1) { cout<<"Enter The Size (n X n) \n"; cin>>o1.size; for(int i=0;i<o1.size;i++) { for(int j=0;j<o1.size;j++) { i1>>o1.a[i][j]; } } } friend void operator <<(ostream &o,matrix &o1) { for(int i=0;i<o1.size;i++) { for(int j=0;j<o1.size;j++) { cout<<o1.a[i][j]<<" "; } cout<<endl; } } }; matrix matrix::operator+(matrix o1) { matrix o3; o3.size=o1.size; for(int i=0;i<o1.size;i++) { for(int j=0;j<o1.size;j++) { o3.a[i][j]=a[i][j]+o1.a[i][j]; } } return o3; } matrix matrix::operator-(matrix o1) { matrix o3; o3.size=o1.size; for(int i=0;i<o1.size;i++) { for(int j=0;j<o1.size;j++) { o3.a[i][j]=a[i][j]-o1.a[i][j]; } } return o3; } matrix matrix::operator*(matrix o1) { matrix o3; o3.size=o1.size; for(int i=0;i<o1.size;i++) { for(int j=0;j<o1.size;j++) { for(int k=0;k<o1.size;k++) { o3.a[i][j]+=a[i][k]*o1.a[k][j]; } } } return o3; } int main() { matrix o1,o2,o3; cin>>o1; cout<<o1; cout<<"Now Input 2nd Matrix \n"; cin>>o2; cout<<"Displaying Second Matrix \n"; o3=o1+o2; cout<<"Displaying The O3 \n\n"; cout<<o3; return 0; }
31c139b2208b743c6e6aa7f5e0f4ccf8105f7c21
9f4b33a255d499bd8ce33d8eaaafffadbc112023
/Europa/src/Europa/DeltaTime.cpp
6bd0ae150a2bcf37bd3165817c1eb1219b47f2e2
[ "Apache-2.0" ]
permissive
TomStevens7533/Europa
7028042ae5cd2e968b6c77e0930b95009ea882a6
7d550676a37bef761d011a3e683eeaeb381038e0
refs/heads/master
2023-06-22T20:11:05.585536
2023-06-16T12:28:44
2023-06-16T12:28:44
163,179,841
0
0
null
null
null
null
UTF-8
C++
false
false
647
cpp
DeltaTime.cpp
#include "DeltaTime.h" namespace Eu { std::shared_ptr<Eu::Time> Time::m_TimeSingleton; Time::Time() { m_StartTime = std::chrono::high_resolution_clock::now(); } std::shared_ptr<Eu::Time> Time::GetInstance() { if (m_TimeSingleton == nullptr) { //create singleton m_TimeSingleton = std::make_shared<Time>(); } return m_TimeSingleton; } float Time::GetDeltaTime() { return m_DeltaTime; } void Time::Update() { auto currentTime = std::chrono::high_resolution_clock::now(); m_DeltaTime = std::chrono::duration<float>(std::chrono::high_resolution_clock::now() - m_StartTime).count(); m_StartTime = currentTime; } }
2e3142bef984519e1e5bd2ebac933741f323c516
88a22398376f9057a6ea075f873d7f67c55b13d2
/workshop_beta/Manager/Writen_paths_filenames.h
bf708f0a6501961f660ca69875c9e3f8a035b8cf
[]
no_license
shaybarak/HQMP
e2815f075bdad36114bcca20c530f6b0dfc7467c
4afc727430ba0a5fb395b9d75ff7bf43bf824040
refs/heads/master
2020-05-18T01:21:06.971315
2012-09-04T11:00:05
2012-09-04T11:00:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
673
h
Writen_paths_filenames.h
#ifndef WRITTEN_PATHS_FILENAMES_H #define WRITTEN_PATHS_FILENAMES_H #include <boost/thread/mutex.hpp> class Writen_paths_filenames { private: boost::mutex mutex; std::vector<std::string> writen_paths; public: void push_paths_filename(std::string& filename) { mutex.lock(); writen_paths.push_back(filename); mutex.unlock(); return; } template <typename OutputIterator> void pop_paths_filenames(OutputIterator& oi) { mutex.lock(); BOOST_FOREACH(std::string file_name, writen_paths) *oi++ = file_name; writen_paths.clear(); mutex.unlock(); } }; //writen_paths_filenames #endif //WRITTEN_PATHS_FILENAMES_H
3937413e17ce8d46c47089cb0b98309284d0226c
de48a285033e1bcb89951e656d8a9816452fa834
/src/pme/ivc/ivc.h
b6354a767ae77f1defa36ccb38cf07574bd418bb
[ "MIT" ]
permissive
ryanberryhill/pme
135c424bdabd11edce9bf0a63c07e93bf50222c3
416be2d52c920d285cc686a56d2f30bfab66bc51
refs/heads/master
2021-08-08T00:39:12.306624
2020-03-24T18:55:31
2020-03-24T18:55:31
130,415,304
3
0
null
null
null
null
UTF-8
C++
false
false
3,088
h
ivc.h
/* * Copyright (c) 2018 Ryan Berryhill, University of Toronto * 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 IVC_H_INCLUDED #define IVC_H_INCLUDED #include "pme/engine/global_state.h" #include "pme/engine/variable_manager.h" #include "pme/engine/transition_relation.h" #include "pme/engine/debug_transition_relation.h" #include "pme/util/map_solver.h" #include "pme/util/timer.h" namespace PME { // A vector of IDs corresponding to the LHS of AndGates typedef std::vector<ID> IVC; typedef std::vector<ID> BVC; class IVCFinder { public: IVCFinder(VariableManager & varman, const TransitionRelation & tr); virtual ~IVCFinder() { } void findIVCs(); virtual void doFindIVCs() = 0; size_t numMIVCs() const; const IVC & getMIVC(size_t i) const; bool minimumIVCKnown() const; const IVC & getMinimumIVC() const; size_t numBVCBounds() const { return m_bvcs.size(); } size_t numBVCsAtBound(size_t i) const { return m_bvcs.at(i).size(); } const BVC & getBVC(size_t bound, size_t i) const { return m_bvcs.at(bound).at(i); } protected: void addMIVC(const IVC & ivc); void setMinimumIVC(const IVC & ivc); void addBVC(unsigned bound, const BVC & bvc); virtual std::ostream & log(int verbosity) const; std::ostream & log(LogChannelID channel, int verbosity) const; const PMEOptions & opts() const { return GlobalState::options(); } PMEStats & stats() const { return GlobalState::stats(); } const TransitionRelation & tr() const { return m_tr; } VariableManager & vars() { return m_vars; } private: Timer m_timer; VariableManager & m_vars; const TransitionRelation & m_tr; std::vector<IVC> m_mivcs; std::vector<std::vector<BVC>> m_bvcs; IVC m_minimum_ivc; }; } #endif
427b1dcdae211d28fbad59b5e1e6b31284df472f
07306d96ba61d744cb54293d75ed2e9a09228916
/Eternity/Source/r3dFileMan.cpp
9436d161b1c88bc7929a7f7eed1edc1e4d191d14
[]
no_license
D34Dspy/warz-client
e57783a7c8adab1654f347f389c1dace35b81158
5262ea65e0baaf3f37ffaede5f41c9b7eafee7c1
refs/heads/master
2023-03-17T00:56:46.602407
2015-12-20T16:43:00
2015-12-20T16:43:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
36,454
cpp
r3dFileMan.cpp
#include "r3dPCH.h" #include "r3d.h" #include <Shlwapi.h> #include <ShellAPI.h> #include "FileSystem/r3dFileSystem.h" #include "FileSystem\r3dFSStructs.h" static r3dFileSystem g_filesys; extern CRITICAL_SECTION g_FileSysCritSection ; void r3dCopyFixedFileName(const char* in_fname, char* out_fname) { if(in_fname[0] == 0) { out_fname[0] = 0; return; } // make a working copy, fix backslashes, fix double slashes bool hasdirectory = false; char fname[MAX_PATH]; char* pfname = fname; for(const char *in = in_fname; *in; pfname++, in++) { *pfname = *in; if(*pfname == '/') *pfname = '\\'; if(*pfname == '\\') hasdirectory = true; if(*pfname == '\\' && (in[1] == '/' || in[1] == '\\')) in++; } *pfname = 0; // remove trailing whitespaces for(--pfname; *pfname == ' '; --pfname) *pfname = 0; if(!hasdirectory) { // copy back fixed filename r3dscpy(out_fname, fname); return; } // make directory structure char* pdirs1[128]; // start of each dir name char* pdirs2[128]; // end of each dir name int ndirs = 0; pdirs1[0] = fname; for(char* p = fname; *p; p++) { if(*p == '\\') { if(ndirs) pdirs1[ndirs] = pdirs2[ndirs-1] + 1; pdirs2[ndirs] = p; ndirs++; } } // check if we have relative path bool hasrelpath = false; for(char* p = fname; *p; p++) { if(p[0] == '.' && p[1] == '\\') hasrelpath = true; } if(!hasrelpath) { // copy back fixed filename r3dscpy(out_fname, fname); return; } // we have . or .. - reconstruct path if(!ndirs) r3dError("bad filename %s\n", fname); for(int i=0; i<ndirs; i++) { *pdirs2[i] = 0; } char* rdirs[128]; int nrdirs = 0; for(int i=0; i<ndirs; i++) { char* dir = pdirs1[i]; if(dir[0] == '.' && dir[1] == 0) { // skip it continue; } if(dir[0] == '.' && dir[1] == '.') { if(ndirs == 0) r3dError("can't go beyond root directory: %s\n", fname); // go back one level nrdirs--; continue; } rdirs[nrdirs++] = dir; } // reconstruct final path *out_fname = 0; for(int i=0; i<nrdirs; i++) { sprintf(out_fname + strlen(out_fname), "%s\\", rdirs[i]); } // append filename r3d_assert(ndirs); sprintf(out_fname + strlen(out_fname), "%s", pdirs2[ndirs-1] + 1); return; } // internal create r3dFile r3dFile* r3dFile_IntOpen(const char* fname, const char* mode) { r3dCSHolderWithDeviceQueue csHolder(g_FileSysCritSection); bool allowDirectAccess = true; #if defined( FINAL_BUILD ) && 1 // disable all data/ files in final build // if(strnicmp(fname, "data/", 5) == 0) if(strnicmp(fname, "data", 4) == 0 || strnicmp(fname, "levels", 6) == 0) allowDirectAccess = false; #endif // check for direct file FILE* stream; if(allowDirectAccess && (stream = fopen(fname, mode)) != NULL) { // init from stream r3dFile* f = game_new r3dFile(); sprintf(f->Location.FileName, "%s", fname); f->Location.Where = FILELOC_File; f->Location.id = 0; fseek(stream, 0, SEEK_END); f->size = ftell(stream); fseek(stream, 0, SEEK_SET); setvbuf(stream, NULL, _IOFBF, 64000); f->stream = stream; return f; } const r3dFS_FileEntry* fe = g_filesys.GetFileEntry(fname); if(fe != NULL) { BYTE* data = NULL; DWORD dwsize = 0; if(!g_filesys.GetFileData(fe, &data, &dwsize)) { r3dError("failed to get file data for %s\n", fname); return 0; } r3d_assert(dwsize < 0x7FFFFFFF); // file should be smaller that 2gb r3d_assert(data); // init from memory r3dFile* f = game_new r3dFile(); sprintf(f->Location.FileName, "%s", fname); f->Location.Where = FILELOC_Resource; f->Location.id = (DWORD)fe; f->data = data; f->size = (int)dwsize; return f; } r3dOutToLog("r3dFile: can't open %s\n", fname); return NULL; } // // // void r3dFile::r3dFile_Init() { stream = NULL; data = NULL; size = 0; pos = 0; } r3dFile::~r3dFile() { if(data) delete[] data; if(stream) fclose(stream); } //------------------------------------------------------------------------ r3dUnpackedFile::r3dUnpackedFile() { offset = 0; entry = NULL; } //------------------------------------------------------------------------ template < typename T > r3dChunkedFileT< T >::r3dChunkedFileT() : mChunkSize( 16 * 1024 * 1024 ) , mCurrentChunk( 0 ) { } //------------------------------------------------------------------------ template < typename T > r3dChunkedFileT< T >::~r3dChunkedFileT() { } //------------------------------------------------------------------------ template < typename T > int r3dChunkedFileT< T >::Open( const char* baseName, const char* ext, int chunkSize ) { mBaseName = baseName; mExt = ext; mCurrentChunk = 0; char fullName[ 1024 ]; for( int i = 0 ; ; i ++ ) { PrintChunkName( fullName, i ); if( r3dFileExists( fullName ) ) { T* file = DoOpen( fullName ); mFileArr.PushBack( file ); } else break; } return 1; } //------------------------------------------------------------------------ template < typename T > int r3dChunkedFileT< T >::Close() { for( int i = 0, e = (int)mFileArr.Count(); i < e; i ++ ) { if( T * file = mFileArr[ i ] ) { fclose( file ); } } mFileArr.Clear(); return 1; } //------------------------------------------------------------------------ template < typename T > int r3dChunkedFileT< T >::Read( void* ptr, int size ) { int totalRead = 0; char* cptr = (char*)ptr; if( mCurrentChunk < (int)mFileArr.Count() ) { for( ; ; ) { T* current = mFileArr[ mCurrentChunk ]; int toRead = R3D_MIN( mChunkSize - (int)ftell( current ), size ); if( !fread( cptr, toRead, 1, current ) ) return totalRead; cptr += toRead; size -= toRead; totalRead += toRead; if( ftell( current ) == mChunkSize ) { mCurrentChunk ++; if( mCurrentChunk < (int)mFileArr.Count() ) { fseek( mFileArr[ mCurrentChunk ], 0, SEEK_SET ); } } if( size <= 0 ) { r3d_assert( size == 0 ); break; } } } return totalRead; } //------------------------------------------------------------------------ template <> int r3dChunkedFileT< FILE >::Write( const void * ptr, int size ) { int totalWritten = 0; const char* cptr = (const char*)ptr; if( mCurrentChunk >= (int)mFileArr.Count() ) { AppendChunk(); } for( ; ; ) { FILE* current = mFileArr[ mCurrentChunk ]; int toWrite = R3D_MIN( mChunkSize - (int)ftell( current ), size ); if( !fwrite( cptr, toWrite, 1, current ) ) return totalWritten; cptr += toWrite; totalWritten += toWrite; size -= toWrite; int currOffset = ftell( current ); if( currOffset >= mChunkSize ) { r3d_assert( currOffset == mChunkSize ); mCurrentChunk ++; if( mCurrentChunk >= (int)mFileArr.Count() ) AppendChunk(); fseek( mFileArr[ mCurrentChunk ], 0, SEEK_SET ); } if( size <= 0 ) { r3d_assert( size == 0 ); break; } } return totalWritten; } //------------------------------------------------------------------------ template <> int r3dChunkedFileT< r3dFile >::Write( const void * ptr, int size ) { r3dError( "r3dChunkedFileT< r3dFile >::Write: shouldn't get here!" ); return 0; } //------------------------------------------------------------------------ template < typename T > int r3dChunkedFileT< T >::Seek( int offset, int wence ) { int index = 0; int suboffset = 0; int curOffset = 0; switch( wence ) { case SEEK_CUR: { if( mCurrentChunk < (int)mFileArr.Count() ) { curOffset = mCurrentChunk * mChunkSize + ftell( mFileArr[ mCurrentChunk ] ); } else { if( mFileArr.Count() ) { fseek( mFileArr.GetLast(), 0, SEEK_END ); int lastOffset = ftell( mFileArr.GetLast() ); curOffset = ( mCurrentChunk - 1 ) * mChunkSize + lastOffset; } else { curOffset = 0; } } } break; case SEEK_END: if( mFileArr.Count() ) { fseek( mFileArr.GetLast(), 0, SEEK_END ); curOffset = R3D_MAX( (int)mFileArr.Count() - 1, 0 ) * mChunkSize + ftell( mFileArr.GetLast() ); } else { curOffset = 0; } break; } curOffset += offset; index = curOffset / mChunkSize; suboffset = curOffset % mChunkSize; for( int i = mFileArr.Count(), e = index; i < e; i ++ ) { AppendChunk(); if( i == e - 1 ) fseek( mFileArr[ i ], suboffset, SEEK_SET ); else fseek( mFileArr[ i ], mChunkSize, SEEK_SET ); } mCurrentChunk = index; if( mCurrentChunk < (int)mFileArr.Count() ) { fseek( mFileArr[ mCurrentChunk ], suboffset, SEEK_SET ); } return 1; } //------------------------------------------------------------------------ template < typename T > void r3dChunkedFileT< T >::Truncate( int size ) { int index = size / mChunkSize; int suboffset = size % mChunkSize; r3d_assert( index < (int)mFileArr.Count() ); for( int i = index + 1, e = (int)mFileArr.Count(); i < e; i ++ ) { char name[ 1024 ]; PrintChunkName( name, i ); fclose( mFileArr[ i ] ); remove( name ); } mFileArr.Resize( index + 1 ); char truncateeName[ 1024 ]; PrintChunkName( truncateeName, index ); fclose( mFileArr[ index ] ); HANDLE file = ::CreateFile( truncateeName, GENERIC_WRITE, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL ); r3d_assert( file != INVALID_HANDLE_VALUE ); SetFilePointer( file, suboffset, NULL, FILE_BEGIN ); SetEndOfFile( file ); CloseHandle( file ); mFileArr[ index ] = DoOpen( truncateeName ); } //------------------------------------------------------------------------ template < typename T > int r3dChunkedFileT< T >::GetSize() const { if( !mFileArr.Count() ) return 0; int size = ( mFileArr.Count() - 1 ) * mChunkSize; int curPos = ftell( mFileArr.GetLast() ); fseek( mFileArr.GetLast(), 0, SEEK_END ); int maxPos = ftell( mFileArr.GetLast() ); fseek( mFileArr.GetLast(), curPos, SEEK_SET ); return size + maxPos; } //------------------------------------------------------------------------ template <> /*static*/ r3dFile* r3dChunkedFileT< r3dFile >::DoOpen( const char* name ) { return r3d_open( name, "rb" ); } //------------------------------------------------------------------------ template <> /*static*/ FILE* r3dChunkedFileT< FILE >::DoOpen( const char* name ) { return fopen( name, "r+b" ); } //------------------------------------------------------------------------/ template < typename T > int r3dChunkedFileT< T >::GetPos() const { if( mFileArr.Count() ) { if( mCurrentChunk < (int)mFileArr.Count() ) return ftell( mFileArr[ mCurrentChunk ] ) + mCurrentChunk * mChunkSize; return R3D_MAX( (int)mFileArr.Count() - 1, 0 ) * mChunkSize + ftell( mFileArr.GetLast() ); } else { return 0; } } //------------------------------------------------------------------------ template < typename T > int r3dChunkedFileT< T >::GetChunkCount() const { return (int)mFileArr.Count(); } //------------------------------------------------------------------------ template< typename T > const r3dString& r3dChunkedFileT< T >::GetBaseName() const { return mBaseName; } //------------------------------------------------------------------------ template< typename T > const r3dString& r3dChunkedFileT< T >::GetExt() const { return mExt; } //------------------------------------------------------------------------ template < typename T > void r3dChunkedFileT< T >::PrintChunkName( char* buffer, int index ) { sprintf( buffer, "%s_%d.%s", mBaseName.c_str(), index, mExt.c_str() ); } //------------------------------------------------------------------------ template <> void r3dChunkedFileT< FILE >::AppendChunk() { char chunkName[ 512 ]; PrintChunkName( chunkName, mFileArr.Count() ); FILE* file = fopen( chunkName, "w+b" ); mFileArr.PushBack( file ); } //------------------------------------------------------------------------ template <> void r3dChunkedFileT< r3dFile >::AppendChunk() { r3dError( "r3dChunkedFileT< r3dFile >::AppendChunk: shouldn't get here!" ); } template class r3dChunkedFileT< r3dFile >; template class r3dChunkedFileT< FILE >; //------------------------------------------------------------------------ /* int r3dFile::Open(const char* fname, const char* mode) { r3d_assert(data == NULL); r3d_assert(stream == NULL); r3d_assert(pos == 0); r3dFile* f = r3dFile_IntOpen(fname, mode); if(f == NULL) return 0; // copy all content from tempf to this Location = f->Location; stream = f->stream; data = f->data; pos = f->pos; size = f->size; delete f; return 1; } */ void fclose(r3dFile *f) { delete f; } void fclose( r3dChunkedFile *f ) { f->Close(); delete f; } void fclose( r3dChunkedWriteFile *f ) { f->Close(); delete f; } long ftell(r3dFile *f) { if(f->stream) return ftell(f->stream); return f->pos; } long ftell( r3dWindowsFileHandle file ) { DWORD curr = SetFilePointer( file.Handle, 0, NULL, FILE_CURRENT ); return (long)curr; } long ftell( r3dChunkedFile * f ) { return f->GetPos(); } long ftell( r3dChunkedWriteFile * f ) { return f->GetPos(); } int feof(r3dFile* f) { if(f->stream) return feof(f->stream); if(f->pos >= f->size) return 1; else return 0; } int fseek( r3dUnpackedFile *f, long offset, int whence ) { switch( whence ) { case SEEK_SET: f->offset = offset; break; case SEEK_CUR: f->offset += offset; break; case SEEK_END: f->offset = f->entry->offset + offset; break; } if( f->offset > (int)f->entry->size ) { f->offset = f->entry->size; } return f->offset; } int fseek(r3dFile *f, long offset, int whence) { if(f->stream) { int val = fseek(f->stream, offset, whence); return val; } long pos; switch(whence) { default: case SEEK_SET: pos = offset; break; case SEEK_CUR: pos = f->pos + offset; break; case SEEK_END: pos = f->size + offset; break; } // set EOF flag if(pos < 0) { pos = 0; } if(pos >= f->size) { pos = f->size;} f->pos = pos; return 0; } int fseek( r3dWindowsFileHandle file, long offset, int whence) { int method = FILE_BEGIN; if( whence == SEEK_CUR ) method = FILE_CURRENT; if( whence == SEEK_END ) method = FILE_END; DWORD result = SetFilePointer( file.Handle, offset, NULL, method ); if( result == INVALID_SET_FILE_POINTER ) { return 1; } return 0; } int fseek( r3dMappedViewOfFile* view, long offset, int whence ) { switch( whence ) { case SEEK_SET: view->Ptr = offset; break; case SEEK_CUR: view->Ptr += offset; break; case SEEK_END: view->Ptr = view->Size - offset; break; } r3d_assert( view->Ptr >= 0 ); r3d_assert( view->Ptr <= view->Size ); return 1; } int fseek( r3dChunkedFile* f, long offset, int wence ) { return f->Seek( offset, wence ); } int fseek( r3dChunkedWriteFile* f, long offset, int wence ) { return f->Seek( offset, wence ); } char* fgets(char* s, int n, r3dFile *f) { if(f->stream) { char* val = fgets(s, n, f->stream); return val; } if(f->pos >= f->size) return NULL; char *out = s; int i = 0; while(1) { if(f->pos >= f->size) break; if(i >= n-1) break; char in = f->data[f->pos++]; if(in == '\r') continue; if(in == 0) break; out[i++] = in; if(in == '\n') break; } // add trailing zero out[i] = 0; return s; } int fread( void *ptr, size_t size, size_t n, r3dUnpackedFile *f ) { int sizeLeft = f->entry->size; int toCopy = R3D_MIN( sizeLeft, (int)size ); HANDLE handle = g_filesys.volumeHandles[ f->entry->volume ]; DWORD res = SetFilePointer( handle, f->entry->offset + f->offset + 4, NULL, FILE_BEGIN ); r3d_assert( res != INVALID_SET_FILE_POINTER ); DWORD numRead; res = ReadFile( handle, ptr, toCopy, &numRead, NULL ); r3d_assert( res ); f->offset += toCopy; return toCopy / size; } size_t fread(void *ptr, size_t size, size_t n, r3dFile *f) { if(f->stream) { size_t val = fread(ptr, size, n, f->stream); return val; } size_t len = n * size; // NOTE: // add \r removal in text-mode reading.. // i'm not sure it's needed, but it's needed for full compatibility if(f->pos + len >= (size_t) f->size) len = f->size - f->pos; if(len == 0) return 0; memcpy(ptr, f->data + f->pos, len); f->pos += len; return len / size; } size_t fread(void *ptr, size_t size, size_t n, r3dWindowsFileHandle file ) { DWORD bytesRead( 0 ); if( ReadFile( file.Handle, ptr, size* n, &bytesRead, NULL ) ) return bytesRead / size; else return 0; } size_t fread( void *ptr, size_t size, size_t n, r3dMappedViewOfFile* view ) { r3d_assert( int( size * n ) + view->Ptr <= view->Size ); memcpy( ptr, (char*)view->Start + view->Ptr, size * n ); view->Ptr += size * n; return n; } size_t fread( void *ptr, size_t size, size_t n, r3dChunkedFile* file ) { return file->Read( ptr, size * n ) / size; } size_t fwrite( const void* ptr, size_t size, size_t n, r3dWindowsFileHandle file ) { DWORD written( 0 ); if( WriteFile( file.Handle, ptr, size * n, &written, NULL ) ) return written / size; else return 0; } size_t fwrite( const void* ptr, size_t size, size_t n, r3dMappedViewOfFile* view ) { r3d_assert( view->Ptr + (int)size <= view->Size ); memcpy( (char*)view->Start + view->Ptr, ptr, size * n ); view->Ptr += size * n; return n; } size_t fwrite( const void* ptr, size_t size, size_t n, r3dChunkedWriteFile* file ) { return file->Write( ptr, size * n ) / size; } int r3dFileManager_OpenArchive(const char* fname) { r3dCSHolderWithDeviceQueue csHolder(g_FileSysCritSection); if(!g_filesys.OpenArchive(fname)) return 0; g_filesys.OpenVolumesForRead(); return 1; } r3dFile* r3d_open(const char* fname, const char* mode) { if(strchr(mode, 'w') != NULL) r3dError("[%s] do not use r3dFile for writing, use FILE* and fopen_for_write instead", fname); return r3dFile_IntOpen(fname, mode); } r3dChunkedFile* r3d_open_chunked( const char* base, const char* ext, int chunkSize ) { r3dChunkedFile* file = new r3dChunkedFile; file->Open( base, ext, chunkSize ); return file; } r3dUnpackedFile* r3d_open_unpacked( const char* fileName ) { const class r3dFS_FileEntry* entry = g_filesys.GetFileEntry( fileName ); if( entry ) { r3dUnpackedFile* file = new r3dUnpackedFile; file->entry = entry; return file; } return NULL; } int fclose( r3dUnpackedFile * file ) { delete file; return 1; } r3dChunkedWriteFile* r3d_open_write_chunked( const char* base, const char* ext, int chunkSize ) { r3dChunkedWriteFile* file = new r3dChunkedWriteFile; file->Open( base, ext, chunkSize ); return file; } int r3d_access(const char* fname, int mode) { r3dCSHolderWithDeviceQueue csHolder(g_FileSysCritSection); if(_access_s(fname, mode) == 0) return 0; errno_t cur_errno ; _get_errno( &cur_errno ) ; if(cur_errno == EACCES/* || cur_errno == ENOENT*/) return -1; const r3dFS_FileEntry* fe = g_filesys.GetFileEntry(fname); if(fe == NULL) { // not found _set_errno( ENOENT ) ; return -1; } // file found, check for access _set_errno( EACCES ); switch(mode) { case 0: return 0; // Existence only case 2: return -1; // Write permission case 4: return 0; // Read permission case 6: return -1; // Read & Write permissions } return 0; } INT64 r3d_fstamp( const char* fname ) { struct _stat buf; int fd, result; _sopen_s( &fd, fname, _O_RDONLY, _SH_DENYNO, 0 ); INT64 stamp = 0; if( fd != -1 ) { result = _fstat( fd, &buf ); // Check if statistics are valid: if( !result ) { stamp = buf.st_mtime; } _close( fd ); } return stamp; } bool r3dFileExists(const char* fname) { return r3d_access(fname, 0) == 0; } const char* GetErnoString() { switch( errno ) { case EPERM: return "Operation not permitted"; case ENOENT: return "No such file or directory"; case ESRCH: return "No such process"; case EINTR: return "Interrupted function"; case EIO: return "I/O error"; case ENXIO: return "No such device or address"; case E2BIG: return "Argument list too long"; case ENOEXEC: return "Exec format error"; case EBADF: return "Bad file number"; case ECHILD: return "No spawned processes"; case EAGAIN: return "No more processes or not enough memory or maximum nesting level reached"; case ENOMEM: return "Not enough memory"; case EACCES: return "Permission denied"; case EFAULT: return "Bad address"; case EBUSY: return "Device or resource busy"; case EEXIST: return "File exists"; case EXDEV: return "Cross-device link"; case ENODEV: return "No such device"; case ENOTDIR: return "Not a directory"; case EISDIR: return "Is a directory"; case EINVAL: return "Invalid argument"; case ENFILE: return "Too many files open in system"; case EMFILE: return "Too many open files"; case ENOTTY: return "Inappropriate I/O control operation"; case EFBIG: return "File too large"; case ENOSPC: return "No space left on device"; case ESPIPE: return "Invalid seek"; case EROFS: return "Read-only file system"; case EMLINK: return "Too many links"; case EPIPE: return "Broken pipe"; case EDOM: return "Math argument"; case ERANGE: return "Result too large"; case EDEADLK: return "Resource deadlock would occur"; case ENAMETOOLONG: return "Filename too long"; case ENOLCK: return "No locks available"; case ENOSYS: return "Function not supported"; case ENOTEMPTY: return "Directory not empty"; case EILSEQ: return "Illegal byte sequence"; case STRUNCATE: return "String was truncated"; } return "Unknown error"; } FILE* fopen_for_write(const char* fname, const char* mode) { ::SetFileAttributes(fname, FILE_ATTRIBUTE_NORMAL); FILE* f = fopen(fname, mode); if(f == NULL) { r3dError("!!warning!!! can't open %s for writing\nError: %s(%d)\n", fname, GetErnoString(), errno ); } return f; } bool r3dIsAbsolutePath(const char* path) { return path[1] == ':'; } void r3dFullCanonicalPath(const char* relativePath, char* result) { char fullPath[MAX_PATH]; if(!r3dIsAbsolutePath(relativePath)) { char path[MAX_PATH]; GetFullPathNameA(".\\", MAX_PATH, path, NULL); sprintf(fullPath,"%s%s", path, relativePath); } else { sprintf(fullPath,"%s", relativePath); } for (char* it = fullPath; *it != 0; ++it) { if (*it == '/') *it = '\\'; } PathCanonicalizeA(result, fullPath); } bool r3dIsSamePath(const char* path0, const char* path1) { char t0[MAX_PATH]; char t1[MAX_PATH]; r3dFullCanonicalPath(path0, t0); r3dFullCanonicalPath(path1, t1); return stricmp(t0, t1) == 0; } bool CreateConfigPath(char* dest) { if( SUCCEEDED(SHGetFolderPath(NULL, CSIDL_MYDOCUMENTS | CSIDL_FLAG_CREATE, NULL, 0, dest)) ) { strcat( dest, "\\Kongsi Games\\" ); mkdir( dest ); strcat( dest, "WarZ\\" ); mkdir( dest ); return true; } return false; } bool CreateWorkPath(char* dest) { if( SUCCEEDED(SHGetFolderPath(NULL, CSIDL_LOCAL_APPDATA | CSIDL_FLAG_CREATE, NULL, 0, dest)) ) { strcat( dest, "\\Kongsi Games\\" ); mkdir( dest ); strcat( dest, "WarZ\\" ); mkdir( dest ); return true; } return false; } //------------------------------------------------------------------------ static int do_mkdir( const char *path ) { struct stat st; int status = 0; if ( stat(path, &st) != 0) { /* Directory does not exist */ if (mkdir( path ) != 0) status = -1; } else if (! ( st.st_mode & _S_IFDIR ) ) { status = -1; } return(status); } int r3d_create_path( const char *path ) { char drive[ 16 ], dir[ MAX_PATH * 3 ], file[ MAX_PATH * 3 ], ext[ MAX_PATH * 3 ] ; drive[ 0 ] = 0 ; _splitpath( path, drive, dir, file, ext ) ; char *pp; char *sp; int status; // we may get trick folder with date (extensionesque) - treat it as a folder strcat ( dir, file ) ; strcat ( dir, ext ) ; char *copypath = strdup( dir ); for( int i = 0, e = strlen( copypath ) ; i < e ; i ++ ) { if( copypath[ i ] == '\\' ) copypath[ i ] = '/' ; } status = 0; pp = copypath; while (status == 0 && (sp = strchr(pp, '/')) != 0) { if (sp != pp) { /* Neither root nor double slash in path */ *sp = '\0'; status = do_mkdir( drive[0] ? ( r3dString( drive ) + copypath ).c_str() : copypath ); *sp = '/'; } pp = sp + 1; } if (status == 0) status = do_mkdir( drive[0] ? ( r3dString( drive ) + dir ).c_str() : path ); free(copypath); return (status); } //------------------------------------------------------------------------ int r3d_delete_dir( const char* path ) { r3dSTLString refcstrRootDirectory = path ; bool bDeleteSubdirectories = true ; bool bSubdirectory = false; // Flag, indicating whether // subdirectories have been found HANDLE hFile; // Handle to directory r3dSTLString strFilePath; // Filepath r3dSTLString strPattern; // Pattern WIN32_FIND_DATA FileInformation; // File information strPattern = refcstrRootDirectory + "\\*.*"; hFile = ::FindFirstFile(strPattern.c_str(), &FileInformation); if(hFile != INVALID_HANDLE_VALUE) { do { if(FileInformation.cFileName[0] != '.') { strFilePath.erase(); strFilePath = refcstrRootDirectory + "\\" + FileInformation.cFileName; if(FileInformation.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) { if(bDeleteSubdirectories) { // Delete subdirectory int iRC = r3d_delete_dir( strFilePath.c_str() ); if(iRC) return iRC; } else bSubdirectory = true; } else { // Set file attributes if(::SetFileAttributes(strFilePath.c_str(), FILE_ATTRIBUTE_NORMAL) == FALSE) return ::GetLastError(); // Delete file if(::DeleteFile(strFilePath.c_str()) == FALSE) return ::GetLastError(); } } } while(::FindNextFile(hFile, &FileInformation) == TRUE); // Close handle ::FindClose(hFile); DWORD dwError = ::GetLastError(); if(dwError != ERROR_NO_MORE_FILES) return dwError; else { if(!bSubdirectory) { // Set directory attributes if(::SetFileAttributes(refcstrRootDirectory.c_str(), FILE_ATTRIBUTE_NORMAL) == FALSE) return ::GetLastError(); // Delete directory if(::RemoveDirectory(refcstrRootDirectory.c_str()) == FALSE) return ::GetLastError(); } } } return 0; } //------------------------------------------------------------------------- bool r3d_remove_files_in_folder(const char *pathWithFilePattern) { if (!pathWithFilePattern) return false; SHFILEOPSTRUCT op; ZeroMemory(&op, sizeof(SHFILEOPSTRUCT)); op.hwnd = 0; op.wFunc = FO_DELETE; // SHFileOperation need double trailing zero char buf[MAX_PATH] = {0}; strcpy_s(buf, _countof(buf), pathWithFilePattern); size_t l = strlen(buf); r3d_assert(l + 1 < MAX_PATH); buf[strlen(buf) + 1] = 0; op.pFrom = buf; op.fFlags = FOF_FILESONLY | FOF_SILENT | FOF_NOCONFIRMATION | FOF_NOERRORUI | FOF_NOCONFIRMMKDIR; int rv = SHFileOperation(&op); return rv == 0; } //------------------------------------------------------------------------- r3dMappedViewOfFile::r3dMappedViewOfFile() { Handle = INVALID_HANDLE_VALUE; Mapped = NULL; Start = NULL; Ptr = 0; Size = 0; } static int g_MappedAllocGranularity = -1; r3dMappedViewOfFile r3dCreateMappedViewOfFile( HANDLE fileMapping, int access, int offset, int size ) { if( g_MappedAllocGranularity < 0 ) { SYSTEM_INFO sinfo; GetSystemInfo( &sinfo ); g_MappedAllocGranularity = sinfo.dwAllocationGranularity; } r3dMappedViewOfFile mappedViewOfFile; mappedViewOfFile.Handle = fileMapping; int offsetDiff = offset % g_MappedAllocGranularity; int realOffset = offset - offsetDiff; mappedViewOfFile.Mapped = MapViewOfFile( fileMapping, access, 0, realOffset, size + offsetDiff ); mappedViewOfFile.Start = (char*)mappedViewOfFile.Mapped + offsetDiff; r3d_assert( mappedViewOfFile.Mapped ); mappedViewOfFile.Size = size; return mappedViewOfFile; } //------------------------------------------------------------------------ void DEBUG_CheckChunked() { for( int s = 0, e = 256; s < e; s += 4 ) { FILE* fout0 = fopen( "testme.bin", "wb" ); for( int ii = 0; ; ii ++ ) { char chunkedName[ 1024 ]; sprintf( chunkedName, "%s_%d.%s", "testme_ch", ii, "bin" ); if( r3dFileExists( chunkedName ) ) { remove( chunkedName ); } else break; } r3dChunkedWriteFile* fout1 = r3d_open_write_chunked( "testme_ch", "bin", 16 * 1024 * 1024 ); typedef r3dTL::TArray< char > Bytes; Bytes bytes; for( int i = 0, e = s; i < e; i ++ ) { bytes.Resize( ( rand() % 1024 ) * 1024 + rand() + 1 ); for( int i = 0, e = bytes.Count(); i < e; i ++ ) { bytes[ i ] = rand(); } fwrite( &bytes[ 0 ], bytes.Count(), 1, fout0 ); fwrite( &bytes[ 0 ], bytes.Count(), 1, fout1 ); } fclose( fout0 ); fclose( fout1 ); FILE* fin0 = fopen( "testme.bin", "rb" ); r3dChunkedFile* fin1 = r3d_open_chunked( "testme_ch", "bin", 16 * 1024 * 1024 ); fseek( fin0, 0, SEEK_END ); fseek( fin1, 0, SEEK_END ); int size0 = ftell( fin0 ); int size1 = ftell( fin1 ); fseek( fin0, 0, SEEK_SET ); fseek( fin1, 0, SEEK_SET ); r3d_assert( size0 == size1 ); int ptr = 0; Bytes bytes1; for( ; ; ) { int toRead = R3D_MIN( size0 - ptr, ( rand() % 1024 ) * 1024 + rand() + 1 ); if( !toRead ) { bytes.Resize( 0 ); bytes1.Resize( 0 ); bytes.Resize( 1, 0 ); bytes1.Resize( 1, 0 ); } else { bytes.Resize( toRead ); bytes1.Resize( toRead ); } fread( &bytes[ 0 ], bytes.Count(), 1, fin0 ); fread( &bytes1[ 0 ], bytes1.Count(), 1, fin1 ); if( memcmp( &bytes[ 0 ], &bytes1[ 0 ], bytes.Count() ) ) { r3dOutToLog( "Mismatch!\n" ); } ptr += toRead; if( ptr == size0 ) break; } if( size0 ) { for( int i = 0 ; i < 128; i ++ ) { int offset = INT64( rand() ) * ( size0 - 1 ) / RAND_MAX; int size = R3D_MIN( rand() * 64, size0 - offset ); if( size ) { bytes.Resize( size ); bytes1.Resize( size ); fseek( fin0, offset, SEEK_SET ); fseek( fin1, offset, SEEK_SET ); fread( &bytes[ 0 ], bytes.Count(), 1, fin0 ); fread( &bytes1[ 0 ], bytes1.Count(), 1, fin1 ); if( memcmp( &bytes[ 0 ], &bytes1[ 0 ], bytes.Count() ) ) { r3dOutToLog( "__Mismatch!\n" ); } } } int curPtr = 0; fseek( fin0, curPtr, SEEK_SET ); fseek( fin1, curPtr, SEEK_SET ); for( int i = 0 ; i < 256; i ++ ) { int offset = rand() - RAND_MAX / 2; offset = R3D_MIN( curPtr + offset, size0 ) - curPtr; offset = R3D_MAX( curPtr + offset, 0 ) - curPtr; curPtr += offset; int size = R3D_MIN( rand() * 64, size0 - curPtr ); bytes.Resize( size ); bytes1.Resize( size ); fseek( fin0, offset, SEEK_CUR ); fseek( fin1, offset, SEEK_CUR ); int ptr0 = ftell( fin0 ); int ptr1 = ftell( fin1 ); r3d_assert( ptr0 == ptr1 ); r3d_assert( ptr0 == curPtr ); if( size ) { fread( &bytes[ 0 ], bytes.Count(), 1, fin0 ); fread( &bytes1[ 0 ], bytes1.Count(), 1, fin1 ); curPtr += size; if( memcmp( &bytes[ 0 ], &bytes1[ 0 ], bytes.Count() ) ) { r3dOutToLog( "~~~~__Mismatch!\n" ); } } } } fclose( fin0 ); fclose( fin1 ); if( size0 ) { FILE* fout0 = fopen( "testme.bin", "r+b" ); r3dChunkedWriteFile* fout1 = r3d_open_write_chunked( "testme_ch", "bin", 16 * 1024 * 1024 ); for( int i = 0, e = 256; i < e; i ++ ) { int offset = INT64( rand() ) * ( size0 - 1 ) / RAND_MAX; int size = R3D_MIN( rand() * 64, size0 - offset ); fseek( fout0, offset, SEEK_SET ); fseek( fout1, offset, SEEK_SET ); bytes.Resize( size ); for( int i = 0, e = (int)bytes.Count(); i < e; i ++ ) { bytes[ i ] = rand(); } fwrite( &bytes[ 0 ], bytes.Count(), 1, fout0 ); fwrite( &bytes[ 0 ], bytes.Count(), 1, fout1 ); } fclose( fout0 ); fclose( fout1 ); } //------------------------------------------------------------------------ { FILE* fin0 = fopen( "testme.bin", "rb" ); r3dChunkedFile* fin1 = r3d_open_chunked( "testme_ch", "bin", 16 * 1024 * 1024 ); fseek( fin0, 0, SEEK_END ); fseek( fin1, 0, SEEK_END ); int size0 = ftell( fin0 ); int size1 = ftell( fin1 ); fseek( fin0, 0, SEEK_SET ); fseek( fin1, 0, SEEK_SET ); r3d_assert( size0 == size1 ); int ptr = 0; Bytes bytes1; for( ; ; ) { int toRead = R3D_MIN( size0 - ptr, ( rand() % 1024 ) * 1024 + rand() + 1 ); if( !toRead ) { bytes.Resize( 0 ); bytes1.Resize( 0 ); bytes.Resize( 1, 0 ); bytes1.Resize( 1, 0 ); } else { bytes.Resize( toRead ); bytes1.Resize( toRead ); } fread( &bytes[ 0 ], bytes.Count(), 1, fin0 ); fread( &bytes1[ 0 ], bytes1.Count(), 1, fin1 ); if( memcmp( &bytes[ 0 ], &bytes1[ 0 ], bytes.Count() ) ) { r3dOutToLog( "!!__!!Mismatch!\n" ); } ptr += toRead; if( ptr == size0 ) break; } fclose( fin0 ); fclose( fin1 ); } //------------------------------------------------------------------------ r3dOutToLog( "%d\n", s ); } } void ftruncate( r3dChunkedWriteFile* file, size_t size ) { file->Truncate( size ); } void ftruncate( FILE* file, size_t size ) { _chsize( fileno(file), size ); } int r3dCompareFileNameInPath( const char* path0, const char* path1 ) { int l0 = strlen( path0 ); int l1 = strlen( path1 ); for( ; l0 >= 0; l0 -- ) { if( path0[ l0 ] == '/' || path0[ l0 ] == '\\' ) { l0 ++; break; } } for( ; l1 >= 0; l1 -- ) { if( path1[ l1 ] == '/' || path1[ l1 ] == '\\' ) { l1 ++; break; } } int res = stricmp( path0 + l0, path1 + l1 ); return res; } int r3dFilesEqual( const char* path0, const char* path1 ) { struct _stat32 st0; struct _stat32 st1; _stat32( path0, &st0 ); _stat32( path1, &st1 ); if( st0.st_size != st1.st_size ) return 0; FILE* f0 = fopen( path0, "rb" ); FILE* f1 = fopen( path1, "rb" ); if( !f0 || !f1 ) { if( f0 ) fclose( f0 ); if( f1 ) fclose( f1 ); return 0; } char buff0[ 8192 ]; char buff1[ 8192 ]; int res = 1; while( !feof( f0 ) ) { int read0 = fread( buff0, 1, sizeof buff0, f0 ); int read1 = fread( buff1, 1, sizeof buff1, f1 ); r3d_assert( read0 == read1 ); if( memcmp( buff0, buff1, read0 ) ) { res = 0; break; } } if( f0 ) fclose( f0 ); if( f1 ) fclose( f1 ); return res; } //------------------------------------------------------------------------ int r3dDirectoryExists( const char* path ) { DWORD ftyp = GetFileAttributesA( path ); if( ftyp == INVALID_FILE_ATTRIBUTES ) return 0; //something is wrong with your path! if( ftyp & FILE_ATTRIBUTE_DIRECTORY ) return 1; // this is a directory! return 0; // this is not a directory! } //------------------------------------------------------------------------ INT64 r3dGetDiskSpace( const char* filePath ) { char drive[ 64 ], path[ 512 ], filename[ 512 ], ext[ 64 ]; _splitpath( filePath, drive, path, filename, ext ); strcat( drive, "\\"); DWORD sectorsPerCluster = 0; DWORD bytesPerSector = 0; DWORD numberOfFreeClusters = 0; DWORD totalNumberOfClusters = 0; GetDiskFreeSpace( drive, &sectorsPerCluster, &bytesPerSector, &numberOfFreeClusters, &totalNumberOfClusters ); return INT64( numberOfFreeClusters ) * INT64( sectorsPerCluster ) * INT64 ( bytesPerSector ); } //------------------------------------------------------------------------ r3dFileSystemLock::r3dFileSystemLock() : csHolder( g_FileSysCritSection ) { } //------------------------------------------------------------------------ r3dFileSystemLock::~r3dFileSystemLock() { }
6d5c5c253768f0b3d519d1a38a2de36a205e13ab
1762066c3d3b4ed73b524d5399f9f4a70dfc144e
/sketchbook/Actuators/thrusters/thrusters.ino
ccebd0ec78522d483f633247027d95a80d4f2b3a
[]
no_license
ben-greenberg/flexcraft
bba2f9399d569d5c693316ed146214e5a33ec443
9775ad2be82cd5f950e6cbd54445f2adcea4cf5a
refs/heads/master
2020-03-24T08:01:46.869957
2014-08-13T19:23:44
2014-08-13T19:23:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,042
ino
thrusters.ino
const char RFB=4; const char RFL=5; const char RRL=8; const char RRF=9; const char LRF=7; const char LRR=6; const char LFR=3; const char LFB=2; #include <ros.h> #include <std_msgs/UInt8.h> #include <flexcraft_msgs/thrusters8.h> ros::NodeHandle nh; const int timeout = 10000; //timeout is used to ensure not using outdated commands //10000 is chosen for being long enough through slight empirical studies, not necessarily a great value int timeout_counter; //timout_counter is used to track 'time' against timeout void messageCb(const flexcraft_msgs::thrusters8& msg) { unsigned char thruster_control = msg.thrusters; digitalWrite(RFB, thruster_control & msg.RFB); digitalWrite(RFL, thruster_control & msg.RFL); digitalWrite(RRL, thruster_control & msg.RRL); digitalWrite(RRF, thruster_control & msg.RRF); digitalWrite(LRF, thruster_control & msg.LRF); digitalWrite(LRR, thruster_control & msg.LRR); digitalWrite(LFR, thruster_control & msg.LFR); digitalWrite(LFB, thruster_control & msg.LFB); //new command, reset timeout_counter timeout_counter = 0; /* //OFF delay(2000); digitalWrite(6, LOW); digitalWrite(7, LOW); digitalWrite(8, LOW); digitalWrite(9, LOW); digitalWrite(10, LOW); digitalWrite(11, LOW); digitalWrite(12, LOW); digitalWrite(13, LOW); delay(500);*/ } ros::Subscriber<flexcraft_msgs::thrusters8> sub("low_cmd", &messageCb ); void setup() { pinMode(RFB, OUTPUT); pinMode(RFL, OUTPUT); pinMode(RRL, OUTPUT); pinMode(RRF, OUTPUT); pinMode(LRF, OUTPUT); pinMode(LRR, OUTPUT); pinMode(LFR, OUTPUT); pinMode(LFB, OUTPUT); nh.initNode(); nh.subscribe(sub); timeout_counter = 0; } void loop() { if(timeout_counter > timeout) { digitalWrite(RFB, LOW); digitalWrite(RFL, LOW); digitalWrite(RRL, LOW); digitalWrite(RRF, LOW); digitalWrite(LRF, LOW); digitalWrite(LRR, LOW); digitalWrite(LFR, LOW); digitalWrite(LFB, LOW); } nh.spinOnce(); // delay(1000); timeout_counter++; }
3d8a873f140e96b79cbbfcfb7833c52750f9a058
5607abcd70ad2365e05f03b302738b654083adec
/reflection/property/property.h
26fe1ee2615ef56e585f1d684fba17466a9a0c77
[]
no_license
caster99yzw/Y3DGameEngine
650dffc95b501eb1d499877e142b1cfe3bea4a7d
c932fd91261fbaf8a7a38d24d86258692fb29441
refs/heads/master
2021-11-11T17:01:55.033172
2021-10-30T12:56:51
2021-10-30T12:56:51
99,477,051
1
0
null
null
null
null
UTF-8
C++
false
false
465
h
property.h
#pragma once #include "property_wrapper.h" namespace reflection { class Variant; class Class; class Argument; class Property { public: Property() = default; Property(PropertyWrapperBase const *inWrapper) : wrapper(inWrapper) {} bool Vaild() const; std::string const &Name() const; Class DeclaringClass() const; bool SetValue(Variant &obj, Argument arg); Variant Value(Variant &obj); private: PropertyWrapperBase const *wrapper = nullptr; }; }
e971b68272c2cd8b2ca076fa2669522a30988abb
ceccc428de2e91e66810fa4bbe69eb426a04be78
/product.cpp
ecaffbe45e7fc9219e25ab38d38f3e792cb39db3
[ "MIT" ]
permissive
ronijaakkola/VisitorPatternExample
0605650624281e0a83616564fc347bb1c559fd85
a1b87e02bd3c2b92b305371448f407deff184681
refs/heads/master
2021-01-10T04:23:06.076929
2016-03-23T16:24:50
2016-03-23T16:24:50
54,574,856
1
1
null
null
null
null
UTF-8
C++
false
false
45
cpp
product.cpp
#include "product.h" Product::Product() { }
c54e528e4b5bc64963db39d85b3b3c9ed61dd590
832bac3ba971da6774e296bd091f5042bb895db6
/kuwait_chess.cpp
081a9e1a679bb6b3b34b77c200a4f387604377c0
[]
no_license
raphael-carneiro/utilities
fc04a3d4a73d62c8bfc603b0c0ba4685684a4886
e9ee369b52bd0f5c82091b2e8a32991e65e440f9
refs/heads/master
2021-07-08T05:40:00.946458
2019-12-24T15:02:28
2019-12-24T15:02:28
98,811,423
0
0
null
null
null
null
UTF-8
C++
false
false
46,040
cpp
kuwait_chess.cpp
/* * kuwait_chess.cpp * * Created on: 02-Oct-2019 * Author: Raphael V. Carneiro * * This program is related to the challenge made by a Kuwaiti chess player: * How to get chessboard position k7/P7/P7/P7/P7/P7/P7/R3K3 after black move, with the least number of legal moves? * * Known answer: 34 moves * 1. g4 e5 2. Nh3 Ba3 3. bxa3 h5 4. Bb2 hxg4 5. Bc3 Rh4 6. Bd4 exd4 7. Nc3 dxc3 8. dxc3 g3 9. Qd3 Rb4 10. Nf4 g5 * 11. h4 f5 12. h5 d5 13. h6 Bd7 14. h7 g2 15. h8=B g1=R 16. Bd4 Ba4 17. Rh4 Rg3 18. Bg2 gxf4 19. Be3 fxe3 20. Be4 fxe4 * 21. fxe3 exd3 22. exd3 c5 23. Rc4 dxc4 24. dxc4 b5 25. cxb4 Qa5 26. cxb5 Na6 27. bxa5 O-O-O 28. bxa6 Rd4 29. exd4 Rb3 * 30. cxb3 Ne7 31. bxa4 Nd5 32. dxc5 Nb6 33. cxb6 Kb8 34. bxa7 Ka8 * * Reference: YouTube Channel Xadrez Brasil https://www.youtube.com/watch?v=5W-w31_95As */ #include "kuwait_chess.hpp" #include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <sys/types.h> #include <unistd.h> #include <string> #include <cstring> #include <vector> #include <csignal> #include <bits/stdc++.h> using namespace std; bool goal_is_mate = false; bool goal_is_draw = false; bool goal_is_chessboard = false; char const *initial_fen = ""; char const *final_fen = ""; game_state initial_game; int initial_side_to_move = WHITE; char initial_chessboard[NUM_SQUARES]; char final_chessboard[NUM_SQUARES]; long variants_analyzed = 0; char last_variant_analyzed[4000] = {0}; int min_move_count_mate = 9999; int min_move_count_draw = 9999; int min_move_count_chessboard = 9999; int max_full_move_count = 9999; vector<string> mate_variant; vector<string> draw_variant; vector<string> chessboard_variant; FILE *save_results = NULL; char const *save_results_name = "kuwait_chess.txt"; int verbose = 1; #define NORMAL "\e[0m" #define REVERSE "\e[7m" #define RESET_REVERSE "\e[27m" #define FG_DEFAULT "\e[0;39m" #define BG_DEFAULT "\e[0;49m" #define FG_LIGHT_RED "\e[91m" #define FG_LIGHT_YELLOW "\e[93m" #define FG_LIGHT_CYAN "\e[96m" #define FG_BOLD_LIGHT_RED "\e[1;91m" #define FG_BOLD_RED "\e[1;31m" #define FG_BOLD_YELLOW "\e[1;33m" #define FG_BOLD_CYAN "\e[1;36m" #define BG_BLACK "\e[40m" #define BG_WHITE "\e[47m" bool no_restriction(char piece, int square) { return false; } bool no_restriction(piece_move *move) { return false; } bool (*special_piece_restriction)(char piece, int square) = no_restriction; bool (*special_move_restriction)(piece_move *move) = no_restriction; int error_message(int error_number, char const *error_text) { if (verbose) fprintf(stderr, "Error #%d: %s\n", error_number, error_text); return error_number; } int extra(int num_pieces, int default_num_pieces) { int extra_num_pieces = (num_pieces > default_num_pieces) ? (num_pieces - default_num_pieces) : 0; return extra_num_pieces; } int piece_count_validation(char *chessboard) { int P = 0, N = 0, B = 0, R = 0, Q = 0, K = 0; int p = 0, n = 0, b = 0, r = 0, q = 0, k = 0; int promoted_P = 0, promoted_p = 0; int result = 0; for (int square = 0; square < NUM_SQUARES; square++) { switch(chessboard[square]) { case WHITE_PAWN: P++; break; case BLACK_PAWN: p++; break; case WHITE_KNIGHT: N++; break; case BLACK_KNIGHT: n++; break; case WHITE_BISHOP: B++; break; case BLACK_BISHOP: b++; break; case WHITE_ROOK: R++; break; case BLACK_ROOK: r++; break; case WHITE_QUEEN: Q++; break; case BLACK_QUEEN: q++; break; case WHITE_KING: K++; break; case BLACK_KING: k++; break; } } if (K != NUM_KINGS || k != NUM_KINGS) result |= 1 << error_message(1, "Invalid number of kings"); if (Q > (NUM_QUEENS + NUM_PAWNS) || q > (NUM_QUEENS + NUM_PAWNS)) result |= 1 << error_message(2, "Invalid number of queens"); if (R > (NUM_ROOKS + NUM_PAWNS) || r > (NUM_ROOKS + NUM_PAWNS)) result |= 1 << error_message(3, "Invalid number of rooks"); if (B > (NUM_BISHOPS + NUM_PAWNS) || b > (NUM_BISHOPS + NUM_PAWNS)) result |= 1 << error_message(4, "Invalid number of bishops"); if (N > (NUM_KNIGHTS + NUM_PAWNS) || n > (NUM_KNIGHTS + NUM_PAWNS)) result |= 1 << error_message(5, "Invalid number of knights"); if (P > NUM_PAWNS || p > NUM_PAWNS) result |= 1 << error_message(6, "Invalid number of pawns"); promoted_P = extra(Q, NUM_QUEENS) + extra(R, NUM_ROOKS) + extra(B, NUM_BISHOPS) + extra(N, NUM_KNIGHTS); promoted_p = extra(q, NUM_QUEENS) + extra(r, NUM_ROOKS) + extra(b, NUM_BISHOPS) + extra(n, NUM_KNIGHTS); if ((P + promoted_P) > NUM_PAWNS || (p + promoted_p) > NUM_PAWNS) result |= 1 << error_message(7, "Invalid number of promoted pieces"); return result; } int error_fen(int error_number, char const *error_text, char const *fen_text, char const *fen_char) { if (verbose) { for (char const *c = fen_text; c != fen_char; c++) fprintf(stderr, "%c", *c); fprintf(stderr, "%s%c%s%s\n", REVERSE, *fen_char, RESET_REVERSE, (fen_char + 1)); } return error_message(error_number, error_text); } int fen_piece_placement(char *chessboard, char const *fen_text) { // https://www.chessprogramming.org/Forsyth-Edwards_Notation int square = 0, file_count = 0, rank_count = 1; char working_chessboard[NUM_SQUARES]; memset(working_chessboard, EMPTY, NUM_SQUARES); for (char const *c = fen_text; *c != 0 && *c != ' '; c++) { if (square >= NUM_SQUARES) return error_fen(2, "FEN text too long", fen_text, c); if (*c >= '1' && *c <= (NUM_FILES + '0')) { if (file_count > 0 && isdigit(*(c - 1))) return error_fen(1, "Invalid FEN syntax", fen_text, c); square += (*c - '0'); file_count += (*c - '0'); if (file_count > NUM_FILES) return error_fen(4, "Too many files in a rank", fen_text, c); } else if (IS_PIECE(*c)) { working_chessboard[square] = *c; square++; file_count++; if (file_count > NUM_FILES) return error_fen(4, "Too many files in a rank", fen_text, c); if (IS_PAWN(*c) && (rank_count == 1 || rank_count == NUM_RANKS)) return error_fen(7, "Invalid pawn location", fen_text, c); } else if (*c == RANK_SEPARATOR) { if (file_count != NUM_FILES) return error_fen(5, "Too few files in a rank", fen_text, c); file_count = 0, rank_count++; } else return error_fen(1, "Invalid FEN syntax", fen_text, c); } if (square != NUM_SQUARES) return error_fen(3, "FEN text too short", fen_text, (fen_text + strlen(fen_text))); if (piece_count_validation(working_chessboard)) return error_fen(6, "Invalid number of pieces", fen_text, (fen_text + strlen(fen_text))); memcpy(chessboard, working_chessboard, NUM_SQUARES); return 0; } void print_chessboard(char *chessboard) { printf("\n"); for (int r = 0; r < NUM_RANKS; r++) { printf("%d ", (NUM_RANKS - r)); for (int f = 0; f < NUM_FILES; f++) { int square = r * NUM_FILES + f; char const *fg_color = IS_WHITE(chessboard[square]) ? FG_BOLD_CYAN : FG_BOLD_LIGHT_RED; char const *bg_color = IS_WHITE_SQUARE(square) ? BG_WHITE : BG_DEFAULT; printf("%s%s%c %s%s", bg_color, fg_color, chessboard[square], BG_DEFAULT, FG_DEFAULT); } printf("\n"); } printf(" "); for (int f = 0; f < NUM_FILES; f++) printf("%c ", 'a' + f); printf("\n\n"); } void default_move(piece_move *move, char piece, int square) { move->moving_piece = piece; move->promoted_piece = EMPTY; move->from_square = square; move->to_square = NO_SQUARE; move->file_ambiguity = false; move->rank_ambiguity = false; move->capture = false; move->en_passant = false; move->check = false; move->mate = false; move->draw = false; move->next_valid_moves = 0; } void get_moves(piece_move *moves, int *index, char *chessboard, char file, char rank, int file_step, int rank_step, int max_steps) { int color = COLOR(chessboard[SQUARE(file, rank)]); int f = file + file_step; int r = rank + rank_step; for (int step = 0; step < max_steps; step++) { if (f < 'a' || f > ('a' + NUM_FILES - 1) || r < '1' || r > ('1' + NUM_RANKS - 1)) break; int square = SQUARE(f, r); if (chessboard[square] != EMPTY) { if (COLOR(chessboard[square]) != color) { moves[*index].to_square = square; moves[*index].capture = true; (*index)++; } break; } moves[*index].to_square = square; (*index)++; f += file_step; r += rank_step; } } void get_castling(piece_move *moves, int *index, char *chessboard, int color, char castling_side, bool castling_ability) { if (!castling_ability) return; char file = 'e'; char rank = (color == WHITE) ? '1' : ('1' + NUM_RANKS - 1); int first_empty_square = IS_KING(castling_side) ? SQUARE(file + 1, rank) : SQUARE(file - 3, rank); int last_empty_square = IS_KING(castling_side) ? SQUARE(file + 2, rank) : SQUARE(file - 1, rank); for (int square = first_empty_square; square <= last_empty_square; square++) if (chessboard[square] != EMPTY) return; moves[*index].to_square = IS_KING(castling_side) ? SQUARE(file + 2, rank) : SQUARE(file - 2, rank); (*index)++; } void get_move_pawn_forward(piece_move *moves, int index_base, int *index, char *chessboard, char file, char rank, int step = 1) { int color = COLOR(chessboard[SQUARE(file, rank)]); int rank_step = (color == WHITE) ? step : -step; char initial_rank = (color == WHITE) ? ('1' + 1) : ('1' + NUM_RANKS - 2); char r = rank + rank_step; int square = SQUARE(file, r); if (chessboard[square] == EMPTY) { moves[index_base + (*index)].to_square = square; (*index)++; if (rank == initial_rank && step == 1) get_move_pawn_forward(moves, index_base, index, chessboard, file, rank, 2); } } void get_move_pawn_capture(piece_move *moves, int index_base, int *index, char *chessboard, char file, char rank, int file_step, int en_passant_target_square) { int color = COLOR(chessboard[SQUARE(file, rank)]); int rank_step = (color == WHITE) ? 1 : -1; char f = file + file_step; char r = rank + rank_step; if (f < 'a' || f > ('a' + NUM_FILES - 1)) return; int square = SQUARE(f, r); if ((chessboard[square] != EMPTY && COLOR(chessboard[square]) != color) || (square == en_passant_target_square)) { moves[index_base + (*index)].to_square = square; moves[index_base + (*index)].capture = true; moves[index_base + (*index)].en_passant = (square == en_passant_target_square); (*index)++; } } int get_legal_moves(piece_move *legal_moves, game_state *game, char piece, int square) { char file = FILE(square); char rank = RANK(square); char *cb = game->chessboard; int color = COLOR(cb[square]); bool castling_short_ability, castling_long_ability; for (int i = 0; i < MAX_LEGAL_MOVES; i++) default_move(&legal_moves[i], piece, square); int i = 0, j = 0; switch (piece) { case WHITE_KING: case BLACK_KING: get_moves(legal_moves, &i, cb, file, rank, 0, 1, 1); get_moves(legal_moves, &i, cb, file, rank, 1, 1, 1); get_moves(legal_moves, &i, cb, file, rank, 1, 0, 1); get_moves(legal_moves, &i, cb, file, rank, 1, -1, 1); get_moves(legal_moves, &i, cb, file, rank, 0, -1, 1); get_moves(legal_moves, &i, cb, file, rank, -1, -1, 1); get_moves(legal_moves, &i, cb, file, rank, -1, 0, 1); get_moves(legal_moves, &i, cb, file, rank, -1, 1, 1); castling_short_ability = (color == WHITE && game->white_castling_short_ability) || (color == BLACK && game->black_castling_short_ability); castling_long_ability = (color == WHITE && game->white_castling_long_ability) || (color == BLACK && game->black_castling_long_ability); get_castling(legal_moves, &i, cb, color, 'K', castling_short_ability); get_castling(legal_moves, &i, cb, color, 'Q', castling_long_ability); break; case WHITE_QUEEN: case BLACK_QUEEN: get_moves(legal_moves, &i, cb, file, rank, 0, 1, NUM_RANKS - 1); get_moves(legal_moves, &i, cb, file, rank, 1, 1, NUM_RANKS - 1); get_moves(legal_moves, &i, cb, file, rank, 1, 0, NUM_FILES - 1); get_moves(legal_moves, &i, cb, file, rank, 1, -1, NUM_RANKS - 1); get_moves(legal_moves, &i, cb, file, rank, 0, -1, NUM_RANKS - 1); get_moves(legal_moves, &i, cb, file, rank, -1, -1, NUM_RANKS - 1); get_moves(legal_moves, &i, cb, file, rank, -1, 0, NUM_FILES - 1); get_moves(legal_moves, &i, cb, file, rank, -1, 1, NUM_RANKS - 1); break; case WHITE_ROOK: case BLACK_ROOK: get_moves(legal_moves, &i, cb, file, rank, 0, 1, NUM_RANKS - 1); get_moves(legal_moves, &i, cb, file, rank, 1, 0, NUM_FILES - 1); get_moves(legal_moves, &i, cb, file, rank, 0, -1, NUM_RANKS - 1); get_moves(legal_moves, &i, cb, file, rank, -1, 0, NUM_FILES - 1); break; case WHITE_BISHOP: case BLACK_BISHOP: get_moves(legal_moves, &i, cb, file, rank, 1, 1, NUM_RANKS - 1); get_moves(legal_moves, &i, cb, file, rank, 1, -1, NUM_RANKS - 1); get_moves(legal_moves, &i, cb, file, rank, -1, -1, NUM_RANKS - 1); get_moves(legal_moves, &i, cb, file, rank, -1, 1, NUM_RANKS - 1); break; case WHITE_KNIGHT: case BLACK_KNIGHT: get_moves(legal_moves, &i, cb, file, rank, 1, 2, 1); get_moves(legal_moves, &i, cb, file, rank, -1, 2, 1); get_moves(legal_moves, &i, cb, file, rank, 2, 1, 1); get_moves(legal_moves, &i, cb, file, rank, 2, -1, 1); get_moves(legal_moves, &i, cb, file, rank, 1, -2, 1); get_moves(legal_moves, &i, cb, file, rank, -1, -2, 1); get_moves(legal_moves, &i, cb, file, rank, -2, 1, 1); get_moves(legal_moves, &i, cb, file, rank, -2, -1, 1); break; case WHITE_PAWN: case BLACK_PAWN: get_move_pawn_forward(legal_moves, i, &j, cb, file, rank); get_move_pawn_capture(legal_moves, i, &j, cb, file, rank, 1, game->en_passant_target_square); get_move_pawn_capture(legal_moves, i, &j, cb, file, rank, -1, game->en_passant_target_square); if ((color == WHITE && rank == ('1' + NUM_RANKS - 2)) || (color == BLACK && rank == '2')) // pawn promotion { for (int k = 0; k < j; k++) { legal_moves[i + k + j] = legal_moves[i + k]; legal_moves[i + k + 2*j] = legal_moves[i + k]; legal_moves[i + k + 3*j] = legal_moves[i + k]; legal_moves[i + k ].promoted_piece = (color == WHITE) ? WHITE_QUEEN : BLACK_QUEEN; legal_moves[i + k + j].promoted_piece = (color == WHITE) ? WHITE_ROOK : BLACK_ROOK; legal_moves[i + k + 2*j].promoted_piece = (color == WHITE) ? WHITE_BISHOP : BLACK_BISHOP; legal_moves[i + k + 3*j].promoted_piece = (color == WHITE) ? WHITE_KNIGHT : BLACK_KNIGHT; } j *= 4; } i += j; break; } return i; } void update_chessboard(char *chessboard, char *previous_chessboard, piece_move *move) { memcpy(chessboard, previous_chessboard, NUM_SQUARES); chessboard[move->from_square] = EMPTY; chessboard[move->to_square] = move->moving_piece; if (IS_KING(move->moving_piece) && FILE(move->from_square) == 'e') // Castling { if (move->to_square == SQUARE('g','1')) { chessboard[SQUARE('h','1')] = EMPTY; chessboard[SQUARE('f','1')] = WHITE_ROOK; } else if (move->to_square == SQUARE('c','1')) { chessboard[SQUARE('a','1')] = EMPTY; chessboard[SQUARE('d','1')] = WHITE_ROOK; } else if (move->to_square == SQUARE('g','8')) { chessboard[SQUARE('h','8')] = EMPTY; chessboard[SQUARE('f','8')] = BLACK_ROOK; } else if (move->to_square == SQUARE('c','8')) { chessboard[SQUARE('a','8')] = EMPTY; chessboard[SQUARE('d','8')] = BLACK_ROOK; } } if (move->en_passant) chessboard[SQUARE(FILE(move->to_square), RANK(move->from_square))] = EMPTY; if (IS_PIECE(move->promoted_piece)) chessboard[move->to_square] = move->promoted_piece; } void update_state(game_state *game) { game->white_castling_short_ability = game->white_castling_long_ability &= (game->chessboard[SQUARE('e','1')] == WHITE_KING); game->white_castling_short_ability &= (game->chessboard[SQUARE('h','1')] == WHITE_ROOK); game->white_castling_long_ability &= (game->chessboard[SQUARE('a','1')] == WHITE_ROOK); game->black_castling_short_ability = game->black_castling_long_ability &= (game->chessboard[SQUARE('e', ('1' + NUM_RANKS - 1))] == BLACK_KING); game->black_castling_short_ability &= (game->chessboard[SQUARE('h', ('1' + NUM_RANKS - 1))] == BLACK_ROOK); game->black_castling_long_ability &= (game->chessboard[SQUARE('a', ('1' + NUM_RANKS - 1))] == BLACK_ROOK); if (game->last_move) { game->en_passant_target_square = NO_SQUARE; if (IS_PAWN(game->last_move->moving_piece)) if (RANK(game->last_move->from_square) == '2' && RANK(game->last_move->to_square) == '4') game->en_passant_target_square = SQUARE(FILE(game->last_move->from_square), '3'); else if (RANK(game->last_move->from_square) == ('1' + NUM_RANKS - 2) && RANK(game->last_move->to_square) == ('1' + NUM_RANKS - 4)) game->en_passant_target_square = SQUARE(FILE(game->last_move->from_square), ('1' + NUM_RANKS - 3)); game->half_move_clock++; if (IS_PAWN(game->last_move->moving_piece) || game->last_move->capture) game->half_move_clock = 0; } } void set_game_state(game_state *game, char *chessboard = initial_chessboard, int side_to_move = WHITE, int full_move_counter = 1) { memcpy(game->chessboard, chessboard, NUM_SQUARES); game->last_move = NULL; game->side_to_move = side_to_move; game->white_castling_short_ability = true; game->white_castling_long_ability = true; game->black_castling_short_ability = true; game->black_castling_long_ability = true; game->en_passant_target_square = NO_SQUARE; game->half_move_clock = 0; game->full_move_counter = full_move_counter; game->previous = NULL; update_state(game); } bool can_reach(char *chessboard, char from_file, char from_rank, int to_square, int file_step, int rank_step, int max_steps) { int f = from_file + file_step; int r = from_rank + rank_step; for (int step = 0; step < max_steps; step++) { if (f < 'a' || f > ('a' + NUM_FILES - 1) || r < '1' || r > ('1' + NUM_RANKS - 1)) break; int square = SQUARE(f, r); if (square == to_square) return true; if (chessboard[square] != EMPTY) break; f += file_step; r += rank_step; } return false; } bool square_is_attacked_by_piece(char *chessboard, int from_square, int to_square, char piece) { char file = FILE(from_square); char rank = RANK(from_square); int color = COLOR(chessboard[from_square]); switch (piece) { case WHITE_KING: case BLACK_KING: if (can_reach(chessboard, file, rank, to_square, 0, 1, 1) || can_reach(chessboard, file, rank, to_square, 1, 1, 1) || can_reach(chessboard, file, rank, to_square, 1, 0, 1) || can_reach(chessboard, file, rank, to_square, 1, -1, 1) || can_reach(chessboard, file, rank, to_square, 0, -1, 1) || can_reach(chessboard, file, rank, to_square, -1, -1, 1) || can_reach(chessboard, file, rank, to_square, -1, 0, 1) || can_reach(chessboard, file, rank, to_square, -1, 1, 1)) return true; break; case WHITE_QUEEN: case BLACK_QUEEN: if (can_reach(chessboard, file, rank, to_square, 0, 1, 7) || can_reach(chessboard, file, rank, to_square, 1, 1, 7) || can_reach(chessboard, file, rank, to_square, 1, 0, 7) || can_reach(chessboard, file, rank, to_square, 1, -1, 7) || can_reach(chessboard, file, rank, to_square, 0, -1, 7) || can_reach(chessboard, file, rank, to_square, -1, -1, 7) || can_reach(chessboard, file, rank, to_square, -1, 0, 7) || can_reach(chessboard, file, rank, to_square, -1, 1, 7)) return true; break; case WHITE_ROOK: case BLACK_ROOK: if (can_reach(chessboard, file, rank, to_square, 0, 1, 7) || can_reach(chessboard, file, rank, to_square, 1, 0, 7) || can_reach(chessboard, file, rank, to_square, 0, -1, 7) || can_reach(chessboard, file, rank, to_square, -1, 0, 7)) return true; break; case WHITE_BISHOP: case BLACK_BISHOP: if (can_reach(chessboard, file, rank, to_square, 1, 1, 7) || can_reach(chessboard, file, rank, to_square, 1, -1, 7) || can_reach(chessboard, file, rank, to_square, -1, -1, 7) || can_reach(chessboard, file, rank, to_square, -1, 1, 7)) return true; break; case WHITE_KNIGHT: case BLACK_KNIGHT: if (can_reach(chessboard, file, rank, to_square, 1, 2, 1) || can_reach(chessboard, file, rank, to_square, -1, 2, 1) || can_reach(chessboard, file, rank, to_square, 2, 1, 1) || can_reach(chessboard, file, rank, to_square, 2, -1, 1) || can_reach(chessboard, file, rank, to_square, 1, -2, 1) || can_reach(chessboard, file, rank, to_square, -1, -2, 1) || can_reach(chessboard, file, rank, to_square, -2, 1, 1) || can_reach(chessboard, file, rank, to_square, -2, -1, 1)) return true; break; case WHITE_PAWN: if (can_reach(chessboard, file, rank, to_square, 1, 1, 1) || can_reach(chessboard, file, rank, to_square, -1, 1, 1)) return true; break; case BLACK_PAWN: if (can_reach(chessboard, file, rank, to_square, 1, -1, 1) || can_reach(chessboard, file, rank, to_square, -1, -1, 1)) return true; break; } return false; } bool square_is_attacked(char *chessboard, int color, int square) { for (int attacking_square = 0; attacking_square < NUM_SQUARES; attacking_square++) { char piece = chessboard[attacking_square]; if (IS_EMPTY(piece) || (color == COLOR(piece))) continue; if (square_is_attacked_by_piece(chessboard, attacking_square, square, piece)) return true; } return false; } bool castling_under_attack(char *chessboard, piece_move *move) { if (!IS_KING(move->moving_piece)) return false; int color = COLOR(chessboard[move->to_square]); char file = 'e'; char rank = (color == WHITE) ? '1' : '8'; int king_initial_square = SQUARE(file, rank); int file_step = (move->to_square - move->from_square); if ((move->from_square != king_initial_square) || (abs(file_step) != 2)) return false; if (square_is_attacked(chessboard, color, king_initial_square)) return true; int king_middle_square = SQUARE(file + (file_step / 2), rank); if (square_is_attacked(chessboard, color, king_middle_square)) return true; return false; } bool king_in_check(char *chessboard, int color) { char king = (color == WHITE) ? WHITE_KING : BLACK_KING; int square = strchr(chessboard, king) - chessboard; bool attacked = square_is_attacked(chessboard, color, square); return attacked; } bool forced_draw(game_state *game) { // Draw Rule #1: Fifty moves by each player without capture of any piece, or the movement of a pawn if (game->half_move_clock >= (50 + 50)) return true; // Draw Rule #2: Insufficient mating material: a single bishop or a single knight bool minor_pieces_only = true; int white_bishops_w = 0, white_bishops_b = 0, white_knights = 0, black_bishops_w = 0, black_bishops_b = 0, black_knights = 0; for (int square = 0; square < NUM_SQUARES; square++) { char piece = game->chessboard[square]; if (IS_EMPTY(piece) || IS_KING(piece)) continue; if (IS_QUEEN(piece) || IS_ROOK(piece) || IS_PAWN(piece)) { minor_pieces_only = false; break; } white_bishops_w |= (piece == WHITE_BISHOP && IS_WHITE_SQUARE(square)); white_bishops_b |= (piece == WHITE_BISHOP && IS_BLACK_SQUARE(square)); white_knights += (piece == WHITE_KNIGHT); black_bishops_w |= (piece == BLACK_BISHOP && IS_WHITE_SQUARE(square)); black_bishops_b |= (piece == BLACK_BISHOP && IS_BLACK_SQUARE(square)); black_knights += (piece == BLACK_KNIGHT); } if (minor_pieces_only && (white_bishops_w + white_bishops_b + white_knights) < 2 && (black_bishops_w + black_bishops_b + black_knights) < 2) return true; // Draw Rule #3: Threefold repetition: the same position is reached three times with the same player to move char *chessboard = game->chessboard; int side_to_move = game->side_to_move; int repetitions = 0; game_state *old_game = game->previous; while(old_game != NULL && old_game->half_move_clock > 0) { if (old_game->side_to_move == side_to_move && strncmp(old_game->chessboard, chessboard, NUM_SQUARES) == 0) { repetitions++; if (repetitions >= 3) return true; } old_game = old_game->previous; } return false; } void move_disambiguation(piece_move *move, char *chessboard) { char piece = move->moving_piece; if (IS_KING(piece) || IS_PAWN(piece)) return; char file_from = FILE(move->from_square); char rank_from = RANK(move->from_square); for (int square = 0; square < NUM_SQUARES; square++) { if ((chessboard[square] != piece) || (square == move->from_square)) continue; if (square_is_attacked_by_piece(chessboard, square, move->to_square, piece)) { if (FILE(square) != file_from) move->file_ambiguity = true; else move->rank_ambiguity = true; if (move->file_ambiguity && move->rank_ambiguity) return; } } } int get_move_count_text(char *move_count_text, game_state *game, bool start) { int len = 0; if (game->side_to_move == BLACK) sprintf(move_count_text, "%d. %n", game->full_move_counter, &len); else if (game->side_to_move == WHITE && start) sprintf(move_count_text, "%d... %n", (game->full_move_counter - 1), &len); return len; } int get_move_text(char *move_text, piece_move *move) { int len = 0; char piece = move->moving_piece; char *text = move_text; if (IS_KING(piece) && FILE(move->from_square) == 'e' && FILE(move->to_square) == 'g') sprintf(text, "O-O%n", &len); else if (IS_KING(piece) && FILE(move->from_square) == 'e' && FILE(move->to_square) == 'c') sprintf(text, "O-O-O%n", &len); else { if (!IS_PAWN(piece)) sprintf(text += len, "%c%n", toupper(piece), &len); if (move->file_ambiguity || (IS_PAWN(piece) && move->capture)) sprintf(text += len, "%c%n", FILE(move->from_square), &len); if (move->rank_ambiguity) sprintf(text += len, "%c%n", RANK(move->from_square), &len); if (move->capture) sprintf(text += len, "x%n", &len); sprintf(text += len, "%c%c%n", FILE(move->to_square), RANK(move->to_square), &len); if (move->en_passant) sprintf(text += len, "e.p.%n", &len); if (IS_PIECE(move->promoted_piece)) sprintf(text += len, "=%c%n", toupper(move->promoted_piece), &len); } if (move->mate) sprintf(text += len, "#%n", &len); else if (move->check) sprintf(text += len, "+%n", &len); if (move->draw) sprintf(text += len, "(=)%n", &len); len += (text - move_text); return len; } int get_move_list(char *move_list, game_state *game, int start_move_counter = 1, int start_side_to_move = WHITE) { if (game == NULL || game->last_move == NULL || game->full_move_counter < start_move_counter || (game->full_move_counter == start_move_counter && game->side_to_move < start_side_to_move)) return 0; int len = get_move_list(move_list, game->previous, start_move_counter, start_side_to_move); bool start = (game->full_move_counter == start_move_counter && game->side_to_move == start_side_to_move); move_list[len++] = ' '; len += get_move_count_text(move_list + len, game, start); len += get_move_text(move_list + len, game->last_move); return len; } bool first_move(game_state *game) { bool is_first_move = (game->previous == NULL); return is_first_move; } bool goal_chessboard_achieved(game_state *game, char *goal_chessboard) { bool chessboard_achieved = goal_is_chessboard && (strncmp(game->chessboard, goal_chessboard, NUM_SQUARES) == 0); return chessboard_achieved; } void format_commas(char *formatted_number, long num) { char str_num[80], *fn = formatted_number; int last = sprintf(str_num, "%ld", num) - 1; for (int i = 0; i <= last; i++) { *fn++ = str_num[i]; if ((last - i) % 3 == 0) *fn++ = ','; } *(--fn) = 0; } void print_stats(stats_type type) { char stats_line[2000], variants_analyzed_str[80], mate_results_str[80], draw_results_str[80], chessboard_results_str[80]; char *text = stats_line; int len = 0; if (type == TEMPORARY) sprintf(text += len, "\nTemporary results:\n%n", &len); else if (type == FINAL) sprintf(text += len, "\n%n", &len); format_commas(variants_analyzed_str, variants_analyzed); sprintf(text += len, "Variants analyzed: %s %n", variants_analyzed_str, &len); if (goal_is_mate) { format_commas(mate_results_str, mate_variant.size()); sprintf(text += len, "Mate solutions: %s %n", mate_results_str, &len); if (mate_variant.size() > 0) sprintf(text += len, "Move count: %d %n", min_move_count_mate, &len); } if (goal_is_draw) { format_commas(draw_results_str, draw_variant.size()); sprintf(text += len, "Draw solutions: %s %n", draw_results_str, &len); if (draw_variant.size() > 0) sprintf(text += len, "Move count: %d %n", min_move_count_draw, &len); } if (goal_is_chessboard) { format_commas(chessboard_results_str, chessboard_variant.size()); sprintf(text += len, "Chessboard solutions: %s %n", chessboard_results_str, &len); if (chessboard_variant.size() > 0) sprintf(text += len, "Move count: %d %n", min_move_count_chessboard, &len); } if (type == PERIODIC || type == TEMPORARY) sprintf(text += len, "Last variant: %s %n", last_variant_analyzed, &len); if (type == FINAL && save_results_name && (mate_variant.size() + draw_variant.size() + chessboard_variant.size()) > 0) sprintf(text += len, "(See %s)%n", save_results_name, &len); sprintf(text += len, "\n%n", &len); if (type == TEMPORARY || type == FINAL) sprintf(text += len, "\n%n", &len); printf("%s", stats_line); if (type == FINAL && save_results_name) { save_results = fopen(save_results_name, "a"); fprintf(save_results, "%s", stats_line); fclose(save_results); } } char * output_variant(char *print_line, int move_count, char const *move_list, char const *highlight = NULL) { char const *color1 = (highlight ? highlight : ""); char const *color2 = (highlight ? FG_DEFAULT : ""); sprintf(print_line, "%s(%d) %s%s", color1, move_count, move_list, color2); return print_line; } void print_variant(game_state *game, int verbose = 0, char const *highlight = NULL) { last_variant_analyzed[0] = 0; get_move_list(last_variant_analyzed, game); if (verbose) { char print_line[4000]; int move_count = (game->side_to_move == WHITE) ? (game->full_move_counter - 1) : game->full_move_counter; output_variant(print_line, move_count, last_variant_analyzed, highlight); printf("%s\n", print_line); } } long set_result(bool finish, bool mate, bool draw, bool chessboard, int move_count_mate, int move_count_draw, int move_count_chessboard) { long result = SET_FINISH(finish) | SET_MATE(mate) | SET_DRAW(draw) | SET_CHESSBOARD(chessboard); if (mate) result |= SET_MOVE_COUNT_MATE((long) move_count_mate); if (draw) result |= SET_MOVE_COUNT_DRAW((long) move_count_draw); if (chessboard) result |= SET_MOVE_COUNT_CHESSBOARD((long) move_count_chessboard); return result; } long push_result_forward(bool finish, bool mate, bool draw, bool chessboard, int move_count) { long result = set_result(finish, mate, draw, chessboard, move_count, move_count, move_count); return result; } long pull_result_backward(bool mate, bool draw, bool chessboard, int move_count_mate, int move_count_draw, int move_count_chessboard) { long result = set_result(false, mate, draw, chessboard, move_count_mate, move_count_draw, move_count_chessboard); return result; } void push_variant(vector<string> &variant_list, game_state *game) { int move_count = (game->side_to_move == WHITE) ? (game->full_move_counter - 1) : game->full_move_counter; char move_list[4000], variant[4000]; move_list[0] = 0; get_move_list(move_list, game); output_variant(variant, move_count, move_list, NULL); variant_list.push_back(string(variant)); } long finish_variant(game_state *game, bool print = true, bool mate = false, bool stalemate = false) { bool draw = mate ? false : (stalemate || forced_draw(game)); bool chessboard = (goal_chessboard_achieved(game, final_chessboard) && (game->side_to_move == initial_side_to_move)); bool max_moves = ((game->full_move_counter > max_full_move_count) && (game->side_to_move == initial_side_to_move)); bool finish = (mate || draw || chessboard || max_moves); int move_count = (game->side_to_move == WHITE) ? (game->full_move_counter - 1) : game->full_move_counter; finish |= ((!goal_is_mate || game->full_move_counter > min_move_count_mate) && (!goal_is_draw || game->full_move_counter > min_move_count_draw) && (!goal_is_chessboard || game->full_move_counter > min_move_count_chessboard)); if (print) { if (!finish && (verbose >= 3)) print_variant(game, verbose); else print_variant(game); if (finish) { variants_analyzed++; if (variants_analyzed % 1000000 == 0) print_stats(PERIODIC); } } long result = push_result_forward(finish, mate, draw, chessboard, move_count); return result; } long finish_mate_or_stalemate(game_state *game) { bool mate = false, stalemate = false; if (king_in_check(game->chessboard, game->side_to_move)) mate = true; else stalemate = true; if (game->last_move) { game->last_move->mate = mate; game->last_move->draw = stalemate; } long result = finish_variant(game, true, mate, stalemate); return result; } bool is_valid_piece(char piece, int square, int color) { if (IS_EMPTY(piece) || (color != COLOR(piece))) return false; if ((*special_piece_restriction)(piece, square)) // Problem specifics return false; return true; } bool is_valid_move(piece_move *move, game_state *game) { if ((*special_move_restriction)(move)) // Problem specifics return false; update_chessboard(game->chessboard, game->previous->chessboard, move); if (king_in_check(game->chessboard, game->previous->side_to_move)) // Illegal move: Let own king in check return false; if (castling_under_attack(game->chessboard, move)) // Illegal move: Castling under attack return false; return true; } int get_valid_move_count(game_state *game) { piece_move next_move, legal_moves[MAX_LEGAL_MOVES]; game_state next = *game; next.last_move = &next_move; next.side_to_move = game->side_to_move == WHITE ? BLACK : WHITE; next.full_move_counter += game->side_to_move == WHITE ? 0 : 1; next.previous = game; int color = game->side_to_move; int valid_moves = 0; for (int square = 0; square < NUM_SQUARES; square++) { char piece = game->chessboard[square]; if (is_valid_piece(piece, square, color)) { int legal_move_count = get_legal_moves(legal_moves, game, piece, square); for (int i = 0; i < legal_move_count; i++) { next_move = legal_moves[i]; if (is_valid_move(&next_move, &next)) valid_moves++; } } } return valid_moves; } void get_valid_moves(vector<piece_move> &valid_moves, game_state *game) { piece_move next_move, legal_moves[MAX_LEGAL_MOVES]; int color = game->previous->side_to_move; long result; for (int square = 0; square < NUM_SQUARES; square++) { char piece = game->previous->chessboard[square]; if (is_valid_piece(piece, square, color)) { int legal_move_count = get_legal_moves(legal_moves, game->previous, piece, square); for (int i = 0; i < legal_move_count; i++) { next_move = legal_moves[i]; if (is_valid_move(&next_move, game)) { move_disambiguation(&next_move, game->previous->chessboard); next_move.check = king_in_check(game->chessboard, game->side_to_move); next_move.next_valid_moves = get_valid_move_count(game); if (next_move.next_valid_moves == 0) { next_move.mate = next_move.check; next_move.draw = !next_move.check; // Stalemate } else { result = finish_variant(game, false); next_move.draw = DRAW(result); if (FINISH(result)) next_move.next_valid_moves = 0; } valid_moves.push_back(next_move); } } } } } void print_results(vector<string> &results, bool goal, char const *title, stats_type type) { if (goal && results.size() > 0) { printf("\n%s results:\n\n", title); if (type == FINAL && save_results_name) { save_results = fopen(save_results_name, "a"); fprintf(save_results, "\n%s results:\n\n", title); } for (int i = 0; i < results.size(); i++) { printf("%s%s%s\n", FG_BOLD_CYAN, results.at(i).c_str(), FG_DEFAULT); if (type == FINAL && save_results_name) fprintf(save_results, "%s\n", results.at(i).c_str()); } if (type == FINAL && save_results_name) fclose(save_results); } } void erase_bad_variants(vector<string> &variant, bool goal, bool candidate, size_t game_variants, size_t previous_variants, int *min_move_count, int previous_min_move_count, int move_count, bool finish, bool erase_branch = true) { if (goal) { if (finish && candidate && (*min_move_count > move_count)) { // This is a shorter variant, thus erase its siblings *min_move_count = move_count; if (previous_variants > game_variants) variant.erase(variant.begin() + game_variants, variant.begin() + previous_variants); } if (!finish && !candidate && erase_branch) { // This is a bad variant, thus erase its whole branch *min_move_count = previous_min_move_count; if (variant.size() > previous_variants) variant.erase(variant.begin() + previous_variants, variant.end()); } } } bool order_by_ascending_next_valid_moves(piece_move move_1, piece_move move_2) { bool order = (move_1.next_valid_moves < move_2.next_valid_moves); return order; } long get_all_valid_moves_from_state(game_state *game) { long result; bool game_mate_candidate = false, game_draw_candidate = false, game_chessboard_candidate = false; bool mate_candidate, draw_candidate, chessboard_candidate; size_t game_mate_variants = mate_variant.size(); size_t game_draw_variants = draw_variant.size(); size_t game_chessboard_variants = chessboard_variant.size(); piece_move next_move; game_state next = *game; next.last_move = &next_move; next.side_to_move = game->side_to_move == WHITE ? BLACK : WHITE; next.full_move_counter += game->side_to_move == WHITE ? 0 : 1; next.previous = game; int color = game->side_to_move; vector<piece_move> valid_moves; get_valid_moves(valid_moves, &next); sort(valid_moves.begin(), valid_moves.end(), order_by_ascending_next_valid_moves); for (int i = 0; i < valid_moves.size(); i++) { next_move = valid_moves.at(i); update_chessboard(next.chessboard, game->chessboard, &next_move); update_state(&next); size_t previous_mate_variants = mate_variant.size(); size_t previous_draw_variants = draw_variant.size(); size_t previous_chessboard_variants = chessboard_variant.size(); int previous_min_move_count_mate = min_move_count_mate; int previous_min_move_count_draw = min_move_count_draw; int previous_min_move_count_chessboard = min_move_count_chessboard; result = finish_variant(&next, true, next_move.mate, next_move.draw); if (!FINISH(result)) result = get_all_valid_moves_from_state(&next); // Go recursively until variant reaches an end game_mate_candidate |= mate_candidate = (goal_is_mate && MATE(result) && ((color == initial_side_to_move) || !FINISH(result))); game_draw_candidate |= draw_candidate = (goal_is_draw && DRAW(result)); game_chessboard_candidate |= chessboard_candidate = (CHESSBOARD(result) && ((color == initial_side_to_move) || !FINISH(result))); if (FINISH(result)) { bool candidate = (mate_candidate || draw_candidate || chessboard_candidate); char const *highlight = candidate ? FG_BOLD_LIGHT_RED : NULL; if (mate_candidate) push_variant(mate_variant, &next); if (draw_candidate) push_variant(draw_variant, &next); if (chessboard_candidate) push_variant(chessboard_variant, &next); if ((candidate && verbose >= 1) || (verbose >= 2)) print_variant(&next, verbose, highlight); } if (color == initial_side_to_move) { erase_bad_variants(mate_variant, goal_is_mate, mate_candidate, game_mate_variants, previous_mate_variants, &min_move_count_mate, previous_min_move_count_mate, MOVE_COUNT_MATE(result), FINISH(result)); erase_bad_variants(draw_variant, goal_is_draw, draw_candidate, game_draw_variants, previous_draw_variants, &min_move_count_draw, previous_min_move_count_draw, MOVE_COUNT_DRAW(result), FINISH(result)); erase_bad_variants(chessboard_variant, goal_is_chessboard, chessboard_candidate, game_chessboard_variants, previous_chessboard_variants, &min_move_count_chessboard, previous_min_move_count_chessboard, MOVE_COUNT_CHESSBOARD(result), FINISH(result), false); } else if (!mate_candidate && !draw_candidate && !goal_is_chessboard) return 0; // Interrupt branch search if there is any variant that leads to a non-goal finish } if (valid_moves.size() == 0) result = finish_mate_or_stalemate(game); else result = pull_result_backward(game_mate_candidate, game_draw_candidate, game_chessboard_candidate, min_move_count_mate, min_move_count_draw, min_move_count_chessboard); return result; } void signal_handler(int signum) { if (signum == SIGQUIT) { print_results(mate_variant, goal_is_mate, "Mate", TEMPORARY); print_results(draw_variant, goal_is_draw, "Draw", TEMPORARY); print_stats(TEMPORARY); } else exit(signum); } void secure_file(char const *file_name) { FILE *file = fopen(file_name, "r"); if (file == NULL) return; fclose(file); pid_t pid = getpid(); char new_file_name[2000], file_type[80]; strcpy(new_file_name, file_name); char *p = strrchr(new_file_name, '.'); if (p == NULL) p = new_file_name + strlen(new_file_name); strcpy(file_type, p); (*p) = 0; sprintf(new_file_name, "%s_%d%s", new_file_name, pid, file_type); rename(file_name, new_file_name); } void usage(int exit_code = 0, char const *error_msg = "", char const *error_msg2 = "") { if (exit_code && (error_msg[0] || error_msg2[0])) fprintf(stderr, "\n%s%s\n", error_msg, error_msg2); fprintf(stderr, "\nUsage: kc [args]\n" " args:\n" " -i <FEN> : initial chessboard (Forsyth-Edwards Notation)\n" " -f <FEN> : search for final chessboard (Forsyth-Edwards Notation)\n" " -m : search for forced mate\n" " -d : search for forced draw\n" " -n <moves> : maximum number of moves\n" " -r <file> : results filename\n" " -v <verbose> : verbose level\n\n"); if (exit_code) exit(exit_code); } void read_parameters(int argc, char **argv) { for (int i = 1; i < argc; i++) { if (strcmp(argv[i], "-i") == 0) { if (i == argc - 1) usage(1, "Initial chessboard (FEN) expected after -i"); i++; initial_fen = argv[i]; if (fen_piece_placement(initial_chessboard, argv[i]) != 0) usage(2, "FEN syntax error after -i: ", argv[i]); } else if (strcmp(argv[i], "-f") == 0) { if (i == argc - 1) usage(3, "Final chessboard (FEN) expected after -f"); i++; final_fen = argv[i]; if (fen_piece_placement(final_chessboard, argv[i]) != 0) usage(4, "FEN syntax error after -f: ", argv[i]); goal_is_chessboard = true; } else if (strcmp(argv[i], "-m") == 0) goal_is_mate = true; else if (strcmp(argv[i], "-d") == 0) goal_is_draw = true; else if (strcmp(argv[i], "-n") == 0) { if (i == argc - 1) usage(5, "Number expected after -n"); i++; char *p; max_full_move_count = strtol(argv[i], &p, 10); if (p != argv[i] + strlen(argv[i]) || max_full_move_count <= 0) usage(6, "Invalid number after -n: ", argv[i]); } else if (strcmp(argv[i], "-r") == 0) { if (i == argc - 1) usage(7, "File name expected after -r"); i++; save_results_name = argv[i]; } else if (strcmp(argv[i], "-v") == 0) { if (i == argc - 1 || argv[i + 1][0] == '-') verbose = 1; else { i++; char *p; verbose = strtol(argv[i], &p, 10); if (p != argv[i] + strlen(argv[i]) || verbose < 0) usage(8, "Invalid number after -v: ", argv[i]); } } else usage(9, "Invalid command line argument: ", argv[i]); } if (!(goal_is_mate || goal_is_draw || goal_is_chessboard)) usage(10, "At least one search option (-f -m -d) must be set"); print_chessboard(initial_chessboard); if (king_in_check(initial_chessboard, (initial_side_to_move == WHITE) ? BLACK : WHITE)) { fprintf(stderr, "%s king is in check on initial chessboard: %s\n\n", (initial_side_to_move == WHITE ? "Black" : "White"), initial_fen); exit(11); } } bool piece_restriction_K_Ra1_Pa(char piece, int square) { // Rule #1 for the Kuwait problem: K, Ra1 and Pa never move if ((piece == WHITE_KING) || (piece == WHITE_ROOK && square == SQUARE('a','1')) || (piece == WHITE_PAWN && FILE(square) == 'a')) return true; return false; } bool move_restriction_Pb_Pf_capture(piece_move *move) { // Rule #2 for the Kuwait problem: Pb...Pf cannot move ahead and cannot capture pieces to the right side if (move->moving_piece == WHITE_PAWN && FILE(move->from_square) <= 'f' && FILE(move->from_square) <= FILE(move->to_square)) return true; // Rule #3 for the Kuwait problem: Every other white piece but Pb...Pf cannot capture anything if (COLOR(move->moving_piece) == WHITE && !(move->moving_piece == WHITE_PAWN && FILE(move->from_square) <= 'f') && move->capture) return true; return false; } int main(int argc, char **argv) { if (argc == 1 || strcmp(argv[1], "-h") == 0) usage(-1); fen_piece_placement(initial_chessboard, "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR"); read_parameters(argc, argv); set_game_state(&initial_game, initial_chessboard, initial_side_to_move); secure_file(save_results_name); if (goal_is_chessboard && strcmp(final_fen, "k7/P7/P7/P7/P7/P7/P7/R3K3") == 0) // Kuwait chess problem specifics { special_piece_restriction = piece_restriction_K_Ra1_Pa; special_move_restriction = move_restriction_Pb_Pf_capture; max_full_move_count = 34; } signal(SIGQUIT, signal_handler); printf("\nPress Ctrl+\\ to display temporary results\n"); get_all_valid_moves_from_state(&initial_game); print_results(mate_variant, goal_is_mate, "Mate", FINAL); print_results(draw_variant, goal_is_draw, "Draw", FINAL); print_stats(FINAL); return 0; }
a75515c05bd7adfd21c2588aa36a96657a46ed59
17a6114951f22701a6ee26aa9f66a8aa50f2964c
/init/MosaicEvents.hpp
40930c046b3402a1c13b57b1ebb5e0d5af8287cc
[]
no_license
rkluszczynski/pmf-segmentation-cpp
f323708c2450f7a02ec8f1dd01afce8166bed06a
6b1927536a33d57abc7a9764bbf321a709555b3b
refs/heads/master
2021-01-11T19:47:00.912907
2017-01-21T22:40:25
2017-01-21T22:40:25
79,395,990
0
0
null
null
null
null
UTF-8
C++
false
false
2,096
hpp
MosaicEvents.hpp
#ifndef MOSAICEVENTS_HPP_INCLUDED #define MOSAICEVENTS_HPP_INCLUDED #include "MosaicPoint.hpp" #include "MosaicSegment.hpp" typedef enum { BeginSegment = 0, EndOfSegment = 1, Intersection = 2, AreaMarkings = 3 } MosaicEventType; class VirtualMosaicEvent { private: void OnInit() { } //++pmf_event_counter; } protected: typedef MosaicPoint<double> POINT; typedef MosaicSegment<double> SEGMENT; POINT * _pt; SEGMENT * _s1; public: VirtualMosaicEvent(POINT * pt, SEGMENT * seg) : _pt(pt), _s1(seg) { OnInit(); } POINT * GetPoint() const { return _pt; } virtual MosaicEventType GetType() const = 0; virtual SEGMENT * GetSegment(bool first = true) const = 0; virtual ~VirtualMosaicEvent() { } //--pmf_event_counter; } }; class BeginEvent : public VirtualMosaicEvent { public: BeginEvent(POINT * pt, SEGMENT * s) : VirtualMosaicEvent(pt, s) {} MosaicEventType GetType() const { return BeginSegment; }; SEGMENT * GetSegment(bool first) const { return _s1; } }; class EndEvent : public VirtualMosaicEvent { public: EndEvent(POINT * pt, SEGMENT * s) : VirtualMosaicEvent(pt, s) {} MosaicEventType GetType() const { return EndOfSegment; }; SEGMENT * GetSegment(bool first) const { return _s1; } }; class IntersectionEvent : public VirtualMosaicEvent { public: IntersectionEvent(POINT * pt, SEGMENT * s1, SEGMENT * s2) : VirtualMosaicEvent(pt, s1), _s2(s2) {} MosaicEventType GetType() const { return Intersection; } SEGMENT * GetSegment(bool first) const { return first ? _s1 : _s2; } private: SEGMENT * _s2; }; class AreaEvent : public VirtualMosaicEvent { public: AreaEvent(POINT * pt) : VirtualMosaicEvent(pt, NULL) {} MosaicEventType GetType() const { return AreaMarkings; }; SEGMENT * GetSegment(bool first) const { return NULL; } }; #endif // MOSAICEVENTS_HPP_INCLUDED
5d3d106cc57ad2777bdced79f548ead0d8218a9c
f92c93decdb2d9b01939ebc2f21314d0a53f35a2
/2015省赛前个人赛/IndividualContest2/D/main.cpp
08c839bec66d7ff0e4b28cb2f0e26b33d7dfb50c
[]
no_license
someblue/ACM
52725398cc886ec724569d7754dc62552d8d5799
cd71348bfb3024de7c6e19a5d25b9db0d4091b86
refs/heads/master
2021-01-01T06:11:18.930209
2015-03-19T15:34:35
2015-03-19T15:34:35
25,923,391
1
0
null
null
null
null
UTF-8
C++
false
false
2,620
cpp
main.cpp
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <cmath> #include <vector> #include <set> #include <map> #include <queue> #include <stack> #define PB push_back #define MS(x) memset(x,0,sizeof(x)) #define SZ size #define rep(i,l,r) for(i=(l);i<(r);i++) #define drep(i,l,r) for(int i=(l);i<(r);i++) #define per(i,l,r) for(i=(r)-1;i>=l;i--) #define fi first #define se second using namespace std; typedef long long ll; typedef pair<int,int> pii; typedef pair<int,pii> piii; // dis, (u, use) typedef vector<int> vi; const int INF = 1e9; const double eps = 1e-6; const int N = 1010; const int M = 100010; int cas = 1; struct _edge { int w, to, next; }; _edge edge[M]; int head[N], ecnt; int n, m, S, T; int fa[N]; int d[N][2]; bool done[N][2]; inline void add_edge(int u, int v, int w) { edge[ecnt].to = v; edge[ecnt].w = w; edge[ecnt].next = head[u]; head[u] = ecnt++; } inline void init() { ecnt = 0; drep(i, 1, n+1) fa[i] = i; drep(i, 1, n+1) d[i][0] = d[i][1] = INF; MS(done); memset(head, -1, sizeof(head)); } inline int find(int x) { return fa[x]==x?x: fa[x]=find(fa[x]); } void dij(int s) { d[s][0] = 0; priority_queue<piii, vector<piii>, greater<piii> > que; que.push(piii(0, pii(s, 0))); while(!que.empty()) { piii t = que.top(); que.pop(); int u = t.se.fi, use = t.se.se; if(done[u][use]) continue; done[u][use] = 1; for(int e=head[u]; e!=-1; e=edge[e].next) { int &v = edge[e].to; if(use) { if(d[v][1] > d[u][1] + edge[e].w) { d[v][1] = d[u][1] + edge[e].w; que.push(piii(d[v][1], pii(v,1))); } } else { if(d[v][0] > d[u][0] + edge[e].w) { d[v][0] = d[u][0] + edge[e].w; que.push(piii(d[v][0], pii(v,0))); } if(d[v][1] > d[u][0] + edge[e].w/2) { d[v][1] = d[u][0] + edge[e].w/2; que.push(piii(d[v][1], pii(v,1))); } } } } } void run() { scanf("%d%d%d%d", &n, &m, &S, &T); init(); int u, v, w; drep(i, 0, m) { scanf("%d%d%d",&u,&v,&w); add_edge(u,v,w); } dij(S); if(d[T][1] == INF && d[T][0] == INF) { puts("-1"); } else { printf("%d\n", min(d[T][1], d[T][0])); } } int main() { #ifdef LOCAL freopen("case.txt","r",stdin); #endif int _; scanf("%d",&_); while(_--) run(); return 0; }
69a5002b6f9146ac2f17ee5f970e2a7207b6520e
d78b48d71abc96fbd45b51103ecf3e5c36486402
/practicaFinalRedone/TouchGFX/generated/images/src/BitmapDatabase.cpp
a14a2fd8065ad3b896859a8814d2a5840709bb83
[]
no_license
Adrian-Rod-Mol/sistemasEmpotrados
c445c80d9490382149cde22dd80ded00faed5b53
9c3475e6a8e99a1186c87020318f9f43fd3adce5
refs/heads/master
2023-05-13T06:36:16.926220
2021-06-09T17:01:28
2021-06-09T17:01:28
374,237,389
0
0
null
null
null
null
UTF-8
C++
false
false
3,857
cpp
BitmapDatabase.cpp
// 4.16.1 0x32899b05 // Generated by imageconverter. Please, do not edit! #include <BitmapDatabase.hpp> #include <touchgfx/Bitmap.hpp> extern const unsigned char image_add_circle_outline_32px[]; // BITMAP_ADD_CIRCLE_OUTLINE_32PX_ID = 0, Size: 32x32 pixels extern const unsigned char image_blue_backgrounds_main_bg_portrait_240x320px[]; // BITMAP_BLUE_BACKGROUNDS_MAIN_BG_PORTRAIT_240X320PX_ID = 1, Size: 240x320 pixels extern const unsigned char image_blue_backgrounds_main_bg_portrait_texture_240x320px[]; // BITMAP_BLUE_BACKGROUNDS_MAIN_BG_PORTRAIT_TEXTURE_240X320PX_ID = 2, Size: 240x320 pixels extern const unsigned char image_blue_icons_home_32[]; // BITMAP_BLUE_ICONS_HOME_32_ID = 3, Size: 30x29 pixels extern const unsigned char image_blue_icons_settings_32[]; // BITMAP_BLUE_ICONS_SETTINGS_32_ID = 4, Size: 30x30 pixels extern const unsigned char image_camera[]; // BITMAP_CAMERA_ID = 5, Size: 40x40 pixels extern const unsigned char image_dark_backgrounds_main_bg_portrait_240x320px[]; // BITMAP_DARK_BACKGROUNDS_MAIN_BG_PORTRAIT_240X320PX_ID = 6, Size: 240x320 pixels extern const unsigned char image_play_circle_filled_round_32px[]; // BITMAP_PLAY_CIRCLE_FILLED_ROUND_32PX_ID = 7, Size: 32x32 pixels extern const unsigned char image_remove_circle_outline_32px[]; // BITMAP_REMOVE_CIRCLE_OUTLINE_32PX_ID = 8, Size: 32x32 pixels extern const unsigned char image_stop_circle_round_32px[]; // BITMAP_STOP_CIRCLE_ROUND_32PX_ID = 9, Size: 32x32 pixels extern const unsigned char image_target_20px[]; // BITMAP_TARGET_20PX_ID = 10, Size: 20x20 pixels extern const unsigned char image_target_32px[]; // BITMAP_TARGET_32PX_ID = 11, Size: 32x32 pixels const touchgfx::Bitmap::BitmapData bitmap_database[] = { { image_add_circle_outline_32px, 0, 32, 32, 15, 10, 2, (uint8_t)(touchgfx::Bitmap::ARGB8888) >> 3, 12, (uint8_t)(touchgfx::Bitmap::ARGB8888) & 0x7 }, { image_blue_backgrounds_main_bg_portrait_240x320px, 0, 240, 320, 0, 0, 240, (uint8_t)(touchgfx::Bitmap::RGB565) >> 3, 320, (uint8_t)(touchgfx::Bitmap::RGB565) & 0x7 }, { image_blue_backgrounds_main_bg_portrait_texture_240x320px, 0, 240, 320, 0, 0, 240, (uint8_t)(touchgfx::Bitmap::RGB565) >> 3, 320, (uint8_t)(touchgfx::Bitmap::RGB565) & 0x7 }, { image_blue_icons_home_32, 0, 30, 29, 23, 9, 3, (uint8_t)(touchgfx::Bitmap::ARGB8888) >> 3, 20, (uint8_t)(touchgfx::Bitmap::ARGB8888) & 0x7 }, { image_blue_icons_settings_32, 0, 30, 30, 28, 12, 1, (uint8_t)(touchgfx::Bitmap::ARGB8888) >> 3, 6, (uint8_t)(touchgfx::Bitmap::ARGB8888) & 0x7 }, { image_camera, 0, 40, 40, 29, 9, 7, (uint8_t)(touchgfx::Bitmap::ARGB8888) >> 3, 22, (uint8_t)(touchgfx::Bitmap::ARGB8888) & 0x7 }, { image_dark_backgrounds_main_bg_portrait_240x320px, 0, 240, 320, 0, 0, 240, (uint8_t)(touchgfx::Bitmap::RGB565) >> 3, 320, (uint8_t)(touchgfx::Bitmap::RGB565) & 0x7 }, { image_play_circle_filled_round_32px, 0, 32, 32, 6, 9, 6, (uint8_t)(touchgfx::Bitmap::ARGB8888) >> 3, 14, (uint8_t)(touchgfx::Bitmap::ARGB8888) & 0x7 }, { image_remove_circle_outline_32px, 0, 32, 32, 10, 15, 12, (uint8_t)(touchgfx::Bitmap::ARGB8888) >> 3, 2, (uint8_t)(touchgfx::Bitmap::ARGB8888) & 0x7 }, { image_stop_circle_round_32px, 0, 32, 32, 10, 5, 12, (uint8_t)(touchgfx::Bitmap::ARGB8888) >> 3, 4, (uint8_t)(touchgfx::Bitmap::ARGB8888) & 0x7 }, { image_target_20px, 0, 20, 20, 8, 8, 4, (uint8_t)(touchgfx::Bitmap::ARGB8888) >> 3, 4, (uint8_t)(touchgfx::Bitmap::ARGB8888) & 0x7 }, { image_target_32px, 0, 32, 32, 13, 13, 6, (uint8_t)(touchgfx::Bitmap::ARGB8888) >> 3, 6, (uint8_t)(touchgfx::Bitmap::ARGB8888) & 0x7 } }; namespace BitmapDatabase { const touchgfx::Bitmap::BitmapData* getInstance() { return bitmap_database; } uint16_t getInstanceSize() { return (uint16_t)(sizeof(bitmap_database) / sizeof(touchgfx::Bitmap::BitmapData)); } }
a5396d411d873e87c6a7e60b0b4d0eafef60f6c8
da1500e0d3040497614d5327d2461a22e934b4d8
/cobalt/updater/win/installer/pe_resource.cc
248a1336143ddc4bc8744a71aab390c15e98092d
[ "Apache-2.0", "BSD-3-Clause" ]
permissive
youtube/cobalt
34085fc93972ebe05b988b15410e99845efd1968
acefdaaadd3ef46f10f63d1acae2259e4024d383
refs/heads/main
2023-09-01T13:09:47.225174
2023-09-01T08:54:54
2023-09-01T08:54:54
50,049,789
169
80
BSD-3-Clause
2023-09-14T21:50:50
2016-01-20T18:11:34
null
UTF-8
C++
false
false
1,452
cc
pe_resource.cc
// Copyright 2019 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/updater/win/installer/pe_resource.h" namespace updater { PEResource::PEResource(const wchar_t* name, const wchar_t* type, HMODULE module) : resource_(nullptr), module_(module) { resource_ = ::FindResource(module, name, type); } bool PEResource::IsValid() { return nullptr != resource_; } size_t PEResource::Size() { return ::SizeofResource(module_, resource_); } bool PEResource::WriteToDisk(const wchar_t* full_path) { // Resource handles are not real HGLOBALs so do not attempt to close them. // Windows frees them whenever there is memory pressure. HGLOBAL data_handle = ::LoadResource(module_, resource_); if (nullptr == data_handle) return false; void* data = ::LockResource(data_handle); if (nullptr == data) return false; size_t resource_size = Size(); HANDLE out_file = ::CreateFile(full_path, GENERIC_WRITE, 0, nullptr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, nullptr); if (INVALID_HANDLE_VALUE == out_file) return false; DWORD written = 0; if (!::WriteFile(out_file, data, static_cast<DWORD>(resource_size), &written, nullptr)) { ::CloseHandle(out_file); return false; } return ::CloseHandle(out_file) ? true : false; } } // namespace updater
e2f6191f70c03d51e896c8c52820c376ed77de5d
1bc5450e4763d097f4f72cf2b3c9ed9ede434a96
/advCPP/uniqueFunc/unique.hpp
722432d889bc5290ecd36416f1deb4e9aa7493a1
[]
no_license
itsboazlevy/Portfolio
664ffdf394a9bfc29884cc65c6c84ab0f68d0a0a
daf9d3bd13331c2dea188c3f174596ac9dc18a19
refs/heads/master
2020-12-03T17:13:40.510502
2020-01-06T16:01:26
2020-01-06T16:01:26
231,403,727
0
0
null
null
null
null
UTF-8
C++
false
false
1,248
hpp
unique.hpp
#ifndef UNIQUE_HPP #define UNIQUE_HPP #include <iostream> #include <vector> #include <algorithm> #include <tr1/unordered_map> template <typename T> class MapInsert { public: MapInsert( std::tr1::unordered_map<T,size_t>& _map ) : m_map(_map) {} void operator() (const T& _t) const; private: std::tr1::unordered_map<T,size_t>& m_map; }; template <typename T> void MapInsert<T>::operator()(const T& _v) const { ++m_map[_v]; } template <typename T> class MapFind { public: MapFind(std::tr1::unordered_map<T,size_t>& _map, int f) : m_map(_map), m_freq(f) { } bool operator() (const T& _t) const; private: std::tr1::unordered_map<T,size_t>& m_map; const int m_freq }; template <typename T> bool MapFind<T>::operator() (const T& _t) const { return m_map[_t] == m_freq; } // void buildFreq(& _vec, & map) // { // for_each(_vec.begin(), _vec.end(), MapInsert<T>(map)); // } // T = O(2n) template <typename T> typename std::vector<T>::const_iterator Unique(const std::vector<T>& _vec) { std::tr1::unordered_map<T,size_t> myMap; for_each(_vec.begin(), _vec.end(), MapInsert<T>(map)); typename std::vector<T>::const_iterator it; it = find_if(_vec.begin(), _vec.end(), MapFind<T>(myMap, 1)); return it; } #endif //UNIQUE_HPP
cb717646251de00138e279f230fec77c5e76472c
e7a1a974fe647574483af63e40cd33c092e4d011
/Tools/DocTools/UnityDocCombiner/IndexCombiner.cpp
936d098a4e6c24e7e8a8c4b92846a3af263af3a3
[]
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
12,151
cpp
IndexCombiner.cpp
#include "UnityPrefix.h" #include "IndexCombiner.h" #include "Runtime/Utilities/RapidJSONConfig.h" #include <RapidJSON/prettywriter.h> #include <RapidJSON/filestream.h> #include <string> #include "RapidJsonIoUtil.h" using namespace Unity::rapidjson; const char commonSt[] = "common"; IndexCombiner::IndexCombiner() : JsonCombiner() { m_EmptyDocString = "{\"pages\":[],\n" "\"info\": [],\n" "\"common\": {},\n" "\"searchIndex\": {}}\n"; if (!RapidJsonIoUtil::TryGetJsonDocFromString(m_EmptyDocString.c_str(), m_CombinedToc)) TCDie("Failed to initialize IndexCombiner with the default JSON\n"); } void IndexCombiner::CombinePagesJson(Value& targetPages, Value& sourcePages) { assert(targetPages.IsArray()); assert(sourcePages.IsArray()); for (SizeType i = 0; i < sourcePages.Size(); i++) { SizeType rji = SizeType(i); Value& valAtIndex = sourcePages[rji]; assert(valAtIndex.IsArray()); //expects the original element pair plus the module number assert(valAtIndex.Size() == 3); Value& sourceURL = valAtIndex[SizeType(0)]; assert(sourceURL.IsString()); //There will be no duplicates if the pages are populated with prefixes in advance targetPages.PushBack(valAtIndex, m_CombinedToc.GetAllocator()); } } void IndexCombiner::CombineInfoJson(Value& targetInfo, Value& sourceInfo, int numTargetPages) { assert(targetInfo.IsArray()); assert(sourceInfo.IsArray()); // each entry is indexing into "pages" array for (SizeType i = 0; i < sourceInfo.Size(); i++) { SizeType sourceIndex = SizeType(i); //array index in the source file Value& sourceValue = sourceInfo[sourceIndex]; //this should return a [string,number] pair assert(sourceValue.IsArray()); assert(sourceValue.Size() == 2); Value& key = sourceValue[SizeType(0)]; assert(key.IsString()); Value& value = sourceValue[SizeType(1)]; assert(value.IsInt()); value = value.GetInt() + numTargetPages; targetInfo.PushBack(sourceValue, m_CombinedToc.GetAllocator()); } } void IndexCombiner::CombineSearchIndexJson(Value& targetSearchIndex, Value& sourceSearchIndex, int numTargetPages) { assert(targetSearchIndex.IsObject()); assert(sourceSearchIndex.IsObject()); // iterate over all searchIndex object entries from source // each entry is key (search term), and value (list of page indexes, indexing into "info" array). for (Value::MemberIterator itr = sourceSearchIndex.MemberBegin(); itr != sourceSearchIndex.MemberEnd(); itr++) { Value& sourceKey = itr->name; assert(sourceKey.IsString()); Value& sourcePageList = itr->value; assert(sourcePageList.IsArray()); // add current pageCount to each page index for (SizeType i = 0; i < sourcePageList.Size(); i++) { int number = sourcePageList[SizeType(i)].GetInt(); sourcePageList[SizeType(i)] = number + numTargetPages; } // find entry with the same key (term) in the target searchIndex; // if found -- append entries, to the list; // add new otherwise const char* chSourceKey = sourceKey.GetString(); Value::MemberIterator targetMember = targetSearchIndex.FindMember(chSourceKey); if (targetMember != targetSearchIndex.MemberEnd()) { Value& targetPageList = targetMember->value; assert(targetPageList.IsArray()); for (SizeType i = 0; i < sourcePageList.Size(); i++) { targetPageList.PushBack(sourcePageList[SizeType(i)], m_CombinedToc.GetAllocator()); } } else { targetSearchIndex.AddMember(sourceKey, sourcePageList, m_CombinedToc.GetAllocator()); } } } //appends creates a combination of A and B and "returns" it as combined void IndexCombiner::AppendJsonDocument(Document& dSource) { assert(!m_CombinedToc.IsNull()); assert(m_CombinedToc.HasMember(commonSt)); Value& commonValue = m_CombinedToc[commonSt]; if (commonValue.MemberBegin() == commonValue.MemberEnd()) { m_CombinedToc[commonSt].CopyFrom(dSource[commonSt], m_CombinedToc.GetAllocator()); } // the following counts are added to each index in the "info" and "searchIndex" values int numTargetPages = m_CombinedToc["pages"].Size(); int numTargetInfos = m_CombinedToc["info"].Size(); CombinePagesJson(m_CombinedToc["pages"], dSource["pages"]); CombineInfoJson(m_CombinedToc["info"], dSource["info"], numTargetPages); assert(m_CombinedToc["pages"].IsArray()); CombineSearchIndexJson(m_CombinedToc["searchIndex"], dSource["searchIndex"], numTargetInfos); } void IndexCombiner::AddModuleIndexToEachEntry(Document& doc, int index) { Value& pagesVal = doc["pages"]; assert(pagesVal.IsArray()); for (SizeType i = 0; i < pagesVal.Size(); i++) { SizeType rji = SizeType(i); Value& valAtIndex = pagesVal[rji]; assert(valAtIndex.IsArray()); //the original size is 2, before we inject the prefix assert(valAtIndex.Size() == 2); Value& sourceURL = valAtIndex[SizeType(0)]; //url assert(sourceURL.IsString()); Value rj_index(index); valAtIndex.PushBack(rj_index, doc.GetAllocator()); } } bool IndexCombiner::OutputJsonValueAsJs(const char *currentPlatformPath, const Document& doc, const char* fname) { StringBuffer bufferCommon; Writer<StringBuffer> writerCommon(bufferCommon); StringBuffer bufferInfo; Writer<StringBuffer> writerInfo(bufferInfo); StringBuffer bufferSearch; Writer<StringBuffer> writerSearch(bufferSearch); bool res = false; const Value& pagesVal = doc["pages"]; const Value& infoVal = doc["info"]; const Value& commonVal = doc["common"]; const Value& searchIndexVal = doc["searchIndex"]; FILE* f = fopen(fname, "w+b"); if (!f) { TCDie("Unable to open file %s for writing", fname) return false; } if (!OutputPrefixVars(currentPlatformPath, f)) { goto error; } if (0 > fprintf(f, "pages = [\n")) { goto error; } for (SizeType i = 0; i < pagesVal.Size(); i++) { const Value& curPage = pagesVal[SizeType(i)]; assert(curPage.IsArray() && curPage.Size() == 3); int curIndex = curPage[SizeType(2)].GetInt(); const char* curUrl = curPage[SizeType(0)].GetString(); const char* curName = curPage[SizeType(1)].GetString(); int sz = (int)strlen(curName) * 2; char* escaped = new char[sz]; EscapeDoubleQuotedString(curName, escaped, sz); int res = fprintf(f, "[p%d + \"%s\", \"%s\"]", curIndex, curUrl, escaped); delete[] escaped; if (0 > res) { goto error; } if (i < pagesVal.Size() - 1) if (0 > fprintf(f, ",")) { goto error; } if (0 > fprintf(f, "\n")) { goto error; } } if (0 > fprintf(f, "];")) { goto error; } if (0 > fprintf(f, "\ninfo = ")) { goto error; } infoVal.Accept(writerInfo); if (0 > fprintf(f, "%s", bufferInfo.GetString())) { goto error; } if (0 > fprintf(f, "\ncommon = ")) { goto error; } commonVal.Accept(writerCommon); if (0 > fprintf(f, "%s", bufferInfo.GetString())) { goto error; } if (0 > fprintf(f, ";\nsearchIndex = ")) { goto error; } searchIndexVal.Accept(writerSearch); if (0 > fprintf(f, "%s", bufferSearch.GetString())) { goto error; } if (0 > fprintf(f, ";\n")) { goto error; } res = true; error: fclose(f); if (!res) { unlink(fname); } return res; } bool IndexCombiner::VerifyJSONStructure(const Value &json) { // root note is object if (!json.IsObject()) return false; // it must contain arrays: pages, info // and objects: common, searchIndex Value::ConstMemberIterator pages = json.FindMember("pages"); Value::ConstMemberIterator info = json.FindMember("info"); Value::ConstMemberIterator common = json.FindMember("common"); Value::ConstMemberIterator searchIndex = json.FindMember("searchIndex"); if ((pages == json.MemberEnd()) || !pages->value.IsArray()) { TCWarn("Pages is not an array or absent\n"); return false; } if ((info == json.MemberEnd()) || !info->value.IsArray()) { TCWarn("Info is not an array or absent\n"); return false; } if ((common == json.MemberEnd()) || !common->value.IsObject()) { TCWarn("Common is not an object or absent\n"); return false; } if ((searchIndex == json.MemberEnd()) || !searchIndex->value.IsObject()) { TCWarn("SearchIndex is not an object or absent\n"); return false; } // eash "pages" element is an array of 2 elements [string,string] for (SizeType i = 0; i < pages->value.Size(); i++) { const Value& page = pages->value[SizeType(i)]; if (!page.IsArray() || page.Size() != 2) { TCWarn("Content in pages is not an array of 2 elements\n"); return false; } for (SizeType p = 0; p < page.Size(); p++) { const Value &pvalue = page[SizeType(p)]; if (!pvalue.IsString()) { TCWarn("Content in pages sub-element is not a string\n"); return false; } } } // each "info" element is an array of 2 elements [string,int] // where in is an index into "pages" for (SizeType i = 0; i < info->value.Size(); i++) { const Value &inf = info->value[SizeType(i)]; if (!inf.IsArray() || inf.Size() != 2) { TCWarn("Content in info is not an array of 2 elements\n"); return false; } if (!inf[SizeType(0)].IsString()) { TCWarn("1st item in info sub-element is not a string\n"); return false; } if (!inf[SizeType(1)].IsInt()) { TCWarn("2nd item in info sub-element is not an int\n"); return false; } if (inf[SizeType(1)].GetInt() >= pages->value.Size()) { TCWarn("2nd item in info sub-element is out of bounds\n"); return false; } } // each "common" element key-value {string,int=1} for (Value::ConstMemberIterator itr = common->value.MemberBegin(); itr != common->value.MemberEnd(); itr++) { if (!itr->name.IsString()) { TCWarn("Key in common is not a string\n"); return false; } if (!itr->value.IsInt() || itr->value.GetInt() != 1) { TCWarn("Value in common is not an int(1)\n"); return false; } } // each searchIndex element is key-value {string,[indexes]}, // where indexes index into "info" array for (Value::ConstMemberIterator itr = searchIndex->value.MemberBegin(); itr != searchIndex->value.MemberEnd(); itr++) { if (!itr->name.IsString()) { TCWarn("Key in searchIndex is not string\n"); return false; } if (!itr->value.IsArray()) { TCWarn("Value in searchIndex is not array\n"); return false; } const Value& index = itr->value; for (SizeType i = 0; i < index.Size(); i++) { if (!index[SizeType(i)].IsInt()) { TCWarn("Value in index is not int\n"); return false; } if (index[SizeType(i)].GetInt() >= info->value.Size()) { TCWarn("Value in index is out of bounds\n"); return false; } } } return true; }
8cdf58d9489ae5f30f07924535a885d2b61f0e8f
f0bd42c8ae869dee511f6d41b1bc255cb32887d5
/Codeforces/_Gym/2015 PSUT Coding Marathon/F. Proficiency Test (B).cpp
ec4e00e6fb362b55a238a8c91fc249fd1c7b0709
[]
no_license
osamahatem/CompetitiveProgramming
3c68218a181d4637c09f31a7097c62f20977ffcd
a5b54ae8cab47b2720a64c68832a9c07668c5ffb
refs/heads/master
2021-06-10T10:21:13.879053
2020-07-07T14:59:44
2020-07-07T14:59:44
113,673,720
3
1
null
null
null
null
UTF-8
C++
false
false
960
cpp
F. Proficiency Test (B).cpp
/* * F. Proficiency Test (B).cpp * * Created on: Sep 3, 2015 * Author: Osama Hatem */ #include <bits/stdtr1c++.h> #include <ext/numeric> using namespace std; string res[105], cor; bool val[105]; int n, arr[6], cnt = 0; void check() { bool flag = 1; for (int i = 0; i < n; i++) { int c = 0; for (int j = 0; j < 6; j++) c += res[i][arr[j]] == cor[arr[j]]; if ((c > 3 && !val[i]) || (c < 4 && val[i])) { flag = 0; break; } } if (!flag) return; cnt++; } void solve(int idx) { if (idx == 6) { check(); return; } for (int i = 0; i < 8; i++) { arr[idx] = idx * 8 + i; solve(idx + 1); if (cnt > 1) return; } } int main() { #ifndef ONLINE_JUDGE freopen("in.in", "r", stdin); // freopen("out.out", "w", stdout); #endif char temp; cin >> cor >> n; for (int i = 0; i < n; i++) { cin >> res[i] >> temp; if (temp == '+') val[i] = 1; } solve(0); cout << (cnt == 1 ? "Yes" : "No") << endl; return 0; }
f7bf206bd975eddd7c625b9869c2df8362cc0bdf
fd0a4cd376f0ea3b433b3ef93547b9a6d04ae653
/first_minimum_in_window_of_k.cpp
26e36045f699aacdea9963e142e25c0c97d2f61f
[]
no_license
patelpreet422/cipherschools
507970e4538f06be12069e5ea9fcd68c0ff50065
06c86354650e8add0f25192e9d31c03c011afb26
refs/heads/master
2022-12-06T12:27:42.351046
2020-08-30T11:12:37
2020-08-30T11:12:37
291,454,316
0
0
null
null
null
null
UTF-8
C++
false
false
856
cpp
first_minimum_in_window_of_k.cpp
#ifdef DEBUG #include <LeetcodeHelper.h> #include <prettyprint.hpp> #endif #include <bits/stdc++.h> using namespace std; using ll = long long; vector<int> first_min(vector<int> &v, int k) { vector<int> r; int n = v.size(); deque<int> q; for(int i = 0; i < n; ++i) { while(!q.empty() and q.front() <= i-k) { q.pop_front(); } q.push_back(i); while(!q.empty() and v[q.front()] > 0) { q.pop_front(); } if (q.empty() and i >= k - 1) { r.push_back(0); } else if (i >= k - 1) { r.push_back(v[q.front()]); } } return r; } int main() { int t; cin >> t; while (t--) { int n; cin >> n; vector<int> v(n); for (auto &e : v) { cin >> e; } int k; cin >> k; for (auto e : first_min(v, k)) { cout << e << ' '; } cout << '\n'; } return 0; }
8222c64c2c3dcd4029ff6f9af14098eca3806fde
5a10c018bedeb2f47a10db7bd7c679cdff6b757e
/src/game/collision.cpp
1d1b064473e1b1558c4a627d3c8929a4fb099afc
[ "Zlib" ]
permissive
TeeworldsFun/KillingFloor
767b8747249d98606a90e04bccdc7d47eaceaa5c
1f06c92bf20da4866eea115cb33cc266575f76ee
refs/heads/master
2023-08-03T17:46:59.633512
2021-09-05T07:49:51
2021-09-05T07:49:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,487
cpp
collision.cpp
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */ /* If you are missing that file, acquire a complete release at teeworlds.com. */ #include <base/system.h> #include <base/math.h> #include <base/vmath.h> #include <math.h> #include <engine/map.h> #include <engine/kernel.h> #include <game/mapitems.h> #include <game/layers.h> #include <game/collision.h> CCollision::CCollision() { m_pTiles = 0; m_Width = 0; m_Height = 0; m_pLayers = 0; } void CCollision::Init(class CLayers *pLayers) { m_pLayers = pLayers; m_Width = m_pLayers->GameLayer()->m_Width; m_Height = m_pLayers->GameLayer()->m_Height; m_pTiles = static_cast<CTile *>(m_pLayers->Map()->GetData(m_pLayers->GameLayer()->m_Data)); for(int i = 0; i < m_Width*m_Height; i++) { int Index = m_pTiles[i].m_Index; if(Index > 128) continue; switch(Index) { case TILE_DEATH: m_pTiles[i].m_Index = COLFLAG_DEATH; break; case TILE_SOLID: m_pTiles[i].m_Index = COLFLAG_SOLID; break; case TILE_NOHOOK: m_pTiles[i].m_Index = COLFLAG_SOLID|COLFLAG_NOHOOK; break; case TILE_AILEFT: m_pTiles[i].m_Index = COLFLAG_AILEFT; break; case TILE_AIRIGHT: m_pTiles[i].m_Index = COLFLAG_AIRIGHT; break; case TILE_AIUP: m_pTiles[i].m_Index = COLFLAG_AIUP; break; case TILE_NOGO: m_pTiles[i].m_Index = COLFLAG_NOGO; break; case TILE_RELEASENOGO: m_pTiles[i].m_Index = COLFLAG_RELEASENOGO; break; default: m_pTiles[i].m_Index = 0; } } } int CCollision::GetTile(int x, int y) { int Nx = clamp(x/32, 0, m_Width-1); int Ny = clamp(y/32, 0, m_Height-1); return m_pTiles[Ny*m_Width+Nx].m_Index > 128 ? 0 : m_pTiles[Ny*m_Width+Nx].m_Index; } bool CCollision::IsTileSolid(int x, int y) { return GetTile(x, y)&COLFLAG_SOLID; } // TODO: rewrite this smarter! int CCollision::IntersectLine(vec2 Pos0, vec2 Pos1, vec2 *pOutCollision, vec2 *pOutBeforeCollision) { float Distance = distance(Pos0, Pos1); int End(Distance+1); vec2 Last = Pos0; for(int i = 0; i < End; i++) { float a = i/Distance; vec2 Pos = mix(Pos0, Pos1, a); if(CheckPoint(Pos.x, Pos.y)) { if(pOutCollision) *pOutCollision = Pos; if(pOutBeforeCollision) *pOutBeforeCollision = Last; return GetCollisionAt(Pos.x, Pos.y); } Last = Pos; } if(pOutCollision) *pOutCollision = Pos1; if(pOutBeforeCollision) *pOutBeforeCollision = Pos1; return 0; } // TODO: OPT: rewrite this smarter! void CCollision::MovePoint(vec2 *pInoutPos, vec2 *pInoutVel, float Elasticity, int *pBounces) { if(pBounces) *pBounces = 0; vec2 Pos = *pInoutPos; vec2 Vel = *pInoutVel; if(CheckPoint(Pos + Vel)) { int Affected = 0; if(CheckPoint(Pos.x + Vel.x, Pos.y)) { pInoutVel->x *= -Elasticity; if(pBounces) (*pBounces)++; Affected++; } if(CheckPoint(Pos.x, Pos.y + Vel.y)) { pInoutVel->y *= -Elasticity; if(pBounces) (*pBounces)++; Affected++; } if(Affected == 0) { pInoutVel->x *= -Elasticity; pInoutVel->y *= -Elasticity; } } else { *pInoutPos = Pos + Vel; } } bool CCollision::TestBox(vec2 Pos, vec2 Size) { Size *= 0.5f; if(CheckPoint(Pos.x-Size.x, Pos.y-Size.y)) return true; if(CheckPoint(Pos.x+Size.x, Pos.y-Size.y)) return true; if(CheckPoint(Pos.x-Size.x, Pos.y+Size.y)) return true; if(CheckPoint(Pos.x+Size.x, Pos.y+Size.y)) return true; return false; } void CCollision::MoveBox(vec2 *pInoutPos, vec2 *pInoutVel, vec2 Size, float Elasticity) { // do the move vec2 Pos = *pInoutPos; vec2 Vel = *pInoutVel; float Distance = length(Vel); int Max = (int)Distance; if(Distance > 0.00001f) { //vec2 old_pos = pos; float Fraction = 1.0f/(float)(Max+1); for(int i = 0; i <= Max; i++) { //float amount = i/(float)max; //if(max == 0) //amount = 0; vec2 NewPos = Pos + Vel*Fraction; // TODO: this row is not nice if(TestBox(vec2(NewPos.x, NewPos.y), Size)) { int Hits = 0; if(TestBox(vec2(Pos.x, NewPos.y), Size)) { NewPos.y = Pos.y; Vel.y *= -Elasticity; Hits++; } if(TestBox(vec2(NewPos.x, Pos.y), Size)) { NewPos.x = Pos.x; Vel.x *= -Elasticity; Hits++; } // neither of the tests got a collision. // this is a real _corner case_! if(Hits == 0) { NewPos.y = Pos.y; Vel.y *= -Elasticity; NewPos.x = Pos.x; Vel.x *= -Elasticity; } } Pos = NewPos; } } *pInoutPos = Pos; *pInoutVel = Vel; }
6d076891d63383d40c17623076fc3ab89f50f4bb
063560328123fdb445ec740c6eb53eee6552cb39
/Battle/Elements.cpp
4759af9d71a155dfd2d86bde8bce2ef79ee0c2e3
[]
no_license
erenik/RuneRPG
2f9bba154bb6798f1f2fdae201e0117d288f5c20
2dc9fee042d86ef870c68cd6efffe72db30e32ec
refs/heads/master
2021-01-09T20:19:08.259884
2016-08-03T22:20:00
2016-08-03T22:20:00
62,733,025
0
0
null
null
null
null
UTF-8
C++
false
false
748
cpp
Elements.cpp
/// Emil Hedemalm /// 2014-08-26 /// Elements o-o #include "Elements.h" int GetElementByString(String str) { for (int i = 0; i < Element::NUM_ELEMENTS; ++i) { String elementName = GetElementString(i); if (elementName.Length() == 0) continue; if (str.Contains(elementName)) return i; } return -1; } String GetElementString(int element) { switch(element) { case Element::MAGIC: return "Magic"; case Element::FIRE: return "Fire"; case Element::WATER: return "Water"; case Element::EARTH: return "Earth"; case Element::AIR: return "Air"; case Element::BALANCE: return "Balance"; case Element::CHAOS: return "Chaos"; case Element::LIFE: return "Life"; case Element::DEATH: return "Death"; } return String(); }
f0d6de54e5d968d2b21105fdfe6ec65dc90954d8
157fd7fe5e541c8ef7559b212078eb7a6dbf51c6
/Sachdatenapplikationen/GAK/SEARCHSE.H
f8718a830909bdb42d75e2e711d616aa02b3e5e6
[]
no_license
15831944/TRiAS
d2bab6fd129a86fc2f06f2103d8bcd08237c49af
840946b85dcefb34efc219446240e21f51d2c60d
refs/heads/master
2020-09-05T05:56:39.624150
2012-11-11T02:24:49
2012-11-11T02:24:49
null
0
0
null
null
null
null
ISO-8859-3
C++
false
false
1,201
h
SEARCHSE.H
// SearchSe.h : header file // ///////////////////////////////////////////////////////////////////////////// // CSearchSet DAO recordset class CDaoTableDef; class CDaoDatabase; class CSearchSet : public CDaoRecordset { public: CSearchSet(CDaoDatabase* pDatabase = NULL); CSearchSet(const char *pSearch, CDaoDatabase* pDatabase = NULL); ~CSearchSet (void); DECLARE_DYNAMIC(CSearchSet) // Field/Param Data //{{AFX_FIELD(CSearchSet, CDaoRecordset) CString m_strNummer; //}}AFX_FIELD // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CSearchSet) public: virtual CString GetDefaultDBName(); // Default database name virtual CString GetDefaultSQL(); // Default SQL for Recordset virtual void DoFieldExchange(CDaoFieldExchange* pFX); // RFX support //}}AFX_VIRTUAL // überlagere Open-Funktion // virtual void Open(int nOpenType = AFX_DAO_USE_DEFAULT_TYPE, LPCTSTR lpszSQL = NULL, int nOptions = 0); virtual void Close (); // Implementation #ifdef _DEBUG virtual void AssertValid() const; virtual void Dump(CDumpContext& dc) const; #endif protected: CString m_strSearch; // CDaoTableDef *m_pTableDef; };
c6318d42cfba7668e5011024d63bc4b7df2028e4
554490beb04ca561a96602e6ae92a8180dfd42d4
/DungeonsAndDragons/GameManager.cpp
26756a53b161ea900ab6bd9b7a7250d4e4994944
[]
no_license
snijhof/Dungeons-and-Dragons
35fbff5310da97df279cb29906e292778acf61e2
5d1a34b0db4f0982891c386d4245b45a4be0af02
refs/heads/master
2016-08-04T10:03:49.860380
2014-11-07T10:56:29
2014-11-07T10:56:29
24,095,206
0
2
null
null
null
null
UTF-8
C++
false
false
11,671
cpp
GameManager.cpp
#include "stdafx.h" #include "GameManager.h" GameManager::GameManager() : isRunning(true), level(0), currentRoom(nullptr), dungeon(nullptr) { DungeonGenerator generator; dungeon = std::move(generator.CreateDungeon()); seed = std::random_device()(); rng = std::mt19937(seed); // Start handling user input std::string input; std::cout << "To start the game enter \"Start\", to quit the game enter \"Quit\"." << std::endl; std::cout << "To load a player enter \"Load\"." << std::endl; std::cout << "You can find all the commands by entering \"Help\"." << std::endl; while (isRunning) { std::cin >> input; input = Utils::ToLowerCase(input); if (input == "start") StartGame(); else if (input == "quit") QuitGame(); else if (input == "load") LoadPlayer(); } } GameManager::~GameManager() { } void GameManager::GameLoop() { std::string input; while (isRunning) { std::cin >> input; HandleInput(input); } } #pragma region Print functions void GameManager::PrintFloor() { // Print the floor map std::cout << "Floor map:" << std::endl; std::shared_ptr<Floor> floor = dungeon->GetFloor(level); std::cout << floor->PrintFloor() << std::endl; // Print the legend std::cout << std::endl << std::endl; std::cout << "Legend:" << std::endl; std::cout << "|-- : Gangen" << std::endl; std::cout << "S : Start" << std::endl; std::cout << "B : Boss room" << std::endl; std::cout << "R : Normal room" << std::endl; std::cout << "U : Staircase up" << std::endl; std::cout << "D : Staircase down" << std::endl; std::cout << ". : Undiscovered room" << std::endl; std::cout << std::endl; } void GameManager::PrintRoom(int x, int y) { std::shared_ptr<Room> room = dungeon->GetRoom(level, x, y); room->Print(); room.reset(); } #pragma endregion #pragma region User input void GameManager::HandleInput(std::string input) { input = Utils::ToLowerCase(input); if (input == "move") Move("Which direction do you want to travel in?"); else if (input == "attack") { system("CLS"); Attack(Battle(currentRoom->GetEnemies(), std::shared_ptr<Player>(player))); } else if (input == "flee") Flee(); else if (input == "chest") PrintChest(); else if (input == "take") TakeItem(); else if (input == "backpack") ListBackpack(); else if (input == "equip") EquipItem(); else if (input == "quit") QuitGame(); else if (input == "map") PrintFloor(); else if (input == "help") Help(); else if (input == "player_info") PlayerStats(); else if (input == "room_info") RoomInfo(); else if (input == "rest") Rest(); else if (input == "save") SavePlayer(); } void GameManager::RoomInfo() { std::cout << currentRoom->Print() << std::endl; } void GameManager::PlayerStats() { std::cout << std::endl << "------ Player Info ------" << std::endl << std::endl; std::cout << player->Print() << std::endl; } void GameManager::Move(std::string txt) { std::string direction; std::cout << txt << std::endl; std::cout << currentRoom->GetDirections() << std::endl << std::endl; std::cin >> direction; system("CLS"); if (currentRoom->HasTrap()) { int trapFindChance = RandomNumber(21); if (trapFindChance > player->GetExploring()) { Trap trap = currentRoom->GetTrap(); player->Hit(trap.GetDamage()); std::cout << trap.GetDescription() << std::endl; std::cout << "This made you lose " << std::to_string(trap.GetDamage()) << " hp" << std::endl; } else { std::cout << "You noticed a trap and didn't endure any damage, lucky bastard" << std::endl; } } direction = Utils::ToLowerCase(direction); if (direction == "north" && currentRoom->ContainsRoom(Direction::NORTH)) { std::shared_ptr<Room> nextRoom = std::shared_ptr<Room>(currentRoom->GoInDirection(Direction::NORTH)); currentRoom.reset(); currentRoom = nextRoom; } else if (direction == "east" && currentRoom->ContainsRoom(Direction::EAST)) { std::shared_ptr<Room> nextRoom = std::shared_ptr<Room>(currentRoom->GoInDirection(Direction::EAST)); currentRoom.reset(); currentRoom = nextRoom; } else if (direction == "south" && currentRoom->ContainsRoom(Direction::SOUTH)) { std::shared_ptr<Room> nextRoom = std::shared_ptr<Room>(currentRoom->GoInDirection(Direction::SOUTH)); currentRoom.reset(); currentRoom = nextRoom; } else if (direction == "west" && currentRoom->ContainsRoom(Direction::WEST)) { std::shared_ptr<Room> nextRoom = std::shared_ptr<Room>(currentRoom->GoInDirection(Direction::WEST)); currentRoom.reset(); currentRoom = nextRoom; } else if (direction == "up") { std::shared_ptr<Room> nextRoom = dungeon->GetStaircaseUp(level++); currentRoom.reset(); currentRoom = nextRoom; } else if (direction == "down") { std::shared_ptr<Room> nextRoom = dungeon->GetStaircaseDown(level--); currentRoom.reset(); currentRoom = nextRoom; } else { std::cout << "You can't move in this direction" << std::endl << std::endl; return; } // set the room as visited currentRoom->SetVisited(); canRest = true; // Print the new room if the player has moved std::cout << std::endl; std::cout << currentRoom->Print() << std::endl; } void GameManager::Attack(Battle battle) { if (currentRoom->GetEnemies().size() > 0) { std::cout << "You entered the battle!!" << std::endl << std::endl; std::cout << "Options: Flee, Attack, Potion, Item" << std::endl; std::string input; while (!battle.Finished()) { std::cin >> input; system("CLS"); input = Utils::ToLowerCase(input); if (input == "flee") { if (RandomNumber(100) > 50) { std::cout << "You failed to run away!" << std::endl; std::cout << battle.EnemyAttack() << std::endl; } else { battle.Flee(); Move("Which direction are you running too?"); return; } } else if (input == "attack") std::cout << battle.Attack() << std::endl; else if (input == "potion") std::cout << battle.UsePotion() << std::endl; else if (input == "item") std::cout << battle.UseItem() << std::endl; } if (player->GetHp() > 0) { std::cout << battle.Won() << std::endl << std::endl; currentRoom->DefeatedEnemies(); // Check if the player has leveled if (player->IsLeveled()) { player->LevelUp(); } // Print the room again std::cout << currentRoom->Print() << std::endl; } else { isRunning = false; } } else { std::cout << "You can't attack when there are no enemies in a room..." << std::endl; } } void GameManager::Flee() { if (currentRoom->GetEnemies().size() > 0) { if (RandomNumber(100) > 50) { std::cout << "The enemies notice you when you try to run and attack you!" << std::endl; Attack(Battle(currentRoom->GetEnemies(), std::shared_ptr<Player>(player))); } else { Move("Which direction are you running too?"); } } } void GameManager::Rest() { if (currentRoom->GetEnemies().size() == 0) { if (canRest) { std::cout << "Your player is resting...." << std::endl; if (RandomNumber(100) > 90) { std::cout << "You get disturbed while resting" << std::endl; std::cout << "An agressive enemy appeared and attacks you!" << std::endl; std::vector<std::shared_ptr<Enemy>> enemies; enemies.push_back(std::make_shared<Enemy>(Enemy(level))); Attack(Battle(enemies, std::shared_ptr<Player>(player))); } else { player->Rest(); std::cout << "Your player now has " << player->GetHp() << " HP." << std::endl; canRest = false; } } else std::cout << "You did already rest this turn." << std::endl; } else std::cout << "You can't rest with enemies in the room." << std::endl; } void GameManager::PrintChest() { currentRoom->HasTrap(); if (currentRoom->HasChest()) std::cout << currentRoom->PrintChest() << std::endl; else std::cout << "This room doesn't contain a chest" << std::endl; } void GameManager::TakeItem() { std::string itemName; std::cout << "Which item do you want to put in your backpack?" << std::endl; std::cin.ignore(1000, '\n'); std::getline(std::cin, itemName); itemName = Utils::ToLowerCase(itemName); Item item = currentRoom->GetChestItem(itemName); if (!item.GetName().empty()) { player->AddToBackpack(item); std::cout << item.GetName() << " was added to your backpack" << std::endl; } else std::cout << "This item is not in the chest, try again" << std::endl; } void GameManager::ListBackpack() { std::cout << player->ListBackpackContents(); } void GameManager::EquipItem() { std::string itemName; std::cout << "Which item do you want to equip?" << std::endl; std::cin.ignore(1000, '\n'); std::getline(std::cin, itemName); itemName = Utils::ToLowerCase(itemName); std::string output = player->EquipItem(itemName); std::cout << output << std::endl; } void GameManager::StartGame() { if (!player) { std::string name; system("CLS"); std::cout << "What is your name hero?" << std::endl; std::cin >> name; // Create the hero player = std::make_shared<Player>(Player(name)); system("CLS"); } // Start the game currentRoom = std::shared_ptr<Room>(dungeon->GetStartRoom()); std::cout << "Welcome " << player->GetName() << ", your epic journey will start from here!" << std::endl; std::cout << std::endl; std::cout << currentRoom->Print() << std::endl; // Start the game loop to handle input GameLoop(); } void GameManager::QuitGame() { std::string input; std::cout << "Are you sure you want to quit this epic game?? (YES / NO)" << std::endl; std::cin >> input; input = Utils::ToLowerCase(input); if (input == "yes") isRunning = false; } void GameManager::SavePlayer() { std::string saveString = player->SaveString(); // save user data to file std::ofstream myfile; myfile.open("DungeonsAndDragons.txt"); myfile << saveString; myfile.close(); std::cout << "You have been saved to a file, your whole life in just one little text file.." << std::endl; } void GameManager::LoadPlayer() { std::string name, backpack; int level, xp, hp, maxHp, attack, defence, exploring; int weaponId, weaponLvl, armourId, armourLvl; std::ifstream myFile("DungeonsAndDragons.txt"); myFile >> name >> level >> xp >> hp >> maxHp >> attack >> defence >> exploring >> weaponId >> weaponLvl >> armourId >> armourLvl >> backpack; // Save this to your player player = std::make_shared<Player>(Player(name)); player->LoadPlayer(name, level, xp, hp, maxHp, attack, defence, exploring); player->LoadGear(weaponId, weaponLvl, armourId, armourLvl); player->LoadBackpack(backpack); // Start the game system("CLS"); StartGame(); } void GameManager::Help() { std::cout << std::endl << "------ Help ------" << std::endl << std::endl; std::cout << "Start : Starts a new game." << std::endl; std::cout << "Quit : Ends the game." << std::endl; std::cout << "Move : You can move to a new room." << std::endl; std::cout << "Attack : You will attack the enemies in the room." << std::endl; std::cout << "Flee : You try to run from the enemies." << std::endl; std::cout << "Player_info : Check your hero his current stats." << std::endl; std::cout << "Room_info : Get info about the room your in." << std::endl; std::cout << "Rest : Your hero can regain 50% of his total health." << std::endl; std::cout << "Map : Prints a map of your current floor and a legend." << std::endl; std::cout << "Save : You can save your hero." << std::endl; std::cout << "Help : Shows you all the commands." << std::endl; std::cout << std::endl; } #pragma endregion int GameManager::RandomNumber(int max) { return std::uniform_int_distribution<int>(0, max)(rng); }
476f628e62c2adc4657ef6130eb6dba1fcac5175
f014be00cf4f5ac77e6cb5a91a11d331d37b4c11
/spider/shared/protocol/decoder.cpp
60c2b1ea4100534f93936aadcb29a04c7322374f
[ "MIT" ]
permissive
wonghoifung/learning-python
fdb2d661da13de0a36a021ca1ac3c9b2e4a1b8a4
ad1691be1d185bfff828779a553b2c59d36d16ea
refs/heads/master
2021-01-21T12:59:18.181405
2016-04-19T09:26:54
2016-04-19T09:26:54
47,943,484
0
0
null
null
null
null
UTF-8
C++
false
false
2,544
cpp
decoder.cpp
// // decoder.cpp // console // // Created by huanghaifeng on 14-10-1. // Copyright (c) 2014 wonghoifung. All rights reserved. // #include "decoder.h" int decoder::read_int() { int val(-1); codec::read_b((char*)&val, sizeof(int)); return endian_op(val); } int decoder::read_int_and_repack() { int val(-1); codec::read_del_b((char*)&val, sizeof(int)); return endian_op(val); } unsigned int decoder::read_uint() { unsigned int val(0); codec::read_b((char*)&val, sizeof(unsigned int)); return endian_op(val); } int64_t decoder::read_int64() { int64_t val(0); codec::read_b((char*)&val, sizeof(int64_t)); return endian_op(val); } uint64_t decoder::read_uint64() { uint64_t val(0); codec::read_b((char*)&val, sizeof(uint64_t)); return endian_op(val); } long decoder::read_long() { long val(0); codec::read_b((char*)&val, sizeof(long)); return endian_op(val); } unsigned long decoder::read_ulong() { unsigned long val(0); codec::read_b((char*)&val, sizeof(unsigned long)); return endian_op(val); } short decoder::read_short() { short val(-1); codec::read_b((char*)&val, sizeof(short)); return endian_op(val); } unsigned short decoder::read_ushort() { unsigned short val(0); codec::read_b((char*)&val, sizeof(unsigned short)); return endian_op(val); } char decoder::read_char() { char val(0); codec::read_b((char*)&val, sizeof(char)); return endian_op(val); } unsigned char decoder::read_uchar() { unsigned char val(0); codec::read_b((char*)&val, sizeof(unsigned char)); return endian_op(val); } char* decoder::read_cstring() { int len = read_int(); if(len <= 0 || len >= c_buffer_size) return NULL; return codec::read_bytes_b(len); } int decoder::read_binary(char* outbuf, int maxlen) { int len = read_int(); if(len <= 0) return -1; if (len > maxlen) { codec::read_undo_b(sizeof(int)); return -1; } if (codec::read_b(outbuf, len)) return len; return 0; } uint32_t decoder::read_body(char* outbuf, uint32_t maxlen) { uint32_t bodylen = codec::length(); if (bodylen > maxlen) { return 0; } if (codec::read_b(outbuf, bodylen)) { return bodylen; } return 0; } bool decoder::copy(const void* inbuf, int len) { return codec::copy_b(inbuf, len); } void decoder::begin(uint16_t cmd) { codec::begin_b(cmd); } void decoder::end() { codec::end_b(); }
8770aa4386a9a368fbf93dc0f53f6a9082f1b22a
8cd6e385db5fa635fbc5648d379314608d7b7df0
/src/Application.cpp
6ac511b3bcd93be7f1d9f03a51efce6e2d79ad56
[]
no_license
Mannilie/OpenGLProject
6eca97083ce18a060d2ca544fa790591295a5744
e3a6b71029758d5446a042b75066b4594f9331b1
refs/heads/master
2021-05-28T04:09:45.076122
2015-03-06T04:45:50
2015-03-06T04:45:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,782
cpp
Application.cpp
#include "Application.h" #include "GL_Header.h" #include <cstdio> Application::Application() : m_windowWidth(0) , m_windowHeight(0) , m_appName("") {} Application::~Application(){} void Application::setDefault(float a_windowWidth, float a_windowHeight, char* a_appName, bool a_debugging) { m_windowWidth = a_windowWidth; m_windowHeight = a_windowHeight; m_appName = a_appName; m_debugging = a_debugging; } bool Application::startup() { //Checks if the application's attributes haven't been assigned if (m_windowWidth == 0 || m_windowHeight == 0 || m_appName == "") { //Sets default values of the application m_windowWidth = 1280.0f; m_windowHeight = 700.0f; m_appName = "Default Project"; } //Initialized GLFW and checks if it failed if (glfwInit() == false) { //Exits if GLFW failed to initialize return false; } //Creates a GLFW window this->m_window = glfwCreateWindow((int)m_windowWidth, (int)m_windowHeight, m_appName, nullptr, nullptr); //Checks if the window was actually created if (this->m_window == nullptr) { //Exits if the window failed to get created return false; } //Sets the current context to the window that was just created glfwMakeContextCurrent(this->m_window); //Evaluates the graphics card driver for the OpenGL versions if (ogl_LoadFunctions() == ogl_LOAD_FAILED) { //Unloads all of GLFW's created contents if the load failed glfwDestroyWindow(this->m_window); glfwTerminate(); return false; } int major_version = ogl_GetMajorVersion(); int minor_version = ogl_GetMinorVersion(); printf("successfully loaded OpenGL version %d.%d\n", major_version, minor_version); //Checks if debugging was set to true if (m_debugging == true) { GUI::create(); } //Returns true if the Application startup succeeded return true; } void Application::shutdown() { //Destroys GUI instance GUI::destroy(); //Unloads all of GLFW resources glfwDestroyWindow(m_window); glfwTerminate(); } bool Application::update() { //Checks if the user is closing the window if(glfwWindowShouldClose(m_window)) { //Returns false if the window is to be closed return false; } //Sets up delta time m_deltaTime = (float)glfwGetTime(); glfwSetTime(0.0f); m_gameTime += m_deltaTime; //Updates GUI GUI::update(m_deltaTime); int width, height; //Refreshes the frame buffer and the viewport when the user resizes the window glfwGetWindowSize(m_window, &width, &height); glfwGetFramebufferSize(m_window, &width, &height); glViewport(0, 0, (int)m_windowWidth, (int)m_windowHeight); m_windowWidth = (float)width; m_windowHeight = (float)height; return true; } void Application::draw() { GUI::draw(); //Swaps the buffers for window draw buffer glfwSwapBuffers(m_window); glfwPollEvents(); }
6be99adf89b04c36dd94ff06067f74166b8f87bd
b3d4139b7b82147716a4235bcf72b6fe58ae59c0
/Master_Thesis_Euglena_Simulator/EuglenaExperiment.h
2ffee3af7c429235be302c5abf3d9bbad5d5dcfe
[]
no_license
karlbowm/Master_Thesis_Euglena_Simulator
f516750f673e4d9aa987774e0879b173b55938d8
0d52fff9d022c98d842a7c2909ccb63b3549655b
refs/heads/master
2021-05-30T02:30:26.391418
2015-12-23T13:38:02
2015-12-23T13:38:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,613
h
EuglenaExperiment.h
#pragma once #include "Simulation.h" #include <memory> class EuglenaExperiment { public: static std::unique_ptr<Simulation> EmitterTest(); static std::unique_ptr<Simulation> getORGateSimulation(bool A, bool B); static std::unique_ptr<Simulation> getNOTGateSimulation(bool A); static std::unique_ptr<Simulation> getANDGateSimulation(bool A, bool B); static std::unique_ptr<Simulation> getNANDGateSimulation(bool A, bool B); static std::unique_ptr<Simulation> getXORGateSimulation(bool A, bool B); static std::unique_ptr<Simulation> getMemoryCell(bool A); static std::unique_ptr<Simulation> getXNORGateSimulation(bool A, bool B); static std::unique_ptr<Simulation> HalfAdder(bool A, bool B); static std::unique_ptr<Simulation> FullAdder(bool A, bool B); static void addMemory(std::unique_ptr<Simulation>& sim, EuglenaAgent a, int offset2x, int offset2y); static void addXNORGate(std::unique_ptr<Simulation>& sim, int shiftx, int shifty, EuglenaAgent a); static void addNotGate(std::unique_ptr<Simulation>& sim, int offset2x, int offset2y); static void addNANDGateTo(std::unique_ptr<Simulation>& sim, int shiftx, int shifty, EuglenaAgent& a); static void addANDGateTo(std::unique_ptr<Simulation>& sim, int shiftx, int shifty, EuglenaAgent& a); static void addORGate(std::unique_ptr<Simulation>& sim, int shiftx, int shifty); static void addXORGate(std::unique_ptr<Simulation>& sim, int shiftx, int shifty, EuglenaAgent& a); static void addHalfAdder(std::unique_ptr<Simulation>& sim, int shiftx, int shifty, EuglenaAgent& a); };
75cc159357870e561b3e071fc25b4355eb2b6bce
0d56dac03007f1d607a86e611b837695e3d1fddb
/GemometryMath/EngineInterface/I3DEngine.h
1966ab091a0cf263f4e9b86c5a38074db240c9ec
[]
no_license
xiaokunwei/Kunsen3dEngine
6f4fa9f9ef37f03dee4c128dc2c435dc0c0d258d
a81f8fd7c2a389206a0ce1b384ee655941f8bccb
refs/heads/master
2020-03-29T15:00:37.327370
2018-09-24T13:36:35
2018-09-24T13:36:35
150,040,803
0
0
null
null
null
null
UTF-8
C++
false
false
1,083
h
I3DEngine.h
#ifndef I3DENGINE_H_ #define I3DENGINE_H_ struct ICamera; #include<string> struct IGameObject; struct ITimeOfDay; struct ITerrianSystem; struct Renderable; #include "Math/Vec3f.h" struct I3DEngine { public: virtual ~I3DEngine(){} virtual void Init() = 0; virtual void Destroy() = 0; virtual ICamera* CreateCamera(const std::string& name) = 0; virtual ICamera* GetCamera(const std::string& name) const = 0; virtual bool HasCamera(const std::string& name)const = 0; virtual void DestroyCamera(const std::string& name) = 0; virtual void DestroyAllCamera(const std::string& name) = 0; virtual void SetMainCamera(ICamera* cam) = 0; virtual ICamera* GetMainCamera() = 0; virtual ICamera* GetRenderingCamera(ICamera* cam) = 0; virtual void RemoveRenderLayer(const std::string& meshName) = 0; virtual void DestroyAllLayer() = 0; virtual ITerrianSystem* CreateTerrian() = 0; virtual void DestroyTerrain(ITerrianSystem* terrian) = 0; virtual void DestroyTerrainSync(ITerrianSystem* terrain) = 0; virtual ITerrianSystem* GetTerrain() = 0; }; #endif
d0e92bcf67bedbedc26b7f2ec7a67bd707c02a93
4d0c9ed87695644dd2676644e9111ec6ffbce169
/Creational Design Patterns/Factories/factory_Method_Pattern.cpp
71e29766826dba945c5a5ea21636e2eaf735522f
[]
no_license
adityaishan/Design-Patterns
4258117e6badce44016a79f249fab5f827f4616f
5b741e780b386e152b83ab33bf82391893dd6a1e
refs/heads/master
2021-06-24T02:52:13.069407
2020-12-22T19:54:46
2020-12-22T19:54:46
175,015,922
0
0
null
null
null
null
UTF-8
C++
false
false
920
cpp
factory_Method_Pattern.cpp
#define _USE_MATH_DEFINES #include <cmath> #include <iostream> enum class PointType { cartesian, polar }; class Point { public: double x,y; Point(const double x, const double y) : x{x}, y{y} {} friend std::ostream& operator<<(std::ostream& os, const Point& point) { os << "x: " << point.x << " y: " << point.y; return os; } }; struct PointFactory { static Point NewCartesian(const double x, const double y) { return {x, y}; } static Point NewPolar(const double rho, const double theta) { return { rho*cos(theta), rho*sin(theta) }; } }; int main() { // will not work because constructer is private //Point p{ 1,2 }; auto p = PointFactory::NewPolar(5, M_PI_4); // then here how i am able to access std::cout << p << "\n"; //the constructer? ;) auto p1 = PointFactory::NewCartesian(3.123, 4.12412); std::cout << p1 << "\n"; getchar(); return 0; }
f77e1250fc3634bf3f1e66da6be2712001720de0
711e5c8b643dd2a93fbcbada982d7ad489fb0169
/XPSP1/NT/net/wlbs/nlbmgr/exe/rightbottomview.h
54650004da23f7dbe25c20cc44b7cc459bd61036
[]
no_license
aurantst/windows-XP-SP1
629a7763c082fd04d3b881e0d32a1cfbd523b5ce
d521b6360fcff4294ae6c5651c539f1b9a6cbb49
refs/heads/master
2023-03-21T01:08:39.870106
2020-09-28T08:10:11
2020-09-28T08:10:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
378
h
rightbottomview.h
#ifndef RIGHTBOTTOMVIEW_H #define RIGHTBOTTOMVIEW_H #include "stdafx.h" #include "Document.h" class RightBottomView : public CEditView { DECLARE_DYNCREATE( RightBottomView ) public: virtual void OnInitialUpdate(); BOOL PreCreateWindow( CREATESTRUCT& cs ); RightBottomView(); protected: Document* GetDocument(); }; #endif
1bcf0b2977755e72210449636921a2ba3d7143c2
d3afd3838e99c012cf019cecc00e0a42ce60de9e
/reference/heap.cpp
24c69389ba64938b96cc23724cfde0a687800c9d
[]
no_license
deepuple/study_algorithm
0c3efdddc5dd05c008546c66a2169cec332743bf
b5fcf779a70b65e9888dac7fabf7ce05447bf63e
refs/heads/master
2023-05-05T07:20:41.746876
2021-05-22T02:24:09
2021-05-22T02:24:09
127,512,775
0
0
null
null
null
null
UTF-8
C++
false
false
1,082
cpp
heap.cpp
#include <iostream> using namespace std; int N, hn = 0; const int SIZE = 100; int heap[SIZE]; void myswap(int& a, int& b){ int z = a; a = b; b = z; } void push(int index){ while(index > 1 && (heap[index] > heap[index/2])){ // max-heap myswap(heap[index], heap[index/2]); index /= 2; } } int pop(){ if(hn == 0) return -1; if(hn == 1) return heap[1]; int ret = heap[1]; myswap(heap[1], heap[hn]); hn--; int index = 1; while(index * 2 <= hn){ int leap = index * 2; if( leap < hn && heap[leap] < heap[leap+1] ) leap++; //leap < hn - hn이 홀수개인 경우에만, 이 조건에 들어온다. 짝수개인 경우에는 안들어옴. if( heap[index] > heap[leap]) break; //max - heap myswap(heap[index], heap[leap]); index = leap; } return ret; } int main(){ cin >> N; for(int i = 1 ; i <= N ; i++){ cin >> heap[i]; push(i); hn++; } for(int i = 1 ; i <= N ; i++){ cout << pop() << endl; } return 0; }
0fe67afd3cd1d33f0114837646b493b4efccbaeb
891cc26e04e1c73ed755f5da82cb21ce04a25a0b
/src/computeCSFdensitylib/vtkio.h
0bab3bb9490fe2576897932d992cc93ecc65b700
[ "Apache-2.0" ]
permissive
NIRALUser/auto_EACSF
58b28d3bb1913c20c1031b11bf83a93a68911a83
a82ffc584c94650a1da5266a79b19e9b08d28ed2
refs/heads/master
2021-06-24T09:28:25.164154
2020-06-23T20:21:01
2020-06-23T20:21:01
136,204,558
5
1
null
2019-06-18T20:23:16
2018-06-05T16:21:07
C++
UTF-8
C++
false
false
487
h
vtkio.h
// // vtkio.h // ktools // // Created by Joohwi Lee on 12/5/13. // // #ifndef __ktools__vtkio__ #define __ktools__vtkio__ #include <iostream> //#include <vnl/vnl_matrix.h> class vtkPolyData; class vtkDataSet; class vtkDataArray; class vtkStructuredGrid; class vtkIO { public: vtkIO(); vtkDataSet* readDataFile(std::string file); vtkPolyData* readFile(std::string file); void writeFile(std::string file, vtkDataSet* mesh); }; #endif /* defined(__ktools__vtkio__) */
9529e6fdfb85a18d68169d851dc4e946625dc48d
8e3c901d5d15a7c437e26e04d86dd5ef5ae06b70
/CastleVania/CastleVania/StairTop.cpp
8d15b0444f15c6ae76b9cccfcdb0edc3787a98ee
[]
no_license
hoangvinh121299/CastleVaina2
f90f00801a03ab5fff86dee9d3fc29ce6c45f8db
8c6a27fd2fadb52faf501daf59db9cbfc117d1bd
refs/heads/master
2023-02-15T12:08:34.816487
2021-01-11T07:51:45
2021-01-11T07:51:45
289,404,037
1
0
null
2021-01-10T18:57:26
2020-08-22T02:25:16
C++
UTF-8
C++
false
false
562
cpp
StairTop.cpp
#include "StairTop.h" StairTop::StairTop(float X, float Y, int Direction) { width = 50; height = 5; x = X - width / 2; y = Y; direction = Direction; ObjectType = objectType::STAIR_TOP; y -= height; } StairTop::~StairTop() { } void StairTop::getBoundingBox(float& left, float& top, float& right, float& bottom) { left = x; right = x + width; top = y; bottom = y + height; } void StairTop::Update(DWORD dt, vector<LPGAMEOBJECT>* coObjects) { } void StairTop::Render(Camera* camera) { if (IS_DEBUG_RENDER_BBOX) renderBoundingBox(camera); }
6c357b70446e847d0b09325d3d13e77fc1a29231
737406e92b4ea6d6249c54f7e1854d806bb04c12
/GLImplementation/include/glImplementation/renderObjects/CameraGL.h
5a92517398b7c373404b34baf3c69e29c6fc8ae8
[]
no_license
sushilmiitb/coresdk
0cd022821f74e959562f9b9ba35303d7db504f15
0a97a222408d58f33d5fd1c88af89c68d2c230fb
refs/heads/master
2020-04-09T10:58:43.635289
2017-08-04T07:35:50
2017-08-04T07:35:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
496
h
CameraGL.h
#ifndef GLIMPLEMENTATION_CAMERAGL_H #define GLIMPLEMENTATION_CAMERAGL_H #include <coreEngine/renderObjects/Camera.h> #include <coreEngine/renderObjects/IRenderable.h> namespace cl{ class CameraGL : public Camera, public IRenderable { public: CameraGL(const std::string &sceneId, ILoggerFactory *loggerFactory); IRenderable *getRenderable(); bool initialize(); void draw(); void deinitialize(); private: std::unique_ptr<ILogger> logger; }; } #endif //GLIMPLEMENTATION_CAMERAGL_H
1f00bcb4f191eab5c26430db72fabdf71bc1aacc
8bae0a5871f081f88f6bae1448f0a61653f1cad3
/CodeJam/2016/R2/B/B.cpp
63726834b3af24822d776358c7e207df4b15c1f2
[]
no_license
IamUttamKumarRoy/contest-programming
a3a58df6b6ffaae1947d725e070d1e32d45c7642
50f2b86bcb59bc417f0c9a2f3f195eb45ad54eb4
refs/heads/master
2021-01-16T00:28:53.384205
2016-10-01T02:57:44
2016-10-01T02:57:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,195
cpp
B.cpp
#include<bits/stdc++.h> using namespace std; typedef double ld; const int MAXN = 400; const int MAXK = MAXN; int N, K; ld P[2][MAXN]; ld dp[2][MAXN][MAXK]; // using the first i, probability of exactly j int main() { ios_base::sync_with_stdio(0); int T; cin >> T; for(int case_num = 1; case_num <= T; case_num ++) { cin >> N >> K; for(int i = 0; i < N; i++) { ld v; cin >> v; P[0][i] = P[1][i] = v; } sort(P[0], P[0] + N); sort(P[1], P[1] + N); reverse(P[1], P[1] + N); memset(dp, 0, sizeof(dp)); for(int z = 0; z < 2; z++) { dp[z][0][0] = 1; for(int i = 0; i < N; i++) { for(int j = 0; j <= i; j++) { //cerr << z << ' ' << i << ' ' << j << ' ' << dp[z][i][j] << '\n'; dp[z][i + 1][j + 1] += dp[z][i][j] * P[z][i]; dp[z][i + 1][j + 0] += dp[z][i][j] * (1 - P[z][i]); } } } ld res = 0; for(int l = 0; l <= K; l++) { int r = K - l; ld val = 0; for(int i = 0; i <= K / 2; i++) { val += dp[0][l][i] * dp[1][r][K / 2 - i]; } //cerr << l << ' ' << r << ' ' << val << '\n'; res = max(res, val); } cout << "Case #" << case_num << ": "; cout << fixed << setprecision(9) << res << '\n'; } return 0; }
893b30f224201d8dad9a70e51fad653eb8dacbb5
b495d715dc9fe3a2ac6bec5da44d6e83fec6c142
/q_2.cpp
fdee107280b2cdbeef16c0b509c28d899d96604b
[]
no_license
shobhitr97/Codes
f68be601c7b974c335722cdb8dc7f06e6c007e83
8d4deb2bb7f27e6f9af0190d5e558ff20f64a495
refs/heads/master
2020-04-15T13:35:59.973444
2018-02-06T18:24:33
2018-02-06T18:24:33
58,259,950
0
0
null
null
null
null
UTF-8
C++
false
false
349
cpp
q_2.cpp
#include<iostream> #include<stdlib.h> int main(){ int n,i,j,*a,c; std::cin>>n; a=(int*)malloc(n*sizeof(int)); for(i=0;i<n;i++){ std::cin>>a[i]; } i=0; j=n-1; while(i<j){ while(!a[i]){ i++; } while(a[j]){ j--; } if(i<j){ c=a[j]; a[j]=a[i]; a[i]=c; } } for(i=0;i<n;i++){ std::cout<<a[i]<<"\n"; } return 0; }
fe48d5b5c1c9e943a9dfc55c16e4c57f05adf7c8
6a93954f72bc32a1bbb77f9bb2726e935e8c5adf
/Mini Rogue/Game.cpp
b4b15a70a523456f4e4c7e6ac6934a461862257a
[]
no_license
mmorgandaly/Mini-Rogue
2aab09e581aaf440cd7c3e8e9f57ac1b4fae3a3c
fee62c1fc3526d56537aeb57f65f87195af1da23
refs/heads/master
2022-12-21T07:38:23.694372
2020-09-25T21:23:14
2020-09-25T21:23:14
298,681,948
0
0
null
null
null
null
UTF-8
C++
false
false
5,301
cpp
Game.cpp
// Game.cpp #include "Game.h" #include "Dungeon.h" #include "Player.h" #include "utilities.h" #include "Monsters.h" #include "Objects.h" #include <iostream> using namespace std; // Implement these and other Game member functions you may have added. Game::Game(int goblinSmellDistance) { m_dungeon = new Dungeon(18, 70); // add player int rPlayer; int cPlayer; do { rPlayer = randInt(2, 17); cPlayer = randInt(2, 69); } while (m_dungeon->getCellStatus(rPlayer, cPlayer) != 0); m_dungeon->addPlayer(rPlayer, cPlayer); //add snakewomen int sw = randInt(1, 3); for (int p = 0; p < sw; p++) { int r = randInt(2, 17); int c = randInt(2, 69); if (r == rPlayer && c == cPlayer) //don't add if lands on player continue; m_dungeon->addSnakewomen(r, c); } //add goblins int g =randInt(1, 3); for (int p = 0; p < g; p++) { int r = randInt(2, 17); int c = randInt(2, 69); if (r == rPlayer && c == cPlayer) continue; m_dungeon->addGoblins(r, c); } //add stairs int rs = randInt(2, 17); int cs = randInt(2, 69); m_dungeon->addStairs(rs, cs); } Game::~Game() //destructor { delete m_dungeon; } void Game::play() { m_dungeon->display(""); //display dungeon Player* player = m_dungeon->player(); Stairs* stair = m_dungeon->stair(); if (player == nullptr) //player cannot be nullptr return; char dir; while (true) //taking a turn { if (trueWithProbability(0.1) && player->maxhp() > player->hitpoints()) // 1/10 chance player will inc hp (up to max hp) every time command is pressed player->increaseHP(); switch (getCharacter()) { case 'h': //move left dir = ARROW_LEFT; player->move(dir); //move player left m_dungeon->display(""); m_dungeon->moveSnakewomen(); //snakewomen move randomly m_dungeon->display(""); m_dungeon->moveBogeymen(); //bogeymen move m_dungeon->display(""); break; case 'l': //move right dir = ARROW_RIGHT; player->move(dir); m_dungeon->display(""); m_dungeon->moveSnakewomen(); //snakewomen move randomly m_dungeon->display(""); m_dungeon->moveBogeymen(); //bogeymen move m_dungeon->display(""); break; case 'j': //move down dir = ARROW_DOWN; player->move(dir); m_dungeon->display(""); m_dungeon->moveSnakewomen(); //snakewomen move randomly m_dungeon->display(""); m_dungeon->moveBogeymen(); //bogeymen move m_dungeon->display(""); break; case 'k': //move up dir = ARROW_UP; player->move(dir); m_dungeon->display(""); m_dungeon->moveSnakewomen(); //snakewomen move randomly m_dungeon->display(""); m_dungeon->moveBogeymen(); //bogeymen move m_dungeon->display(""); break; case'i': //look at inventory player->showInventory(); break; case '>': //go down stairs when on staircase if (m_dungeon->level() < 4) //stairs from level 0 to 3 { if (player->row() == stair->row() && player->col() == stair->col()) { m_dungeon->display("leveldown"); m_dungeon->display(""); } } break; case 'c': //cheat player->cheat(); break; case 'g': //pick up item by standing on it if ((player->row() == stair->row() && player->col() == stair->col()) && m_dungeon->level() == 4) //if player on golden idol { cout << "Congratulations, you won!" << endl; //player wins cout << "Press q to exit game." << endl; //exit game } break; /* case 'w': //wield weapon and select from inventory break; case 'r': //read scroll then select scroll from inventory break; */ case'q': exit(1); break; default: //only monsters take turn if any other key is pressed m_dungeon->moveSnakewomen(); //snakewomen move randomly m_dungeon->display(""); m_dungeon->moveBogeymen(); //bogeymen move if by player m_dungeon->display(""); break; } } } // You will presumably add to this project other .h/.cpp files for the // various classes of objects you need to play the game: player, monsters, // weapons, etc. You might have a separate .h/.cpp pair for each class // (e.g., Player.h, Bogeyman.h, etc.), or you might put the class // declarations for all actors in Actor.h, all game objects in GameObject.h, // etc.
b7ebd692383f115c5d2f5bae0c8873660c01780a
9030ce2789a58888904d0c50c21591632eddffd7
/SDK/ARKSurvivalEvolved_WeapTekGravityGrenade_classes.hpp
bcd147669a4b2c21ad13c60a2c2e2d70851bef7f
[ "MIT" ]
permissive
2bite/ARK-SDK
8ce93f504b2e3bd4f8e7ced184980b13f127b7bf
ce1f4906ccf82ed38518558c0163c4f92f5f7b14
refs/heads/master
2022-09-19T06:28:20.076298
2022-09-03T17:21:00
2022-09-03T17:21:00
232,411,353
14
5
null
null
null
null
UTF-8
C++
false
false
9,398
hpp
ARKSurvivalEvolved_WeapTekGravityGrenade_classes.hpp
#pragma once // ARKSurvivalEvolved (332.8) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "ARKSurvivalEvolved_WeapTekGravityGrenade_structs.hpp" namespace sdk { //--------------------------------------------------------------------------- //Classes //--------------------------------------------------------------------------- // BlueprintGeneratedClass WeapTekGravityGrenade.WeapTekGravityGrenade_C // 0x010B (0x0FAB - 0x0EA0) class AWeapTekGravityGrenade_C : public APrimalWeaponGrenade { public: class UParticleSystemComponent* FXCore1P; // 0x0EA0(0x0008) (BlueprintVisible, ZeroConstructor, IsPlainOldData) class UParticleSystemComponent* FXCore3P; // 0x0EA8(0x0008) (BlueprintVisible, ZeroConstructor, IsPlainOldData) class UStaticMeshComponent* GrenadeStaticMesh3P; // 0x0EB0(0x0008) (BlueprintVisible, ZeroConstructor, IsPlainOldData) class UMaterialInstanceDynamic* GrenadeDynamicMat1P; // 0x0EB8(0x0008) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) class UMaterialInstanceDynamic* GrenadeDynamicMat3P; // 0x0EC0(0x0008) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) struct FLinearColor AttractColor; // 0x0EC8(0x0010) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData) struct FLinearColor RepelColor; // 0x0ED8(0x0010) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData) float GlowIntensity; // 0x0EE8(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData) struct FName ColorMaterialParamName; // 0x0EEC(0x0008) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData) int CurrentMode; // 0x0EF4(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) class UClass* RepelModeProjectile; // 0x0EF8(0x0008) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData) class UClass* AttractModeProjectile; // 0x0F00(0x0008) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData) struct FWeaponAnim GravityModeToggleAnim; // 0x0F08(0x0010) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData) struct FName ParticleColorParamName; // 0x0F18(0x0008) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) int K2Node_CustomEvent_NewMode2; // 0x0F20(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int K2Node_CustomEvent_NewMode; // 0x0F24(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_Clamp_ReturnValue; // 0x0F28(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData00[0x4]; // 0x0F2C(0x0004) MISSED OFFSET class AShooterCharacter* CallFunc_GetPawnOwner_ReturnValue; // 0x0F30(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsOwningClient_ReturnValue; // 0x0F38(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_EqualEqual_IntInt_ReturnValue; // 0x0F39(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Not_PreBool_ReturnValue; // 0x0F3A(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData01[0x1]; // 0x0F3B(0x0001) MISSED OFFSET int CallFunc_SelectInt_ReturnValue; // 0x0F3C(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) float CallFunc_PlayWeaponAnimationEx_ReturnValue; // 0x0F40(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FName K2Node_Event_CustomEventName; // 0x0F44(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData02[0x4]; // 0x0F4C(0x0004) MISSED OFFSET class USkeletalMeshComponent* K2Node_Event_MeshComp; // 0x0F50(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class UAnimSequenceBase* K2Node_Event_Animation; // 0x0F58(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class UAnimNotify* K2Node_Event_AnimNotifyObject; // 0x0F60(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_EqualEqual_NameName_ReturnValue; // 0x0F68(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData03[0x7]; // 0x0F69(0x0007) MISSED OFFSET class UMaterialInterface* CallFunc_Array_Get_Item; // 0x0F70(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class UMaterialInstanceDynamic* CallFunc_CreateDynamicMaterialInstance_ReturnValue; // 0x0F78(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsPlayingMontage_ReturnValue; // 0x0F80(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData04[0x7]; // 0x0F81(0x0007) MISSED OFFSET class AShooterCharacter* CallFunc_GetPawnOwner_ReturnValue2; // 0x0F88(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsFirstPerson_ReturnValue; // 0x0F90(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData05[0x7]; // 0x0F91(0x0007) MISSED OFFSET class UMaterialInterface* CallFunc_Array_Get_Item2; // 0x0F98(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class UMaterialInstanceDynamic* CallFunc_CreateDynamicMaterialInstance_ReturnValue2; // 0x0FA0(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsPlayingMontage_ReturnValue2; // 0x0FA8(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_BooleanOR_ReturnValue; // 0x0FA9(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Not_PreBool_ReturnValue2; // 0x0FAA(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) static UClass* StaticClass() { static auto ptr = UObject::FindClass("BlueprintGeneratedClass WeapTekGravityGrenade.WeapTekGravityGrenade_C"); return ptr; } void SetupNewGravityMode(int ForMode, bool IncludingVFX); void UserConstructionScript(); void ReceiveBeginPlay(); void StartSecondaryActionEvent(); void ServerRequestModeChange(int NewMode); void MultiUpdateCurrentMode(int NewMode); void BPAnimNotifyCustomEvent(struct FName* CustomEventName, class USkeletalMeshComponent** MeshComp, class UAnimSequenceBase** Animation, class UAnimNotify** AnimNotifyObject); void BPFiredWeapon(); void ExecuteUbergraph_WeapTekGravityGrenade(int EntryPoint); }; } #ifdef _MSC_VER #pragma pack(pop) #endif
b25ccfb6abd24f9759d440d87f7264d892955ac1
120b7f48e14687bae053c519b030e7627839e892
/Include/slam_class/Camera.h
a6635058899d83c3d6fadb682277decef1746364
[]
no_license
ClockworkHou/Recons_SLAM
298e100d1aea272dbf61b9dd7ffab29642f09073
505186d31f858f2e1a351ec258a55563f61ac0f5
refs/heads/master
2020-03-19T02:41:42.130058
2018-06-06T15:12:55
2018-06-06T15:12:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
969
h
Camera.h
//Camera #include "../include_libs.h" #ifndef CAMERA_H #define CAMERA_H namespace slam_class { class Camera_Intrinsics { public: double fx, fy, cx, cy; //double depth_scale;//for RGBD camera //Camera_Intrinsics(); void setValue (double _fx, double _fy, double _cx, double _cy) {fx = _fx;fy = _fy; cx = _cx; cy = _cy;} }; class Camera { public: Camera_Intrinsics intrinsics; Camera(){}; void setIntrinsics(double _fx, double _fy, double _cx, double _cy); Vector3d world2camera( const Vector3d& p_w, const SE3& T_c_w ); Vector3d camera2world( const Vector3d& p_c, const SE3& T_c_w ); Vector2d camera2pixel( const Vector3d& p_c ); Vector3d pixel2camera( const Vector2d& p_p, double depth=1 ); Vector3d pixel2world ( const Vector2d& p_p, const SE3& T_c_w, double depth=1 ); Vector2d world2pixel ( const Vector3d& p_w, const SE3& T_c_w ); }; } #endif // CAMERA_H
7172df54cee27445899d8385754fb6f3e4bf74e8
163c67594e699f4e0625e690fdf59fe117be141c
/gsa/wit/COIN/include/ClpMessage.hpp
7d053cb4d087375bc4b0bc33e62a266fb076def5
[ "Apache-2.0", "LicenseRef-scancode-cpl-0.5" ]
permissive
jfuku14/CMMPPT
19e2ed19873cc8e78b277765764ae30f5661db4b
16dd1b709af992c09a1fda110b0602998f46d0d7
refs/heads/master
2021-12-03T08:16:12.442222
2021-08-19T02:05:56
2021-08-19T02:05:56
241,051,080
0
0
Apache-2.0
2020-02-17T08:02:41
2020-02-17T08:02:40
null
UTF-8
C++
false
false
1,864
hpp
ClpMessage.hpp
// Copyright (C) 2002, International Business Machines // Corporation and others. All Rights Reserved. #ifndef ClpMessage_H #define ClpMessage_H #include "CoinPragma.hpp" /** This deals with Clp messages (as against Osi messages etc) */ #include "CoinMessageHandler.hpp" enum CLP_Message { CLP_SIMPLEX_FINISHED, CLP_SIMPLEX_INFEASIBLE, CLP_SIMPLEX_UNBOUNDED, CLP_SIMPLEX_STOPPED, CLP_SIMPLEX_ERROR, CLP_SIMPLEX_STATUS, CLP_DUAL_BOUNDS, CLP_SIMPLEX_ACCURACY, CLP_SIMPLEX_BADFACTOR, CLP_SIMPLEX_BOUNDTIGHTEN, CLP_SIMPLEX_INFEASIBILITIES, CLP_SIMPLEX_FLAG, CLP_SIMPLEX_GIVINGUP, CLP_DUAL_CHECKB, CLP_DUAL_ORIGINAL, CLP_SIMPLEX_PERTURB, CLP_PRIMAL_ORIGINAL, CLP_PRIMAL_WEIGHT, CLP_PRIMAL_OPTIMAL, CLP_SINGULARITIES, CLP_MODIFIEDBOUNDS, CLP_RIMSTATISTICS1, CLP_RIMSTATISTICS2, CLP_RIMSTATISTICS3, CLP_PRESOLVE_COLINFEAS, CLP_PRESOLVE_ROWINFEAS, CLP_PRESOLVE_COLUMNBOUNDA, CLP_PRESOLVE_COLUMNBOUNDB, CLP_PRESOLVE_NONOPTIMAL, CLP_PRESOLVE_STATS, CLP_PRESOLVE_INFEAS, CLP_PRESOLVE_UNBOUND, CLP_PRESOLVE_INFEASUNBOUND, CLP_PRESOLVE_INTEGERMODS, CLP_PRESOLVE_POSTSOLVE, CLP_PRESOLVE_NEEDS_CLEANING, CLP_POSSIBLELOOP, CLP_SMALLELEMENTS, CLP_DUPLICATEELEMENTS, CLP_SIMPLEX_HOUSE1, CLP_SIMPLEX_HOUSE2, CLP_SIMPLEX_NONLINEAR, CLP_SIMPLEX_FREEIN, CLP_SIMPLEX_PIVOTROW, CLP_DUAL_CHECK, CLP_PRIMAL_DJ, CLP_PACKEDSCALE_INITIAL, CLP_PACKEDSCALE_WHILE, CLP_PACKEDSCALE_FINAL, CLP_PACKEDSCALE_FORGET, CLP_INITIALIZE_STEEP, CLP_UNABLE_OPEN, CLP_BAD_BOUNDS, CLP_BAD_MATRIX, CLP_LOOP, CLP_IMPORT_RESULT, CLP_IMPORT_ERRORS, CLP_EMPTY_PROBLEM, CLP_CRASH, CLP_END_VALUES_PASS, CLP_DUMMY_END }; class ClpMessage : public CoinMessages { public: /**@name Constructors etc */ //@{ /** Constructor */ ClpMessage(Language language=us_en); //@} }; #endif
02556edc774ec31acdadc6c1f0848e3371654fa5
4ca209e162f40570bb75d525a4aedff217109027
/src/Circuit/Resistor.cpp
6a8ab40be46f3d46d5dc31181675401b1535b647
[]
no_license
int3rrupt/CircuitBuilder_Cpp
fe1af323d49917b479da04558bb9dd7ab30cb4a3
f0e4c9f250885eb4eb595adcc92c6d96ede5aba3
refs/heads/master
2021-07-20T10:13:03.406370
2017-10-29T04:18:08
2017-10-29T04:18:08
57,923,863
2
0
null
null
null
null
UTF-8
C++
false
false
4,144
cpp
Resistor.cpp
// Resistor Implementation // Resistor.cpp #include "StdAfx.h" #include "Resistor.h" using namespace System; using namespace System::Drawing; using namespace System::Windows::Forms; Resistor::Resistor() : Components() { } Resistor::Resistor(double RESISTORVALUE, int X, int Y, String^ NAME, int TYPE, int ORIENTATION) : Components(RESISTORVALUE,X,Y,NAME,TYPE,ORIENTATION) { ComponentOrientation = ORIENTATION; InitializeComponents(); if(ORIENTATION==0) { ComponentTopNode = false; ComponentBottomNode = false; ComponentLeftNode = true; ComponentRightNode = true; } if(ORIENTATION==1) { ComponentTopNode = true; ComponentBottomNode = true; ComponentLeftNode = false; ComponentRightNode = false; } ComponentNodeConnections = 0; } void Resistor::InitializeComponents() { ComponentDiagram = gcnew PictureBox(); ComponentValueLabel = gcnew Label(); ComponentNameLabel = gcnew Label(); ComponentConnectedArray = gcnew array<Components^>(2); ComponentConnectedNodeArray = gcnew array<int,2>(2,2); if(ComponentOrientation==0) // Vertical { ComponentDiagram->BackColor = System::Drawing::Color::Transparent; ComponentDiagram->BackgroundImageLayout = System::Windows::Forms::ImageLayout::None; ComponentDiagram->Image = Image::FromFile("C:\\Users\\Adrian\\Documents\\School\\Cal Poly\\ECE 256\\Circuit\\Circuit4\\Pictures\\Parts\\ResistorV.png"); ComponentDiagram->Location = System::Drawing::Point(ComponentLocationX-6,ComponentLocationY-3); ComponentDiagram->Name = L"componentPictureBox"; ComponentDiagram->Size = System::Drawing::Size(12, 85); ComponentDiagram->TabIndex = 0; ComponentDiagram->TabStop = false; ComponentValueLabel->BackColor = Color::White; ComponentValueLabel->AutoSize = true; ComponentValueLabel->Location = System::Drawing::Point(ComponentLocationX+10,ComponentLocationY+45); ComponentValueLabel->Name = L"componentValueLabel"; ComponentValueLabel->Size = System::Drawing::Size(15, 6); ComponentValueLabel->TabIndex = 1; ComponentValueLabel->Text = String::Concat(ComponentValue.ToString()); ComponentNameLabel->BackColor = Color::White; ComponentNameLabel->AutoSize = true; ComponentNameLabel->Location = System::Drawing::Point(ComponentLocationX+10,ComponentLocationY+30); ComponentNameLabel->Name = L"componentNameLabel"; ComponentNameLabel->Size = System::Drawing::Size(8, 6); ComponentNameLabel->TabIndex = 1; ComponentNameLabel->Text = String::Concat(ComponentName); } if(ComponentOrientation==1) // Horizontal { ComponentDiagram->BackColor = System::Drawing::Color::Transparent; ComponentDiagram->BackgroundImageLayout = System::Windows::Forms::ImageLayout::None; ComponentDiagram->Image = Image::FromFile("C:\\Users\\Adrian\\Documents\\School\\Cal Poly\\ECE 256\\Circuit\\Circuit4\\Pictures\\Parts\\ResistorH.png"); ComponentDiagram->Location = System::Drawing::Point(ComponentLocationX-3,ComponentLocationY-7); ComponentDiagram->Name = L"componentPictureBox"; ComponentDiagram->Size = System::Drawing::Size(85, 12); ComponentDiagram->TabIndex = 0; ComponentDiagram->TabStop = false; ComponentValueLabel->BackColor = Color::White; ComponentValueLabel->AutoSize = true; ComponentValueLabel->Location = System::Drawing::Point(ComponentLocationX+27,ComponentLocationY-25); ComponentValueLabel->Name = L"componentValueLabel"; ComponentValueLabel->Size = System::Drawing::Size(15, 6); ComponentValueLabel->TabIndex = 1; ComponentValueLabel->Text = String::Concat(ComponentValue.ToString()); ComponentNameLabel->BackColor = Color::White; ComponentNameLabel->AutoSize = true; ComponentNameLabel->Location = System::Drawing::Point(ComponentLocationX+27,ComponentLocationY+10); ComponentNameLabel->Name = L"componentNameLabel"; ComponentNameLabel->Size = System::Drawing::Size(8, 6); ComponentNameLabel->TabIndex = 1; ComponentNameLabel->Text = String::Concat(ComponentName); } } String^ Resistor::ToString() { return String::Concat(L"Resistor Component\n\n",Components::ToString()); }
85bbbf37ca8ad62effccc938ecfd7f5c12e0f6b3
b67044ae73272f81819304a9736d49c9727e868f
/OriginalPlan/trunk/server/trunk/server/gamebaselib/src/ai_character.h
f9734840f8740eaea6806cfe7adfadc7b7951ab4
[]
no_license
bagua0301/red_slg
5b16ab66354c552ab2066fc95effaca2a9a56535
50c48cbdfeb4ba373d2f9040c9b4c9e609e3b9cb
refs/heads/master
2023-06-17T21:39:15.730529
2020-05-23T10:29:07
2020-05-23T10:29:07
null
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
876
h
ai_character.h
#ifndef _AI_CHARACTER_H_ #define _AI_CHARACTER_H_ class CCharacterObject; #include "game_util.h" class CAICharacter { public: CAICharacter(void); virtual ~CAICharacter(void); public: virtual bool init(CCharacterObject *character); public: virtual void relive(CCharacterObject* pCharacter){} // ʼþ public: virtual void onDie(CCharacterObject *pKiller = NULL); virtual void onHurt(sint32 damage, CCharacterObject* pAttacker); virtual void onBeSkill(CCharacterObject* pCharacter, sint32 goodEffect); virtual void onKillObject(CCharacterObject* pCharacter); virtual void onAddEnemy(TObjUID_t objUID, THateValue_t hateVal, EAddApproachObjectType addType = ADD_APPROACH_MON_TYPE_DAMAGE); virtual void onDelEnemy(TObjUID_t objUID, bool byEnemyFlag = false); public: CCharacterObject *getCharacter()const; protected: CCharacterObject *_character; }; #endif
195910b3a0b253b83f667760e28d6a3a3fc0ddd8
81a332cd43e111f3901f775cbec63b5de45b0124
/src/base/linked_list.h
d97493149b2dcead719e85ca6d949e991f71d2f5
[]
no_license
bill-mccloskey/os
b3d403f41ac987d132975f56be5f951460c1d46d
a7cb203c1d4cb9433c43e586fdd433db203f4472
refs/heads/master
2020-04-08T04:02:09.962038
2019-02-22T05:30:09
2019-02-22T05:30:09
158,999,962
1
0
null
null
null
null
UTF-8
C++
false
false
3,428
h
linked_list.h
#ifndef linked_list_h #define linked_list_h #include "assertions.h" #include <stddef.h> #include <stdint.h> #include <string.h> template<typename T, size_t> class LinkedList; class LinkedListEntry { public: void Remove() { prev_->next_ = next_; next_->prev_ = prev_; next_ = prev_ = nullptr; } void InsertBefore(LinkedListEntry& entry) { assert(!entry.next_); assert(!entry.prev_); entry.prev_ = prev_; entry.next_ = this; prev_->next_ = &entry; prev_ = &entry; } void InsertAfter(LinkedListEntry& entry) { assert(!entry.next_); assert(!entry.prev_); entry.prev_ = this; entry.next_ = next_; next_->prev_ = &entry; next_ = &entry; } bool InList() const { assert((next_ == nullptr) == (prev_ == nullptr)); return next_ != nullptr; } private: template<typename T, size_t> friend class LinkedList; LinkedListEntry* next_ = nullptr; LinkedListEntry* prev_ = nullptr; }; #define LINKED_LIST(T, entry_field) \ LinkedList<T, offsetof(T, entry_field)> template<typename T, size_t entry_offset> class LinkedList { public: LinkedList() { sentinel_.next_ = &sentinel_; sentinel_.prev_ = &sentinel_; } class Iter { public: T& operator*() const { assert_ne(entry_, term_); return *ElementFrom(entry_); } T* operator->() const { assert_ne(entry_, term_); return ElementFrom(entry_); } const Iter& operator++() { if (reverse_) entry_ = entry_->prev_; else entry_ = entry_->next_; return *this; } Iter operator++(int) { Iter result = *this; ++(*this); return result; } const Iter& operator--() { if (reverse_) entry_ = entry_->next_; else entry_ = entry_->prev_; return *this; } Iter operator--(int) { Iter result = *this; --(*this); return result; } bool operator!=(const Iter& other) const { return entry_ != other.entry_; } bool operator==(const Iter& other) const { return entry_ == other.entry_; } explicit operator bool() const { return entry_ != term_; } private: friend class LinkedList; Iter(LinkedListEntry* entry, LinkedListEntry* term, bool reverse = false) : entry_(entry), term_(term), reverse_(reverse) {} LinkedListEntry* entry_; LinkedListEntry* term_; bool reverse_; }; Iter begin() { return Iter(sentinel_.next_, &sentinel_); } Iter end() { return Iter(&sentinel_, &sentinel_); } Iter rbegin() { return Iter(sentinel_.prev_, &sentinel_, true); } Iter rend() { return Iter(&sentinel_, &sentinel_, true); } void PushFront(LinkedListEntry& entry) { sentinel_.InsertAfter(entry); } void PushBack(LinkedListEntry& entry) { sentinel_.InsertBefore(entry); } T* PopFront() { LinkedListEntry* entry = sentinel_.next_; assert_ne(entry, &sentinel_); entry->Remove(); return ElementFrom(entry); } T* PopBack() { LinkedListEntry* entry = sentinel_.prev_; assert_ne(entry, &sentinel_); entry->Remove(); return ElementFrom(entry); } bool IsEmpty() const { return sentinel_.next_ == &sentinel_; } private: static T* ElementFrom(LinkedListEntry* entry) { return reinterpret_cast<T*>(reinterpret_cast<uintptr_t>(entry) - entry_offset); } LinkedListEntry sentinel_; }; #endif
e7c6b98064e0e4142f8fcd57f16d1cb3840b95b7
c822bc1903e80276cde3254e67a8b1aee5bcb690
/ARKitRemoteApp/Classes/Native/Bulk_System_1.cpp
0b2a479cda20e916cccd24a2777c6238af1178bc
[]
no_license
YTKY/YtARApp
d7d5874c2f63b88cdd9e1966f2e45c7d4892f6fe
c1504eff14adb09dc7a07b973a4427b3784114ac
refs/heads/master
2021-08-30T06:37:50.380772
2017-12-16T14:51:42
2017-12-16T14:51:42
113,552,163
0
0
null
null
null
null
UTF-8
C++
false
false
1,899,064
cpp
Bulk_System_1.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 "class-internals.h" #include "codegen/il2cpp-codegen.h" #include "object-internals.h" // System.ComponentModel.MergablePropertyAttribute struct MergablePropertyAttribute_t3224318606; // System.Attribute struct Attribute_t2739832645; // System.ComponentModel.MultilineStringConverter struct MultilineStringConverter_t1633040268; // System.ComponentModel.TypeConverter struct TypeConverter_t3595149642; // System.ComponentModel.ITypeDescriptorContext struct ITypeDescriptorContext_t4280479393; // System.Globalization.CultureInfo struct CultureInfo_t270095993; // System.Type struct Type_t; // System.NotImplementedException struct NotImplementedException_t682134635; // System.ComponentModel.PropertyDescriptorCollection struct PropertyDescriptorCollection_t2982717747; // System.Attribute[] struct AttributeU5BU5D_t187261448; // System.ComponentModel.NotifyParentPropertyAttribute struct NotifyParentPropertyAttribute_t178192121; // System.ComponentModel.NullableConverter struct NullableConverter_t3128690719; // System.ArgumentNullException struct ArgumentNullException_t873386607; // System.String struct String_t; // System.Collections.IDictionary struct IDictionary_t906456483; // System.ComponentModel.TypeConverter/StandardValuesCollection struct StandardValuesCollection_t884959189; // System.Collections.ArrayList struct ArrayList_t4277734320; // System.Collections.ICollection struct ICollection_t2597392361; // System.ComponentModel.PasswordPropertyTextAttribute struct PasswordPropertyTextAttribute_t3646071524; // System.ComponentModel.ProgressChangedEventArgs struct ProgressChangedEventArgs_t4258918619; // System.EventArgs struct EventArgs_t3326158294; // System.ComponentModel.ProgressChangedEventHandler struct ProgressChangedEventHandler_t1282004475; // System.IAsyncResult struct IAsyncResult_t301249939; // System.AsyncCallback struct AsyncCallback_t1634113497; // System.ComponentModel.PropertyChangedEventArgs struct PropertyChangedEventArgs_t483343543; // System.ComponentModel.PropertyChangedEventHandler struct PropertyChangedEventHandler_t3629517548; // System.ComponentModel.PropertyDescriptor struct PropertyDescriptor_t2555988069; // System.ComponentModel.MemberDescriptor struct MemberDescriptor_t1331681536; // System.ComponentModel.TypeConverterAttribute struct TypeConverterAttribute_t695735035; // System.ComponentModel.LocalizableAttribute struct LocalizableAttribute_t2753722371; // System.ComponentModel.DesignerSerializationVisibilityAttribute struct DesignerSerializationVisibilityAttribute_t3410153364; // System.EventHandler struct EventHandler_t1223794391; // System.Collections.Hashtable struct Hashtable_t448324601; // System.Delegate struct Delegate_t2639791074; // System.Collections.IList struct IList_t1481205421; // System.Reflection.ConstructorInfo struct ConstructorInfo_t673747461; // System.Type[] struct TypeU5BU5D_t89919618; // System.IServiceProvider struct IServiceProvider_t4067527398; // System.Object[] struct ObjectU5BU5D_t4199014551; // System.ComponentModel.EditorAttribute struct EditorAttribute_t3439099620; // System.ComponentModel.PropertyDescriptor[] struct PropertyDescriptorU5BU5D_t2463291496; // System.ArgumentException struct ArgumentException_t1946723077; // System.Collections.IEnumerator struct IEnumerator_t1868781825; // System.Collections.IDictionaryEnumerator struct IDictionaryEnumerator_t322788009; // System.NotSupportedException struct NotSupportedException_t2060369835; // System.Collections.IComparer struct IComparer_t2985649012; // System.String[] struct StringU5BU5D_t1187188029; // System.ComponentModel.AttributeCollection struct AttributeCollection_t3634739288; // System.ComponentModel.ReadOnlyAttribute struct ReadOnlyAttribute_t1832938840; // System.ComponentModel.RecommendedAsConfigurableAttribute struct RecommendedAsConfigurableAttribute_t2486032475; // System.ComponentModel.ReferenceConverter struct ReferenceConverter_t3578457296; // System.ComponentModel.ReflectionEventDescriptor struct ReflectionEventDescriptor_t4023907121; // System.Reflection.EventInfo struct EventInfo_t; // System.ComponentModel.EventDescriptor struct EventDescriptor_t3701426622; // System.Reflection.MethodInfo struct MethodInfo_t; // System.Reflection.MethodBase struct MethodBase_t2815042627; // System.ComponentModel.ReflectionPropertyDescriptor struct ReflectionPropertyDescriptor_t1079221997; // System.Reflection.PropertyInfo struct PropertyInfo_t; // System.Reflection.Binder struct Binder_t1054974207; // System.Reflection.ParameterModifier[] struct ParameterModifierU5BU5D_t4226445516; // System.ComponentModel.Design.DesignerTransaction struct DesignerTransaction_t3922712621; // System.Reflection.ParameterInfo struct ParameterInfo_t4014848178; // System.ComponentModel.RefreshEventArgs struct RefreshEventArgs_t632686523; // System.ComponentModel.RefreshEventHandler struct RefreshEventHandler_t3510407695; // System.ComponentModel.RefreshPropertiesAttribute struct RefreshPropertiesAttribute_t720074670; // System.ComponentModel.RunWorkerCompletedEventArgs struct RunWorkerCompletedEventArgs_t2985097864; // System.Exception struct Exception_t2428370182; // System.ComponentModel.AsyncCompletedEventArgs struct AsyncCompletedEventArgs_t1820347970; // System.ComponentModel.RunWorkerCompletedEventHandler struct RunWorkerCompletedEventHandler_t2405942011; // System.ComponentModel.SByteConverter struct SByteConverter_t3452734354; // System.ComponentModel.BaseNumberConverter struct BaseNumberConverter_t401835300; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_t2417595227; // System.IFormatProvider struct IFormatProvider_t2640475825; // System.ComponentModel.SingleConverter struct SingleConverter_t842878517; // System.ComponentModel.StringConverter struct StringConverter_t482526816; // System.ComponentModel.TimeSpanConverter struct TimeSpanConverter_t1641375511; // System.FormatException struct FormatException_t3614201526; // System.ComponentModel.Design.Serialization.InstanceDescriptor struct InstanceDescriptor_t156299730; // System.Reflection.MemberInfo struct MemberInfo_t; // System.ComponentModel.ToolboxItemAttribute struct ToolboxItemAttribute_t2314889077; // System.ComponentModel.ToolboxItemFilterAttribute struct ToolboxItemFilterAttribute_t2268705424; // System.ComponentModel.TypeConverter/SimplePropertyDescriptor struct SimplePropertyDescriptor_t872937162; // System.ComponentModel.TypeDescriptionProvider struct TypeDescriptionProvider_t4220413402; // System.ComponentModel.ICustomTypeDescriptor struct ICustomTypeDescriptor_t1470219817; // System.ComponentModel.TypeDescriptionProvider/EmptyCustomTypeDescriptor struct EmptyCustomTypeDescriptor_t3398936167; // System.ComponentModel.CustomTypeDescriptor struct CustomTypeDescriptor_t1811165357; // System.ComponentModel.TypeDescriptor struct TypeDescriptor_t4022761028; // System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>> struct Dictionary_2_t3039616987; // System.Collections.Generic.Dictionary`2<System.Object,System.Object> struct Dictionary_2_t1587060589; // System.ComponentModel.WeakObjectWrapperComparer struct WeakObjectWrapperComparer_t139211652; // System.Collections.Generic.Dictionary`2<System.ComponentModel.WeakObjectWrapper,System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>> struct Dictionary_2_t1504552994; // System.Collections.Generic.IEqualityComparer`1<System.ComponentModel.WeakObjectWrapper> struct IEqualityComparer_1_t170035456; // System.Collections.Generic.IEqualityComparer`1<System.Object> struct IEqualityComparer_1_t3261025994; // System.ComponentModel.TypeDescriptor/AttributeProvider struct AttributeProvider_t4079053818; // System.ComponentModel.WeakObjectWrapper struct WeakObjectWrapper_t3106754776; // System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider> struct LinkedList_1_t3169462053; // System.Collections.Generic.LinkedList`1<System.Object> struct LinkedList_1_t851826669; // System.Collections.Generic.LinkedListNode`1<System.ComponentModel.TypeDescriptionProvider> struct LinkedListNode_1_t1908715458; // System.Collections.Generic.LinkedListNode`1<System.Object> struct LinkedListNode_1_t3886047370; // System.ComponentModel.Design.IDesigner struct IDesigner_t2338047289; // System.ComponentModel.IComponent struct IComponent_t63236301; // System.ComponentModel.DesignerAttribute struct DesignerAttribute_t80198024; // System.ComponentModel.TypeInfo struct TypeInfo_t2535999846; // System.ComponentModel.ComponentInfo struct ComponentInfo_t3532183224; // System.ComponentModel.Info struct Info_t623560747; // System.ComponentModel.EventDescriptorCollection struct EventDescriptorCollection_t3861329784; // System.ComponentModel.TypeDescriptor/DefaultTypeDescriptionProvider struct DefaultTypeDescriptionProvider_t2206660091; // System.ComponentModel.TypeDescriptor/WrappedTypeDescriptionProvider struct WrappedTypeDescriptionProvider_t340192907; // System.ComponentModel.IComNativeDescriptorHandler struct IComNativeDescriptorHandler_t1153075423; // System.Reflection.Assembly struct Assembly_t2742862503; // System.Reflection.Module struct Module_t364935609; // System.ComponentModel.TypeDescriptor/AttributeProvider/AttributeTypeDescriptor struct AttributeTypeDescriptor_t1580723392; // System.ComponentModel.TypeDescriptor/DefaultTypeDescriptor struct DefaultTypeDescriptor_t772231057; // System.ComponentModel.EventDescriptor[] struct EventDescriptorU5BU5D_t1417302411; // System.ComponentModel.TypeListConverter struct TypeListConverter_t2803081238; // System.InvalidCastException struct InvalidCastException_t3691826219; // System.ComponentModel.UInt16Converter struct UInt16Converter_t3562571258; // System.ComponentModel.UInt32Converter struct UInt32Converter_t3695056532; // System.ComponentModel.UInt64Converter struct UInt64Converter_t3750379122; // System.WeakReference struct WeakReference_t2192111202; // System.Collections.Generic.EqualityComparer`1<System.ComponentModel.WeakObjectWrapper> struct EqualityComparer_1_t3900351378; // System.Collections.Generic.EqualityComparer`1<System.Object> struct EqualityComparer_1_t2696374620; // System.ComponentModel.Win32Exception struct Win32Exception_t789722284; // System.Runtime.InteropServices.ExternalException struct ExternalException_t1492600716; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t2260044969; // System.DefaultUriParser struct DefaultUriParser_t3234589343; // System.UriParser struct UriParser_t812050460; // System.Diagnostics.Stopwatch struct Stopwatch_t2576777071; // System.MonoNotSupportedAttribute struct MonoNotSupportedAttribute_t572674597; // System.MonoTODOAttribute struct MonoTODOAttribute_t952110849; // System.Net.Configuration.Dummy struct Dummy_t10600413; // System.Net.DefaultCertificatePolicy struct DefaultCertificatePolicy_t1503698831; // System.Net.ServicePoint struct ServicePoint_t236056219; // System.Security.Cryptography.X509Certificates.X509Certificate struct X509Certificate_t1566844445; // System.Net.WebRequest struct WebRequest_t294146427; // System.Net.Security.RemoteCertificateValidationCallback struct RemoteCertificateValidationCallback_t1272219315; // System.Net.IPHostEntry struct IPHostEntry_t1585536838; // System.Net.IPAddress struct IPAddress_t2830710878; // System.Net.Sockets.SocketException struct SocketException_t2171012343; // System.Net.IPAddress[] struct IPAddressU5BU5D_t3756700779; // System.Net.EndPoint struct EndPoint_t268181662; // System.Net.SocketAddress struct SocketAddress_t1723199846; // System.Net.FileWebRequest struct FileWebRequest_t734527143; // System.Uri struct Uri_t3882940875; // System.Net.WebHeaderCollection struct WebHeaderCollection_t3555365273; // System.Net.FileWebRequestCreator struct FileWebRequestCreator_t2184176962; // System.Net.FtpRequestCreator struct FtpRequestCreator_t2676413055; // System.Net.FtpWebRequest struct FtpWebRequest_t2481454041; // System.Net.IWebProxy struct IWebProxy_t2986465618; // System.Security.Cryptography.X509Certificates.X509Chain struct X509Chain_t2226602000; // System.InvalidOperationException struct InvalidOperationException_t94637358; // System.Net.HttpRequestCreator struct HttpRequestCreator_t852478564; // System.Net.HttpWebRequest struct HttpWebRequest_t546590891; // System.Version struct Version_t269959680; // System.UInt16[] struct UInt16U5BU5D_t1255862157; // System.Char[] struct CharU5BU5D_t1289681795; // System.Net.IPv6Address struct IPv6Address_t2007755840; // System.Byte[] struct ByteU5BU5D_t1709610627; // System.Net.IPEndPoint struct IPEndPoint_t1606333388; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_t1933742687; // System.Text.StringBuilder struct StringBuilder_t1723565765; // System.Collections.Specialized.HybridDictionary struct HybridDictionary_t979529962; // System.Net.ICertificatePolicy struct ICertificatePolicy_t119325593; // System.Net.ServicePointManager/SPKey struct SPKey_t3349994041; // System.Collections.SortedList struct SortedList_t1920303691; // System.Net.Sockets.LingerOption struct LingerOption_t1955249639; // System.Net.Sockets.Socket struct Socket_t2215831248; // System.Collections.Queue struct Queue_t4072794599; // System.ObjectDisposedException struct ObjectDisposedException_t3257614166; // System.Security.SecurityException struct SecurityException_t3040899540; // System.Threading.Thread struct Thread_t3102188359; // System.Collections.Specialized.NameValueCollection struct NameValueCollection_t1416237248; // System.Collections.CaseInsensitiveHashCodeProvider struct CaseInsensitiveHashCodeProvider_t1153736937; // System.Collections.CaseInsensitiveComparer struct CaseInsensitiveComparer_t2588724170; // System.Collections.IHashCodeProvider struct IHashCodeProvider_t2215748570; // System.StringComparer struct StringComparer_t3292076425; // System.Collections.Generic.Dictionary`2<System.String,System.Boolean> struct Dictionary_2_t120496167; // System.Collections.Generic.IEqualityComparer`1<System.String> struct IEqualityComparer_1_t2151653020; // System.Collections.Generic.Dictionary`2<System.Object,System.Boolean> struct Dictionary_2_t3132322689; // System.Collections.Specialized.NameObjectCollectionBase struct NameObjectCollectionBase_t1742866887; // System.Collections.Specialized.NameObjectCollectionBase/KeysCollection struct KeysCollection_t4017748511; // System.Net.WebProxy struct WebProxy_t234734190; // System.Net.ICredentials struct ICredentials_t84562376; // System.Text.RegularExpressions.Regex struct Regex_t2405265571; // System.MarshalByRefObject struct MarshalByRefObject_t3072832018; // System.Security.Cryptography.AsnEncodedData struct AsnEncodedData_t2501174634; // System.Security.Cryptography.Oid struct Oid_t1416572164; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> struct Dictionary_2_t2052754070; // System.Collections.Generic.Dictionary`2<System.Object,System.Int32> struct Dictionary_2_t769613296; // System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension struct X509BasicConstraintsExtension_t1207207255; // System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension struct X509EnhancedKeyUsageExtension_t778057432; // System.Security.Cryptography.X509Certificates.X509KeyUsageExtension struct X509KeyUsageExtension_t3246595939; // System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension struct X509SubjectKeyIdentifierExtension_t2831496947; // Mono.Security.ASN1 struct ASN1_t2575024487; // System.Text.Encoding struct Encoding_t3296442469; // System.Security.Cryptography.OidCollection struct OidCollection_t5760417; // System.Security.Cryptography.OidEnumerator struct OidEnumerator_t822741923; // System.Uri/UriScheme[] struct UriSchemeU5BU5D_t54737026; // System.Collections.Specialized.ListDictionary struct ListDictionary_t2786419366; // Mono.Security.X509.X509Certificate struct X509Certificate_t4279088682; // System.Int32[] struct Int32U5BU5D_t1883881640; // System.Collections.Generic.Link[] struct LinkU5BU5D_t3296134080; // System.ComponentModel.WeakObjectWrapper[] struct WeakObjectWrapperU5BU5D_t2849822921; // System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>[] struct LinkedList_1U5BU5D_t255256232; // System.Collections.Generic.Dictionary`2/Transform`1<System.ComponentModel.WeakObjectWrapper,System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>,System.Collections.DictionaryEntry> struct Transform_1_t3458351834; // System.Collections.Generic.IEqualityComparer`1<System.Type> struct IEqualityComparer_1_t4114979579; // System.Collections.Generic.Dictionary`2/Transform`1<System.Type,System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>,System.Collections.DictionaryEntry> struct Transform_1_t1004797981; // System.Runtime.Serialization.IFormatterConverter struct IFormatterConverter_t3740363851; // System.IntPtr[] struct IntPtrU5BU5D_t3954063252; // System.Collections.SortedList/Slot[] struct SlotU5BU5D_t519067178; // System.Collections.Generic.Dictionary`2/Transform`1<System.String,System.Int32,System.Collections.DictionaryEntry> struct Transform_1_t4271727638; // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_t134263170; // System.Globalization.TextInfo struct TextInfo_t3325201661; // System.Globalization.CompareInfo struct CompareInfo_t2430230067; // System.Globalization.Calendar[] struct CalendarU5BU5D_t2577269289; // System.Globalization.Calendar struct Calendar_t1655839480; // System.Int32 struct Int32_t1085330725; // System.Void struct Void_t326905757; // System.Runtime.Remoting.ServerIdentity struct ServerIdentity_t3782504052; // System.Text.DecoderFallback struct DecoderFallback_t4241880903; // System.Text.EncoderFallback struct EncoderFallback_t3150092088; // System.Collections.Hashtable/Slot[] struct SlotU5BU5D_t1822980323; // System.Collections.Hashtable/HashKeys struct HashKeys_t1701823832; // System.Collections.Hashtable/HashValues struct HashValues_t3999004706; // System.Collections.IEqualityComparer struct IEqualityComparer_t3582020708; // System.Boolean[] struct BooleanU5BU5D_t184022451; // System.Collections.Generic.Dictionary`2/Transform`1<System.String,System.Boolean,System.Collections.DictionaryEntry> struct Transform_1_t2571868449; // System.Collections.Specialized.NameObjectCollectionBase/_Item struct _Item_t1560808045; // System.Byte struct Byte_t2425511462; // System.Double struct Double_t3048689888; // System.UInt16 struct UInt16_t3519387236; // System.Reflection.EventInfo/AddEventAdapter struct AddEventAdapter_t2307394402; // System.Security.IPermission struct IPermission_t139809212; // System.Security.Policy.Evidence struct Evidence_t735161034; // System.DelegateData struct DelegateData_t4011653242; // System.Reflection.Assembly/ResolveEventHolder struct ResolveEventHolder_t369095770; // System.Security.PermissionSet struct PermissionSet_t1397146; // System.Reflection.Emit.UnmanagedMarshal struct UnmanagedMarshal_t4261945079; // System.Reflection.TypeFilter struct TypeFilter_t1745845478; // System.Reflection.MemberFilter struct MemberFilter_t1554259723; // System.Threading.ExecutionContext struct ExecutionContext_t8583059; // System.MulticastDelegate struct MulticastDelegate_t2442382558; // System.Security.Principal.IPrincipal struct IPrincipal_t2981286648; // System.Security.Cryptography.X509Certificates.X509ChainElementCollection struct X509ChainElementCollection_t1229866073; // System.Security.Cryptography.X509Certificates.X509ChainPolicy struct X509ChainPolicy_t1666388023; // System.Security.Cryptography.X509Certificates.X509ChainStatus[] struct X509ChainStatusU5BU5D_t1368334163; // System.Security.Cryptography.X509Certificates.X500DistinguishedName struct X500DistinguishedName_t820240265; // System.Security.Cryptography.AsymmetricAlgorithm struct AsymmetricAlgorithm_t4157331584; // System.Security.Cryptography.X509Certificates.X509ChainElement struct X509ChainElement_t3017060939; // System.Security.Cryptography.X509Certificates.X509Store struct X509Store_t3464236675; // System.Security.Cryptography.X509Certificates.X509Certificate2Collection struct X509Certificate2Collection_t3619406075; // System.Text.RegularExpressions.FactoryCache struct FactoryCache_t3594158732; // System.Text.RegularExpressions.IMachineFactory struct IMachineFactory_t581079150; // System.Security.Cryptography.X509Certificates.X509CertificateCollection struct X509CertificateCollection_t3808695127; extern RuntimeClass* MergablePropertyAttribute_t3224318606_il2cpp_TypeInfo_var; extern const uint32_t MergablePropertyAttribute__cctor_m3861808039_MetadataUsageId; extern const uint32_t MergablePropertyAttribute_Equals_m3373100257_MetadataUsageId; extern const uint32_t MergablePropertyAttribute_IsDefaultAttribute_m1664887222_MetadataUsageId; extern RuntimeClass* NotImplementedException_t682134635_il2cpp_TypeInfo_var; extern const uint32_t MultilineStringConverter_ConvertTo_m1636155888_MetadataUsageId; extern const uint32_t MultilineStringConverter_GetProperties_m1278860306_MetadataUsageId; extern const uint32_t MultilineStringConverter_GetPropertiesSupported_m3643911077_MetadataUsageId; extern RuntimeClass* NotifyParentPropertyAttribute_t178192121_il2cpp_TypeInfo_var; extern const uint32_t NotifyParentPropertyAttribute__cctor_m3294558172_MetadataUsageId; extern const uint32_t NotifyParentPropertyAttribute_Equals_m1635853362_MetadataUsageId; extern const uint32_t NotifyParentPropertyAttribute_IsDefaultAttribute_m2380369306_MetadataUsageId; extern RuntimeClass* ArgumentNullException_t873386607_il2cpp_TypeInfo_var; extern RuntimeClass* TypeDescriptor_t4022761028_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1371690706; extern const uint32_t NullableConverter__ctor_m2675798518_MetadataUsageId; extern RuntimeClass* String_t_il2cpp_TypeInfo_var; extern const uint32_t NullableConverter_ConvertFrom_m2489129077_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral4203514363; extern const uint32_t NullableConverter_ConvertTo_m3556550397_MetadataUsageId; extern RuntimeClass* ArrayList_t4277734320_il2cpp_TypeInfo_var; extern RuntimeClass* StandardValuesCollection_t884959189_il2cpp_TypeInfo_var; extern const uint32_t NullableConverter_GetStandardValues_m1861306264_MetadataUsageId; extern RuntimeClass* PasswordPropertyTextAttribute_t3646071524_il2cpp_TypeInfo_var; extern const uint32_t PasswordPropertyTextAttribute__cctor_m1342363729_MetadataUsageId; extern const uint32_t PasswordPropertyTextAttribute_Equals_m2062339233_MetadataUsageId; extern const uint32_t PasswordPropertyTextAttribute_IsDefaultAttribute_m3608088487_MetadataUsageId; extern RuntimeClass* EventArgs_t3326158294_il2cpp_TypeInfo_var; extern const uint32_t ProgressChangedEventArgs__ctor_m3049313393_MetadataUsageId; extern const uint32_t PropertyChangedEventArgs__ctor_m1946057289_MetadataUsageId; extern const RuntimeType* TypeConverterAttribute_t695735035_0_0_0_var; extern const RuntimeType* TypeConverter_t3595149642_0_0_0_var; extern RuntimeClass* Type_t_il2cpp_TypeInfo_var; extern RuntimeClass* TypeConverterAttribute_t695735035_il2cpp_TypeInfo_var; extern RuntimeClass* TypeConverter_t3595149642_il2cpp_TypeInfo_var; extern const uint32_t PropertyDescriptor_get_Converter_m2661309159_MetadataUsageId; extern RuntimeClass* LocalizableAttribute_t2753722371_il2cpp_TypeInfo_var; extern const uint32_t PropertyDescriptor_get_IsLocalizable_m1530108338_MetadataUsageId; extern RuntimeClass* DesignerSerializationVisibilityAttribute_t3410153364_il2cpp_TypeInfo_var; extern const uint32_t PropertyDescriptor_get_SerializationVisibility_m1858974999_MetadataUsageId; extern RuntimeClass* Hashtable_t448324601_il2cpp_TypeInfo_var; extern RuntimeClass* EventHandler_t1223794391_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral340364817; extern Il2CppCodeGenString* _stringLiteral915811739; extern const uint32_t PropertyDescriptor_AddValueChanged_m3641604278_MetadataUsageId; extern const uint32_t PropertyDescriptor_RemoveValueChanged_m377419575_MetadataUsageId; extern RuntimeClass* CustomTypeDescriptor_t1811165357_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4074451177; extern Il2CppCodeGenString* _stringLiteral2374827162; extern const uint32_t PropertyDescriptor_GetInvocationTarget_m1296012682_MetadataUsageId; extern const uint32_t PropertyDescriptor_GetValueChangedHandler_m3083673540_MetadataUsageId; extern const uint32_t PropertyDescriptor_OnValueChanged_m4046283467_MetadataUsageId; extern const RuntimeType* Type_t_0_0_0_var; extern RuntimeClass* TypeU5BU5D_t89919618_il2cpp_TypeInfo_var; extern RuntimeClass* ObjectU5BU5D_t4199014551_il2cpp_TypeInfo_var; extern const uint32_t PropertyDescriptor_CreateInstance_m1411741552_MetadataUsageId; extern RuntimeClass* PropertyDescriptor_t2555988069_il2cpp_TypeInfo_var; extern const uint32_t PropertyDescriptor_Equals_m2952062623_MetadataUsageId; extern const uint32_t PropertyDescriptor_GetChildProperties_m3516391685_MetadataUsageId; extern RuntimeClass* EditorAttribute_t3439099620_il2cpp_TypeInfo_var; extern const uint32_t PropertyDescriptor_GetEditor_m902956406_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral216392854; extern const uint32_t PropertyDescriptor_GetTypeFromName_m2169027273_MetadataUsageId; extern const uint32_t PropertyDescriptorCollection__ctor_m175848616_MetadataUsageId; extern RuntimeClass* PropertyDescriptorCollection_t2982717747_il2cpp_TypeInfo_var; extern const uint32_t PropertyDescriptorCollection__cctor_m2127392149_MetadataUsageId; extern const uint32_t PropertyDescriptorCollection_System_Collections_IList_Add_m3189680819_MetadataUsageId; extern RuntimeClass* ArgumentException_t1946723077_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1939629895; extern const uint32_t PropertyDescriptorCollection_System_Collections_IDictionary_Add_m742463398_MetadataUsageId; extern const uint32_t PropertyDescriptorCollection_System_Collections_IList_Contains_m3443102904_MetadataUsageId; extern const uint32_t PropertyDescriptorCollection_System_Collections_IDictionary_Contains_m73837269_MetadataUsageId; extern const uint32_t PropertyDescriptorCollection_System_Collections_IDictionary_GetEnumerator_m1926839451_MetadataUsageId; extern const uint32_t PropertyDescriptorCollection_System_Collections_IList_IndexOf_m1854268203_MetadataUsageId; extern const uint32_t PropertyDescriptorCollection_System_Collections_IList_Insert_m936344247_MetadataUsageId; extern const uint32_t PropertyDescriptorCollection_System_Collections_IDictionary_Remove_m1759435516_MetadataUsageId; extern const uint32_t PropertyDescriptorCollection_System_Collections_IList_Remove_m1286137197_MetadataUsageId; extern RuntimeClass* IList_t1481205421_il2cpp_TypeInfo_var; extern const uint32_t PropertyDescriptorCollection_System_Collections_IDictionary_get_IsFixedSize_m3353100512_MetadataUsageId; extern const uint32_t PropertyDescriptorCollection_System_Collections_IDictionary_get_IsReadOnly_m2022393380_MetadataUsageId; extern RuntimeClass* StringU5BU5D_t1187188029_il2cpp_TypeInfo_var; extern RuntimeClass* IEnumerator_t1868781825_il2cpp_TypeInfo_var; extern RuntimeClass* IDisposable_t3750220212_il2cpp_TypeInfo_var; extern const uint32_t PropertyDescriptorCollection_System_Collections_IDictionary_get_Keys_m4271611341_MetadataUsageId; extern RuntimeClass* ICollection_t2597392361_il2cpp_TypeInfo_var; extern const uint32_t PropertyDescriptorCollection_System_Collections_IDictionary_get_Values_m1089935682_MetadataUsageId; extern const uint32_t PropertyDescriptorCollection_System_Collections_IDictionary_get_Item_m122079940_MetadataUsageId; extern RuntimeClass* NotSupportedException_t2060369835_il2cpp_TypeInfo_var; extern const uint32_t PropertyDescriptorCollection_System_Collections_IDictionary_set_Item_m1097437721_MetadataUsageId; extern const uint32_t PropertyDescriptorCollection_System_Collections_IList_set_Item_m2005243043_MetadataUsageId; extern const uint32_t PropertyDescriptorCollection_Add_m3198021043_MetadataUsageId; extern const uint32_t PropertyDescriptorCollection_Clear_m2906248565_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral1001768650; extern const uint32_t PropertyDescriptorCollection_Find_m2814357737_MetadataUsageId; extern const uint32_t PropertyDescriptorCollection_Insert_m2348703070_MetadataUsageId; extern const uint32_t PropertyDescriptorCollection_Remove_m173340434_MetadataUsageId; extern const uint32_t PropertyDescriptorCollection_RemoveAt_m797429759_MetadataUsageId; extern const uint32_t PropertyDescriptorCollection_CloneCollection_m2678864866_MetadataUsageId; extern const RuntimeMethod* Array_IndexOf_TisString_t_m2004360725_RuntimeMethod_var; extern const uint32_t PropertyDescriptorCollection_ExtractItems_m494224890_MetadataUsageId; extern RuntimeClass* PropertyDescriptorU5BU5D_t2463291496_il2cpp_TypeInfo_var; extern const uint32_t PropertyDescriptorCollection_Filter_m1292742525_MetadataUsageId; extern const uint32_t PropertyDescriptorCollection_get_Item_m556665008_MetadataUsageId; extern RuntimeClass* ReadOnlyAttribute_t1832938840_il2cpp_TypeInfo_var; extern const uint32_t ReadOnlyAttribute__cctor_m245114436_MetadataUsageId; extern const uint32_t ReadOnlyAttribute_Equals_m3730980055_MetadataUsageId; extern const uint32_t ReadOnlyAttribute_IsDefaultAttribute_m2860330304_MetadataUsageId; extern RuntimeClass* RecommendedAsConfigurableAttribute_t2486032475_il2cpp_TypeInfo_var; extern const uint32_t RecommendedAsConfigurableAttribute__cctor_m1547614076_MetadataUsageId; extern const uint32_t RecommendedAsConfigurableAttribute_Equals_m3914849213_MetadataUsageId; extern const uint32_t RecommendedAsConfigurableAttribute_IsDefaultAttribute_m429313243_MetadataUsageId; extern const RuntimeType* String_t_0_0_0_var; extern const uint32_t ReferenceConverter_CanConvertFrom_m1210783849_MetadataUsageId; extern const RuntimeType* IReferenceService_t1989563918_0_0_0_var; extern RuntimeClass* IServiceProvider_t4067527398_il2cpp_TypeInfo_var; extern RuntimeClass* IReferenceService_t1989563918_il2cpp_TypeInfo_var; extern RuntimeClass* ITypeDescriptorContext_t4280479393_il2cpp_TypeInfo_var; extern RuntimeClass* IContainer_t3139755115_il2cpp_TypeInfo_var; extern const uint32_t ReferenceConverter_ConvertFrom_m4224761346_MetadataUsageId; extern RuntimeClass* IComponent_t63236301_il2cpp_TypeInfo_var; extern RuntimeClass* ISite_t2490093357_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral298487288; extern const uint32_t ReferenceConverter_ConvertTo_m1281719135_MetadataUsageId; extern const uint32_t ReferenceConverter_GetStandardValues_m3748980514_MetadataUsageId; extern RuntimeClass* AttributeU5BU5D_t187261448_il2cpp_TypeInfo_var; extern const uint32_t ReflectionEventDescriptor__ctor_m467625783_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral695646351; extern Il2CppCodeGenString* _stringLiteral1349820026; extern const uint32_t ReflectionEventDescriptor_GetEventInfo_m2686041103_MetadataUsageId; extern const uint32_t ReflectionEventDescriptor_AddEventHandler_m624489800_MetadataUsageId; extern const uint32_t ReflectionEventDescriptor_RemoveEventHandler_m1795844660_MetadataUsageId; extern RuntimeClass* ParameterModifierU5BU5D_t4226445516_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral29245246; extern const uint32_t ReflectionPropertyDescriptor_GetPropertyInfo_m3249063637_MetadataUsageId; extern const RuntimeType* ReadOnlyAttribute_t1832938840_0_0_0_var; extern const uint32_t ReflectionPropertyDescriptor_get_IsReadOnly_m426945808_MetadataUsageId; extern const RuntimeType* RuntimeObject_0_0_0_var; extern RuntimeClass* AttributeU5BU5DU5BU5D_t1480584409_il2cpp_TypeInfo_var; extern RuntimeClass* Attribute_t2739832645_il2cpp_TypeInfo_var; extern const uint32_t ReflectionPropertyDescriptor_FillAttributes_m1004820898_MetadataUsageId; extern const RuntimeType* IDesignerHost_t1144715669_0_0_0_var; extern const RuntimeType* IComponentChangeService_t2299312480_0_0_0_var; extern RuntimeClass* IDesignerHost_t1144715669_il2cpp_TypeInfo_var; extern RuntimeClass* IComponentChangeService_t2299312480_il2cpp_TypeInfo_var; extern const uint32_t ReflectionPropertyDescriptor_CreateTransaction_m3525575033_MetadataUsageId; extern RuntimeClass* PropertyChangedEventArgs_t483343543_il2cpp_TypeInfo_var; extern const uint32_t ReflectionPropertyDescriptor_EndTransaction_m2347500579_MetadataUsageId; extern const uint32_t ReflectionPropertyDescriptor_InitAccessors_m1784019371_MetadataUsageId; extern RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4185886925; extern Il2CppCodeGenString* _stringLiteral930442159; extern const uint32_t ReflectionPropertyDescriptor_SetValue_m1933222143_MetadataUsageId; extern const uint32_t ReflectionPropertyDescriptor_FindPropertyMethod_m3729960446_MetadataUsageId; extern const RuntimeType* DefaultValueAttribute_t1210082725_0_0_0_var; extern RuntimeClass* DefaultValueAttribute_t1210082725_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2626860551; extern Il2CppCodeGenString* _stringLiteral3414754624; extern const uint32_t ReflectionPropertyDescriptor_ResetValue_m366546061_MetadataUsageId; extern RuntimeClass* Boolean_t3448040118_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1554458804; extern Il2CppCodeGenString* _stringLiteral971996611; extern const uint32_t ReflectionPropertyDescriptor_CanResetValue_m3326184663_MetadataUsageId; extern const uint32_t ReflectionPropertyDescriptor_ShouldSerializeValue_m3309342119_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral1652782449; extern const uint32_t RefreshEventArgs__ctor_m2983157069_MetadataUsageId; extern const uint32_t RefreshEventArgs__ctor_m2829995138_MetadataUsageId; extern RuntimeClass* RefreshPropertiesAttribute_t720074670_il2cpp_TypeInfo_var; extern const uint32_t RefreshPropertiesAttribute__cctor_m12753827_MetadataUsageId; extern const uint32_t RefreshPropertiesAttribute_Equals_m3990079330_MetadataUsageId; extern RuntimeClass* RefreshProperties_t4103646669_il2cpp_TypeInfo_var; extern const uint32_t RefreshPropertiesAttribute_GetHashCode_m1055128670_MetadataUsageId; extern const uint32_t RefreshPropertiesAttribute_IsDefaultAttribute_m471504080_MetadataUsageId; extern const RuntimeType* SByte_t46020240_0_0_0_var; extern const uint32_t SByteConverter__ctor_m2330702641_MetadataUsageId; extern RuntimeClass* SByte_t46020240_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4225065365; extern const uint32_t SByteConverter_ConvertToString_m3253110235_MetadataUsageId; extern const uint32_t SByteConverter_ConvertFromString_m3990870987_MetadataUsageId; extern RuntimeClass* Convert_t666583334_il2cpp_TypeInfo_var; extern const uint32_t SByteConverter_ConvertFromString_m995539476_MetadataUsageId; extern const RuntimeType* Single_t318564439_0_0_0_var; extern const uint32_t SingleConverter__ctor_m1265787081_MetadataUsageId; extern RuntimeClass* Single_t318564439_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1416419149; extern const uint32_t SingleConverter_ConvertToString_m3288436896_MetadataUsageId; extern const uint32_t SingleConverter_ConvertFromString_m256781876_MetadataUsageId; extern const uint32_t StringConverter_CanConvertFrom_m2069526500_MetadataUsageId; extern const uint32_t StringConverter_ConvertFrom_m484211764_MetadataUsageId; extern const uint32_t TimeSpanConverter_CanConvertFrom_m3905730925_MetadataUsageId; extern const RuntimeType* InstanceDescriptor_t156299730_0_0_0_var; extern const uint32_t TimeSpanConverter_CanConvertTo_m2104130398_MetadataUsageId; extern RuntimeClass* TimeSpan_t1687785723_il2cpp_TypeInfo_var; extern RuntimeClass* FormatException_t3614201526_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral105496946; extern const uint32_t TimeSpanConverter_ConvertFrom_m1865129267_MetadataUsageId; extern const RuntimeType* TimeSpan_t1687785723_0_0_0_var; extern const RuntimeType* Int64_t2704468446_0_0_0_var; extern RuntimeClass* Int64_t2704468446_il2cpp_TypeInfo_var; extern RuntimeClass* InstanceDescriptor_t156299730_il2cpp_TypeInfo_var; extern const uint32_t TimeSpanConverter_ConvertTo_m3806968553_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral3844434689; extern const uint32_t ToolboxItemAttribute__ctor_m238509745_MetadataUsageId; extern RuntimeClass* ToolboxItemAttribute_t2314889077_il2cpp_TypeInfo_var; extern const uint32_t ToolboxItemAttribute__cctor_m3745560833_MetadataUsageId; extern RuntimeClass* Exception_t2428370182_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3066388512; extern const uint32_t ToolboxItemAttribute_get_ToolboxItemType_m1921205608_MetadataUsageId; extern const uint32_t ToolboxItemAttribute_get_ToolboxItemTypeName_m2802998196_MetadataUsageId; extern const uint32_t ToolboxItemAttribute_Equals_m3625837640_MetadataUsageId; extern const uint32_t ToolboxItemAttribute_IsDefaultAttribute_m2441415889_MetadataUsageId; extern const uint32_t ToolboxItemFilterAttribute_get_TypeId_m500222411_MetadataUsageId; extern RuntimeClass* ToolboxItemFilterAttribute_t2268705424_il2cpp_TypeInfo_var; extern const uint32_t ToolboxItemFilterAttribute_Equals_m40696254_MetadataUsageId; extern const uint32_t ToolboxItemFilterAttribute_Match_m1320938957_MetadataUsageId; extern RuntimeClass* ToolboxItemFilterType_t785669417_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1560121519; extern const uint32_t ToolboxItemFilterAttribute_ToString_m2524325177_MetadataUsageId; extern const uint32_t TypeConverter_CanConvertFrom_m2108188258_MetadataUsageId; extern const uint32_t TypeConverter_CanConvertTo_m2935786827_MetadataUsageId; extern RuntimeClass* CultureInfo_t270095993_il2cpp_TypeInfo_var; extern const uint32_t TypeConverter_ConvertFrom_m1997812589_MetadataUsageId; extern const uint32_t TypeConverter_ConvertFrom_m3891144487_MetadataUsageId; extern const uint32_t TypeConverter_ConvertFromInvariantString_m3779203635_MetadataUsageId; extern const uint32_t TypeConverter_ConvertFromString_m2519070902_MetadataUsageId; extern const uint32_t TypeConverter_ConvertTo_m4033528233_MetadataUsageId; extern const uint32_t TypeConverter_ConvertToInvariantString_m2521499702_MetadataUsageId; extern const uint32_t TypeConverter_ConvertToString_m1792988817_MetadataUsageId; extern const uint32_t TypeConverter_ConvertToString_m2607735342_MetadataUsageId; extern const uint32_t TypeConverter_ConvertToString_m1692650974_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral4291070997; extern Il2CppCodeGenString* _stringLiteral3022502976; extern const uint32_t TypeConverter_GetConvertFromException_m59689527_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral3338297576; extern const uint32_t TypeConverter_GetConvertToException_m3795797516_MetadataUsageId; extern RuntimeClass* BrowsableAttribute_t3900575337_il2cpp_TypeInfo_var; extern const uint32_t TypeConverter_GetProperties_m4083564014_MetadataUsageId; extern const uint32_t SimplePropertyDescriptor_get_IsReadOnly_m715712770_MetadataUsageId; extern const uint32_t SimplePropertyDescriptor_CanResetValue_m2340119228_MetadataUsageId; extern const uint32_t SimplePropertyDescriptor_ResetValue_m3680900444_MetadataUsageId; extern const uint32_t StandardValuesCollection_CopyTo_m3620071702_MetadataUsageId; extern RuntimeClass* IEnumerable_t2747605254_il2cpp_TypeInfo_var; extern const uint32_t StandardValuesCollection_GetEnumerator_m486923630_MetadataUsageId; extern const uint32_t StandardValuesCollection_get_Count_m2128744804_MetadataUsageId; extern const uint32_t StandardValuesCollection_get_Item_m776998117_MetadataUsageId; extern const uint32_t TypeConverterAttribute__ctor_m1309396276_MetadataUsageId; extern const uint32_t TypeConverterAttribute__cctor_m3799649907_MetadataUsageId; extern const uint32_t TypeConverterAttribute_Equals_m1815603453_MetadataUsageId; extern RuntimeClass* EmptyCustomTypeDescriptor_t3398936167_il2cpp_TypeInfo_var; extern const uint32_t TypeDescriptionProvider_GetExtendedTypeDescriptor_m3202192841_MetadataUsageId; extern RuntimeClass* ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var; extern const uint32_t TypeDescriptionProvider_GetFullComponentName_m1778673754_MetadataUsageId; extern const uint32_t TypeDescriptionProvider_GetReflectionType_m813969675_MetadataUsageId; extern const uint32_t TypeDescriptionProvider_GetTypeDescriptor_m2092826612_MetadataUsageId; extern const uint32_t TypeDescriptionProvider_GetTypeDescriptor_m3076123750_MetadataUsageId; extern RuntimeClass* Dictionary_2_t3039616987_il2cpp_TypeInfo_var; extern RuntimeClass* WeakObjectWrapperComparer_t139211652_il2cpp_TypeInfo_var; extern RuntimeClass* Dictionary_2_t1504552994_il2cpp_TypeInfo_var; extern const RuntimeMethod* Dictionary_2__ctor_m2978406208_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2__ctor_m3243990460_RuntimeMethod_var; extern const uint32_t TypeDescriptor__cctor_m1737660102_MetadataUsageId; extern RuntimeClass* RefreshEventHandler_t3510407695_il2cpp_TypeInfo_var; extern const uint32_t TypeDescriptor_add_Refreshed_m1260447110_MetadataUsageId; extern const uint32_t TypeDescriptor_remove_Refreshed_m1327840095_MetadataUsageId; extern const uint32_t TypeDescriptor_get_ComObjectType_m1891643124_MetadataUsageId; extern RuntimeClass* AttributeProvider_t4079053818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4163930351; extern const uint32_t TypeDescriptor_AddAttributes_m358181365_MetadataUsageId; extern const uint32_t TypeDescriptor_AddAttributes_m3528096134_MetadataUsageId; extern RuntimeClass* WeakObjectWrapper_t3106754776_il2cpp_TypeInfo_var; extern RuntimeClass* LinkedList_1_t3169462053_il2cpp_TypeInfo_var; extern const RuntimeMethod* Dictionary_2_TryGetValue_m2172175164_RuntimeMethod_var; extern const RuntimeMethod* LinkedList_1__ctor_m915351385_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_Add_m3047456897_RuntimeMethod_var; extern const RuntimeMethod* LinkedList_1_AddLast_m953928916_RuntimeMethod_var; extern Il2CppCodeGenString* _stringLiteral2562382105; extern const uint32_t TypeDescriptor_AddProvider_m3867577384_MetadataUsageId; extern const RuntimeMethod* Dictionary_2_TryGetValue_m3960761973_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_Add_m145337118_RuntimeMethod_var; extern const uint32_t TypeDescriptor_AddProvider_m2406393404_MetadataUsageId; extern const RuntimeType* TypeDescriptionProvider_t4220413402_0_0_0_var; extern RuntimeClass* TypeDescriptionProvider_t4220413402_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3387383357; extern const uint32_t TypeDescriptor_CreateInstance_m2864588923_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral3396830644; extern const uint32_t TypeDescriptor_AddEditorTable_m2820634221_MetadataUsageId; extern RuntimeClass* DesignerAttribute_t80198024_il2cpp_TypeInfo_var; extern RuntimeClass* IDesigner_t2338047289_il2cpp_TypeInfo_var; extern const uint32_t TypeDescriptor_CreateDesigner_m3151347092_MetadataUsageId; extern RuntimeClass* ReflectionEventDescriptor_t4023907121_il2cpp_TypeInfo_var; extern const uint32_t TypeDescriptor_CreateEvent_m516812875_MetadataUsageId; extern const uint32_t TypeDescriptor_CreateEvent_m1241101844_MetadataUsageId; extern RuntimeClass* ReflectionPropertyDescriptor_t1079221997_il2cpp_TypeInfo_var; extern const uint32_t TypeDescriptor_CreateProperty_m3948974360_MetadataUsageId; extern const uint32_t TypeDescriptor_CreateProperty_m820674424_MetadataUsageId; extern RuntimeClass* AttributeCollection_t3634739288_il2cpp_TypeInfo_var; extern const uint32_t TypeDescriptor_GetAttributes_m3292160618_MetadataUsageId; extern const uint32_t TypeDescriptor_GetAttributes_m3997682573_MetadataUsageId; extern const uint32_t TypeDescriptor_GetAttributes_m2157745829_MetadataUsageId; extern const uint32_t TypeDescriptor_GetClassName_m2115386293_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral837429277; extern const uint32_t TypeDescriptor_GetClassName_m1796385024_MetadataUsageId; extern const uint32_t TypeDescriptor_GetComponentName_m779859611_MetadataUsageId; extern const uint32_t TypeDescriptor_GetComponentName_m1710822790_MetadataUsageId; extern const uint32_t TypeDescriptor_GetFullComponentName_m51660660_MetadataUsageId; extern const uint32_t TypeDescriptor_GetClassName_m1496028753_MetadataUsageId; extern const uint32_t TypeDescriptor_GetConverter_m1283158768_MetadataUsageId; extern const uint32_t TypeDescriptor_GetConverter_m78243983_MetadataUsageId; extern const RuntimeType* Boolean_t3448040118_0_0_0_var; extern const RuntimeType* BooleanConverter_t1589643146_0_0_0_var; extern const RuntimeType* Byte_t2425511462_0_0_0_var; extern const RuntimeType* ByteConverter_t3629744255_0_0_0_var; extern const RuntimeType* SByteConverter_t3452734354_0_0_0_var; extern const RuntimeType* StringConverter_t482526816_0_0_0_var; extern const RuntimeType* Char_t1260920102_0_0_0_var; extern const RuntimeType* CharConverter_t2080589917_0_0_0_var; extern const RuntimeType* Int16_t2500022264_0_0_0_var; extern const RuntimeType* Int16Converter_t3165289742_0_0_0_var; extern const RuntimeType* Int32_t1085330725_0_0_0_var; extern const RuntimeType* Int32Converter_t3654231985_0_0_0_var; extern const RuntimeType* Int64Converter_t3057944203_0_0_0_var; extern const RuntimeType* UInt16_t3519387236_0_0_0_var; extern const RuntimeType* UInt16Converter_t3562571258_0_0_0_var; extern const RuntimeType* UInt32_t346688532_0_0_0_var; extern const RuntimeType* UInt32Converter_t3695056532_0_0_0_var; extern const RuntimeType* UInt64_t2584094171_0_0_0_var; extern const RuntimeType* UInt64Converter_t3750379122_0_0_0_var; extern const RuntimeType* SingleConverter_t842878517_0_0_0_var; extern const RuntimeType* Double_t3048689888_0_0_0_var; extern const RuntimeType* DoubleConverter_t735592635_0_0_0_var; extern const RuntimeType* Decimal_t1000909151_0_0_0_var; extern const RuntimeType* DecimalConverter_t1921806678_0_0_0_var; extern const RuntimeType* Void_t326905757_0_0_0_var; extern const RuntimeType* RuntimeArray_0_0_0_var; extern const RuntimeType* ArrayConverter_t4083728908_0_0_0_var; extern const RuntimeType* CultureInfo_t270095993_0_0_0_var; extern const RuntimeType* CultureInfoConverter_t1607822239_0_0_0_var; extern const RuntimeType* DateTime_t718238015_0_0_0_var; extern const RuntimeType* DateTimeConverter_t164509474_0_0_0_var; extern const RuntimeType* Guid_t_0_0_0_var; extern const RuntimeType* GuidConverter_t194305912_0_0_0_var; extern const RuntimeType* TimeSpanConverter_t1641375511_0_0_0_var; extern const RuntimeType* ICollection_t2597392361_0_0_0_var; extern const RuntimeType* CollectionConverter_t2779503739_0_0_0_var; extern const RuntimeType* Enum_t1784364487_0_0_0_var; extern const RuntimeType* EnumConverter_t1922667499_0_0_0_var; extern RuntimeClass* DictionaryEntry_t1848963796_il2cpp_TypeInfo_var; extern const uint32_t TypeDescriptor_get_DefaultConverters_m1945021735_MetadataUsageId; extern const uint32_t TypeDescriptor_GetConverter_m1561978434_MetadataUsageId; extern const RuntimeType* Nullable_1_t10106617_0_0_0_var; extern const RuntimeType* NullableConverter_t3128690719_0_0_0_var; extern const RuntimeType* ReferenceConverter_t3578457296_0_0_0_var; extern const uint32_t TypeDescriptor_FindDefaultConverterType_m2157367584_MetadataUsageId; extern const uint32_t TypeDescriptor_GetDefaultEvent_m1294039619_MetadataUsageId; extern const uint32_t TypeDescriptor_GetDefaultEvent_m4236178999_MetadataUsageId; extern const uint32_t TypeDescriptor_GetDefaultEvent_m1399767514_MetadataUsageId; extern const uint32_t TypeDescriptor_GetDefaultProperty_m753850378_MetadataUsageId; extern const uint32_t TypeDescriptor_GetDefaultProperty_m330125221_MetadataUsageId; extern const uint32_t TypeDescriptor_GetDefaultProperty_m1361939177_MetadataUsageId; extern const uint32_t TypeDescriptor_CreateEditor_m2228326398_MetadataUsageId; extern const uint32_t TypeDescriptor_FindEditorInTable_m103077439_MetadataUsageId; extern const RuntimeType* EditorAttribute_t3439099620_0_0_0_var; extern const uint32_t TypeDescriptor_GetEditor_m2456209240_MetadataUsageId; extern const uint32_t TypeDescriptor_GetEditor_m120062206_MetadataUsageId; extern const uint32_t TypeDescriptor_GetEditor_m1547543191_MetadataUsageId; extern const uint32_t TypeDescriptor_GetEvents_m3249818461_MetadataUsageId; extern const uint32_t TypeDescriptor_GetEvents_m1680772231_MetadataUsageId; extern const uint32_t TypeDescriptor_GetEvents_m3560964309_MetadataUsageId; extern const uint32_t TypeDescriptor_GetEvents_m189377188_MetadataUsageId; extern const uint32_t TypeDescriptor_GetEvents_m3586592604_MetadataUsageId; extern const uint32_t TypeDescriptor_GetEvents_m2388143899_MetadataUsageId; extern const uint32_t TypeDescriptor_GetProperties_m3855632957_MetadataUsageId; extern const uint32_t TypeDescriptor_GetProperties_m2295733264_MetadataUsageId; extern const uint32_t TypeDescriptor_GetProperties_m2849812490_MetadataUsageId; extern const uint32_t TypeDescriptor_GetProperties_m2048219527_MetadataUsageId; extern const uint32_t TypeDescriptor_GetProperties_m4060776569_MetadataUsageId; extern const uint32_t TypeDescriptor_GetProperties_m3032014321_MetadataUsageId; extern RuntimeClass* DefaultTypeDescriptionProvider_t2206660091_il2cpp_TypeInfo_var; extern RuntimeClass* WrappedTypeDescriptionProvider_t340192907_il2cpp_TypeInfo_var; extern const RuntimeMethod* LinkedList_1_get_Count_m2665033812_RuntimeMethod_var; extern const RuntimeMethod* LinkedList_1_get_Last_m1918679422_RuntimeMethod_var; extern const RuntimeMethod* LinkedListNode_1_get_Value_m167305195_RuntimeMethod_var; extern const uint32_t TypeDescriptor_GetProvider_m476155507_MetadataUsageId; extern const uint32_t TypeDescriptor_GetProvider_m514055783_MetadataUsageId; extern const uint32_t TypeDescriptor_GetReflectionType_m3117699804_MetadataUsageId; extern const uint32_t TypeDescriptor_GetReflectionType_m1140319855_MetadataUsageId; extern const uint32_t TypeDescriptor_CreateAssociation_m919081041_MetadataUsageId; extern const uint32_t TypeDescriptor_GetAssociation_m280838571_MetadataUsageId; extern const uint32_t TypeDescriptor_RemoveAssociation_m3630827682_MetadataUsageId; extern const uint32_t TypeDescriptor_RemoveAssociations_m1713977069_MetadataUsageId; extern RuntimeClass* RefreshEventArgs_t632686523_il2cpp_TypeInfo_var; extern const uint32_t TypeDescriptor_RemoveProvider_m881091021_MetadataUsageId; extern const uint32_t TypeDescriptor_RemoveProvider_m1301904550_MetadataUsageId; extern const RuntimeMethod* LinkedList_1_get_First_m2295245609_RuntimeMethod_var; extern const RuntimeMethod* LinkedList_1_Remove_m2525782714_RuntimeMethod_var; extern const RuntimeMethod* LinkedListNode_1_get_Previous_m2628299079_RuntimeMethod_var; extern const uint32_t TypeDescriptor_RemoveProvider_m736963711_MetadataUsageId; extern RuntimeClass* MemberDescriptor_t1331681536_il2cpp_TypeInfo_var; extern const RuntimeMethod* Array_Sort_TisString_t_TisRuntimeObject_m1572220042_RuntimeMethod_var; extern const uint32_t TypeDescriptor_SortDescriptorArray_m1802374424_MetadataUsageId; extern const uint32_t TypeDescriptor_get_ComNativeDescriptorHandler_m3554474020_MetadataUsageId; extern const uint32_t TypeDescriptor_set_ComNativeDescriptorHandler_m2078836892_MetadataUsageId; extern const uint32_t TypeDescriptor_Refresh_m3876033953_MetadataUsageId; extern const uint32_t TypeDescriptor_Refresh_m1293552710_MetadataUsageId; extern const uint32_t TypeDescriptor_Refresh_m2931561063_MetadataUsageId; extern const uint32_t TypeDescriptor_Refresh_m2947627068_MetadataUsageId; extern const uint32_t TypeDescriptor_OnComponentDisposed_m2067203398_MetadataUsageId; extern RuntimeClass* ComponentInfo_t3532183224_il2cpp_TypeInfo_var; extern const RuntimeMethod* TypeDescriptor_OnComponentDisposed_m2067203398_RuntimeMethod_var; extern const uint32_t TypeDescriptor_GetComponentInfo_m1529259269_MetadataUsageId; extern RuntimeClass* TypeInfo_t2535999846_il2cpp_TypeInfo_var; extern const uint32_t TypeDescriptor_GetTypeInfo_m1821580626_MetadataUsageId; extern const RuntimeType* ITypeResolutionService_t884935283_0_0_0_var; extern RuntimeClass* ITypeResolutionService_t884935283_il2cpp_TypeInfo_var; extern const uint32_t TypeDescriptor_GetTypeFromName_m4158908695_MetadataUsageId; extern RuntimeClass* AttributeTypeDescriptor_t1580723392_il2cpp_TypeInfo_var; extern const uint32_t AttributeProvider_GetTypeDescriptor_m2305897530_MetadataUsageId; extern const uint32_t AttributeTypeDescriptor_GetAttributes_m3403524333_MetadataUsageId; extern RuntimeClass* DefaultTypeDescriptor_t772231057_il2cpp_TypeInfo_var; extern const uint32_t DefaultTypeDescriptionProvider_GetExtendedTypeDescriptor_m2355966551_MetadataUsageId; extern const uint32_t DefaultTypeDescriptionProvider_GetTypeDescriptor_m3479117381_MetadataUsageId; extern const uint32_t DefaultTypeDescriptor_GetAttributes_m2071944542_MetadataUsageId; extern const uint32_t DefaultTypeDescriptor_GetClassName_m1439595607_MetadataUsageId; extern const uint32_t DefaultTypeDescriptor_GetDefaultProperty_m340132773_MetadataUsageId; extern const uint32_t DefaultTypeDescriptor_GetProperties_m2276003766_MetadataUsageId; extern const uint32_t WrappedTypeDescriptionProvider_GetExtendedTypeDescriptor_m221147950_MetadataUsageId; extern const uint32_t WrappedTypeDescriptionProvider_GetTypeDescriptor_m856238628_MetadataUsageId; extern RuntimeClass* EventDescriptorU5BU5D_t1417302411_il2cpp_TypeInfo_var; extern RuntimeClass* EventDescriptorCollection_t3861329784_il2cpp_TypeInfo_var; extern const uint32_t TypeInfo_GetEvents_m3818104159_MetadataUsageId; extern const RuntimeType* PropertyDescriptor_t2555988069_0_0_0_var; extern const uint32_t TypeInfo_GetProperties_m3931154491_MetadataUsageId; extern const uint32_t TypeListConverter_CanConvertFrom_m632547698_MetadataUsageId; extern const uint32_t TypeListConverter_CanConvertTo_m255010591_MetadataUsageId; extern RuntimeClass* InvalidCastException_t3691826219_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3819604108; extern const uint32_t TypeListConverter_ConvertTo_m388121268_MetadataUsageId; extern const uint32_t TypeListConverter_GetStandardValues_m3528946246_MetadataUsageId; extern const uint32_t UInt16Converter__ctor_m1925749699_MetadataUsageId; extern RuntimeClass* UInt16_t3519387236_il2cpp_TypeInfo_var; extern const uint32_t UInt16Converter_ConvertToString_m3025103605_MetadataUsageId; extern const uint32_t UInt16Converter_ConvertFromString_m2611186121_MetadataUsageId; extern const uint32_t UInt16Converter_ConvertFromString_m1635339137_MetadataUsageId; extern const uint32_t UInt32Converter__ctor_m3512414988_MetadataUsageId; extern RuntimeClass* UInt32_t346688532_il2cpp_TypeInfo_var; extern const uint32_t UInt32Converter_ConvertToString_m3749103007_MetadataUsageId; extern const uint32_t UInt32Converter_ConvertFromString_m4141490942_MetadataUsageId; extern const uint32_t UInt32Converter_ConvertFromString_m1533873073_MetadataUsageId; extern const uint32_t UInt64Converter__ctor_m2807917793_MetadataUsageId; extern RuntimeClass* UInt64_t2584094171_il2cpp_TypeInfo_var; extern const uint32_t UInt64Converter_ConvertToString_m1609957671_MetadataUsageId; extern const uint32_t UInt64Converter_ConvertFromString_m1309883064_MetadataUsageId; extern const uint32_t UInt64Converter_ConvertFromString_m2430593319_MetadataUsageId; extern RuntimeClass* WeakReference_t2192111202_il2cpp_TypeInfo_var; extern const uint32_t WeakObjectWrapper__ctor_m3552650423_MetadataUsageId; extern RuntimeClass* EqualityComparer_1_t3900351378_il2cpp_TypeInfo_var; extern const RuntimeMethod* EqualityComparer_1__ctor_m3443408297_RuntimeMethod_var; extern const uint32_t WeakObjectWrapperComparer__ctor_m2787707685_MetadataUsageId; extern RuntimeClass* Marshal_t2100713808_il2cpp_TypeInfo_var; extern const uint32_t Win32Exception__ctor_m56483155_MetadataUsageId; extern const uint32_t Win32Exception__ctor_m1075292849_MetadataUsageId; extern const uint32_t Win32Exception__ctor_m1346106023_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral2357758668; extern const uint32_t Win32Exception__ctor_m1389307655_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral3067937798; extern const uint32_t Win32Exception_GetObjectData_m1797727771_MetadataUsageId; extern RuntimeClass* UriParser_t812050460_il2cpp_TypeInfo_var; extern const uint32_t DefaultUriParser__ctor_m1685176556_MetadataUsageId; extern const uint32_t DefaultUriParser__ctor_m3335238549_MetadataUsageId; extern RuntimeClass* Console_t2004602029_il2cpp_TypeInfo_var; extern const uint32_t Debug_WriteLine_m3261821298_MetadataUsageId; extern RuntimeClass* Stopwatch_t2576777071_il2cpp_TypeInfo_var; extern const uint32_t Stopwatch__cctor_m2629391018_MetadataUsageId; extern const uint32_t Stopwatch_get_Elapsed_m3817606815_MetadataUsageId; extern const uint32_t Stopwatch_get_ElapsedMilliseconds_m2695790364_MetadataUsageId; extern const uint32_t Stopwatch_get_ElapsedTicks_m386717968_MetadataUsageId; extern const uint32_t Stopwatch_Start_m778980960_MetadataUsageId; extern const uint32_t Stopwatch_Stop_m2065977028_MetadataUsageId; extern RuntimeClass* ServicePointManager_t3846324623_il2cpp_TypeInfo_var; extern const uint32_t DefaultCertificatePolicy_CheckValidationResult_m24245227_MetadataUsageId; extern RuntimeClass* Socket_t2215831248_il2cpp_TypeInfo_var; extern const uint32_t Dns__cctor_m3546732851_MetadataUsageId; extern const RuntimeType* IPAddress_t2830710878_0_0_0_var; extern RuntimeClass* IPHostEntry_t1585536838_il2cpp_TypeInfo_var; extern RuntimeClass* IPAddress_t2830710878_il2cpp_TypeInfo_var; extern RuntimeClass* SocketException_t2171012343_il2cpp_TypeInfo_var; extern RuntimeClass* IPAddressU5BU5D_t3756700779_il2cpp_TypeInfo_var; extern const uint32_t Dns_hostent_to_IPHostEntry_m550634719_MetadataUsageId; extern RuntimeClass* Dns_t1916110264_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4123440306; extern Il2CppCodeGenString* _stringLiteral136145558; extern const uint32_t Dns_GetHostByAddressFromString_m1589502680_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral1821701796; extern Il2CppCodeGenString* _stringLiteral2205257458; extern Il2CppCodeGenString* _stringLiteral3888714694; extern const uint32_t Dns_GetHostEntry_m1144250075_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral3055831234; extern const uint32_t Dns_GetHostEntry_m1682641189_MetadataUsageId; extern const uint32_t Dns_GetHostAddresses_m2939178862_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral3079115443; extern const uint32_t Dns_GetHostByName_m978575555_MetadataUsageId; extern const uint32_t EndPoint_NotImplemented_m3815175566_MetadataUsageId; extern RuntimeClass* WebRequest_t294146427_il2cpp_TypeInfo_var; extern RuntimeClass* WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2509137387; extern const uint32_t FileWebRequest__ctor_m275703078_MetadataUsageId; extern const RuntimeType* WebHeaderCollection_t3555365273_0_0_0_var; extern const RuntimeType* IWebProxy_t2986465618_0_0_0_var; extern const RuntimeType* Uri_t3882940875_0_0_0_var; extern const RuntimeType* FileAccess_t1449903724_0_0_0_var; extern RuntimeClass* IWebProxy_t2986465618_il2cpp_TypeInfo_var; extern RuntimeClass* Uri_t3882940875_il2cpp_TypeInfo_var; extern RuntimeClass* Int32_t1085330725_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral839936504; extern Il2CppCodeGenString* _stringLiteral190309782; extern Il2CppCodeGenString* _stringLiteral2612727421; extern Il2CppCodeGenString* _stringLiteral2736546672; extern Il2CppCodeGenString* _stringLiteral2723246392; extern Il2CppCodeGenString* _stringLiteral2897867309; extern Il2CppCodeGenString* _stringLiteral3674026459; extern Il2CppCodeGenString* _stringLiteral3896524367; extern Il2CppCodeGenString* _stringLiteral3809982414; extern const uint32_t FileWebRequest__ctor_m1490254012_MetadataUsageId; extern RuntimeClass* FileAccess_t1449903724_il2cpp_TypeInfo_var; extern const uint32_t FileWebRequest_GetObjectData_m1566584744_MetadataUsageId; extern RuntimeClass* FileWebRequest_t734527143_il2cpp_TypeInfo_var; extern const uint32_t FileWebRequestCreator_Create_m3341862148_MetadataUsageId; extern RuntimeClass* FtpWebRequest_t2481454041_il2cpp_TypeInfo_var; extern const uint32_t FtpRequestCreator_Create_m3639297538_MetadataUsageId; extern RuntimeClass* RemoteCertificateValidationCallback_t1272219315_il2cpp_TypeInfo_var; extern const RuntimeMethod* FtpWebRequest_U3CcallbackU3Em__B_m1337392969_RuntimeMethod_var; extern Il2CppCodeGenString* _stringLiteral3619313060; extern const uint32_t FtpWebRequest__ctor_m3034724643_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral2348935864; extern Il2CppCodeGenString* _stringLiteral4112288356; extern Il2CppCodeGenString* _stringLiteral1946845219; extern Il2CppCodeGenString* _stringLiteral1595961858; extern Il2CppCodeGenString* _stringLiteral3031896939; extern Il2CppCodeGenString* _stringLiteral1757262481; extern Il2CppCodeGenString* _stringLiteral1883019485; extern Il2CppCodeGenString* _stringLiteral2233690061; extern Il2CppCodeGenString* _stringLiteral3448455629; extern Il2CppCodeGenString* _stringLiteral2543280923; extern Il2CppCodeGenString* _stringLiteral4046258818; extern Il2CppCodeGenString* _stringLiteral1949377983; extern const uint32_t FtpWebRequest__cctor_m3947729622_MetadataUsageId; extern RuntimeClass* SslPolicyErrors_t2196644362_il2cpp_TypeInfo_var; extern RuntimeClass* InvalidOperationException_t94637358_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1332291575; extern const uint32_t FtpWebRequest_U3CcallbackU3Em__B_m1337392969_MetadataUsageId; extern const uint32_t GlobalProxySelection_get_Select_m121130108_MetadataUsageId; extern RuntimeClass* HttpWebRequest_t546590891_il2cpp_TypeInfo_var; extern const uint32_t HttpRequestCreator_Create_m1359982715_MetadataUsageId; extern RuntimeClass* Version_t269959680_il2cpp_TypeInfo_var; extern RuntimeClass* HttpVersion_t1323918900_il2cpp_TypeInfo_var; extern const uint32_t HttpVersion__cctor_m2444029544_MetadataUsageId; extern const uint32_t HttpWebRequest__ctor_m3249692819_MetadataUsageId; extern const RuntimeType* X509CertificateCollection_t3808695127_0_0_0_var; extern const RuntimeType* Version_t269959680_0_0_0_var; extern RuntimeClass* X509CertificateCollection_t3808695127_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral835297980; extern Il2CppCodeGenString* _stringLiteral2080548866; extern Il2CppCodeGenString* _stringLiteral479993712; extern Il2CppCodeGenString* _stringLiteral2265734715; extern Il2CppCodeGenString* _stringLiteral2620571223; extern Il2CppCodeGenString* _stringLiteral3106254525; extern Il2CppCodeGenString* _stringLiteral3303761322; extern Il2CppCodeGenString* _stringLiteral3758605544; extern Il2CppCodeGenString* _stringLiteral1458798883; extern Il2CppCodeGenString* _stringLiteral1961700812; extern Il2CppCodeGenString* _stringLiteral954666166; extern Il2CppCodeGenString* _stringLiteral2208733333; extern Il2CppCodeGenString* _stringLiteral1795378766; extern Il2CppCodeGenString* _stringLiteral86029165; extern Il2CppCodeGenString* _stringLiteral3687977956; extern const uint32_t HttpWebRequest__ctor_m691814463_MetadataUsageId; extern const uint32_t HttpWebRequest__cctor_m1029007456_MetadataUsageId; extern const uint32_t HttpWebRequest_GetServicePoint_m1588434857_MetadataUsageId; extern const uint32_t HttpWebRequest_GetObjectData_m2943994912_MetadataUsageId; extern const uint32_t IPAddress__ctor_m809365054_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral3469916976; extern Il2CppCodeGenString* _stringLiteral3983943931; extern Il2CppCodeGenString* _stringLiteral28310375; extern const uint32_t IPAddress__cctor_m3249259330_MetadataUsageId; extern RuntimeClass* BitConverter_t1877775590_il2cpp_TypeInfo_var; extern const uint32_t IPAddress_HostToNetworkOrder_m2436850084_MetadataUsageId; extern const uint32_t IPAddress_NetworkToHostOrder_m2003899271_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral1026825319; extern const uint32_t IPAddress_Parse_m3708738621_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral53441942; extern const uint32_t IPAddress_TryParse_m442898607_MetadataUsageId; extern RuntimeClass* CharU5BU5D_t1289681795_il2cpp_TypeInfo_var; extern const uint32_t IPAddress_ParseIPV4_m1096964376_MetadataUsageId; extern RuntimeClass* IPv6Address_t2007755840_il2cpp_TypeInfo_var; extern const uint32_t IPAddress_ParseIPV6_m3353368636_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral3628454748; extern const uint32_t IPAddress_get_ScopeId_m1130465158_MetadataUsageId; extern RuntimeClass* ByteU5BU5D_t1709610627_il2cpp_TypeInfo_var; extern const uint32_t IPAddress_GetAddressBytes_m879949174_MetadataUsageId; extern const uint32_t IPAddress_IsLoopback_m1557316953_MetadataUsageId; extern RuntimeClass* UInt16U5BU5D_t1255862157_il2cpp_TypeInfo_var; extern const uint32_t IPAddress_ToString_m3105633789_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral2446711370; extern const uint32_t IPAddress_ToString_m1586858173_MetadataUsageId; extern const uint32_t IPAddress_Equals_m2466391492_MetadataUsageId; extern const uint32_t IPAddress_GetHashCode_m1473698286_MetadataUsageId; extern const uint32_t IPEndPoint__ctor_m3582815052_MetadataUsageId; extern const uint32_t IPEndPoint__ctor_m234162846_MetadataUsageId; extern RuntimeClass* ArgumentOutOfRangeException_t1933742687_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral266066983; extern const uint32_t IPEndPoint_set_Port_m2730216019_MetadataUsageId; extern RuntimeClass* AddressFamily_t2568691419_il2cpp_TypeInfo_var; extern RuntimeClass* IPEndPoint_t1606333388_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3197232329; extern Il2CppCodeGenString* _stringLiteral1614726381; extern Il2CppCodeGenString* _stringLiteral2979464242; extern Il2CppCodeGenString* _stringLiteral2561854441; extern const uint32_t IPEndPoint_Create_m3640247052_MetadataUsageId; extern RuntimeClass* SocketAddress_t1723199846_il2cpp_TypeInfo_var; extern const uint32_t IPEndPoint_Serialize_m452470281_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral1709538064; extern const uint32_t IPEndPoint_ToString_m1161305987_MetadataUsageId; extern const uint32_t IPEndPoint_Equals_m2937983491_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral1631562470; extern const uint32_t IPv6Address__ctor_m3006175894_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral4108421969; extern const uint32_t IPv6Address__ctor_m1240619628_MetadataUsageId; extern const uint32_t IPv6Address__cctor_m1093026902_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral1965827863; extern const uint32_t IPv6Address_Parse_m428862144_MetadataUsageId; extern const uint32_t IPv6Address_Fill_m1519478767_MetadataUsageId; extern const uint32_t IPv6Address_TryParse_m2575875235_MetadataUsageId; extern const uint32_t IPv6Address_TryParse_m412911054_MetadataUsageId; extern const uint32_t IPv6Address_AsIPv4Int_m3403158558_MetadataUsageId; extern RuntimeClass* StringBuilder_t1723565765_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral471998336; extern Il2CppCodeGenString* _stringLiteral3205777717; extern const uint32_t IPv6Address_ToString_m2361350363_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral561203680; extern Il2CppCodeGenString* _stringLiteral915985749; extern const uint32_t IPv6Address_ToString_m1804056033_MetadataUsageId; extern const uint32_t IPv6Address_Equals_m368438164_MetadataUsageId; extern const uint32_t IPv6Address_GetHashCode_m1495016379_MetadataUsageId; extern const uint32_t RemoteCertificateValidationCallback_BeginInvoke_m107378189_MetadataUsageId; extern RuntimeClass* DateTime_t718238015_il2cpp_TypeInfo_var; extern const uint32_t ServicePoint__ctor_m2304191186_MetadataUsageId; extern const uint32_t ServicePoint_get_AvailableForRecycling_m3985306945_MetadataUsageId; extern RuntimeClass* HybridDictionary_t979529962_il2cpp_TypeInfo_var; extern RuntimeClass* DefaultCertificatePolicy_t1503698831_il2cpp_TypeInfo_var; extern const uint32_t ServicePointManager__cctor_m4121702741_MetadataUsageId; extern const uint32_t ServicePointManager_get_CertificatePolicy_m2813576596_MetadataUsageId; extern const uint32_t ServicePointManager_get_CheckCertificateRevocationList_m4176280233_MetadataUsageId; extern const uint32_t ServicePointManager_get_SecurityProtocol_m3855581775_MetadataUsageId; extern const uint32_t ServicePointManager_get_ServerCertificateValidationCallback_m4196527332_MetadataUsageId; extern RuntimeClass* SPKey_t3349994041_il2cpp_TypeInfo_var; extern RuntimeClass* ServicePoint_t236056219_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2062134826; extern Il2CppCodeGenString* _stringLiteral1039860677; extern Il2CppCodeGenString* _stringLiteral1020944282; extern Il2CppCodeGenString* _stringLiteral3654256111; extern Il2CppCodeGenString* _stringLiteral25449621; extern const uint32_t ServicePointManager_FindServicePoint_m1468708084_MetadataUsageId; extern RuntimeClass* IDictionaryEnumerator_t322788009_il2cpp_TypeInfo_var; extern RuntimeClass* SortedList_t1920303691_il2cpp_TypeInfo_var; extern const uint32_t ServicePointManager_RecycleServicePoints_m1283083192_MetadataUsageId; extern const uint32_t SPKey_Equals_m2464472619_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral319129708; extern const uint32_t SocketAddress__ctor_m4256079279_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral3109069978; extern Il2CppCodeGenString* _stringLiteral1498376565; extern const uint32_t SocketAddress_ToString_m609448175_MetadataUsageId; extern const uint32_t SocketAddress_Equals_m2484038695_MetadataUsageId; extern RuntimeClass* Queue_t4072794599_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3583887622; extern const uint32_t Socket__ctor_m3106057280_MetadataUsageId; extern const uint32_t Socket__cctor_m2231911161_MetadataUsageId; extern RuntimeClass* ObjectDisposedException_t3257614166_il2cpp_TypeInfo_var; extern const uint32_t Socket_get_Available_m2005394896_MetadataUsageId; extern const uint32_t Socket_get_LocalEndPoint_m3262129616_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral4257605045; extern const uint32_t Socket_set_SendTimeout_m558889479_MetadataUsageId; extern const uint32_t Socket_set_ReceiveTimeout_m2589636163_MetadataUsageId; extern const uint32_t Socket_Connect_m3141256807_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral3972230722; extern Il2CppCodeGenString* _stringLiteral405511172; extern const uint32_t Socket_Connect_m2472886291_MetadataUsageId; extern const uint32_t Socket_Connect_m1217750559_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral1521189018; extern const uint32_t Socket_Poll_m1770499247_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral1271641039; extern const uint32_t Socket_Receive_m1503083361_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral1744649477; extern const uint32_t Socket_Receive_m2639921437_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral1642978228; extern Il2CppCodeGenString* _stringLiteral764373485; extern const uint32_t Socket_Receive_m1293184366_MetadataUsageId; extern RuntimeClass* SecurityException_t3040899540_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3946778570; extern Il2CppCodeGenString* _stringLiteral4182745582; extern const uint32_t Socket_ReceiveFrom_nochecks_exc_m580463546_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral3280645651; extern const uint32_t Socket_Send_m380207113_MetadataUsageId; extern const uint32_t Socket_Send_m770754013_MetadataUsageId; extern const uint32_t Socket_CheckProtocolSupport_m1096119766_MetadataUsageId; extern const uint32_t Socket_get_SupportsIPv4_m804629203_MetadataUsageId; extern const uint32_t Socket_get_SupportsIPv6_m4254163272_MetadataUsageId; extern const uint32_t Socket_set_NoDelay_m2313557363_MetadataUsageId; extern const uint32_t Socket_get_RemoteEndPoint_m3592710157_MetadataUsageId; extern RuntimeClass* LingerOption_t1955249639_il2cpp_TypeInfo_var; extern const uint32_t Socket_Linger_m3264146316_MetadataUsageId; extern const uint32_t Socket_Dispose_m1919124385_MetadataUsageId; extern const uint32_t Socket_Close_m3321357048_MetadataUsageId; extern const uint32_t Socket_Connect_internal_m2367322474_MetadataUsageId; extern const uint32_t Socket_Connect_internal_m3421818009_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral901683423; extern Il2CppCodeGenString* _stringLiteral667184968; extern const uint32_t Socket_CheckEndPoint_m892490345_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral2024136142; extern Il2CppCodeGenString* _stringLiteral2652833540; extern Il2CppCodeGenString* _stringLiteral1435022111; extern const uint32_t Socket_GetUnityCrossDomainHelperMethod_m303196429_MetadataUsageId; extern RuntimeClass* Thread_t3102188359_il2cpp_TypeInfo_var; extern RuntimeClass* ThreadAbortException_t2255830171_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2678028394; extern const uint32_t Socket_Connect_m3770920720_MetadataUsageId; extern const uint32_t Socket_Receive_nochecks_m2605287863_MetadataUsageId; extern const uint32_t Socket_Send_nochecks_m333970931_MetadataUsageId; extern RuntimeClass* MulticastOption_t267769071_il2cpp_TypeInfo_var; extern const uint32_t Socket_GetSocketOption_m2250061835_MetadataUsageId; extern const uint32_t Socket_SetSocketOption_m206373293_MetadataUsageId; extern RuntimeClass* SerializationException_t1084472723_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1911533953; extern Il2CppCodeGenString* _stringLiteral2324216545; extern Il2CppCodeGenString* _stringLiteral1009927320; extern Il2CppCodeGenString* _stringLiteral1667594372; extern const uint32_t WebHeaderCollection__ctor_m907116336_MetadataUsageId; extern RuntimeClass* BooleanU5BU5D_t184022451_il2cpp_TypeInfo_var; extern RuntimeClass* CaseInsensitiveHashCodeProvider_t1153736937_il2cpp_TypeInfo_var; extern RuntimeClass* CaseInsensitiveComparer_t2588724170_il2cpp_TypeInfo_var; extern RuntimeClass* StringComparer_t3292076425_il2cpp_TypeInfo_var; extern RuntimeClass* Dictionary_2_t120496167_il2cpp_TypeInfo_var; extern const RuntimeMethod* Dictionary_2__ctor_m1275257838_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_Add_m562197175_RuntimeMethod_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t3706520246____U24U24fieldU2D2_0_FieldInfo_var; extern Il2CppCodeGenString* _stringLiteral3856439155; extern Il2CppCodeGenString* _stringLiteral2354107953; extern Il2CppCodeGenString* _stringLiteral113791910; extern Il2CppCodeGenString* _stringLiteral2670134877; extern Il2CppCodeGenString* _stringLiteral1588550801; extern Il2CppCodeGenString* _stringLiteral2085779464; extern Il2CppCodeGenString* _stringLiteral1109505646; extern Il2CppCodeGenString* _stringLiteral1649166721; extern Il2CppCodeGenString* _stringLiteral1694016236; extern Il2CppCodeGenString* _stringLiteral246229162; extern Il2CppCodeGenString* _stringLiteral1313062740; extern Il2CppCodeGenString* _stringLiteral789279023; extern Il2CppCodeGenString* _stringLiteral3089027803; extern Il2CppCodeGenString* _stringLiteral684885993; extern Il2CppCodeGenString* _stringLiteral3398588934; extern Il2CppCodeGenString* _stringLiteral3492792528; extern Il2CppCodeGenString* _stringLiteral1691685178; extern Il2CppCodeGenString* _stringLiteral2362467865; extern Il2CppCodeGenString* _stringLiteral4065154328; extern Il2CppCodeGenString* _stringLiteral520074917; extern Il2CppCodeGenString* _stringLiteral1119712883; extern Il2CppCodeGenString* _stringLiteral1709511650; extern Il2CppCodeGenString* _stringLiteral3468215339; extern Il2CppCodeGenString* _stringLiteral2678089644; extern Il2CppCodeGenString* _stringLiteral2467366331; extern Il2CppCodeGenString* _stringLiteral113715573; extern Il2CppCodeGenString* _stringLiteral714402064; extern Il2CppCodeGenString* _stringLiteral84591582; extern Il2CppCodeGenString* _stringLiteral3842778059; extern Il2CppCodeGenString* _stringLiteral2497026984; extern Il2CppCodeGenString* _stringLiteral1623754138; extern Il2CppCodeGenString* _stringLiteral84257549; extern Il2CppCodeGenString* _stringLiteral2675151371; extern Il2CppCodeGenString* _stringLiteral2004130813; extern Il2CppCodeGenString* _stringLiteral2038848099; extern Il2CppCodeGenString* _stringLiteral2663766586; extern const uint32_t WebHeaderCollection__cctor_m1753140571_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral374482117; extern const uint32_t WebHeaderCollection_Add_m1118486195_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral2265282234; extern Il2CppCodeGenString* _stringLiteral2292233094; extern Il2CppCodeGenString* _stringLiteral940965989; extern Il2CppCodeGenString* _stringLiteral1646368410; extern const uint32_t WebHeaderCollection_AddWithoutValidate_m391413266_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral1427728537; extern Il2CppCodeGenString* _stringLiteral2674015978; extern const uint32_t WebHeaderCollection_IsRestricted_m1165393757_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral801661202; extern Il2CppCodeGenString* _stringLiteral3288804172; extern const uint32_t WebHeaderCollection_ToString_m4044152304_MetadataUsageId; extern const uint32_t WebHeaderCollection_GetObjectData_m1477692677_MetadataUsageId; extern const uint32_t WebHeaderCollection_IsHeaderName_m2786743463_MetadataUsageId; extern const uint32_t WebProxy__ctor_m3644851391_MetadataUsageId; extern const RuntimeType* ArrayList_t4277734320_0_0_0_var; extern Il2CppCodeGenString* _stringLiteral2175735794; extern Il2CppCodeGenString* _stringLiteral3498360290; extern Il2CppCodeGenString* _stringLiteral527848162; extern Il2CppCodeGenString* _stringLiteral693576673; extern const uint32_t WebProxy__ctor_m1973135428_MetadataUsageId; extern RuntimeClass* Regex_t2405265571_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3126353954; extern Il2CppCodeGenString* _stringLiteral115919490; extern const uint32_t WebProxy_IsBypassed_m367914737_MetadataUsageId; extern const uint32_t WebProxy_GetObjectData_m4174783663_MetadataUsageId; extern const uint32_t WebProxy_CheckBypassList_m1544871404_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral655412027; extern Il2CppCodeGenString* _stringLiteral2164328306; extern Il2CppCodeGenString* _stringLiteral1213298349; extern Il2CppCodeGenString* _stringLiteral1199502068; extern Il2CppCodeGenString* _stringLiteral1648531443; extern const uint32_t WebRequest__cctor_m3941683786_MetadataUsageId; extern const uint32_t WebRequest_System_Runtime_Serialization_ISerializable_GetObjectData_m1853895338_MetadataUsageId; extern const RuntimeType* WebRequest_t294146427_0_0_0_var; extern Il2CppCodeGenString* _stringLiteral758059268; extern const uint32_t WebRequest_AddDynamicPrefix_m411026550_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral403918440; extern const uint32_t WebRequest_GetMustImplement_m184024796_MetadataUsageId; extern const uint32_t WebRequest_get_DefaultWebProxy_m1954888778_MetadataUsageId; extern const uint32_t WebRequest_GetObjectData_m1630121127_MetadataUsageId; extern const uint32_t WebRequest_AddPrefix_m1190702954_MetadataUsageId; extern RuntimeClass* Oid_t1416572164_il2cpp_TypeInfo_var; extern const uint32_t AsnEncodedData__ctor_m2493478101_MetadataUsageId; extern const uint32_t AsnEncodedData_set_Oid_m3720899968_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral2143559327; extern const uint32_t AsnEncodedData_set_RawData_m3736237913_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral3899878418; extern const uint32_t AsnEncodedData_CopyFrom_m2874826303_MetadataUsageId; extern RuntimeClass* AsnEncodedData_t2501174634_il2cpp_TypeInfo_var; extern RuntimeClass* Dictionary_2_t2052754070_il2cpp_TypeInfo_var; extern const RuntimeMethod* Dictionary_2__ctor_m3230131747_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_Add_m3664665439_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_TryGetValue_m960735834_RuntimeMethod_var; extern Il2CppCodeGenString* _stringLiteral1638445413; extern Il2CppCodeGenString* _stringLiteral3268013603; extern Il2CppCodeGenString* _stringLiteral495262285; extern Il2CppCodeGenString* _stringLiteral1034484529; extern Il2CppCodeGenString* _stringLiteral1352213227; extern Il2CppCodeGenString* _stringLiteral3546303020; extern const uint32_t AsnEncodedData_ToString_m2572150612_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral4195304582; extern Il2CppCodeGenString* _stringLiteral2321571601; extern const uint32_t AsnEncodedData_Default_m3512740418_MetadataUsageId; extern RuntimeClass* X509BasicConstraintsExtension_t1207207255_il2cpp_TypeInfo_var; extern const uint32_t AsnEncodedData_BasicConstraintsExtension_m842585528_MetadataUsageId; extern RuntimeClass* X509EnhancedKeyUsageExtension_t778057432_il2cpp_TypeInfo_var; extern const uint32_t AsnEncodedData_EnhancedKeyUsageExtension_m1429011967_MetadataUsageId; extern RuntimeClass* X509KeyUsageExtension_t3246595939_il2cpp_TypeInfo_var; extern const uint32_t AsnEncodedData_KeyUsageExtension_m1744264604_MetadataUsageId; extern RuntimeClass* X509SubjectKeyIdentifierExtension_t2831496947_il2cpp_TypeInfo_var; extern const uint32_t AsnEncodedData_SubjectKeyIdentifierExtension_m2277791034_MetadataUsageId; extern RuntimeClass* ASN1_t2575024487_il2cpp_TypeInfo_var; extern RuntimeClass* Encoding_t3296442469_il2cpp_TypeInfo_var; extern RuntimeClass* Byte_t2425511462_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral470798357; extern Il2CppCodeGenString* _stringLiteral1296185833; extern Il2CppCodeGenString* _stringLiteral4128937602; extern Il2CppCodeGenString* _stringLiteral184100245; extern Il2CppCodeGenString* _stringLiteral3242900561; extern const uint32_t AsnEncodedData_SubjectAltName_m2045235003_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral3977524714; extern Il2CppCodeGenString* _stringLiteral1171817006; extern Il2CppCodeGenString* _stringLiteral2780200989; extern Il2CppCodeGenString* _stringLiteral826182503; extern Il2CppCodeGenString* _stringLiteral854467961; extern Il2CppCodeGenString* _stringLiteral1249481975; extern Il2CppCodeGenString* _stringLiteral3042973264; extern Il2CppCodeGenString* _stringLiteral1703926674; extern Il2CppCodeGenString* _stringLiteral1402432105; extern const uint32_t AsnEncodedData_NetscapeCertType_m4094850323_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral3497942821; extern const uint32_t Oid__ctor_m2480021574_MetadataUsageId; extern const uint32_t Oid__ctor_m3313774207_MetadataUsageId; extern Il2CppCodeGenString* _stringLiteral4019210925; extern Il2CppCodeGenString* _stringLiteral488937476; extern Il2CppCodeGenString* _stringLiteral3862928724; extern Il2CppCodeGenString* _stringLiteral1447724389; extern Il2CppCodeGenString* _stringLiteral2463128351; extern Il2CppCodeGenString* _stringLiteral4048148019; extern Il2CppCodeGenString* _stringLiteral4062822888; extern Il2CppCodeGenString* _stringLiteral1232705382; extern Il2CppCodeGenString* _stringLiteral879538509; extern Il2CppCodeGenString* _stringLiteral3680393469; extern Il2CppCodeGenString* _stringLiteral599206045; extern Il2CppCodeGenString* _stringLiteral984218199; extern Il2CppCodeGenString* _stringLiteral2700609637; extern Il2CppCodeGenString* _stringLiteral3253380901; extern Il2CppCodeGenString* _stringLiteral511059956; extern Il2CppCodeGenString* _stringLiteral3876656434; extern Il2CppCodeGenString* _stringLiteral2590468587; extern Il2CppCodeGenString* _stringLiteral4030284121; extern Il2CppCodeGenString* _stringLiteral3021269014; extern Il2CppCodeGenString* _stringLiteral3592138753; extern Il2CppCodeGenString* _stringLiteral4288834412; extern Il2CppCodeGenString* _stringLiteral3809453991; extern const uint32_t Oid_GetName_m490454385_MetadataUsageId; extern const uint32_t OidCollection__ctor_m104153985_MetadataUsageId; extern RuntimeClass* OidEnumerator_t822741923_il2cpp_TypeInfo_var; extern const uint32_t OidCollection_System_Collections_IEnumerable_GetEnumerator_m2491830106_MetadataUsageId; extern const uint32_t OidCollection_get_Item_m1837888684_MetadataUsageId; extern const uint32_t OidEnumerator_System_Collections_IEnumerator_get_Current_m634557982_MetadataUsageId; struct AttributeU5BU5D_t187261448; struct TypeU5BU5D_t89919618; struct ObjectU5BU5D_t4199014551; struct PropertyDescriptorU5BU5D_t2463291496; struct StringU5BU5D_t1187188029; struct ParameterModifierU5BU5D_t4226445516; struct AttributeU5BU5DU5BU5D_t1480584409; struct MethodInfoU5BU5D_t2289520024; struct ParameterInfoU5BU5D_t3157369927; struct EventInfoU5BU5D_t4034732639; struct EventDescriptorU5BU5D_t1417302411; struct PropertyInfoU5BU5D_t411061045; struct IPAddressU5BU5D_t3756700779; struct UInt16U5BU5D_t1255862157; struct CharU5BU5D_t1289681795; struct ByteU5BU5D_t1709610627; struct BooleanU5BU5D_t184022451; #ifndef RUNTIMEOBJECT_H #define RUNTIMEOBJECT_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEOBJECT_H struct Il2CppArrayBounds; #ifndef RUNTIMEARRAY_H #define RUNTIMEARRAY_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEARRAY_H #ifndef SOCKETADDRESS_T1723199846_H #define SOCKETADDRESS_T1723199846_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.SocketAddress struct SocketAddress_t1723199846 : public RuntimeObject { public: // System.Byte[] System.Net.SocketAddress::data ByteU5BU5D_t1709610627* ___data_0; public: inline static int32_t get_offset_of_data_0() { return static_cast<int32_t>(offsetof(SocketAddress_t1723199846, ___data_0)); } inline ByteU5BU5D_t1709610627* get_data_0() const { return ___data_0; } inline ByteU5BU5D_t1709610627** get_address_of_data_0() { return &___data_0; } inline void set_data_0(ByteU5BU5D_t1709610627* value) { ___data_0 = value; Il2CppCodeGenWriteBarrier((&___data_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SOCKETADDRESS_T1723199846_H #ifndef URI_T3882940875_H #define URI_T3882940875_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Uri struct Uri_t3882940875 : public RuntimeObject { public: // System.Boolean System.Uri::isUnixFilePath bool ___isUnixFilePath_0; // System.String System.Uri::source String_t* ___source_1; // System.String System.Uri::scheme String_t* ___scheme_2; // System.String System.Uri::host String_t* ___host_3; // System.Int32 System.Uri::port int32_t ___port_4; // System.String System.Uri::path String_t* ___path_5; // System.String System.Uri::query String_t* ___query_6; // System.String System.Uri::fragment String_t* ___fragment_7; // System.String System.Uri::userinfo String_t* ___userinfo_8; // System.Boolean System.Uri::isUnc bool ___isUnc_9; // System.Boolean System.Uri::isOpaquePart bool ___isOpaquePart_10; // System.Boolean System.Uri::isAbsoluteUri bool ___isAbsoluteUri_11; // System.Boolean System.Uri::userEscaped bool ___userEscaped_12; // System.String System.Uri::cachedAbsoluteUri String_t* ___cachedAbsoluteUri_13; // System.String System.Uri::cachedToString String_t* ___cachedToString_14; // System.Int32 System.Uri::cachedHashCode int32_t ___cachedHashCode_15; // System.UriParser System.Uri::parser UriParser_t812050460 * ___parser_29; public: inline static int32_t get_offset_of_isUnixFilePath_0() { return static_cast<int32_t>(offsetof(Uri_t3882940875, ___isUnixFilePath_0)); } inline bool get_isUnixFilePath_0() const { return ___isUnixFilePath_0; } inline bool* get_address_of_isUnixFilePath_0() { return &___isUnixFilePath_0; } inline void set_isUnixFilePath_0(bool value) { ___isUnixFilePath_0 = value; } inline static int32_t get_offset_of_source_1() { return static_cast<int32_t>(offsetof(Uri_t3882940875, ___source_1)); } inline String_t* get_source_1() const { return ___source_1; } inline String_t** get_address_of_source_1() { return &___source_1; } inline void set_source_1(String_t* value) { ___source_1 = value; Il2CppCodeGenWriteBarrier((&___source_1), value); } inline static int32_t get_offset_of_scheme_2() { return static_cast<int32_t>(offsetof(Uri_t3882940875, ___scheme_2)); } inline String_t* get_scheme_2() const { return ___scheme_2; } inline String_t** get_address_of_scheme_2() { return &___scheme_2; } inline void set_scheme_2(String_t* value) { ___scheme_2 = value; Il2CppCodeGenWriteBarrier((&___scheme_2), value); } inline static int32_t get_offset_of_host_3() { return static_cast<int32_t>(offsetof(Uri_t3882940875, ___host_3)); } inline String_t* get_host_3() const { return ___host_3; } inline String_t** get_address_of_host_3() { return &___host_3; } inline void set_host_3(String_t* value) { ___host_3 = value; Il2CppCodeGenWriteBarrier((&___host_3), value); } inline static int32_t get_offset_of_port_4() { return static_cast<int32_t>(offsetof(Uri_t3882940875, ___port_4)); } inline int32_t get_port_4() const { return ___port_4; } inline int32_t* get_address_of_port_4() { return &___port_4; } inline void set_port_4(int32_t value) { ___port_4 = value; } inline static int32_t get_offset_of_path_5() { return static_cast<int32_t>(offsetof(Uri_t3882940875, ___path_5)); } inline String_t* get_path_5() const { return ___path_5; } inline String_t** get_address_of_path_5() { return &___path_5; } inline void set_path_5(String_t* value) { ___path_5 = value; Il2CppCodeGenWriteBarrier((&___path_5), value); } inline static int32_t get_offset_of_query_6() { return static_cast<int32_t>(offsetof(Uri_t3882940875, ___query_6)); } inline String_t* get_query_6() const { return ___query_6; } inline String_t** get_address_of_query_6() { return &___query_6; } inline void set_query_6(String_t* value) { ___query_6 = value; Il2CppCodeGenWriteBarrier((&___query_6), value); } inline static int32_t get_offset_of_fragment_7() { return static_cast<int32_t>(offsetof(Uri_t3882940875, ___fragment_7)); } inline String_t* get_fragment_7() const { return ___fragment_7; } inline String_t** get_address_of_fragment_7() { return &___fragment_7; } inline void set_fragment_7(String_t* value) { ___fragment_7 = value; Il2CppCodeGenWriteBarrier((&___fragment_7), value); } inline static int32_t get_offset_of_userinfo_8() { return static_cast<int32_t>(offsetof(Uri_t3882940875, ___userinfo_8)); } inline String_t* get_userinfo_8() const { return ___userinfo_8; } inline String_t** get_address_of_userinfo_8() { return &___userinfo_8; } inline void set_userinfo_8(String_t* value) { ___userinfo_8 = value; Il2CppCodeGenWriteBarrier((&___userinfo_8), value); } inline static int32_t get_offset_of_isUnc_9() { return static_cast<int32_t>(offsetof(Uri_t3882940875, ___isUnc_9)); } inline bool get_isUnc_9() const { return ___isUnc_9; } inline bool* get_address_of_isUnc_9() { return &___isUnc_9; } inline void set_isUnc_9(bool value) { ___isUnc_9 = value; } inline static int32_t get_offset_of_isOpaquePart_10() { return static_cast<int32_t>(offsetof(Uri_t3882940875, ___isOpaquePart_10)); } inline bool get_isOpaquePart_10() const { return ___isOpaquePart_10; } inline bool* get_address_of_isOpaquePart_10() { return &___isOpaquePart_10; } inline void set_isOpaquePart_10(bool value) { ___isOpaquePart_10 = value; } inline static int32_t get_offset_of_isAbsoluteUri_11() { return static_cast<int32_t>(offsetof(Uri_t3882940875, ___isAbsoluteUri_11)); } inline bool get_isAbsoluteUri_11() const { return ___isAbsoluteUri_11; } inline bool* get_address_of_isAbsoluteUri_11() { return &___isAbsoluteUri_11; } inline void set_isAbsoluteUri_11(bool value) { ___isAbsoluteUri_11 = value; } inline static int32_t get_offset_of_userEscaped_12() { return static_cast<int32_t>(offsetof(Uri_t3882940875, ___userEscaped_12)); } inline bool get_userEscaped_12() const { return ___userEscaped_12; } inline bool* get_address_of_userEscaped_12() { return &___userEscaped_12; } inline void set_userEscaped_12(bool value) { ___userEscaped_12 = value; } inline static int32_t get_offset_of_cachedAbsoluteUri_13() { return static_cast<int32_t>(offsetof(Uri_t3882940875, ___cachedAbsoluteUri_13)); } inline String_t* get_cachedAbsoluteUri_13() const { return ___cachedAbsoluteUri_13; } inline String_t** get_address_of_cachedAbsoluteUri_13() { return &___cachedAbsoluteUri_13; } inline void set_cachedAbsoluteUri_13(String_t* value) { ___cachedAbsoluteUri_13 = value; Il2CppCodeGenWriteBarrier((&___cachedAbsoluteUri_13), value); } inline static int32_t get_offset_of_cachedToString_14() { return static_cast<int32_t>(offsetof(Uri_t3882940875, ___cachedToString_14)); } inline String_t* get_cachedToString_14() const { return ___cachedToString_14; } inline String_t** get_address_of_cachedToString_14() { return &___cachedToString_14; } inline void set_cachedToString_14(String_t* value) { ___cachedToString_14 = value; Il2CppCodeGenWriteBarrier((&___cachedToString_14), value); } inline static int32_t get_offset_of_cachedHashCode_15() { return static_cast<int32_t>(offsetof(Uri_t3882940875, ___cachedHashCode_15)); } inline int32_t get_cachedHashCode_15() const { return ___cachedHashCode_15; } inline int32_t* get_address_of_cachedHashCode_15() { return &___cachedHashCode_15; } inline void set_cachedHashCode_15(int32_t value) { ___cachedHashCode_15 = value; } inline static int32_t get_offset_of_parser_29() { return static_cast<int32_t>(offsetof(Uri_t3882940875, ___parser_29)); } inline UriParser_t812050460 * get_parser_29() const { return ___parser_29; } inline UriParser_t812050460 ** get_address_of_parser_29() { return &___parser_29; } inline void set_parser_29(UriParser_t812050460 * value) { ___parser_29 = value; Il2CppCodeGenWriteBarrier((&___parser_29), value); } }; struct Uri_t3882940875_StaticFields { public: // System.String System.Uri::hexUpperChars String_t* ___hexUpperChars_16; // System.String System.Uri::SchemeDelimiter String_t* ___SchemeDelimiter_17; // System.String System.Uri::UriSchemeFile String_t* ___UriSchemeFile_18; // System.String System.Uri::UriSchemeFtp String_t* ___UriSchemeFtp_19; // System.String System.Uri::UriSchemeGopher String_t* ___UriSchemeGopher_20; // System.String System.Uri::UriSchemeHttp String_t* ___UriSchemeHttp_21; // System.String System.Uri::UriSchemeHttps String_t* ___UriSchemeHttps_22; // System.String System.Uri::UriSchemeMailto String_t* ___UriSchemeMailto_23; // System.String System.Uri::UriSchemeNews String_t* ___UriSchemeNews_24; // System.String System.Uri::UriSchemeNntp String_t* ___UriSchemeNntp_25; // System.String System.Uri::UriSchemeNetPipe String_t* ___UriSchemeNetPipe_26; // System.String System.Uri::UriSchemeNetTcp String_t* ___UriSchemeNetTcp_27; // System.Uri/UriScheme[] System.Uri::schemes UriSchemeU5BU5D_t54737026* ___schemes_28; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Uri::<>f__switch$map14 Dictionary_2_t2052754070 * ___U3CU3Ef__switchU24map14_30; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Uri::<>f__switch$map15 Dictionary_2_t2052754070 * ___U3CU3Ef__switchU24map15_31; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Uri::<>f__switch$map16 Dictionary_2_t2052754070 * ___U3CU3Ef__switchU24map16_32; public: inline static int32_t get_offset_of_hexUpperChars_16() { return static_cast<int32_t>(offsetof(Uri_t3882940875_StaticFields, ___hexUpperChars_16)); } inline String_t* get_hexUpperChars_16() const { return ___hexUpperChars_16; } inline String_t** get_address_of_hexUpperChars_16() { return &___hexUpperChars_16; } inline void set_hexUpperChars_16(String_t* value) { ___hexUpperChars_16 = value; Il2CppCodeGenWriteBarrier((&___hexUpperChars_16), value); } inline static int32_t get_offset_of_SchemeDelimiter_17() { return static_cast<int32_t>(offsetof(Uri_t3882940875_StaticFields, ___SchemeDelimiter_17)); } inline String_t* get_SchemeDelimiter_17() const { return ___SchemeDelimiter_17; } inline String_t** get_address_of_SchemeDelimiter_17() { return &___SchemeDelimiter_17; } inline void set_SchemeDelimiter_17(String_t* value) { ___SchemeDelimiter_17 = value; Il2CppCodeGenWriteBarrier((&___SchemeDelimiter_17), value); } inline static int32_t get_offset_of_UriSchemeFile_18() { return static_cast<int32_t>(offsetof(Uri_t3882940875_StaticFields, ___UriSchemeFile_18)); } inline String_t* get_UriSchemeFile_18() const { return ___UriSchemeFile_18; } inline String_t** get_address_of_UriSchemeFile_18() { return &___UriSchemeFile_18; } inline void set_UriSchemeFile_18(String_t* value) { ___UriSchemeFile_18 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeFile_18), value); } inline static int32_t get_offset_of_UriSchemeFtp_19() { return static_cast<int32_t>(offsetof(Uri_t3882940875_StaticFields, ___UriSchemeFtp_19)); } inline String_t* get_UriSchemeFtp_19() const { return ___UriSchemeFtp_19; } inline String_t** get_address_of_UriSchemeFtp_19() { return &___UriSchemeFtp_19; } inline void set_UriSchemeFtp_19(String_t* value) { ___UriSchemeFtp_19 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeFtp_19), value); } inline static int32_t get_offset_of_UriSchemeGopher_20() { return static_cast<int32_t>(offsetof(Uri_t3882940875_StaticFields, ___UriSchemeGopher_20)); } inline String_t* get_UriSchemeGopher_20() const { return ___UriSchemeGopher_20; } inline String_t** get_address_of_UriSchemeGopher_20() { return &___UriSchemeGopher_20; } inline void set_UriSchemeGopher_20(String_t* value) { ___UriSchemeGopher_20 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeGopher_20), value); } inline static int32_t get_offset_of_UriSchemeHttp_21() { return static_cast<int32_t>(offsetof(Uri_t3882940875_StaticFields, ___UriSchemeHttp_21)); } inline String_t* get_UriSchemeHttp_21() const { return ___UriSchemeHttp_21; } inline String_t** get_address_of_UriSchemeHttp_21() { return &___UriSchemeHttp_21; } inline void set_UriSchemeHttp_21(String_t* value) { ___UriSchemeHttp_21 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeHttp_21), value); } inline static int32_t get_offset_of_UriSchemeHttps_22() { return static_cast<int32_t>(offsetof(Uri_t3882940875_StaticFields, ___UriSchemeHttps_22)); } inline String_t* get_UriSchemeHttps_22() const { return ___UriSchemeHttps_22; } inline String_t** get_address_of_UriSchemeHttps_22() { return &___UriSchemeHttps_22; } inline void set_UriSchemeHttps_22(String_t* value) { ___UriSchemeHttps_22 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeHttps_22), value); } inline static int32_t get_offset_of_UriSchemeMailto_23() { return static_cast<int32_t>(offsetof(Uri_t3882940875_StaticFields, ___UriSchemeMailto_23)); } inline String_t* get_UriSchemeMailto_23() const { return ___UriSchemeMailto_23; } inline String_t** get_address_of_UriSchemeMailto_23() { return &___UriSchemeMailto_23; } inline void set_UriSchemeMailto_23(String_t* value) { ___UriSchemeMailto_23 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeMailto_23), value); } inline static int32_t get_offset_of_UriSchemeNews_24() { return static_cast<int32_t>(offsetof(Uri_t3882940875_StaticFields, ___UriSchemeNews_24)); } inline String_t* get_UriSchemeNews_24() const { return ___UriSchemeNews_24; } inline String_t** get_address_of_UriSchemeNews_24() { return &___UriSchemeNews_24; } inline void set_UriSchemeNews_24(String_t* value) { ___UriSchemeNews_24 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeNews_24), value); } inline static int32_t get_offset_of_UriSchemeNntp_25() { return static_cast<int32_t>(offsetof(Uri_t3882940875_StaticFields, ___UriSchemeNntp_25)); } inline String_t* get_UriSchemeNntp_25() const { return ___UriSchemeNntp_25; } inline String_t** get_address_of_UriSchemeNntp_25() { return &___UriSchemeNntp_25; } inline void set_UriSchemeNntp_25(String_t* value) { ___UriSchemeNntp_25 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeNntp_25), value); } inline static int32_t get_offset_of_UriSchemeNetPipe_26() { return static_cast<int32_t>(offsetof(Uri_t3882940875_StaticFields, ___UriSchemeNetPipe_26)); } inline String_t* get_UriSchemeNetPipe_26() const { return ___UriSchemeNetPipe_26; } inline String_t** get_address_of_UriSchemeNetPipe_26() { return &___UriSchemeNetPipe_26; } inline void set_UriSchemeNetPipe_26(String_t* value) { ___UriSchemeNetPipe_26 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeNetPipe_26), value); } inline static int32_t get_offset_of_UriSchemeNetTcp_27() { return static_cast<int32_t>(offsetof(Uri_t3882940875_StaticFields, ___UriSchemeNetTcp_27)); } inline String_t* get_UriSchemeNetTcp_27() const { return ___UriSchemeNetTcp_27; } inline String_t** get_address_of_UriSchemeNetTcp_27() { return &___UriSchemeNetTcp_27; } inline void set_UriSchemeNetTcp_27(String_t* value) { ___UriSchemeNetTcp_27 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeNetTcp_27), value); } inline static int32_t get_offset_of_schemes_28() { return static_cast<int32_t>(offsetof(Uri_t3882940875_StaticFields, ___schemes_28)); } inline UriSchemeU5BU5D_t54737026* get_schemes_28() const { return ___schemes_28; } inline UriSchemeU5BU5D_t54737026** get_address_of_schemes_28() { return &___schemes_28; } inline void set_schemes_28(UriSchemeU5BU5D_t54737026* value) { ___schemes_28 = value; Il2CppCodeGenWriteBarrier((&___schemes_28), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24map14_30() { return static_cast<int32_t>(offsetof(Uri_t3882940875_StaticFields, ___U3CU3Ef__switchU24map14_30)); } inline Dictionary_2_t2052754070 * get_U3CU3Ef__switchU24map14_30() const { return ___U3CU3Ef__switchU24map14_30; } inline Dictionary_2_t2052754070 ** get_address_of_U3CU3Ef__switchU24map14_30() { return &___U3CU3Ef__switchU24map14_30; } inline void set_U3CU3Ef__switchU24map14_30(Dictionary_2_t2052754070 * value) { ___U3CU3Ef__switchU24map14_30 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map14_30), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24map15_31() { return static_cast<int32_t>(offsetof(Uri_t3882940875_StaticFields, ___U3CU3Ef__switchU24map15_31)); } inline Dictionary_2_t2052754070 * get_U3CU3Ef__switchU24map15_31() const { return ___U3CU3Ef__switchU24map15_31; } inline Dictionary_2_t2052754070 ** get_address_of_U3CU3Ef__switchU24map15_31() { return &___U3CU3Ef__switchU24map15_31; } inline void set_U3CU3Ef__switchU24map15_31(Dictionary_2_t2052754070 * value) { ___U3CU3Ef__switchU24map15_31 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map15_31), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24map16_32() { return static_cast<int32_t>(offsetof(Uri_t3882940875_StaticFields, ___U3CU3Ef__switchU24map16_32)); } inline Dictionary_2_t2052754070 * get_U3CU3Ef__switchU24map16_32() const { return ___U3CU3Ef__switchU24map16_32; } inline Dictionary_2_t2052754070 ** get_address_of_U3CU3Ef__switchU24map16_32() { return &___U3CU3Ef__switchU24map16_32; } inline void set_U3CU3Ef__switchU24map16_32(Dictionary_2_t2052754070 * value) { ___U3CU3Ef__switchU24map16_32 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map16_32), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // URI_T3882940875_H #ifndef DESIGNERTRANSACTION_T3922712621_H #define DESIGNERTRANSACTION_T3922712621_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.Design.DesignerTransaction struct DesignerTransaction_t3922712621 : public RuntimeObject { public: // System.Boolean System.ComponentModel.Design.DesignerTransaction::committed bool ___committed_0; // System.Boolean System.ComponentModel.Design.DesignerTransaction::canceled bool ___canceled_1; public: inline static int32_t get_offset_of_committed_0() { return static_cast<int32_t>(offsetof(DesignerTransaction_t3922712621, ___committed_0)); } inline bool get_committed_0() const { return ___committed_0; } inline bool* get_address_of_committed_0() { return &___committed_0; } inline void set_committed_0(bool value) { ___committed_0 = value; } inline static int32_t get_offset_of_canceled_1() { return static_cast<int32_t>(offsetof(DesignerTransaction_t3922712621, ___canceled_1)); } inline bool get_canceled_1() const { return ___canceled_1; } inline bool* get_address_of_canceled_1() { return &___canceled_1; } inline void set_canceled_1(bool value) { ___canceled_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DESIGNERTRANSACTION_T3922712621_H #ifndef FILEWEBREQUESTCREATOR_T2184176962_H #define FILEWEBREQUESTCREATOR_T2184176962_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.FileWebRequestCreator struct FileWebRequestCreator_t2184176962 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FILEWEBREQUESTCREATOR_T2184176962_H #ifndef BINDER_T1054974207_H #define BINDER_T1054974207_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.Binder struct Binder_t1054974207 : public RuntimeObject { public: public: }; struct Binder_t1054974207_StaticFields { public: // System.Reflection.Binder System.Reflection.Binder::default_binder Binder_t1054974207 * ___default_binder_0; public: inline static int32_t get_offset_of_default_binder_0() { return static_cast<int32_t>(offsetof(Binder_t1054974207_StaticFields, ___default_binder_0)); } inline Binder_t1054974207 * get_default_binder_0() const { return ___default_binder_0; } inline Binder_t1054974207 ** get_address_of_default_binder_0() { return &___default_binder_0; } inline void set_default_binder_0(Binder_t1054974207 * value) { ___default_binder_0 = value; Il2CppCodeGenWriteBarrier((&___default_binder_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BINDER_T1054974207_H #ifndef FTPREQUESTCREATOR_T2676413055_H #define FTPREQUESTCREATOR_T2676413055_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.FtpRequestCreator struct FtpRequestCreator_t2676413055 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FTPREQUESTCREATOR_T2676413055_H #ifndef GLOBALPROXYSELECTION_T1789441935_H #define GLOBALPROXYSELECTION_T1789441935_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.GlobalProxySelection struct GlobalProxySelection_t1789441935 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // GLOBALPROXYSELECTION_T1789441935_H #ifndef HTTPREQUESTCREATOR_T852478564_H #define HTTPREQUESTCREATOR_T852478564_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.HttpRequestCreator struct HttpRequestCreator_t852478564 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // HTTPREQUESTCREATOR_T852478564_H #ifndef HTTPVERSION_T1323918900_H #define HTTPVERSION_T1323918900_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.HttpVersion struct HttpVersion_t1323918900 : public RuntimeObject { public: public: }; struct HttpVersion_t1323918900_StaticFields { public: // System.Version System.Net.HttpVersion::Version10 Version_t269959680 * ___Version10_0; // System.Version System.Net.HttpVersion::Version11 Version_t269959680 * ___Version11_1; public: inline static int32_t get_offset_of_Version10_0() { return static_cast<int32_t>(offsetof(HttpVersion_t1323918900_StaticFields, ___Version10_0)); } inline Version_t269959680 * get_Version10_0() const { return ___Version10_0; } inline Version_t269959680 ** get_address_of_Version10_0() { return &___Version10_0; } inline void set_Version10_0(Version_t269959680 * value) { ___Version10_0 = value; Il2CppCodeGenWriteBarrier((&___Version10_0), value); } inline static int32_t get_offset_of_Version11_1() { return static_cast<int32_t>(offsetof(HttpVersion_t1323918900_StaticFields, ___Version11_1)); } inline Version_t269959680 * get_Version11_1() const { return ___Version11_1; } inline Version_t269959680 ** get_address_of_Version11_1() { return &___Version11_1; } inline void set_Version11_1(Version_t269959680 * value) { ___Version11_1 = value; Il2CppCodeGenWriteBarrier((&___Version11_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // HTTPVERSION_T1323918900_H #ifndef VERSION_T269959680_H #define VERSION_T269959680_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Version struct Version_t269959680 : public RuntimeObject { public: // System.Int32 System.Version::_Major int32_t ____Major_1; // System.Int32 System.Version::_Minor int32_t ____Minor_2; // System.Int32 System.Version::_Build int32_t ____Build_3; // System.Int32 System.Version::_Revision int32_t ____Revision_4; public: inline static int32_t get_offset_of__Major_1() { return static_cast<int32_t>(offsetof(Version_t269959680, ____Major_1)); } inline int32_t get__Major_1() const { return ____Major_1; } inline int32_t* get_address_of__Major_1() { return &____Major_1; } inline void set__Major_1(int32_t value) { ____Major_1 = value; } inline static int32_t get_offset_of__Minor_2() { return static_cast<int32_t>(offsetof(Version_t269959680, ____Minor_2)); } inline int32_t get__Minor_2() const { return ____Minor_2; } inline int32_t* get_address_of__Minor_2() { return &____Minor_2; } inline void set__Minor_2(int32_t value) { ____Minor_2 = value; } inline static int32_t get_offset_of__Build_3() { return static_cast<int32_t>(offsetof(Version_t269959680, ____Build_3)); } inline int32_t get__Build_3() const { return ____Build_3; } inline int32_t* get_address_of__Build_3() { return &____Build_3; } inline void set__Build_3(int32_t value) { ____Build_3 = value; } inline static int32_t get_offset_of__Revision_4() { return static_cast<int32_t>(offsetof(Version_t269959680, ____Revision_4)); } inline int32_t get__Revision_4() const { return ____Revision_4; } inline int32_t* get_address_of__Revision_4() { return &____Revision_4; } inline void set__Revision_4(int32_t value) { ____Revision_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VERSION_T269959680_H #ifndef MEMBERINFO_T_H #define MEMBERINFO_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MEMBERINFO_T_H #ifndef LINKEDLIST_1_T3169462053_H #define LINKEDLIST_1_T3169462053_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider> struct LinkedList_1_t3169462053 : public RuntimeObject { public: // System.UInt32 System.Collections.Generic.LinkedList`1::count uint32_t ___count_2; // System.UInt32 System.Collections.Generic.LinkedList`1::version uint32_t ___version_3; // System.Object System.Collections.Generic.LinkedList`1::syncRoot RuntimeObject * ___syncRoot_4; // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1::first LinkedListNode_1_t1908715458 * ___first_5; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.LinkedList`1::si SerializationInfo_t2260044969 * ___si_6; public: inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(LinkedList_1_t3169462053, ___count_2)); } inline uint32_t get_count_2() const { return ___count_2; } inline uint32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(uint32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(LinkedList_1_t3169462053, ___version_3)); } inline uint32_t get_version_3() const { return ___version_3; } inline uint32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(uint32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_syncRoot_4() { return static_cast<int32_t>(offsetof(LinkedList_1_t3169462053, ___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((&___syncRoot_4), value); } inline static int32_t get_offset_of_first_5() { return static_cast<int32_t>(offsetof(LinkedList_1_t3169462053, ___first_5)); } inline LinkedListNode_1_t1908715458 * get_first_5() const { return ___first_5; } inline LinkedListNode_1_t1908715458 ** get_address_of_first_5() { return &___first_5; } inline void set_first_5(LinkedListNode_1_t1908715458 * value) { ___first_5 = value; Il2CppCodeGenWriteBarrier((&___first_5), value); } inline static int32_t get_offset_of_si_6() { return static_cast<int32_t>(offsetof(LinkedList_1_t3169462053, ___si_6)); } inline SerializationInfo_t2260044969 * get_si_6() const { return ___si_6; } inline SerializationInfo_t2260044969 ** get_address_of_si_6() { return &___si_6; } inline void set_si_6(SerializationInfo_t2260044969 * value) { ___si_6 = value; Il2CppCodeGenWriteBarrier((&___si_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LINKEDLIST_1_T3169462053_H #ifndef READONLYCOLLECTIONBASE_T2204228304_H #define READONLYCOLLECTIONBASE_T2204228304_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.ReadOnlyCollectionBase struct ReadOnlyCollectionBase_t2204228304 : public RuntimeObject { public: // System.Collections.ArrayList System.Collections.ReadOnlyCollectionBase::list ArrayList_t4277734320 * ___list_0; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollectionBase_t2204228304, ___list_0)); } inline ArrayList_t4277734320 * get_list_0() const { return ___list_0; } inline ArrayList_t4277734320 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(ArrayList_t4277734320 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // READONLYCOLLECTIONBASE_T2204228304_H #ifndef IPV6ADDRESS_T2007755840_H #define IPV6ADDRESS_T2007755840_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.IPv6Address struct IPv6Address_t2007755840 : public RuntimeObject { public: // System.UInt16[] System.Net.IPv6Address::address UInt16U5BU5D_t1255862157* ___address_0; // System.Int32 System.Net.IPv6Address::prefixLength int32_t ___prefixLength_1; // System.Int64 System.Net.IPv6Address::scopeId int64_t ___scopeId_2; public: inline static int32_t get_offset_of_address_0() { return static_cast<int32_t>(offsetof(IPv6Address_t2007755840, ___address_0)); } inline UInt16U5BU5D_t1255862157* get_address_0() const { return ___address_0; } inline UInt16U5BU5D_t1255862157** get_address_of_address_0() { return &___address_0; } inline void set_address_0(UInt16U5BU5D_t1255862157* value) { ___address_0 = value; Il2CppCodeGenWriteBarrier((&___address_0), value); } inline static int32_t get_offset_of_prefixLength_1() { return static_cast<int32_t>(offsetof(IPv6Address_t2007755840, ___prefixLength_1)); } inline int32_t get_prefixLength_1() const { return ___prefixLength_1; } inline int32_t* get_address_of_prefixLength_1() { return &___prefixLength_1; } inline void set_prefixLength_1(int32_t value) { ___prefixLength_1 = value; } inline static int32_t get_offset_of_scopeId_2() { return static_cast<int32_t>(offsetof(IPv6Address_t2007755840, ___scopeId_2)); } inline int64_t get_scopeId_2() const { return ___scopeId_2; } inline int64_t* get_address_of_scopeId_2() { return &___scopeId_2; } inline void set_scopeId_2(int64_t value) { ___scopeId_2 = value; } }; struct IPv6Address_t2007755840_StaticFields { public: // System.Net.IPv6Address System.Net.IPv6Address::Loopback IPv6Address_t2007755840 * ___Loopback_3; // System.Net.IPv6Address System.Net.IPv6Address::Unspecified IPv6Address_t2007755840 * ___Unspecified_4; public: inline static int32_t get_offset_of_Loopback_3() { return static_cast<int32_t>(offsetof(IPv6Address_t2007755840_StaticFields, ___Loopback_3)); } inline IPv6Address_t2007755840 * get_Loopback_3() const { return ___Loopback_3; } inline IPv6Address_t2007755840 ** get_address_of_Loopback_3() { return &___Loopback_3; } inline void set_Loopback_3(IPv6Address_t2007755840 * value) { ___Loopback_3 = value; Il2CppCodeGenWriteBarrier((&___Loopback_3), value); } inline static int32_t get_offset_of_Unspecified_4() { return static_cast<int32_t>(offsetof(IPv6Address_t2007755840_StaticFields, ___Unspecified_4)); } inline IPv6Address_t2007755840 * get_Unspecified_4() const { return ___Unspecified_4; } inline IPv6Address_t2007755840 ** get_address_of_Unspecified_4() { return &___Unspecified_4; } inline void set_Unspecified_4(IPv6Address_t2007755840 * value) { ___Unspecified_4 = value; Il2CppCodeGenWriteBarrier((&___Unspecified_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // IPV6ADDRESS_T2007755840_H #ifndef STRINGBUILDER_T1723565765_H #define STRINGBUILDER_T1723565765_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Text.StringBuilder struct StringBuilder_t1723565765 : public RuntimeObject { public: // System.Int32 System.Text.StringBuilder::_length int32_t ____length_1; // System.String System.Text.StringBuilder::_str String_t* ____str_2; // System.String System.Text.StringBuilder::_cached_str String_t* ____cached_str_3; // System.Int32 System.Text.StringBuilder::_maxCapacity int32_t ____maxCapacity_4; public: inline static int32_t get_offset_of__length_1() { return static_cast<int32_t>(offsetof(StringBuilder_t1723565765, ____length_1)); } inline int32_t get__length_1() const { return ____length_1; } inline int32_t* get_address_of__length_1() { return &____length_1; } inline void set__length_1(int32_t value) { ____length_1 = value; } inline static int32_t get_offset_of__str_2() { return static_cast<int32_t>(offsetof(StringBuilder_t1723565765, ____str_2)); } inline String_t* get__str_2() const { return ____str_2; } inline String_t** get_address_of__str_2() { return &____str_2; } inline void set__str_2(String_t* value) { ____str_2 = value; Il2CppCodeGenWriteBarrier((&____str_2), value); } inline static int32_t get_offset_of__cached_str_3() { return static_cast<int32_t>(offsetof(StringBuilder_t1723565765, ____cached_str_3)); } inline String_t* get__cached_str_3() const { return ____cached_str_3; } inline String_t** get_address_of__cached_str_3() { return &____cached_str_3; } inline void set__cached_str_3(String_t* value) { ____cached_str_3 = value; Il2CppCodeGenWriteBarrier((&____cached_str_3), value); } inline static int32_t get_offset_of__maxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t1723565765, ____maxCapacity_4)); } inline int32_t get__maxCapacity_4() const { return ____maxCapacity_4; } inline int32_t* get_address_of__maxCapacity_4() { return &____maxCapacity_4; } inline void set__maxCapacity_4(int32_t value) { ____maxCapacity_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STRINGBUILDER_T1723565765_H #ifndef HYBRIDDICTIONARY_T979529962_H #define HYBRIDDICTIONARY_T979529962_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Specialized.HybridDictionary struct HybridDictionary_t979529962 : public RuntimeObject { public: // System.Boolean System.Collections.Specialized.HybridDictionary::caseInsensitive bool ___caseInsensitive_0; // System.Collections.Hashtable System.Collections.Specialized.HybridDictionary::hashtable Hashtable_t448324601 * ___hashtable_1; // System.Collections.Specialized.ListDictionary System.Collections.Specialized.HybridDictionary::list ListDictionary_t2786419366 * ___list_2; public: inline static int32_t get_offset_of_caseInsensitive_0() { return static_cast<int32_t>(offsetof(HybridDictionary_t979529962, ___caseInsensitive_0)); } inline bool get_caseInsensitive_0() const { return ___caseInsensitive_0; } inline bool* get_address_of_caseInsensitive_0() { return &___caseInsensitive_0; } inline void set_caseInsensitive_0(bool value) { ___caseInsensitive_0 = value; } inline static int32_t get_offset_of_hashtable_1() { return static_cast<int32_t>(offsetof(HybridDictionary_t979529962, ___hashtable_1)); } inline Hashtable_t448324601 * get_hashtable_1() const { return ___hashtable_1; } inline Hashtable_t448324601 ** get_address_of_hashtable_1() { return &___hashtable_1; } inline void set_hashtable_1(Hashtable_t448324601 * value) { ___hashtable_1 = value; Il2CppCodeGenWriteBarrier((&___hashtable_1), value); } inline static int32_t get_offset_of_list_2() { return static_cast<int32_t>(offsetof(HybridDictionary_t979529962, ___list_2)); } inline ListDictionary_t2786419366 * get_list_2() const { return ___list_2; } inline ListDictionary_t2786419366 ** get_address_of_list_2() { return &___list_2; } inline void set_list_2(ListDictionary_t2786419366 * value) { ___list_2 = value; Il2CppCodeGenWriteBarrier((&___list_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // HYBRIDDICTIONARY_T979529962_H #ifndef ENDPOINT_T268181662_H #define ENDPOINT_T268181662_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.EndPoint struct EndPoint_t268181662 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENDPOINT_T268181662_H #ifndef IPHOSTENTRY_T1585536838_H #define IPHOSTENTRY_T1585536838_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.IPHostEntry struct IPHostEntry_t1585536838 : public RuntimeObject { public: // System.Net.IPAddress[] System.Net.IPHostEntry::addressList IPAddressU5BU5D_t3756700779* ___addressList_0; // System.String[] System.Net.IPHostEntry::aliases StringU5BU5D_t1187188029* ___aliases_1; // System.String System.Net.IPHostEntry::hostName String_t* ___hostName_2; public: inline static int32_t get_offset_of_addressList_0() { return static_cast<int32_t>(offsetof(IPHostEntry_t1585536838, ___addressList_0)); } inline IPAddressU5BU5D_t3756700779* get_addressList_0() const { return ___addressList_0; } inline IPAddressU5BU5D_t3756700779** get_address_of_addressList_0() { return &___addressList_0; } inline void set_addressList_0(IPAddressU5BU5D_t3756700779* value) { ___addressList_0 = value; Il2CppCodeGenWriteBarrier((&___addressList_0), value); } inline static int32_t get_offset_of_aliases_1() { return static_cast<int32_t>(offsetof(IPHostEntry_t1585536838, ___aliases_1)); } inline StringU5BU5D_t1187188029* get_aliases_1() const { return ___aliases_1; } inline StringU5BU5D_t1187188029** get_address_of_aliases_1() { return &___aliases_1; } inline void set_aliases_1(StringU5BU5D_t1187188029* value) { ___aliases_1 = value; Il2CppCodeGenWriteBarrier((&___aliases_1), value); } inline static int32_t get_offset_of_hostName_2() { return static_cast<int32_t>(offsetof(IPHostEntry_t1585536838, ___hostName_2)); } inline String_t* get_hostName_2() const { return ___hostName_2; } inline String_t** get_address_of_hostName_2() { return &___hostName_2; } inline void set_hostName_2(String_t* value) { ___hostName_2 = value; Il2CppCodeGenWriteBarrier((&___hostName_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // IPHOSTENTRY_T1585536838_H #ifndef DNS_T1916110264_H #define DNS_T1916110264_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.Dns struct Dns_t1916110264 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DNS_T1916110264_H #ifndef X509CERTIFICATE_T1566844445_H #define X509CERTIFICATE_T1566844445_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Cryptography.X509Certificates.X509Certificate struct X509Certificate_t1566844445 : public RuntimeObject { public: // Mono.Security.X509.X509Certificate System.Security.Cryptography.X509Certificates.X509Certificate::x509 X509Certificate_t4279088682 * ___x509_0; // System.Boolean System.Security.Cryptography.X509Certificates.X509Certificate::hideDates bool ___hideDates_1; // System.Byte[] System.Security.Cryptography.X509Certificates.X509Certificate::cachedCertificateHash ByteU5BU5D_t1709610627* ___cachedCertificateHash_2; // System.String System.Security.Cryptography.X509Certificates.X509Certificate::issuer_name String_t* ___issuer_name_3; // System.String System.Security.Cryptography.X509Certificates.X509Certificate::subject_name String_t* ___subject_name_4; public: inline static int32_t get_offset_of_x509_0() { return static_cast<int32_t>(offsetof(X509Certificate_t1566844445, ___x509_0)); } inline X509Certificate_t4279088682 * get_x509_0() const { return ___x509_0; } inline X509Certificate_t4279088682 ** get_address_of_x509_0() { return &___x509_0; } inline void set_x509_0(X509Certificate_t4279088682 * value) { ___x509_0 = value; Il2CppCodeGenWriteBarrier((&___x509_0), value); } inline static int32_t get_offset_of_hideDates_1() { return static_cast<int32_t>(offsetof(X509Certificate_t1566844445, ___hideDates_1)); } inline bool get_hideDates_1() const { return ___hideDates_1; } inline bool* get_address_of_hideDates_1() { return &___hideDates_1; } inline void set_hideDates_1(bool value) { ___hideDates_1 = value; } inline static int32_t get_offset_of_cachedCertificateHash_2() { return static_cast<int32_t>(offsetof(X509Certificate_t1566844445, ___cachedCertificateHash_2)); } inline ByteU5BU5D_t1709610627* get_cachedCertificateHash_2() const { return ___cachedCertificateHash_2; } inline ByteU5BU5D_t1709610627** get_address_of_cachedCertificateHash_2() { return &___cachedCertificateHash_2; } inline void set_cachedCertificateHash_2(ByteU5BU5D_t1709610627* value) { ___cachedCertificateHash_2 = value; Il2CppCodeGenWriteBarrier((&___cachedCertificateHash_2), value); } inline static int32_t get_offset_of_issuer_name_3() { return static_cast<int32_t>(offsetof(X509Certificate_t1566844445, ___issuer_name_3)); } inline String_t* get_issuer_name_3() const { return ___issuer_name_3; } inline String_t** get_address_of_issuer_name_3() { return &___issuer_name_3; } inline void set_issuer_name_3(String_t* value) { ___issuer_name_3 = value; Il2CppCodeGenWriteBarrier((&___issuer_name_3), value); } inline static int32_t get_offset_of_subject_name_4() { return static_cast<int32_t>(offsetof(X509Certificate_t1566844445, ___subject_name_4)); } inline String_t* get_subject_name_4() const { return ___subject_name_4; } inline String_t** get_address_of_subject_name_4() { return &___subject_name_4; } inline void set_subject_name_4(String_t* value) { ___subject_name_4 = value; Il2CppCodeGenWriteBarrier((&___subject_name_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // X509CERTIFICATE_T1566844445_H #ifndef WEAKOBJECTWRAPPER_T3106754776_H #define WEAKOBJECTWRAPPER_T3106754776_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.WeakObjectWrapper struct WeakObjectWrapper_t3106754776 : public RuntimeObject { public: // System.Int32 System.ComponentModel.WeakObjectWrapper::<TargetHashCode>k__BackingField int32_t ___U3CTargetHashCodeU3Ek__BackingField_0; // System.WeakReference System.ComponentModel.WeakObjectWrapper::<Weak>k__BackingField WeakReference_t2192111202 * ___U3CWeakU3Ek__BackingField_1; public: inline static int32_t get_offset_of_U3CTargetHashCodeU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(WeakObjectWrapper_t3106754776, ___U3CTargetHashCodeU3Ek__BackingField_0)); } inline int32_t get_U3CTargetHashCodeU3Ek__BackingField_0() const { return ___U3CTargetHashCodeU3Ek__BackingField_0; } inline int32_t* get_address_of_U3CTargetHashCodeU3Ek__BackingField_0() { return &___U3CTargetHashCodeU3Ek__BackingField_0; } inline void set_U3CTargetHashCodeU3Ek__BackingField_0(int32_t value) { ___U3CTargetHashCodeU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CWeakU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(WeakObjectWrapper_t3106754776, ___U3CWeakU3Ek__BackingField_1)); } inline WeakReference_t2192111202 * get_U3CWeakU3Ek__BackingField_1() const { return ___U3CWeakU3Ek__BackingField_1; } inline WeakReference_t2192111202 ** get_address_of_U3CWeakU3Ek__BackingField_1() { return &___U3CWeakU3Ek__BackingField_1; } inline void set_U3CWeakU3Ek__BackingField_1(WeakReference_t2192111202 * value) { ___U3CWeakU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((&___U3CWeakU3Ek__BackingField_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WEAKOBJECTWRAPPER_T3106754776_H #ifndef DICTIONARY_2_T1504552994_H #define DICTIONARY_2_T1504552994_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2<System.ComponentModel.WeakObjectWrapper,System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>> struct Dictionary_2_t1504552994 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::table Int32U5BU5D_t1883881640* ___table_4; // System.Collections.Generic.Link[] System.Collections.Generic.Dictionary`2::linkSlots LinkU5BU5D_t3296134080* ___linkSlots_5; // TKey[] System.Collections.Generic.Dictionary`2::keySlots WeakObjectWrapperU5BU5D_t2849822921* ___keySlots_6; // TValue[] System.Collections.Generic.Dictionary`2::valueSlots LinkedList_1U5BU5D_t255256232* ___valueSlots_7; // System.Int32 System.Collections.Generic.Dictionary`2::touchedSlots int32_t ___touchedSlots_8; // System.Int32 System.Collections.Generic.Dictionary`2::emptySlot int32_t ___emptySlot_9; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_10; // System.Int32 System.Collections.Generic.Dictionary`2::threshold int32_t ___threshold_11; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::hcp RuntimeObject* ___hcp_12; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.Dictionary`2::serialization_info SerializationInfo_t2260044969 * ___serialization_info_13; // System.Int32 System.Collections.Generic.Dictionary`2::generation int32_t ___generation_14; public: inline static int32_t get_offset_of_table_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t1504552994, ___table_4)); } inline Int32U5BU5D_t1883881640* get_table_4() const { return ___table_4; } inline Int32U5BU5D_t1883881640** get_address_of_table_4() { return &___table_4; } inline void set_table_4(Int32U5BU5D_t1883881640* value) { ___table_4 = value; Il2CppCodeGenWriteBarrier((&___table_4), value); } inline static int32_t get_offset_of_linkSlots_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t1504552994, ___linkSlots_5)); } inline LinkU5BU5D_t3296134080* get_linkSlots_5() const { return ___linkSlots_5; } inline LinkU5BU5D_t3296134080** get_address_of_linkSlots_5() { return &___linkSlots_5; } inline void set_linkSlots_5(LinkU5BU5D_t3296134080* value) { ___linkSlots_5 = value; Il2CppCodeGenWriteBarrier((&___linkSlots_5), value); } inline static int32_t get_offset_of_keySlots_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t1504552994, ___keySlots_6)); } inline WeakObjectWrapperU5BU5D_t2849822921* get_keySlots_6() const { return ___keySlots_6; } inline WeakObjectWrapperU5BU5D_t2849822921** get_address_of_keySlots_6() { return &___keySlots_6; } inline void set_keySlots_6(WeakObjectWrapperU5BU5D_t2849822921* value) { ___keySlots_6 = value; Il2CppCodeGenWriteBarrier((&___keySlots_6), value); } inline static int32_t get_offset_of_valueSlots_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t1504552994, ___valueSlots_7)); } inline LinkedList_1U5BU5D_t255256232* get_valueSlots_7() const { return ___valueSlots_7; } inline LinkedList_1U5BU5D_t255256232** get_address_of_valueSlots_7() { return &___valueSlots_7; } inline void set_valueSlots_7(LinkedList_1U5BU5D_t255256232* value) { ___valueSlots_7 = value; Il2CppCodeGenWriteBarrier((&___valueSlots_7), value); } inline static int32_t get_offset_of_touchedSlots_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t1504552994, ___touchedSlots_8)); } inline int32_t get_touchedSlots_8() const { return ___touchedSlots_8; } inline int32_t* get_address_of_touchedSlots_8() { return &___touchedSlots_8; } inline void set_touchedSlots_8(int32_t value) { ___touchedSlots_8 = value; } inline static int32_t get_offset_of_emptySlot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t1504552994, ___emptySlot_9)); } inline int32_t get_emptySlot_9() const { return ___emptySlot_9; } inline int32_t* get_address_of_emptySlot_9() { return &___emptySlot_9; } inline void set_emptySlot_9(int32_t value) { ___emptySlot_9 = value; } inline static int32_t get_offset_of_count_10() { return static_cast<int32_t>(offsetof(Dictionary_2_t1504552994, ___count_10)); } inline int32_t get_count_10() const { return ___count_10; } inline int32_t* get_address_of_count_10() { return &___count_10; } inline void set_count_10(int32_t value) { ___count_10 = value; } inline static int32_t get_offset_of_threshold_11() { return static_cast<int32_t>(offsetof(Dictionary_2_t1504552994, ___threshold_11)); } inline int32_t get_threshold_11() const { return ___threshold_11; } inline int32_t* get_address_of_threshold_11() { return &___threshold_11; } inline void set_threshold_11(int32_t value) { ___threshold_11 = value; } inline static int32_t get_offset_of_hcp_12() { return static_cast<int32_t>(offsetof(Dictionary_2_t1504552994, ___hcp_12)); } inline RuntimeObject* get_hcp_12() const { return ___hcp_12; } inline RuntimeObject** get_address_of_hcp_12() { return &___hcp_12; } inline void set_hcp_12(RuntimeObject* value) { ___hcp_12 = value; Il2CppCodeGenWriteBarrier((&___hcp_12), value); } inline static int32_t get_offset_of_serialization_info_13() { return static_cast<int32_t>(offsetof(Dictionary_2_t1504552994, ___serialization_info_13)); } inline SerializationInfo_t2260044969 * get_serialization_info_13() const { return ___serialization_info_13; } inline SerializationInfo_t2260044969 ** get_address_of_serialization_info_13() { return &___serialization_info_13; } inline void set_serialization_info_13(SerializationInfo_t2260044969 * value) { ___serialization_info_13 = value; Il2CppCodeGenWriteBarrier((&___serialization_info_13), value); } inline static int32_t get_offset_of_generation_14() { return static_cast<int32_t>(offsetof(Dictionary_2_t1504552994, ___generation_14)); } inline int32_t get_generation_14() const { return ___generation_14; } inline int32_t* get_address_of_generation_14() { return &___generation_14; } inline void set_generation_14(int32_t value) { ___generation_14 = value; } }; struct Dictionary_2_t1504552994_StaticFields { public: // System.Collections.Generic.Dictionary`2/Transform`1<TKey,TValue,System.Collections.DictionaryEntry> System.Collections.Generic.Dictionary`2::<>f__am$cacheB Transform_1_t3458351834 * ___U3CU3Ef__amU24cacheB_15; public: inline static int32_t get_offset_of_U3CU3Ef__amU24cacheB_15() { return static_cast<int32_t>(offsetof(Dictionary_2_t1504552994_StaticFields, ___U3CU3Ef__amU24cacheB_15)); } inline Transform_1_t3458351834 * get_U3CU3Ef__amU24cacheB_15() const { return ___U3CU3Ef__amU24cacheB_15; } inline Transform_1_t3458351834 ** get_address_of_U3CU3Ef__amU24cacheB_15() { return &___U3CU3Ef__amU24cacheB_15; } inline void set_U3CU3Ef__amU24cacheB_15(Transform_1_t3458351834 * value) { ___U3CU3Ef__amU24cacheB_15 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__amU24cacheB_15), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DICTIONARY_2_T1504552994_H #ifndef DICTIONARY_2_T3039616987_H #define DICTIONARY_2_T3039616987_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>> struct Dictionary_2_t3039616987 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::table Int32U5BU5D_t1883881640* ___table_4; // System.Collections.Generic.Link[] System.Collections.Generic.Dictionary`2::linkSlots LinkU5BU5D_t3296134080* ___linkSlots_5; // TKey[] System.Collections.Generic.Dictionary`2::keySlots TypeU5BU5D_t89919618* ___keySlots_6; // TValue[] System.Collections.Generic.Dictionary`2::valueSlots LinkedList_1U5BU5D_t255256232* ___valueSlots_7; // System.Int32 System.Collections.Generic.Dictionary`2::touchedSlots int32_t ___touchedSlots_8; // System.Int32 System.Collections.Generic.Dictionary`2::emptySlot int32_t ___emptySlot_9; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_10; // System.Int32 System.Collections.Generic.Dictionary`2::threshold int32_t ___threshold_11; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::hcp RuntimeObject* ___hcp_12; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.Dictionary`2::serialization_info SerializationInfo_t2260044969 * ___serialization_info_13; // System.Int32 System.Collections.Generic.Dictionary`2::generation int32_t ___generation_14; public: inline static int32_t get_offset_of_table_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t3039616987, ___table_4)); } inline Int32U5BU5D_t1883881640* get_table_4() const { return ___table_4; } inline Int32U5BU5D_t1883881640** get_address_of_table_4() { return &___table_4; } inline void set_table_4(Int32U5BU5D_t1883881640* value) { ___table_4 = value; Il2CppCodeGenWriteBarrier((&___table_4), value); } inline static int32_t get_offset_of_linkSlots_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t3039616987, ___linkSlots_5)); } inline LinkU5BU5D_t3296134080* get_linkSlots_5() const { return ___linkSlots_5; } inline LinkU5BU5D_t3296134080** get_address_of_linkSlots_5() { return &___linkSlots_5; } inline void set_linkSlots_5(LinkU5BU5D_t3296134080* value) { ___linkSlots_5 = value; Il2CppCodeGenWriteBarrier((&___linkSlots_5), value); } inline static int32_t get_offset_of_keySlots_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t3039616987, ___keySlots_6)); } inline TypeU5BU5D_t89919618* get_keySlots_6() const { return ___keySlots_6; } inline TypeU5BU5D_t89919618** get_address_of_keySlots_6() { return &___keySlots_6; } inline void set_keySlots_6(TypeU5BU5D_t89919618* value) { ___keySlots_6 = value; Il2CppCodeGenWriteBarrier((&___keySlots_6), value); } inline static int32_t get_offset_of_valueSlots_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t3039616987, ___valueSlots_7)); } inline LinkedList_1U5BU5D_t255256232* get_valueSlots_7() const { return ___valueSlots_7; } inline LinkedList_1U5BU5D_t255256232** get_address_of_valueSlots_7() { return &___valueSlots_7; } inline void set_valueSlots_7(LinkedList_1U5BU5D_t255256232* value) { ___valueSlots_7 = value; Il2CppCodeGenWriteBarrier((&___valueSlots_7), value); } inline static int32_t get_offset_of_touchedSlots_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t3039616987, ___touchedSlots_8)); } inline int32_t get_touchedSlots_8() const { return ___touchedSlots_8; } inline int32_t* get_address_of_touchedSlots_8() { return &___touchedSlots_8; } inline void set_touchedSlots_8(int32_t value) { ___touchedSlots_8 = value; } inline static int32_t get_offset_of_emptySlot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t3039616987, ___emptySlot_9)); } inline int32_t get_emptySlot_9() const { return ___emptySlot_9; } inline int32_t* get_address_of_emptySlot_9() { return &___emptySlot_9; } inline void set_emptySlot_9(int32_t value) { ___emptySlot_9 = value; } inline static int32_t get_offset_of_count_10() { return static_cast<int32_t>(offsetof(Dictionary_2_t3039616987, ___count_10)); } inline int32_t get_count_10() const { return ___count_10; } inline int32_t* get_address_of_count_10() { return &___count_10; } inline void set_count_10(int32_t value) { ___count_10 = value; } inline static int32_t get_offset_of_threshold_11() { return static_cast<int32_t>(offsetof(Dictionary_2_t3039616987, ___threshold_11)); } inline int32_t get_threshold_11() const { return ___threshold_11; } inline int32_t* get_address_of_threshold_11() { return &___threshold_11; } inline void set_threshold_11(int32_t value) { ___threshold_11 = value; } inline static int32_t get_offset_of_hcp_12() { return static_cast<int32_t>(offsetof(Dictionary_2_t3039616987, ___hcp_12)); } inline RuntimeObject* get_hcp_12() const { return ___hcp_12; } inline RuntimeObject** get_address_of_hcp_12() { return &___hcp_12; } inline void set_hcp_12(RuntimeObject* value) { ___hcp_12 = value; Il2CppCodeGenWriteBarrier((&___hcp_12), value); } inline static int32_t get_offset_of_serialization_info_13() { return static_cast<int32_t>(offsetof(Dictionary_2_t3039616987, ___serialization_info_13)); } inline SerializationInfo_t2260044969 * get_serialization_info_13() const { return ___serialization_info_13; } inline SerializationInfo_t2260044969 ** get_address_of_serialization_info_13() { return &___serialization_info_13; } inline void set_serialization_info_13(SerializationInfo_t2260044969 * value) { ___serialization_info_13 = value; Il2CppCodeGenWriteBarrier((&___serialization_info_13), value); } inline static int32_t get_offset_of_generation_14() { return static_cast<int32_t>(offsetof(Dictionary_2_t3039616987, ___generation_14)); } inline int32_t get_generation_14() const { return ___generation_14; } inline int32_t* get_address_of_generation_14() { return &___generation_14; } inline void set_generation_14(int32_t value) { ___generation_14 = value; } }; struct Dictionary_2_t3039616987_StaticFields { public: // System.Collections.Generic.Dictionary`2/Transform`1<TKey,TValue,System.Collections.DictionaryEntry> System.Collections.Generic.Dictionary`2::<>f__am$cacheB Transform_1_t1004797981 * ___U3CU3Ef__amU24cacheB_15; public: inline static int32_t get_offset_of_U3CU3Ef__amU24cacheB_15() { return static_cast<int32_t>(offsetof(Dictionary_2_t3039616987_StaticFields, ___U3CU3Ef__amU24cacheB_15)); } inline Transform_1_t1004797981 * get_U3CU3Ef__amU24cacheB_15() const { return ___U3CU3Ef__amU24cacheB_15; } inline Transform_1_t1004797981 ** get_address_of_U3CU3Ef__amU24cacheB_15() { return &___U3CU3Ef__amU24cacheB_15; } inline void set_U3CU3Ef__amU24cacheB_15(Transform_1_t1004797981 * value) { ___U3CU3Ef__amU24cacheB_15 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__amU24cacheB_15), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DICTIONARY_2_T3039616987_H #ifndef TYPEDESCRIPTOR_T4022761028_H #define TYPEDESCRIPTOR_T4022761028_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.TypeDescriptor struct TypeDescriptor_t4022761028 : public RuntimeObject { public: public: }; struct TypeDescriptor_t4022761028_StaticFields { public: // System.Object System.ComponentModel.TypeDescriptor::creatingDefaultConverters RuntimeObject * ___creatingDefaultConverters_0; // System.Collections.ArrayList System.ComponentModel.TypeDescriptor::defaultConverters ArrayList_t4277734320 * ___defaultConverters_1; // System.ComponentModel.IComNativeDescriptorHandler System.ComponentModel.TypeDescriptor::descriptorHandler RuntimeObject* ___descriptorHandler_2; // System.Collections.Hashtable System.ComponentModel.TypeDescriptor::componentTable Hashtable_t448324601 * ___componentTable_3; // System.Collections.Hashtable System.ComponentModel.TypeDescriptor::typeTable Hashtable_t448324601 * ___typeTable_4; // System.Collections.Hashtable System.ComponentModel.TypeDescriptor::editors Hashtable_t448324601 * ___editors_5; // System.Object System.ComponentModel.TypeDescriptor::typeDescriptionProvidersLock RuntimeObject * ___typeDescriptionProvidersLock_6; // System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>> System.ComponentModel.TypeDescriptor::typeDescriptionProviders Dictionary_2_t3039616987 * ___typeDescriptionProviders_7; // System.Object System.ComponentModel.TypeDescriptor::componentDescriptionProvidersLock RuntimeObject * ___componentDescriptionProvidersLock_8; // System.Collections.Generic.Dictionary`2<System.ComponentModel.WeakObjectWrapper,System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>> System.ComponentModel.TypeDescriptor::componentDescriptionProviders Dictionary_2_t1504552994 * ___componentDescriptionProviders_9; // System.EventHandler System.ComponentModel.TypeDescriptor::onDispose EventHandler_t1223794391 * ___onDispose_10; // System.ComponentModel.RefreshEventHandler System.ComponentModel.TypeDescriptor::Refreshed RefreshEventHandler_t3510407695 * ___Refreshed_11; public: inline static int32_t get_offset_of_creatingDefaultConverters_0() { return static_cast<int32_t>(offsetof(TypeDescriptor_t4022761028_StaticFields, ___creatingDefaultConverters_0)); } inline RuntimeObject * get_creatingDefaultConverters_0() const { return ___creatingDefaultConverters_0; } inline RuntimeObject ** get_address_of_creatingDefaultConverters_0() { return &___creatingDefaultConverters_0; } inline void set_creatingDefaultConverters_0(RuntimeObject * value) { ___creatingDefaultConverters_0 = value; Il2CppCodeGenWriteBarrier((&___creatingDefaultConverters_0), value); } inline static int32_t get_offset_of_defaultConverters_1() { return static_cast<int32_t>(offsetof(TypeDescriptor_t4022761028_StaticFields, ___defaultConverters_1)); } inline ArrayList_t4277734320 * get_defaultConverters_1() const { return ___defaultConverters_1; } inline ArrayList_t4277734320 ** get_address_of_defaultConverters_1() { return &___defaultConverters_1; } inline void set_defaultConverters_1(ArrayList_t4277734320 * value) { ___defaultConverters_1 = value; Il2CppCodeGenWriteBarrier((&___defaultConverters_1), value); } inline static int32_t get_offset_of_descriptorHandler_2() { return static_cast<int32_t>(offsetof(TypeDescriptor_t4022761028_StaticFields, ___descriptorHandler_2)); } inline RuntimeObject* get_descriptorHandler_2() const { return ___descriptorHandler_2; } inline RuntimeObject** get_address_of_descriptorHandler_2() { return &___descriptorHandler_2; } inline void set_descriptorHandler_2(RuntimeObject* value) { ___descriptorHandler_2 = value; Il2CppCodeGenWriteBarrier((&___descriptorHandler_2), value); } inline static int32_t get_offset_of_componentTable_3() { return static_cast<int32_t>(offsetof(TypeDescriptor_t4022761028_StaticFields, ___componentTable_3)); } inline Hashtable_t448324601 * get_componentTable_3() const { return ___componentTable_3; } inline Hashtable_t448324601 ** get_address_of_componentTable_3() { return &___componentTable_3; } inline void set_componentTable_3(Hashtable_t448324601 * value) { ___componentTable_3 = value; Il2CppCodeGenWriteBarrier((&___componentTable_3), value); } inline static int32_t get_offset_of_typeTable_4() { return static_cast<int32_t>(offsetof(TypeDescriptor_t4022761028_StaticFields, ___typeTable_4)); } inline Hashtable_t448324601 * get_typeTable_4() const { return ___typeTable_4; } inline Hashtable_t448324601 ** get_address_of_typeTable_4() { return &___typeTable_4; } inline void set_typeTable_4(Hashtable_t448324601 * value) { ___typeTable_4 = value; Il2CppCodeGenWriteBarrier((&___typeTable_4), value); } inline static int32_t get_offset_of_editors_5() { return static_cast<int32_t>(offsetof(TypeDescriptor_t4022761028_StaticFields, ___editors_5)); } inline Hashtable_t448324601 * get_editors_5() const { return ___editors_5; } inline Hashtable_t448324601 ** get_address_of_editors_5() { return &___editors_5; } inline void set_editors_5(Hashtable_t448324601 * value) { ___editors_5 = value; Il2CppCodeGenWriteBarrier((&___editors_5), value); } inline static int32_t get_offset_of_typeDescriptionProvidersLock_6() { return static_cast<int32_t>(offsetof(TypeDescriptor_t4022761028_StaticFields, ___typeDescriptionProvidersLock_6)); } inline RuntimeObject * get_typeDescriptionProvidersLock_6() const { return ___typeDescriptionProvidersLock_6; } inline RuntimeObject ** get_address_of_typeDescriptionProvidersLock_6() { return &___typeDescriptionProvidersLock_6; } inline void set_typeDescriptionProvidersLock_6(RuntimeObject * value) { ___typeDescriptionProvidersLock_6 = value; Il2CppCodeGenWriteBarrier((&___typeDescriptionProvidersLock_6), value); } inline static int32_t get_offset_of_typeDescriptionProviders_7() { return static_cast<int32_t>(offsetof(TypeDescriptor_t4022761028_StaticFields, ___typeDescriptionProviders_7)); } inline Dictionary_2_t3039616987 * get_typeDescriptionProviders_7() const { return ___typeDescriptionProviders_7; } inline Dictionary_2_t3039616987 ** get_address_of_typeDescriptionProviders_7() { return &___typeDescriptionProviders_7; } inline void set_typeDescriptionProviders_7(Dictionary_2_t3039616987 * value) { ___typeDescriptionProviders_7 = value; Il2CppCodeGenWriteBarrier((&___typeDescriptionProviders_7), value); } inline static int32_t get_offset_of_componentDescriptionProvidersLock_8() { return static_cast<int32_t>(offsetof(TypeDescriptor_t4022761028_StaticFields, ___componentDescriptionProvidersLock_8)); } inline RuntimeObject * get_componentDescriptionProvidersLock_8() const { return ___componentDescriptionProvidersLock_8; } inline RuntimeObject ** get_address_of_componentDescriptionProvidersLock_8() { return &___componentDescriptionProvidersLock_8; } inline void set_componentDescriptionProvidersLock_8(RuntimeObject * value) { ___componentDescriptionProvidersLock_8 = value; Il2CppCodeGenWriteBarrier((&___componentDescriptionProvidersLock_8), value); } inline static int32_t get_offset_of_componentDescriptionProviders_9() { return static_cast<int32_t>(offsetof(TypeDescriptor_t4022761028_StaticFields, ___componentDescriptionProviders_9)); } inline Dictionary_2_t1504552994 * get_componentDescriptionProviders_9() const { return ___componentDescriptionProviders_9; } inline Dictionary_2_t1504552994 ** get_address_of_componentDescriptionProviders_9() { return &___componentDescriptionProviders_9; } inline void set_componentDescriptionProviders_9(Dictionary_2_t1504552994 * value) { ___componentDescriptionProviders_9 = value; Il2CppCodeGenWriteBarrier((&___componentDescriptionProviders_9), value); } inline static int32_t get_offset_of_onDispose_10() { return static_cast<int32_t>(offsetof(TypeDescriptor_t4022761028_StaticFields, ___onDispose_10)); } inline EventHandler_t1223794391 * get_onDispose_10() const { return ___onDispose_10; } inline EventHandler_t1223794391 ** get_address_of_onDispose_10() { return &___onDispose_10; } inline void set_onDispose_10(EventHandler_t1223794391 * value) { ___onDispose_10 = value; Il2CppCodeGenWriteBarrier((&___onDispose_10), value); } inline static int32_t get_offset_of_Refreshed_11() { return static_cast<int32_t>(offsetof(TypeDescriptor_t4022761028_StaticFields, ___Refreshed_11)); } inline RefreshEventHandler_t3510407695 * get_Refreshed_11() const { return ___Refreshed_11; } inline RefreshEventHandler_t3510407695 ** get_address_of_Refreshed_11() { return &___Refreshed_11; } inline void set_Refreshed_11(RefreshEventHandler_t3510407695 * value) { ___Refreshed_11 = value; Il2CppCodeGenWriteBarrier((&___Refreshed_11), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPEDESCRIPTOR_T4022761028_H #ifndef TYPEDESCRIPTIONPROVIDER_T4220413402_H #define TYPEDESCRIPTIONPROVIDER_T4220413402_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.TypeDescriptionProvider struct TypeDescriptionProvider_t4220413402 : public RuntimeObject { public: // System.ComponentModel.TypeDescriptionProvider/EmptyCustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::_emptyCustomTypeDescriptor EmptyCustomTypeDescriptor_t3398936167 * ____emptyCustomTypeDescriptor_0; // System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptionProvider::_parent TypeDescriptionProvider_t4220413402 * ____parent_1; public: inline static int32_t get_offset_of__emptyCustomTypeDescriptor_0() { return static_cast<int32_t>(offsetof(TypeDescriptionProvider_t4220413402, ____emptyCustomTypeDescriptor_0)); } inline EmptyCustomTypeDescriptor_t3398936167 * get__emptyCustomTypeDescriptor_0() const { return ____emptyCustomTypeDescriptor_0; } inline EmptyCustomTypeDescriptor_t3398936167 ** get_address_of__emptyCustomTypeDescriptor_0() { return &____emptyCustomTypeDescriptor_0; } inline void set__emptyCustomTypeDescriptor_0(EmptyCustomTypeDescriptor_t3398936167 * value) { ____emptyCustomTypeDescriptor_0 = value; Il2CppCodeGenWriteBarrier((&____emptyCustomTypeDescriptor_0), value); } inline static int32_t get_offset_of__parent_1() { return static_cast<int32_t>(offsetof(TypeDescriptionProvider_t4220413402, ____parent_1)); } inline TypeDescriptionProvider_t4220413402 * get__parent_1() const { return ____parent_1; } inline TypeDescriptionProvider_t4220413402 ** get_address_of__parent_1() { return &____parent_1; } inline void set__parent_1(TypeDescriptionProvider_t4220413402 * value) { ____parent_1 = value; Il2CppCodeGenWriteBarrier((&____parent_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPEDESCRIPTIONPROVIDER_T4220413402_H #ifndef INFO_T623560747_H #define INFO_T623560747_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.Info struct Info_t623560747 : public RuntimeObject { public: // System.Type System.ComponentModel.Info::_infoType Type_t * ____infoType_0; // System.ComponentModel.EventDescriptor System.ComponentModel.Info::_defaultEvent EventDescriptor_t3701426622 * ____defaultEvent_1; // System.Boolean System.ComponentModel.Info::_gotDefaultEvent bool ____gotDefaultEvent_2; // System.ComponentModel.PropertyDescriptor System.ComponentModel.Info::_defaultProperty PropertyDescriptor_t2555988069 * ____defaultProperty_3; // System.Boolean System.ComponentModel.Info::_gotDefaultProperty bool ____gotDefaultProperty_4; // System.ComponentModel.AttributeCollection System.ComponentModel.Info::_attributes AttributeCollection_t3634739288 * ____attributes_5; public: inline static int32_t get_offset_of__infoType_0() { return static_cast<int32_t>(offsetof(Info_t623560747, ____infoType_0)); } inline Type_t * get__infoType_0() const { return ____infoType_0; } inline Type_t ** get_address_of__infoType_0() { return &____infoType_0; } inline void set__infoType_0(Type_t * value) { ____infoType_0 = value; Il2CppCodeGenWriteBarrier((&____infoType_0), value); } inline static int32_t get_offset_of__defaultEvent_1() { return static_cast<int32_t>(offsetof(Info_t623560747, ____defaultEvent_1)); } inline EventDescriptor_t3701426622 * get__defaultEvent_1() const { return ____defaultEvent_1; } inline EventDescriptor_t3701426622 ** get_address_of__defaultEvent_1() { return &____defaultEvent_1; } inline void set__defaultEvent_1(EventDescriptor_t3701426622 * value) { ____defaultEvent_1 = value; Il2CppCodeGenWriteBarrier((&____defaultEvent_1), value); } inline static int32_t get_offset_of__gotDefaultEvent_2() { return static_cast<int32_t>(offsetof(Info_t623560747, ____gotDefaultEvent_2)); } inline bool get__gotDefaultEvent_2() const { return ____gotDefaultEvent_2; } inline bool* get_address_of__gotDefaultEvent_2() { return &____gotDefaultEvent_2; } inline void set__gotDefaultEvent_2(bool value) { ____gotDefaultEvent_2 = value; } inline static int32_t get_offset_of__defaultProperty_3() { return static_cast<int32_t>(offsetof(Info_t623560747, ____defaultProperty_3)); } inline PropertyDescriptor_t2555988069 * get__defaultProperty_3() const { return ____defaultProperty_3; } inline PropertyDescriptor_t2555988069 ** get_address_of__defaultProperty_3() { return &____defaultProperty_3; } inline void set__defaultProperty_3(PropertyDescriptor_t2555988069 * value) { ____defaultProperty_3 = value; Il2CppCodeGenWriteBarrier((&____defaultProperty_3), value); } inline static int32_t get_offset_of__gotDefaultProperty_4() { return static_cast<int32_t>(offsetof(Info_t623560747, ____gotDefaultProperty_4)); } inline bool get__gotDefaultProperty_4() const { return ____gotDefaultProperty_4; } inline bool* get_address_of__gotDefaultProperty_4() { return &____gotDefaultProperty_4; } inline void set__gotDefaultProperty_4(bool value) { ____gotDefaultProperty_4 = value; } inline static int32_t get_offset_of__attributes_5() { return static_cast<int32_t>(offsetof(Info_t623560747, ____attributes_5)); } inline AttributeCollection_t3634739288 * get__attributes_5() const { return ____attributes_5; } inline AttributeCollection_t3634739288 ** get_address_of__attributes_5() { return &____attributes_5; } inline void set__attributes_5(AttributeCollection_t3634739288 * value) { ____attributes_5 = value; Il2CppCodeGenWriteBarrier((&____attributes_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INFO_T623560747_H #ifndef EVENTDESCRIPTORCOLLECTION_T3861329784_H #define EVENTDESCRIPTORCOLLECTION_T3861329784_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.EventDescriptorCollection struct EventDescriptorCollection_t3861329784 : public RuntimeObject { public: // System.Collections.ArrayList System.ComponentModel.EventDescriptorCollection::eventList ArrayList_t4277734320 * ___eventList_0; // System.Boolean System.ComponentModel.EventDescriptorCollection::isReadOnly bool ___isReadOnly_1; public: inline static int32_t get_offset_of_eventList_0() { return static_cast<int32_t>(offsetof(EventDescriptorCollection_t3861329784, ___eventList_0)); } inline ArrayList_t4277734320 * get_eventList_0() const { return ___eventList_0; } inline ArrayList_t4277734320 ** get_address_of_eventList_0() { return &___eventList_0; } inline void set_eventList_0(ArrayList_t4277734320 * value) { ___eventList_0 = value; Il2CppCodeGenWriteBarrier((&___eventList_0), value); } inline static int32_t get_offset_of_isReadOnly_1() { return static_cast<int32_t>(offsetof(EventDescriptorCollection_t3861329784, ___isReadOnly_1)); } inline bool get_isReadOnly_1() const { return ___isReadOnly_1; } inline bool* get_address_of_isReadOnly_1() { return &___isReadOnly_1; } inline void set_isReadOnly_1(bool value) { ___isReadOnly_1 = value; } }; struct EventDescriptorCollection_t3861329784_StaticFields { public: // System.ComponentModel.EventDescriptorCollection System.ComponentModel.EventDescriptorCollection::Empty EventDescriptorCollection_t3861329784 * ___Empty_2; public: inline static int32_t get_offset_of_Empty_2() { return static_cast<int32_t>(offsetof(EventDescriptorCollection_t3861329784_StaticFields, ___Empty_2)); } inline EventDescriptorCollection_t3861329784 * get_Empty_2() const { return ___Empty_2; } inline EventDescriptorCollection_t3861329784 ** get_address_of_Empty_2() { return &___Empty_2; } inline void set_Empty_2(EventDescriptorCollection_t3861329784 * value) { ___Empty_2 = value; Il2CppCodeGenWriteBarrier((&___Empty_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EVENTDESCRIPTORCOLLECTION_T3861329784_H #ifndef INSTANCEDESCRIPTOR_T156299730_H #define INSTANCEDESCRIPTOR_T156299730_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.Design.Serialization.InstanceDescriptor struct InstanceDescriptor_t156299730 : public RuntimeObject { public: // System.Reflection.MemberInfo System.ComponentModel.Design.Serialization.InstanceDescriptor::member MemberInfo_t * ___member_0; // System.Collections.ICollection System.ComponentModel.Design.Serialization.InstanceDescriptor::arguments RuntimeObject* ___arguments_1; // System.Boolean System.ComponentModel.Design.Serialization.InstanceDescriptor::isComplete bool ___isComplete_2; public: inline static int32_t get_offset_of_member_0() { return static_cast<int32_t>(offsetof(InstanceDescriptor_t156299730, ___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((&___member_0), value); } inline static int32_t get_offset_of_arguments_1() { return static_cast<int32_t>(offsetof(InstanceDescriptor_t156299730, ___arguments_1)); } inline RuntimeObject* get_arguments_1() const { return ___arguments_1; } inline RuntimeObject** get_address_of_arguments_1() { return &___arguments_1; } inline void set_arguments_1(RuntimeObject* value) { ___arguments_1 = value; Il2CppCodeGenWriteBarrier((&___arguments_1), value); } inline static int32_t get_offset_of_isComplete_2() { return static_cast<int32_t>(offsetof(InstanceDescriptor_t156299730, ___isComplete_2)); } inline bool get_isComplete_2() const { return ___isComplete_2; } inline bool* get_address_of_isComplete_2() { return &___isComplete_2; } inline void set_isComplete_2(bool value) { ___isComplete_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INSTANCEDESCRIPTOR_T156299730_H #ifndef EQUALITYCOMPARER_1_T3900351378_H #define EQUALITYCOMPARER_1_T3900351378_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.ComponentModel.WeakObjectWrapper> struct EqualityComparer_1_t3900351378 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t3900351378_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1::_default EqualityComparer_1_t3900351378 * ____default_0; public: inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t3900351378_StaticFields, ____default_0)); } inline EqualityComparer_1_t3900351378 * get__default_0() const { return ____default_0; } inline EqualityComparer_1_t3900351378 ** get_address_of__default_0() { return &____default_0; } inline void set__default_0(EqualityComparer_1_t3900351378 * value) { ____default_0 = value; Il2CppCodeGenWriteBarrier((&____default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T3900351378_H #ifndef SERIALIZATIONINFO_T2260044969_H #define SERIALIZATIONINFO_T2260044969_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t2260044969 : public RuntimeObject { public: // System.Collections.Hashtable System.Runtime.Serialization.SerializationInfo::serialized Hashtable_t448324601 * ___serialized_0; // System.Collections.ArrayList System.Runtime.Serialization.SerializationInfo::values ArrayList_t4277734320 * ___values_1; // System.String System.Runtime.Serialization.SerializationInfo::assemblyName String_t* ___assemblyName_2; // System.String System.Runtime.Serialization.SerializationInfo::fullTypeName String_t* ___fullTypeName_3; // System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::converter RuntimeObject* ___converter_4; public: inline static int32_t get_offset_of_serialized_0() { return static_cast<int32_t>(offsetof(SerializationInfo_t2260044969, ___serialized_0)); } inline Hashtable_t448324601 * get_serialized_0() const { return ___serialized_0; } inline Hashtable_t448324601 ** get_address_of_serialized_0() { return &___serialized_0; } inline void set_serialized_0(Hashtable_t448324601 * value) { ___serialized_0 = value; Il2CppCodeGenWriteBarrier((&___serialized_0), value); } inline static int32_t get_offset_of_values_1() { return static_cast<int32_t>(offsetof(SerializationInfo_t2260044969, ___values_1)); } inline ArrayList_t4277734320 * get_values_1() const { return ___values_1; } inline ArrayList_t4277734320 ** get_address_of_values_1() { return &___values_1; } inline void set_values_1(ArrayList_t4277734320 * value) { ___values_1 = value; Il2CppCodeGenWriteBarrier((&___values_1), value); } inline static int32_t get_offset_of_assemblyName_2() { return static_cast<int32_t>(offsetof(SerializationInfo_t2260044969, ___assemblyName_2)); } inline String_t* get_assemblyName_2() const { return ___assemblyName_2; } inline String_t** get_address_of_assemblyName_2() { return &___assemblyName_2; } inline void set_assemblyName_2(String_t* value) { ___assemblyName_2 = value; Il2CppCodeGenWriteBarrier((&___assemblyName_2), value); } inline static int32_t get_offset_of_fullTypeName_3() { return static_cast<int32_t>(offsetof(SerializationInfo_t2260044969, ___fullTypeName_3)); } inline String_t* get_fullTypeName_3() const { return ___fullTypeName_3; } inline String_t** get_address_of_fullTypeName_3() { return &___fullTypeName_3; } inline void set_fullTypeName_3(String_t* value) { ___fullTypeName_3 = value; Il2CppCodeGenWriteBarrier((&___fullTypeName_3), value); } inline static int32_t get_offset_of_converter_4() { return static_cast<int32_t>(offsetof(SerializationInfo_t2260044969, ___converter_4)); } inline RuntimeObject* get_converter_4() const { return ___converter_4; } inline RuntimeObject** get_address_of_converter_4() { return &___converter_4; } inline void set_converter_4(RuntimeObject* value) { ___converter_4 = value; Il2CppCodeGenWriteBarrier((&___converter_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SERIALIZATIONINFO_T2260044969_H #ifndef URIPARSER_T812050460_H #define URIPARSER_T812050460_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UriParser struct UriParser_t812050460 : public RuntimeObject { public: // System.String System.UriParser::scheme_name String_t* ___scheme_name_2; // System.Int32 System.UriParser::default_port int32_t ___default_port_3; public: inline static int32_t get_offset_of_scheme_name_2() { return static_cast<int32_t>(offsetof(UriParser_t812050460, ___scheme_name_2)); } inline String_t* get_scheme_name_2() const { return ___scheme_name_2; } inline String_t** get_address_of_scheme_name_2() { return &___scheme_name_2; } inline void set_scheme_name_2(String_t* value) { ___scheme_name_2 = value; Il2CppCodeGenWriteBarrier((&___scheme_name_2), value); } inline static int32_t get_offset_of_default_port_3() { return static_cast<int32_t>(offsetof(UriParser_t812050460, ___default_port_3)); } inline int32_t get_default_port_3() const { return ___default_port_3; } inline int32_t* get_address_of_default_port_3() { return &___default_port_3; } inline void set_default_port_3(int32_t value) { ___default_port_3 = value; } }; struct UriParser_t812050460_StaticFields { public: // System.Object System.UriParser::lock_object RuntimeObject * ___lock_object_0; // System.Collections.Hashtable System.UriParser::table Hashtable_t448324601 * ___table_1; // System.Text.RegularExpressions.Regex System.UriParser::uri_regex Regex_t2405265571 * ___uri_regex_4; // System.Text.RegularExpressions.Regex System.UriParser::auth_regex Regex_t2405265571 * ___auth_regex_5; public: inline static int32_t get_offset_of_lock_object_0() { return static_cast<int32_t>(offsetof(UriParser_t812050460_StaticFields, ___lock_object_0)); } inline RuntimeObject * get_lock_object_0() const { return ___lock_object_0; } inline RuntimeObject ** get_address_of_lock_object_0() { return &___lock_object_0; } inline void set_lock_object_0(RuntimeObject * value) { ___lock_object_0 = value; Il2CppCodeGenWriteBarrier((&___lock_object_0), value); } inline static int32_t get_offset_of_table_1() { return static_cast<int32_t>(offsetof(UriParser_t812050460_StaticFields, ___table_1)); } inline Hashtable_t448324601 * get_table_1() const { return ___table_1; } inline Hashtable_t448324601 ** get_address_of_table_1() { return &___table_1; } inline void set_table_1(Hashtable_t448324601 * value) { ___table_1 = value; Il2CppCodeGenWriteBarrier((&___table_1), value); } inline static int32_t get_offset_of_uri_regex_4() { return static_cast<int32_t>(offsetof(UriParser_t812050460_StaticFields, ___uri_regex_4)); } inline Regex_t2405265571 * get_uri_regex_4() const { return ___uri_regex_4; } inline Regex_t2405265571 ** get_address_of_uri_regex_4() { return &___uri_regex_4; } inline void set_uri_regex_4(Regex_t2405265571 * value) { ___uri_regex_4 = value; Il2CppCodeGenWriteBarrier((&___uri_regex_4), value); } inline static int32_t get_offset_of_auth_regex_5() { return static_cast<int32_t>(offsetof(UriParser_t812050460_StaticFields, ___auth_regex_5)); } inline Regex_t2405265571 * get_auth_regex_5() const { return ___auth_regex_5; } inline Regex_t2405265571 ** get_address_of_auth_regex_5() { return &___auth_regex_5; } inline void set_auth_regex_5(Regex_t2405265571 * value) { ___auth_regex_5 = value; Il2CppCodeGenWriteBarrier((&___auth_regex_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // URIPARSER_T812050460_H #ifndef NUMBERFORMATINFO_T2417595227_H #define NUMBERFORMATINFO_T2417595227_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.NumberFormatInfo struct NumberFormatInfo_t2417595227 : public RuntimeObject { public: // System.Boolean System.Globalization.NumberFormatInfo::isReadOnly bool ___isReadOnly_0; // System.String System.Globalization.NumberFormatInfo::decimalFormats String_t* ___decimalFormats_1; // System.String System.Globalization.NumberFormatInfo::currencyFormats String_t* ___currencyFormats_2; // System.String System.Globalization.NumberFormatInfo::percentFormats String_t* ___percentFormats_3; // System.String System.Globalization.NumberFormatInfo::digitPattern String_t* ___digitPattern_4; // System.String System.Globalization.NumberFormatInfo::zeroPattern String_t* ___zeroPattern_5; // System.Int32 System.Globalization.NumberFormatInfo::currencyDecimalDigits int32_t ___currencyDecimalDigits_6; // System.String System.Globalization.NumberFormatInfo::currencyDecimalSeparator String_t* ___currencyDecimalSeparator_7; // System.String System.Globalization.NumberFormatInfo::currencyGroupSeparator String_t* ___currencyGroupSeparator_8; // System.Int32[] System.Globalization.NumberFormatInfo::currencyGroupSizes Int32U5BU5D_t1883881640* ___currencyGroupSizes_9; // System.Int32 System.Globalization.NumberFormatInfo::currencyNegativePattern int32_t ___currencyNegativePattern_10; // System.Int32 System.Globalization.NumberFormatInfo::currencyPositivePattern int32_t ___currencyPositivePattern_11; // System.String System.Globalization.NumberFormatInfo::currencySymbol String_t* ___currencySymbol_12; // System.String System.Globalization.NumberFormatInfo::nanSymbol String_t* ___nanSymbol_13; // System.String System.Globalization.NumberFormatInfo::negativeInfinitySymbol String_t* ___negativeInfinitySymbol_14; // System.String System.Globalization.NumberFormatInfo::negativeSign String_t* ___negativeSign_15; // System.Int32 System.Globalization.NumberFormatInfo::numberDecimalDigits int32_t ___numberDecimalDigits_16; // System.String System.Globalization.NumberFormatInfo::numberDecimalSeparator String_t* ___numberDecimalSeparator_17; // System.String System.Globalization.NumberFormatInfo::numberGroupSeparator String_t* ___numberGroupSeparator_18; // System.Int32[] System.Globalization.NumberFormatInfo::numberGroupSizes Int32U5BU5D_t1883881640* ___numberGroupSizes_19; // System.Int32 System.Globalization.NumberFormatInfo::numberNegativePattern int32_t ___numberNegativePattern_20; // System.Int32 System.Globalization.NumberFormatInfo::percentDecimalDigits int32_t ___percentDecimalDigits_21; // System.String System.Globalization.NumberFormatInfo::percentDecimalSeparator String_t* ___percentDecimalSeparator_22; // System.String System.Globalization.NumberFormatInfo::percentGroupSeparator String_t* ___percentGroupSeparator_23; // System.Int32[] System.Globalization.NumberFormatInfo::percentGroupSizes Int32U5BU5D_t1883881640* ___percentGroupSizes_24; // System.Int32 System.Globalization.NumberFormatInfo::percentNegativePattern int32_t ___percentNegativePattern_25; // System.Int32 System.Globalization.NumberFormatInfo::percentPositivePattern int32_t ___percentPositivePattern_26; // System.String System.Globalization.NumberFormatInfo::percentSymbol String_t* ___percentSymbol_27; // System.String System.Globalization.NumberFormatInfo::perMilleSymbol String_t* ___perMilleSymbol_28; // System.String System.Globalization.NumberFormatInfo::positiveInfinitySymbol String_t* ___positiveInfinitySymbol_29; // System.String System.Globalization.NumberFormatInfo::positiveSign String_t* ___positiveSign_30; // System.String System.Globalization.NumberFormatInfo::ansiCurrencySymbol String_t* ___ansiCurrencySymbol_31; // System.Int32 System.Globalization.NumberFormatInfo::m_dataItem int32_t ___m_dataItem_32; // System.Boolean System.Globalization.NumberFormatInfo::m_useUserOverride bool ___m_useUserOverride_33; // System.Boolean System.Globalization.NumberFormatInfo::validForParseAsNumber bool ___validForParseAsNumber_34; // System.Boolean System.Globalization.NumberFormatInfo::validForParseAsCurrency bool ___validForParseAsCurrency_35; // System.String[] System.Globalization.NumberFormatInfo::nativeDigits StringU5BU5D_t1187188029* ___nativeDigits_36; // System.Int32 System.Globalization.NumberFormatInfo::digitSubstitution int32_t ___digitSubstitution_37; public: inline static int32_t get_offset_of_isReadOnly_0() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___isReadOnly_0)); } inline bool get_isReadOnly_0() const { return ___isReadOnly_0; } inline bool* get_address_of_isReadOnly_0() { return &___isReadOnly_0; } inline void set_isReadOnly_0(bool value) { ___isReadOnly_0 = value; } inline static int32_t get_offset_of_decimalFormats_1() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___decimalFormats_1)); } inline String_t* get_decimalFormats_1() const { return ___decimalFormats_1; } inline String_t** get_address_of_decimalFormats_1() { return &___decimalFormats_1; } inline void set_decimalFormats_1(String_t* value) { ___decimalFormats_1 = value; Il2CppCodeGenWriteBarrier((&___decimalFormats_1), value); } inline static int32_t get_offset_of_currencyFormats_2() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___currencyFormats_2)); } inline String_t* get_currencyFormats_2() const { return ___currencyFormats_2; } inline String_t** get_address_of_currencyFormats_2() { return &___currencyFormats_2; } inline void set_currencyFormats_2(String_t* value) { ___currencyFormats_2 = value; Il2CppCodeGenWriteBarrier((&___currencyFormats_2), value); } inline static int32_t get_offset_of_percentFormats_3() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___percentFormats_3)); } inline String_t* get_percentFormats_3() const { return ___percentFormats_3; } inline String_t** get_address_of_percentFormats_3() { return &___percentFormats_3; } inline void set_percentFormats_3(String_t* value) { ___percentFormats_3 = value; Il2CppCodeGenWriteBarrier((&___percentFormats_3), value); } inline static int32_t get_offset_of_digitPattern_4() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___digitPattern_4)); } inline String_t* get_digitPattern_4() const { return ___digitPattern_4; } inline String_t** get_address_of_digitPattern_4() { return &___digitPattern_4; } inline void set_digitPattern_4(String_t* value) { ___digitPattern_4 = value; Il2CppCodeGenWriteBarrier((&___digitPattern_4), value); } inline static int32_t get_offset_of_zeroPattern_5() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___zeroPattern_5)); } inline String_t* get_zeroPattern_5() const { return ___zeroPattern_5; } inline String_t** get_address_of_zeroPattern_5() { return &___zeroPattern_5; } inline void set_zeroPattern_5(String_t* value) { ___zeroPattern_5 = value; Il2CppCodeGenWriteBarrier((&___zeroPattern_5), value); } inline static int32_t get_offset_of_currencyDecimalDigits_6() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___currencyDecimalDigits_6)); } inline int32_t get_currencyDecimalDigits_6() const { return ___currencyDecimalDigits_6; } inline int32_t* get_address_of_currencyDecimalDigits_6() { return &___currencyDecimalDigits_6; } inline void set_currencyDecimalDigits_6(int32_t value) { ___currencyDecimalDigits_6 = value; } inline static int32_t get_offset_of_currencyDecimalSeparator_7() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___currencyDecimalSeparator_7)); } inline String_t* get_currencyDecimalSeparator_7() const { return ___currencyDecimalSeparator_7; } inline String_t** get_address_of_currencyDecimalSeparator_7() { return &___currencyDecimalSeparator_7; } inline void set_currencyDecimalSeparator_7(String_t* value) { ___currencyDecimalSeparator_7 = value; Il2CppCodeGenWriteBarrier((&___currencyDecimalSeparator_7), value); } inline static int32_t get_offset_of_currencyGroupSeparator_8() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___currencyGroupSeparator_8)); } inline String_t* get_currencyGroupSeparator_8() const { return ___currencyGroupSeparator_8; } inline String_t** get_address_of_currencyGroupSeparator_8() { return &___currencyGroupSeparator_8; } inline void set_currencyGroupSeparator_8(String_t* value) { ___currencyGroupSeparator_8 = value; Il2CppCodeGenWriteBarrier((&___currencyGroupSeparator_8), value); } inline static int32_t get_offset_of_currencyGroupSizes_9() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___currencyGroupSizes_9)); } inline Int32U5BU5D_t1883881640* get_currencyGroupSizes_9() const { return ___currencyGroupSizes_9; } inline Int32U5BU5D_t1883881640** get_address_of_currencyGroupSizes_9() { return &___currencyGroupSizes_9; } inline void set_currencyGroupSizes_9(Int32U5BU5D_t1883881640* value) { ___currencyGroupSizes_9 = value; Il2CppCodeGenWriteBarrier((&___currencyGroupSizes_9), value); } inline static int32_t get_offset_of_currencyNegativePattern_10() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___currencyNegativePattern_10)); } inline int32_t get_currencyNegativePattern_10() const { return ___currencyNegativePattern_10; } inline int32_t* get_address_of_currencyNegativePattern_10() { return &___currencyNegativePattern_10; } inline void set_currencyNegativePattern_10(int32_t value) { ___currencyNegativePattern_10 = value; } inline static int32_t get_offset_of_currencyPositivePattern_11() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___currencyPositivePattern_11)); } inline int32_t get_currencyPositivePattern_11() const { return ___currencyPositivePattern_11; } inline int32_t* get_address_of_currencyPositivePattern_11() { return &___currencyPositivePattern_11; } inline void set_currencyPositivePattern_11(int32_t value) { ___currencyPositivePattern_11 = value; } inline static int32_t get_offset_of_currencySymbol_12() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___currencySymbol_12)); } inline String_t* get_currencySymbol_12() const { return ___currencySymbol_12; } inline String_t** get_address_of_currencySymbol_12() { return &___currencySymbol_12; } inline void set_currencySymbol_12(String_t* value) { ___currencySymbol_12 = value; Il2CppCodeGenWriteBarrier((&___currencySymbol_12), value); } inline static int32_t get_offset_of_nanSymbol_13() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___nanSymbol_13)); } inline String_t* get_nanSymbol_13() const { return ___nanSymbol_13; } inline String_t** get_address_of_nanSymbol_13() { return &___nanSymbol_13; } inline void set_nanSymbol_13(String_t* value) { ___nanSymbol_13 = value; Il2CppCodeGenWriteBarrier((&___nanSymbol_13), value); } inline static int32_t get_offset_of_negativeInfinitySymbol_14() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___negativeInfinitySymbol_14)); } inline String_t* get_negativeInfinitySymbol_14() const { return ___negativeInfinitySymbol_14; } inline String_t** get_address_of_negativeInfinitySymbol_14() { return &___negativeInfinitySymbol_14; } inline void set_negativeInfinitySymbol_14(String_t* value) { ___negativeInfinitySymbol_14 = value; Il2CppCodeGenWriteBarrier((&___negativeInfinitySymbol_14), value); } inline static int32_t get_offset_of_negativeSign_15() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___negativeSign_15)); } inline String_t* get_negativeSign_15() const { return ___negativeSign_15; } inline String_t** get_address_of_negativeSign_15() { return &___negativeSign_15; } inline void set_negativeSign_15(String_t* value) { ___negativeSign_15 = value; Il2CppCodeGenWriteBarrier((&___negativeSign_15), value); } inline static int32_t get_offset_of_numberDecimalDigits_16() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___numberDecimalDigits_16)); } inline int32_t get_numberDecimalDigits_16() const { return ___numberDecimalDigits_16; } inline int32_t* get_address_of_numberDecimalDigits_16() { return &___numberDecimalDigits_16; } inline void set_numberDecimalDigits_16(int32_t value) { ___numberDecimalDigits_16 = value; } inline static int32_t get_offset_of_numberDecimalSeparator_17() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___numberDecimalSeparator_17)); } inline String_t* get_numberDecimalSeparator_17() const { return ___numberDecimalSeparator_17; } inline String_t** get_address_of_numberDecimalSeparator_17() { return &___numberDecimalSeparator_17; } inline void set_numberDecimalSeparator_17(String_t* value) { ___numberDecimalSeparator_17 = value; Il2CppCodeGenWriteBarrier((&___numberDecimalSeparator_17), value); } inline static int32_t get_offset_of_numberGroupSeparator_18() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___numberGroupSeparator_18)); } inline String_t* get_numberGroupSeparator_18() const { return ___numberGroupSeparator_18; } inline String_t** get_address_of_numberGroupSeparator_18() { return &___numberGroupSeparator_18; } inline void set_numberGroupSeparator_18(String_t* value) { ___numberGroupSeparator_18 = value; Il2CppCodeGenWriteBarrier((&___numberGroupSeparator_18), value); } inline static int32_t get_offset_of_numberGroupSizes_19() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___numberGroupSizes_19)); } inline Int32U5BU5D_t1883881640* get_numberGroupSizes_19() const { return ___numberGroupSizes_19; } inline Int32U5BU5D_t1883881640** get_address_of_numberGroupSizes_19() { return &___numberGroupSizes_19; } inline void set_numberGroupSizes_19(Int32U5BU5D_t1883881640* value) { ___numberGroupSizes_19 = value; Il2CppCodeGenWriteBarrier((&___numberGroupSizes_19), value); } inline static int32_t get_offset_of_numberNegativePattern_20() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___numberNegativePattern_20)); } inline int32_t get_numberNegativePattern_20() const { return ___numberNegativePattern_20; } inline int32_t* get_address_of_numberNegativePattern_20() { return &___numberNegativePattern_20; } inline void set_numberNegativePattern_20(int32_t value) { ___numberNegativePattern_20 = value; } inline static int32_t get_offset_of_percentDecimalDigits_21() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___percentDecimalDigits_21)); } inline int32_t get_percentDecimalDigits_21() const { return ___percentDecimalDigits_21; } inline int32_t* get_address_of_percentDecimalDigits_21() { return &___percentDecimalDigits_21; } inline void set_percentDecimalDigits_21(int32_t value) { ___percentDecimalDigits_21 = value; } inline static int32_t get_offset_of_percentDecimalSeparator_22() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___percentDecimalSeparator_22)); } inline String_t* get_percentDecimalSeparator_22() const { return ___percentDecimalSeparator_22; } inline String_t** get_address_of_percentDecimalSeparator_22() { return &___percentDecimalSeparator_22; } inline void set_percentDecimalSeparator_22(String_t* value) { ___percentDecimalSeparator_22 = value; Il2CppCodeGenWriteBarrier((&___percentDecimalSeparator_22), value); } inline static int32_t get_offset_of_percentGroupSeparator_23() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___percentGroupSeparator_23)); } inline String_t* get_percentGroupSeparator_23() const { return ___percentGroupSeparator_23; } inline String_t** get_address_of_percentGroupSeparator_23() { return &___percentGroupSeparator_23; } inline void set_percentGroupSeparator_23(String_t* value) { ___percentGroupSeparator_23 = value; Il2CppCodeGenWriteBarrier((&___percentGroupSeparator_23), value); } inline static int32_t get_offset_of_percentGroupSizes_24() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___percentGroupSizes_24)); } inline Int32U5BU5D_t1883881640* get_percentGroupSizes_24() const { return ___percentGroupSizes_24; } inline Int32U5BU5D_t1883881640** get_address_of_percentGroupSizes_24() { return &___percentGroupSizes_24; } inline void set_percentGroupSizes_24(Int32U5BU5D_t1883881640* value) { ___percentGroupSizes_24 = value; Il2CppCodeGenWriteBarrier((&___percentGroupSizes_24), value); } inline static int32_t get_offset_of_percentNegativePattern_25() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___percentNegativePattern_25)); } inline int32_t get_percentNegativePattern_25() const { return ___percentNegativePattern_25; } inline int32_t* get_address_of_percentNegativePattern_25() { return &___percentNegativePattern_25; } inline void set_percentNegativePattern_25(int32_t value) { ___percentNegativePattern_25 = value; } inline static int32_t get_offset_of_percentPositivePattern_26() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___percentPositivePattern_26)); } inline int32_t get_percentPositivePattern_26() const { return ___percentPositivePattern_26; } inline int32_t* get_address_of_percentPositivePattern_26() { return &___percentPositivePattern_26; } inline void set_percentPositivePattern_26(int32_t value) { ___percentPositivePattern_26 = value; } inline static int32_t get_offset_of_percentSymbol_27() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___percentSymbol_27)); } inline String_t* get_percentSymbol_27() const { return ___percentSymbol_27; } inline String_t** get_address_of_percentSymbol_27() { return &___percentSymbol_27; } inline void set_percentSymbol_27(String_t* value) { ___percentSymbol_27 = value; Il2CppCodeGenWriteBarrier((&___percentSymbol_27), value); } inline static int32_t get_offset_of_perMilleSymbol_28() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___perMilleSymbol_28)); } inline String_t* get_perMilleSymbol_28() const { return ___perMilleSymbol_28; } inline String_t** get_address_of_perMilleSymbol_28() { return &___perMilleSymbol_28; } inline void set_perMilleSymbol_28(String_t* value) { ___perMilleSymbol_28 = value; Il2CppCodeGenWriteBarrier((&___perMilleSymbol_28), value); } inline static int32_t get_offset_of_positiveInfinitySymbol_29() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___positiveInfinitySymbol_29)); } inline String_t* get_positiveInfinitySymbol_29() const { return ___positiveInfinitySymbol_29; } inline String_t** get_address_of_positiveInfinitySymbol_29() { return &___positiveInfinitySymbol_29; } inline void set_positiveInfinitySymbol_29(String_t* value) { ___positiveInfinitySymbol_29 = value; Il2CppCodeGenWriteBarrier((&___positiveInfinitySymbol_29), value); } inline static int32_t get_offset_of_positiveSign_30() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___positiveSign_30)); } inline String_t* get_positiveSign_30() const { return ___positiveSign_30; } inline String_t** get_address_of_positiveSign_30() { return &___positiveSign_30; } inline void set_positiveSign_30(String_t* value) { ___positiveSign_30 = value; Il2CppCodeGenWriteBarrier((&___positiveSign_30), value); } inline static int32_t get_offset_of_ansiCurrencySymbol_31() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___ansiCurrencySymbol_31)); } inline String_t* get_ansiCurrencySymbol_31() const { return ___ansiCurrencySymbol_31; } inline String_t** get_address_of_ansiCurrencySymbol_31() { return &___ansiCurrencySymbol_31; } inline void set_ansiCurrencySymbol_31(String_t* value) { ___ansiCurrencySymbol_31 = value; Il2CppCodeGenWriteBarrier((&___ansiCurrencySymbol_31), value); } inline static int32_t get_offset_of_m_dataItem_32() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___m_dataItem_32)); } inline int32_t get_m_dataItem_32() const { return ___m_dataItem_32; } inline int32_t* get_address_of_m_dataItem_32() { return &___m_dataItem_32; } inline void set_m_dataItem_32(int32_t value) { ___m_dataItem_32 = value; } inline static int32_t get_offset_of_m_useUserOverride_33() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___m_useUserOverride_33)); } inline bool get_m_useUserOverride_33() const { return ___m_useUserOverride_33; } inline bool* get_address_of_m_useUserOverride_33() { return &___m_useUserOverride_33; } inline void set_m_useUserOverride_33(bool value) { ___m_useUserOverride_33 = value; } inline static int32_t get_offset_of_validForParseAsNumber_34() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___validForParseAsNumber_34)); } inline bool get_validForParseAsNumber_34() const { return ___validForParseAsNumber_34; } inline bool* get_address_of_validForParseAsNumber_34() { return &___validForParseAsNumber_34; } inline void set_validForParseAsNumber_34(bool value) { ___validForParseAsNumber_34 = value; } inline static int32_t get_offset_of_validForParseAsCurrency_35() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___validForParseAsCurrency_35)); } inline bool get_validForParseAsCurrency_35() const { return ___validForParseAsCurrency_35; } inline bool* get_address_of_validForParseAsCurrency_35() { return &___validForParseAsCurrency_35; } inline void set_validForParseAsCurrency_35(bool value) { ___validForParseAsCurrency_35 = value; } inline static int32_t get_offset_of_nativeDigits_36() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___nativeDigits_36)); } inline StringU5BU5D_t1187188029* get_nativeDigits_36() const { return ___nativeDigits_36; } inline StringU5BU5D_t1187188029** get_address_of_nativeDigits_36() { return &___nativeDigits_36; } inline void set_nativeDigits_36(StringU5BU5D_t1187188029* value) { ___nativeDigits_36 = value; Il2CppCodeGenWriteBarrier((&___nativeDigits_36), value); } inline static int32_t get_offset_of_digitSubstitution_37() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227, ___digitSubstitution_37)); } inline int32_t get_digitSubstitution_37() const { return ___digitSubstitution_37; } inline int32_t* get_address_of_digitSubstitution_37() { return &___digitSubstitution_37; } inline void set_digitSubstitution_37(int32_t value) { ___digitSubstitution_37 = value; } }; struct NumberFormatInfo_t2417595227_StaticFields { public: // System.String[] System.Globalization.NumberFormatInfo::invariantNativeDigits StringU5BU5D_t1187188029* ___invariantNativeDigits_38; public: inline static int32_t get_offset_of_invariantNativeDigits_38() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t2417595227_StaticFields, ___invariantNativeDigits_38)); } inline StringU5BU5D_t1187188029* get_invariantNativeDigits_38() const { return ___invariantNativeDigits_38; } inline StringU5BU5D_t1187188029** get_address_of_invariantNativeDigits_38() { return &___invariantNativeDigits_38; } inline void set_invariantNativeDigits_38(StringU5BU5D_t1187188029* value) { ___invariantNativeDigits_38 = value; Il2CppCodeGenWriteBarrier((&___invariantNativeDigits_38), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NUMBERFORMATINFO_T2417595227_H #ifndef DEBUG_T1787454091_H #define DEBUG_T1787454091_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Diagnostics.Debug struct Debug_t1787454091 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEBUG_T1787454091_H #ifndef STOPWATCH_T2576777071_H #define STOPWATCH_T2576777071_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Diagnostics.Stopwatch struct Stopwatch_t2576777071 : public RuntimeObject { public: // System.Int64 System.Diagnostics.Stopwatch::elapsed int64_t ___elapsed_2; // System.Int64 System.Diagnostics.Stopwatch::started int64_t ___started_3; // System.Boolean System.Diagnostics.Stopwatch::is_running bool ___is_running_4; public: inline static int32_t get_offset_of_elapsed_2() { return static_cast<int32_t>(offsetof(Stopwatch_t2576777071, ___elapsed_2)); } inline int64_t get_elapsed_2() const { return ___elapsed_2; } inline int64_t* get_address_of_elapsed_2() { return &___elapsed_2; } inline void set_elapsed_2(int64_t value) { ___elapsed_2 = value; } inline static int32_t get_offset_of_started_3() { return static_cast<int32_t>(offsetof(Stopwatch_t2576777071, ___started_3)); } inline int64_t get_started_3() const { return ___started_3; } inline int64_t* get_address_of_started_3() { return &___started_3; } inline void set_started_3(int64_t value) { ___started_3 = value; } inline static int32_t get_offset_of_is_running_4() { return static_cast<int32_t>(offsetof(Stopwatch_t2576777071, ___is_running_4)); } inline bool get_is_running_4() const { return ___is_running_4; } inline bool* get_address_of_is_running_4() { return &___is_running_4; } inline void set_is_running_4(bool value) { ___is_running_4 = value; } }; struct Stopwatch_t2576777071_StaticFields { public: // System.Int64 System.Diagnostics.Stopwatch::Frequency int64_t ___Frequency_0; // System.Boolean System.Diagnostics.Stopwatch::IsHighResolution bool ___IsHighResolution_1; public: inline static int32_t get_offset_of_Frequency_0() { return static_cast<int32_t>(offsetof(Stopwatch_t2576777071_StaticFields, ___Frequency_0)); } inline int64_t get_Frequency_0() const { return ___Frequency_0; } inline int64_t* get_address_of_Frequency_0() { return &___Frequency_0; } inline void set_Frequency_0(int64_t value) { ___Frequency_0 = value; } inline static int32_t get_offset_of_IsHighResolution_1() { return static_cast<int32_t>(offsetof(Stopwatch_t2576777071_StaticFields, ___IsHighResolution_1)); } inline bool get_IsHighResolution_1() const { return ___IsHighResolution_1; } inline bool* get_address_of_IsHighResolution_1() { return &___IsHighResolution_1; } inline void set_IsHighResolution_1(bool value) { ___IsHighResolution_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STOPWATCH_T2576777071_H #ifndef EXCEPTION_T2428370182_H #define EXCEPTION_T2428370182_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Exception struct Exception_t2428370182 : public RuntimeObject { public: // System.IntPtr[] System.Exception::trace_ips IntPtrU5BU5D_t3954063252* ___trace_ips_0; // System.Exception System.Exception::inner_exception Exception_t2428370182 * ___inner_exception_1; // System.String System.Exception::message String_t* ___message_2; // System.String System.Exception::help_link String_t* ___help_link_3; // System.String System.Exception::class_name String_t* ___class_name_4; // System.String System.Exception::stack_trace String_t* ___stack_trace_5; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_6; // System.Int32 System.Exception::remote_stack_index int32_t ___remote_stack_index_7; // System.Int32 System.Exception::hresult int32_t ___hresult_8; // System.String System.Exception::source String_t* ___source_9; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_10; public: inline static int32_t get_offset_of_trace_ips_0() { return static_cast<int32_t>(offsetof(Exception_t2428370182, ___trace_ips_0)); } inline IntPtrU5BU5D_t3954063252* get_trace_ips_0() const { return ___trace_ips_0; } inline IntPtrU5BU5D_t3954063252** get_address_of_trace_ips_0() { return &___trace_ips_0; } inline void set_trace_ips_0(IntPtrU5BU5D_t3954063252* value) { ___trace_ips_0 = value; Il2CppCodeGenWriteBarrier((&___trace_ips_0), value); } inline static int32_t get_offset_of_inner_exception_1() { return static_cast<int32_t>(offsetof(Exception_t2428370182, ___inner_exception_1)); } inline Exception_t2428370182 * get_inner_exception_1() const { return ___inner_exception_1; } inline Exception_t2428370182 ** get_address_of_inner_exception_1() { return &___inner_exception_1; } inline void set_inner_exception_1(Exception_t2428370182 * value) { ___inner_exception_1 = value; Il2CppCodeGenWriteBarrier((&___inner_exception_1), value); } inline static int32_t get_offset_of_message_2() { return static_cast<int32_t>(offsetof(Exception_t2428370182, ___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((&___message_2), value); } inline static int32_t get_offset_of_help_link_3() { return static_cast<int32_t>(offsetof(Exception_t2428370182, ___help_link_3)); } inline String_t* get_help_link_3() const { return ___help_link_3; } inline String_t** get_address_of_help_link_3() { return &___help_link_3; } inline void set_help_link_3(String_t* value) { ___help_link_3 = value; Il2CppCodeGenWriteBarrier((&___help_link_3), value); } inline static int32_t get_offset_of_class_name_4() { return static_cast<int32_t>(offsetof(Exception_t2428370182, ___class_name_4)); } inline String_t* get_class_name_4() const { return ___class_name_4; } inline String_t** get_address_of_class_name_4() { return &___class_name_4; } inline void set_class_name_4(String_t* value) { ___class_name_4 = value; Il2CppCodeGenWriteBarrier((&___class_name_4), value); } inline static int32_t get_offset_of_stack_trace_5() { return static_cast<int32_t>(offsetof(Exception_t2428370182, ___stack_trace_5)); } inline String_t* get_stack_trace_5() const { return ___stack_trace_5; } inline String_t** get_address_of_stack_trace_5() { return &___stack_trace_5; } inline void set_stack_trace_5(String_t* value) { ___stack_trace_5 = value; Il2CppCodeGenWriteBarrier((&___stack_trace_5), value); } inline static int32_t get_offset_of__remoteStackTraceString_6() { return static_cast<int32_t>(offsetof(Exception_t2428370182, ____remoteStackTraceString_6)); } inline String_t* get__remoteStackTraceString_6() const { return ____remoteStackTraceString_6; } inline String_t** get_address_of__remoteStackTraceString_6() { return &____remoteStackTraceString_6; } inline void set__remoteStackTraceString_6(String_t* value) { ____remoteStackTraceString_6 = value; Il2CppCodeGenWriteBarrier((&____remoteStackTraceString_6), value); } inline static int32_t get_offset_of_remote_stack_index_7() { return static_cast<int32_t>(offsetof(Exception_t2428370182, ___remote_stack_index_7)); } inline int32_t get_remote_stack_index_7() const { return ___remote_stack_index_7; } inline int32_t* get_address_of_remote_stack_index_7() { return &___remote_stack_index_7; } inline void set_remote_stack_index_7(int32_t value) { ___remote_stack_index_7 = value; } inline static int32_t get_offset_of_hresult_8() { return static_cast<int32_t>(offsetof(Exception_t2428370182, ___hresult_8)); } inline int32_t get_hresult_8() const { return ___hresult_8; } inline int32_t* get_address_of_hresult_8() { return &___hresult_8; } inline void set_hresult_8(int32_t value) { ___hresult_8 = value; } inline static int32_t get_offset_of_source_9() { return static_cast<int32_t>(offsetof(Exception_t2428370182, ___source_9)); } inline String_t* get_source_9() const { return ___source_9; } inline String_t** get_address_of_source_9() { return &___source_9; } inline void set_source_9(String_t* value) { ___source_9 = value; Il2CppCodeGenWriteBarrier((&___source_9), value); } inline static int32_t get_offset_of__data_10() { return static_cast<int32_t>(offsetof(Exception_t2428370182, ____data_10)); } inline RuntimeObject* get__data_10() const { return ____data_10; } inline RuntimeObject** get_address_of__data_10() { return &____data_10; } inline void set__data_10(RuntimeObject* value) { ____data_10 = value; Il2CppCodeGenWriteBarrier((&____data_10), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EXCEPTION_T2428370182_H #ifndef DUMMY_T10600413_H #define DUMMY_T10600413_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.Configuration.Dummy struct Dummy_t10600413 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DUMMY_T10600413_H #ifndef DEFAULTCERTIFICATEPOLICY_T1503698831_H #define DEFAULTCERTIFICATEPOLICY_T1503698831_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.DefaultCertificatePolicy struct DefaultCertificatePolicy_t1503698831 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTCERTIFICATEPOLICY_T1503698831_H #ifndef SPKEY_T3349994041_H #define SPKEY_T3349994041_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.ServicePointManager/SPKey struct SPKey_t3349994041 : public RuntimeObject { public: // System.Uri System.Net.ServicePointManager/SPKey::uri Uri_t3882940875 * ___uri_0; // System.Boolean System.Net.ServicePointManager/SPKey::use_connect bool ___use_connect_1; public: inline static int32_t get_offset_of_uri_0() { return static_cast<int32_t>(offsetof(SPKey_t3349994041, ___uri_0)); } inline Uri_t3882940875 * get_uri_0() const { return ___uri_0; } inline Uri_t3882940875 ** get_address_of_uri_0() { return &___uri_0; } inline void set_uri_0(Uri_t3882940875 * value) { ___uri_0 = value; Il2CppCodeGenWriteBarrier((&___uri_0), value); } inline static int32_t get_offset_of_use_connect_1() { return static_cast<int32_t>(offsetof(SPKey_t3349994041, ___use_connect_1)); } inline bool get_use_connect_1() const { return ___use_connect_1; } inline bool* get_address_of_use_connect_1() { return &___use_connect_1; } inline void set_use_connect_1(bool value) { ___use_connect_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SPKEY_T3349994041_H #ifndef SORTEDLIST_T1920303691_H #define SORTEDLIST_T1920303691_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.SortedList struct SortedList_t1920303691 : public RuntimeObject { public: // System.Int32 System.Collections.SortedList::inUse int32_t ___inUse_1; // System.Int32 System.Collections.SortedList::modificationCount int32_t ___modificationCount_2; // System.Collections.SortedList/Slot[] System.Collections.SortedList::table SlotU5BU5D_t519067178* ___table_3; // System.Collections.IComparer System.Collections.SortedList::comparer RuntimeObject* ___comparer_4; // System.Int32 System.Collections.SortedList::defaultCapacity int32_t ___defaultCapacity_5; public: inline static int32_t get_offset_of_inUse_1() { return static_cast<int32_t>(offsetof(SortedList_t1920303691, ___inUse_1)); } inline int32_t get_inUse_1() const { return ___inUse_1; } inline int32_t* get_address_of_inUse_1() { return &___inUse_1; } inline void set_inUse_1(int32_t value) { ___inUse_1 = value; } inline static int32_t get_offset_of_modificationCount_2() { return static_cast<int32_t>(offsetof(SortedList_t1920303691, ___modificationCount_2)); } inline int32_t get_modificationCount_2() const { return ___modificationCount_2; } inline int32_t* get_address_of_modificationCount_2() { return &___modificationCount_2; } inline void set_modificationCount_2(int32_t value) { ___modificationCount_2 = value; } inline static int32_t get_offset_of_table_3() { return static_cast<int32_t>(offsetof(SortedList_t1920303691, ___table_3)); } inline SlotU5BU5D_t519067178* get_table_3() const { return ___table_3; } inline SlotU5BU5D_t519067178** get_address_of_table_3() { return &___table_3; } inline void set_table_3(SlotU5BU5D_t519067178* value) { ___table_3 = value; Il2CppCodeGenWriteBarrier((&___table_3), value); } inline static int32_t get_offset_of_comparer_4() { return static_cast<int32_t>(offsetof(SortedList_t1920303691, ___comparer_4)); } inline RuntimeObject* get_comparer_4() const { return ___comparer_4; } inline RuntimeObject** get_address_of_comparer_4() { return &___comparer_4; } inline void set_comparer_4(RuntimeObject* value) { ___comparer_4 = value; Il2CppCodeGenWriteBarrier((&___comparer_4), value); } inline static int32_t get_offset_of_defaultCapacity_5() { return static_cast<int32_t>(offsetof(SortedList_t1920303691, ___defaultCapacity_5)); } inline int32_t get_defaultCapacity_5() const { return ___defaultCapacity_5; } inline int32_t* get_address_of_defaultCapacity_5() { return &___defaultCapacity_5; } inline void set_defaultCapacity_5(int32_t value) { ___defaultCapacity_5 = value; } }; struct SortedList_t1920303691_StaticFields { public: // System.Int32 System.Collections.SortedList::INITIAL_SIZE int32_t ___INITIAL_SIZE_0; public: inline static int32_t get_offset_of_INITIAL_SIZE_0() { return static_cast<int32_t>(offsetof(SortedList_t1920303691_StaticFields, ___INITIAL_SIZE_0)); } inline int32_t get_INITIAL_SIZE_0() const { return ___INITIAL_SIZE_0; } inline int32_t* get_address_of_INITIAL_SIZE_0() { return &___INITIAL_SIZE_0; } inline void set_INITIAL_SIZE_0(int32_t value) { ___INITIAL_SIZE_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SORTEDLIST_T1920303691_H #ifndef BITCONVERTER_T1877775590_H #define BITCONVERTER_T1877775590_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.BitConverter struct BitConverter_t1877775590 : public RuntimeObject { public: public: }; struct BitConverter_t1877775590_StaticFields { public: // System.Boolean System.BitConverter::SwappedWordsInDouble bool ___SwappedWordsInDouble_0; // System.Boolean System.BitConverter::IsLittleEndian bool ___IsLittleEndian_1; public: inline static int32_t get_offset_of_SwappedWordsInDouble_0() { return static_cast<int32_t>(offsetof(BitConverter_t1877775590_StaticFields, ___SwappedWordsInDouble_0)); } inline bool get_SwappedWordsInDouble_0() const { return ___SwappedWordsInDouble_0; } inline bool* get_address_of_SwappedWordsInDouble_0() { return &___SwappedWordsInDouble_0; } inline void set_SwappedWordsInDouble_0(bool value) { ___SwappedWordsInDouble_0 = value; } inline static int32_t get_offset_of_IsLittleEndian_1() { return static_cast<int32_t>(offsetof(BitConverter_t1877775590_StaticFields, ___IsLittleEndian_1)); } inline bool get_IsLittleEndian_1() const { return ___IsLittleEndian_1; } inline bool* get_address_of_IsLittleEndian_1() { return &___IsLittleEndian_1; } inline void set_IsLittleEndian_1(bool value) { ___IsLittleEndian_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BITCONVERTER_T1877775590_H #ifndef MULTICASTOPTION_T267769071_H #define MULTICASTOPTION_T267769071_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.Sockets.MulticastOption struct MulticastOption_t267769071 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MULTICASTOPTION_T267769071_H #ifndef OID_T1416572164_H #define OID_T1416572164_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Cryptography.Oid struct Oid_t1416572164 : public RuntimeObject { public: // System.String System.Security.Cryptography.Oid::_value String_t* ____value_0; // System.String System.Security.Cryptography.Oid::_name String_t* ____name_1; public: inline static int32_t get_offset_of__value_0() { return static_cast<int32_t>(offsetof(Oid_t1416572164, ____value_0)); } inline String_t* get__value_0() const { return ____value_0; } inline String_t** get_address_of__value_0() { return &____value_0; } inline void set__value_0(String_t* value) { ____value_0 = value; Il2CppCodeGenWriteBarrier((&____value_0), value); } inline static int32_t get_offset_of__name_1() { return static_cast<int32_t>(offsetof(Oid_t1416572164, ____name_1)); } inline String_t* get__name_1() const { return ____name_1; } inline String_t** get_address_of__name_1() { return &____name_1; } inline void set__name_1(String_t* value) { ____name_1 = value; Il2CppCodeGenWriteBarrier((&____name_1), value); } }; struct Oid_t1416572164_StaticFields { public: // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Security.Cryptography.Oid::<>f__switch$map10 Dictionary_2_t2052754070 * ___U3CU3Ef__switchU24map10_2; public: inline static int32_t get_offset_of_U3CU3Ef__switchU24map10_2() { return static_cast<int32_t>(offsetof(Oid_t1416572164_StaticFields, ___U3CU3Ef__switchU24map10_2)); } inline Dictionary_2_t2052754070 * get_U3CU3Ef__switchU24map10_2() const { return ___U3CU3Ef__switchU24map10_2; } inline Dictionary_2_t2052754070 ** get_address_of_U3CU3Ef__switchU24map10_2() { return &___U3CU3Ef__switchU24map10_2; } inline void set_U3CU3Ef__switchU24map10_2(Dictionary_2_t2052754070 * value) { ___U3CU3Ef__switchU24map10_2 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map10_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OID_T1416572164_H #ifndef EVENTARGS_T3326158294_H #define EVENTARGS_T3326158294_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.EventArgs struct EventArgs_t3326158294 : public RuntimeObject { public: public: }; struct EventArgs_t3326158294_StaticFields { public: // System.EventArgs System.EventArgs::Empty EventArgs_t3326158294 * ___Empty_0; public: inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(EventArgs_t3326158294_StaticFields, ___Empty_0)); } inline EventArgs_t3326158294 * get_Empty_0() const { return ___Empty_0; } inline EventArgs_t3326158294 ** get_address_of_Empty_0() { return &___Empty_0; } inline void set_Empty_0(EventArgs_t3326158294 * value) { ___Empty_0 = value; Il2CppCodeGenWriteBarrier((&___Empty_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EVENTARGS_T3326158294_H #ifndef DICTIONARY_2_T2052754070_H #define DICTIONARY_2_T2052754070_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2<System.String,System.Int32> struct Dictionary_2_t2052754070 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::table Int32U5BU5D_t1883881640* ___table_4; // System.Collections.Generic.Link[] System.Collections.Generic.Dictionary`2::linkSlots LinkU5BU5D_t3296134080* ___linkSlots_5; // TKey[] System.Collections.Generic.Dictionary`2::keySlots StringU5BU5D_t1187188029* ___keySlots_6; // TValue[] System.Collections.Generic.Dictionary`2::valueSlots Int32U5BU5D_t1883881640* ___valueSlots_7; // System.Int32 System.Collections.Generic.Dictionary`2::touchedSlots int32_t ___touchedSlots_8; // System.Int32 System.Collections.Generic.Dictionary`2::emptySlot int32_t ___emptySlot_9; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_10; // System.Int32 System.Collections.Generic.Dictionary`2::threshold int32_t ___threshold_11; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::hcp RuntimeObject* ___hcp_12; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.Dictionary`2::serialization_info SerializationInfo_t2260044969 * ___serialization_info_13; // System.Int32 System.Collections.Generic.Dictionary`2::generation int32_t ___generation_14; public: inline static int32_t get_offset_of_table_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t2052754070, ___table_4)); } inline Int32U5BU5D_t1883881640* get_table_4() const { return ___table_4; } inline Int32U5BU5D_t1883881640** get_address_of_table_4() { return &___table_4; } inline void set_table_4(Int32U5BU5D_t1883881640* value) { ___table_4 = value; Il2CppCodeGenWriteBarrier((&___table_4), value); } inline static int32_t get_offset_of_linkSlots_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t2052754070, ___linkSlots_5)); } inline LinkU5BU5D_t3296134080* get_linkSlots_5() const { return ___linkSlots_5; } inline LinkU5BU5D_t3296134080** get_address_of_linkSlots_5() { return &___linkSlots_5; } inline void set_linkSlots_5(LinkU5BU5D_t3296134080* value) { ___linkSlots_5 = value; Il2CppCodeGenWriteBarrier((&___linkSlots_5), value); } inline static int32_t get_offset_of_keySlots_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t2052754070, ___keySlots_6)); } inline StringU5BU5D_t1187188029* get_keySlots_6() const { return ___keySlots_6; } inline StringU5BU5D_t1187188029** get_address_of_keySlots_6() { return &___keySlots_6; } inline void set_keySlots_6(StringU5BU5D_t1187188029* value) { ___keySlots_6 = value; Il2CppCodeGenWriteBarrier((&___keySlots_6), value); } inline static int32_t get_offset_of_valueSlots_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t2052754070, ___valueSlots_7)); } inline Int32U5BU5D_t1883881640* get_valueSlots_7() const { return ___valueSlots_7; } inline Int32U5BU5D_t1883881640** get_address_of_valueSlots_7() { return &___valueSlots_7; } inline void set_valueSlots_7(Int32U5BU5D_t1883881640* value) { ___valueSlots_7 = value; Il2CppCodeGenWriteBarrier((&___valueSlots_7), value); } inline static int32_t get_offset_of_touchedSlots_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t2052754070, ___touchedSlots_8)); } inline int32_t get_touchedSlots_8() const { return ___touchedSlots_8; } inline int32_t* get_address_of_touchedSlots_8() { return &___touchedSlots_8; } inline void set_touchedSlots_8(int32_t value) { ___touchedSlots_8 = value; } inline static int32_t get_offset_of_emptySlot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t2052754070, ___emptySlot_9)); } inline int32_t get_emptySlot_9() const { return ___emptySlot_9; } inline int32_t* get_address_of_emptySlot_9() { return &___emptySlot_9; } inline void set_emptySlot_9(int32_t value) { ___emptySlot_9 = value; } inline static int32_t get_offset_of_count_10() { return static_cast<int32_t>(offsetof(Dictionary_2_t2052754070, ___count_10)); } inline int32_t get_count_10() const { return ___count_10; } inline int32_t* get_address_of_count_10() { return &___count_10; } inline void set_count_10(int32_t value) { ___count_10 = value; } inline static int32_t get_offset_of_threshold_11() { return static_cast<int32_t>(offsetof(Dictionary_2_t2052754070, ___threshold_11)); } inline int32_t get_threshold_11() const { return ___threshold_11; } inline int32_t* get_address_of_threshold_11() { return &___threshold_11; } inline void set_threshold_11(int32_t value) { ___threshold_11 = value; } inline static int32_t get_offset_of_hcp_12() { return static_cast<int32_t>(offsetof(Dictionary_2_t2052754070, ___hcp_12)); } inline RuntimeObject* get_hcp_12() const { return ___hcp_12; } inline RuntimeObject** get_address_of_hcp_12() { return &___hcp_12; } inline void set_hcp_12(RuntimeObject* value) { ___hcp_12 = value; Il2CppCodeGenWriteBarrier((&___hcp_12), value); } inline static int32_t get_offset_of_serialization_info_13() { return static_cast<int32_t>(offsetof(Dictionary_2_t2052754070, ___serialization_info_13)); } inline SerializationInfo_t2260044969 * get_serialization_info_13() const { return ___serialization_info_13; } inline SerializationInfo_t2260044969 ** get_address_of_serialization_info_13() { return &___serialization_info_13; } inline void set_serialization_info_13(SerializationInfo_t2260044969 * value) { ___serialization_info_13 = value; Il2CppCodeGenWriteBarrier((&___serialization_info_13), value); } inline static int32_t get_offset_of_generation_14() { return static_cast<int32_t>(offsetof(Dictionary_2_t2052754070, ___generation_14)); } inline int32_t get_generation_14() const { return ___generation_14; } inline int32_t* get_address_of_generation_14() { return &___generation_14; } inline void set_generation_14(int32_t value) { ___generation_14 = value; } }; struct Dictionary_2_t2052754070_StaticFields { public: // System.Collections.Generic.Dictionary`2/Transform`1<TKey,TValue,System.Collections.DictionaryEntry> System.Collections.Generic.Dictionary`2::<>f__am$cacheB Transform_1_t4271727638 * ___U3CU3Ef__amU24cacheB_15; public: inline static int32_t get_offset_of_U3CU3Ef__amU24cacheB_15() { return static_cast<int32_t>(offsetof(Dictionary_2_t2052754070_StaticFields, ___U3CU3Ef__amU24cacheB_15)); } inline Transform_1_t4271727638 * get_U3CU3Ef__amU24cacheB_15() const { return ___U3CU3Ef__amU24cacheB_15; } inline Transform_1_t4271727638 ** get_address_of_U3CU3Ef__amU24cacheB_15() { return &___U3CU3Ef__amU24cacheB_15; } inline void set_U3CU3Ef__amU24cacheB_15(Transform_1_t4271727638 * value) { ___U3CU3Ef__amU24cacheB_15 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__amU24cacheB_15), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DICTIONARY_2_T2052754070_H #ifndef ASN1_T2575024487_H #define ASN1_T2575024487_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Security.ASN1 struct ASN1_t2575024487 : public RuntimeObject { public: // System.Byte Mono.Security.ASN1::m_nTag uint8_t ___m_nTag_0; // System.Byte[] Mono.Security.ASN1::m_aValue ByteU5BU5D_t1709610627* ___m_aValue_1; // System.Collections.ArrayList Mono.Security.ASN1::elist ArrayList_t4277734320 * ___elist_2; public: inline static int32_t get_offset_of_m_nTag_0() { return static_cast<int32_t>(offsetof(ASN1_t2575024487, ___m_nTag_0)); } inline uint8_t get_m_nTag_0() const { return ___m_nTag_0; } inline uint8_t* get_address_of_m_nTag_0() { return &___m_nTag_0; } inline void set_m_nTag_0(uint8_t value) { ___m_nTag_0 = value; } inline static int32_t get_offset_of_m_aValue_1() { return static_cast<int32_t>(offsetof(ASN1_t2575024487, ___m_aValue_1)); } inline ByteU5BU5D_t1709610627* get_m_aValue_1() const { return ___m_aValue_1; } inline ByteU5BU5D_t1709610627** get_address_of_m_aValue_1() { return &___m_aValue_1; } inline void set_m_aValue_1(ByteU5BU5D_t1709610627* value) { ___m_aValue_1 = value; Il2CppCodeGenWriteBarrier((&___m_aValue_1), value); } inline static int32_t get_offset_of_elist_2() { return static_cast<int32_t>(offsetof(ASN1_t2575024487, ___elist_2)); } inline ArrayList_t4277734320 * get_elist_2() const { return ___elist_2; } inline ArrayList_t4277734320 ** get_address_of_elist_2() { return &___elist_2; } inline void set_elist_2(ArrayList_t4277734320 * value) { ___elist_2 = value; Il2CppCodeGenWriteBarrier((&___elist_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ASN1_T2575024487_H #ifndef ARRAYLIST_T4277734320_H #define ARRAYLIST_T4277734320_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.ArrayList struct ArrayList_t4277734320 : public RuntimeObject { public: // System.Int32 System.Collections.ArrayList::_size int32_t ____size_1; // System.Object[] System.Collections.ArrayList::_items ObjectU5BU5D_t4199014551* ____items_2; // System.Int32 System.Collections.ArrayList::_version int32_t ____version_3; public: inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(ArrayList_t4277734320, ____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__items_2() { return static_cast<int32_t>(offsetof(ArrayList_t4277734320, ____items_2)); } inline ObjectU5BU5D_t4199014551* get__items_2() const { return ____items_2; } inline ObjectU5BU5D_t4199014551** get_address_of__items_2() { return &____items_2; } inline void set__items_2(ObjectU5BU5D_t4199014551* value) { ____items_2 = value; Il2CppCodeGenWriteBarrier((&____items_2), value); } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(ArrayList_t4277734320, ____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; } }; struct ArrayList_t4277734320_StaticFields { public: // System.Object[] System.Collections.ArrayList::EmptyArray ObjectU5BU5D_t4199014551* ___EmptyArray_4; public: inline static int32_t get_offset_of_EmptyArray_4() { return static_cast<int32_t>(offsetof(ArrayList_t4277734320_StaticFields, ___EmptyArray_4)); } inline ObjectU5BU5D_t4199014551* get_EmptyArray_4() const { return ___EmptyArray_4; } inline ObjectU5BU5D_t4199014551** get_address_of_EmptyArray_4() { return &___EmptyArray_4; } inline void set_EmptyArray_4(ObjectU5BU5D_t4199014551* value) { ___EmptyArray_4 = value; Il2CppCodeGenWriteBarrier((&___EmptyArray_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARRAYLIST_T4277734320_H #ifndef STANDARDVALUESCOLLECTION_T884959189_H #define STANDARDVALUESCOLLECTION_T884959189_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.TypeConverter/StandardValuesCollection struct StandardValuesCollection_t884959189 : public RuntimeObject { public: // System.Collections.ICollection System.ComponentModel.TypeConverter/StandardValuesCollection::values RuntimeObject* ___values_0; public: inline static int32_t get_offset_of_values_0() { return static_cast<int32_t>(offsetof(StandardValuesCollection_t884959189, ___values_0)); } inline RuntimeObject* get_values_0() const { return ___values_0; } inline RuntimeObject** get_address_of_values_0() { return &___values_0; } inline void set_values_0(RuntimeObject* value) { ___values_0 = value; Il2CppCodeGenWriteBarrier((&___values_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STANDARDVALUESCOLLECTION_T884959189_H #ifndef LINGEROPTION_T1955249639_H #define LINGEROPTION_T1955249639_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.Sockets.LingerOption struct LingerOption_t1955249639 : public RuntimeObject { public: // System.Boolean System.Net.Sockets.LingerOption::enabled bool ___enabled_0; // System.Int32 System.Net.Sockets.LingerOption::seconds int32_t ___seconds_1; public: inline static int32_t get_offset_of_enabled_0() { return static_cast<int32_t>(offsetof(LingerOption_t1955249639, ___enabled_0)); } inline bool get_enabled_0() const { return ___enabled_0; } inline bool* get_address_of_enabled_0() { return &___enabled_0; } inline void set_enabled_0(bool value) { ___enabled_0 = value; } inline static int32_t get_offset_of_seconds_1() { return static_cast<int32_t>(offsetof(LingerOption_t1955249639, ___seconds_1)); } inline int32_t get_seconds_1() const { return ___seconds_1; } inline int32_t* get_address_of_seconds_1() { return &___seconds_1; } inline void set_seconds_1(int32_t value) { ___seconds_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LINGEROPTION_T1955249639_H #ifndef STRING_T_H #define STRING_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::length int32_t ___length_0; // System.Char System.String::start_char Il2CppChar ___start_char_1; public: inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(String_t, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_start_char_1() { return static_cast<int32_t>(offsetof(String_t, ___start_char_1)); } inline Il2CppChar get_start_char_1() const { return ___start_char_1; } inline Il2CppChar* get_address_of_start_char_1() { return &___start_char_1; } inline void set_start_char_1(Il2CppChar value) { ___start_char_1 = value; } }; struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_2; // System.Char[] System.String::WhiteChars CharU5BU5D_t1289681795* ___WhiteChars_3; public: inline static int32_t get_offset_of_Empty_2() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_2)); } inline String_t* get_Empty_2() const { return ___Empty_2; } inline String_t** get_address_of_Empty_2() { return &___Empty_2; } inline void set_Empty_2(String_t* value) { ___Empty_2 = value; Il2CppCodeGenWriteBarrier((&___Empty_2), value); } inline static int32_t get_offset_of_WhiteChars_3() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___WhiteChars_3)); } inline CharU5BU5D_t1289681795* get_WhiteChars_3() const { return ___WhiteChars_3; } inline CharU5BU5D_t1289681795** get_address_of_WhiteChars_3() { return &___WhiteChars_3; } inline void set_WhiteChars_3(CharU5BU5D_t1289681795* value) { ___WhiteChars_3 = value; Il2CppCodeGenWriteBarrier((&___WhiteChars_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STRING_T_H #ifndef OIDCOLLECTION_T5760417_H #define OIDCOLLECTION_T5760417_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Cryptography.OidCollection struct OidCollection_t5760417 : public RuntimeObject { public: // System.Collections.ArrayList System.Security.Cryptography.OidCollection::_list ArrayList_t4277734320 * ____list_0; // System.Boolean System.Security.Cryptography.OidCollection::_readOnly bool ____readOnly_1; public: inline static int32_t get_offset_of__list_0() { return static_cast<int32_t>(offsetof(OidCollection_t5760417, ____list_0)); } inline ArrayList_t4277734320 * get__list_0() const { return ____list_0; } inline ArrayList_t4277734320 ** get_address_of__list_0() { return &____list_0; } inline void set__list_0(ArrayList_t4277734320 * value) { ____list_0 = value; Il2CppCodeGenWriteBarrier((&____list_0), value); } inline static int32_t get_offset_of__readOnly_1() { return static_cast<int32_t>(offsetof(OidCollection_t5760417, ____readOnly_1)); } inline bool get__readOnly_1() const { return ____readOnly_1; } inline bool* get_address_of__readOnly_1() { return &____readOnly_1; } inline void set__readOnly_1(bool value) { ____readOnly_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OIDCOLLECTION_T5760417_H #ifndef OIDENUMERATOR_T822741923_H #define OIDENUMERATOR_T822741923_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Cryptography.OidEnumerator struct OidEnumerator_t822741923 : public RuntimeObject { public: // System.Security.Cryptography.OidCollection System.Security.Cryptography.OidEnumerator::_collection OidCollection_t5760417 * ____collection_0; // System.Int32 System.Security.Cryptography.OidEnumerator::_position int32_t ____position_1; public: inline static int32_t get_offset_of__collection_0() { return static_cast<int32_t>(offsetof(OidEnumerator_t822741923, ____collection_0)); } inline OidCollection_t5760417 * get__collection_0() const { return ____collection_0; } inline OidCollection_t5760417 ** get_address_of__collection_0() { return &____collection_0; } inline void set__collection_0(OidCollection_t5760417 * value) { ____collection_0 = value; Il2CppCodeGenWriteBarrier((&____collection_0), value); } inline static int32_t get_offset_of__position_1() { return static_cast<int32_t>(offsetof(OidEnumerator_t822741923, ____position_1)); } inline int32_t get__position_1() const { return ____position_1; } inline int32_t* get_address_of__position_1() { return &____position_1; } inline void set__position_1(int32_t value) { ____position_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OIDENUMERATOR_T822741923_H #ifndef PROPERTYDESCRIPTORCOLLECTION_T2982717747_H #define PROPERTYDESCRIPTORCOLLECTION_T2982717747_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.PropertyDescriptorCollection struct PropertyDescriptorCollection_t2982717747 : public RuntimeObject { public: // System.Collections.ArrayList System.ComponentModel.PropertyDescriptorCollection::properties ArrayList_t4277734320 * ___properties_1; // System.Boolean System.ComponentModel.PropertyDescriptorCollection::readOnly bool ___readOnly_2; public: inline static int32_t get_offset_of_properties_1() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t2982717747, ___properties_1)); } inline ArrayList_t4277734320 * get_properties_1() const { return ___properties_1; } inline ArrayList_t4277734320 ** get_address_of_properties_1() { return &___properties_1; } inline void set_properties_1(ArrayList_t4277734320 * value) { ___properties_1 = value; Il2CppCodeGenWriteBarrier((&___properties_1), value); } inline static int32_t get_offset_of_readOnly_2() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t2982717747, ___readOnly_2)); } inline bool get_readOnly_2() const { return ___readOnly_2; } inline bool* get_address_of_readOnly_2() { return &___readOnly_2; } inline void set_readOnly_2(bool value) { ___readOnly_2 = value; } }; struct PropertyDescriptorCollection_t2982717747_StaticFields { public: // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptorCollection::Empty PropertyDescriptorCollection_t2982717747 * ___Empty_0; public: inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t2982717747_StaticFields, ___Empty_0)); } inline PropertyDescriptorCollection_t2982717747 * get_Empty_0() const { return ___Empty_0; } inline PropertyDescriptorCollection_t2982717747 ** get_address_of_Empty_0() { return &___Empty_0; } inline void set_Empty_0(PropertyDescriptorCollection_t2982717747 * value) { ___Empty_0 = value; Il2CppCodeGenWriteBarrier((&___Empty_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PROPERTYDESCRIPTORCOLLECTION_T2982717747_H #ifndef VALUETYPE_T1308615817_H #define VALUETYPE_T1308615817_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ValueType struct ValueType_t1308615817 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t1308615817_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t1308615817_marshaled_com { }; #endif // VALUETYPE_T1308615817_H #ifndef CULTUREINFO_T270095993_H #define CULTUREINFO_T270095993_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.CultureInfo struct CultureInfo_t270095993 : public RuntimeObject { public: // System.Boolean System.Globalization.CultureInfo::m_isReadOnly bool ___m_isReadOnly_7; // System.Int32 System.Globalization.CultureInfo::cultureID int32_t ___cultureID_8; // System.Int32 System.Globalization.CultureInfo::parent_lcid int32_t ___parent_lcid_9; // System.Int32 System.Globalization.CultureInfo::specific_lcid int32_t ___specific_lcid_10; // System.Int32 System.Globalization.CultureInfo::datetime_index int32_t ___datetime_index_11; // System.Int32 System.Globalization.CultureInfo::number_index int32_t ___number_index_12; // System.Boolean System.Globalization.CultureInfo::m_useUserOverride bool ___m_useUserOverride_13; // System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo NumberFormatInfo_t2417595227 * ___numInfo_14; // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo DateTimeFormatInfo_t134263170 * ___dateTimeInfo_15; // System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo TextInfo_t3325201661 * ___textInfo_16; // System.String System.Globalization.CultureInfo::m_name String_t* ___m_name_17; // System.String System.Globalization.CultureInfo::displayname String_t* ___displayname_18; // System.String System.Globalization.CultureInfo::englishname String_t* ___englishname_19; // System.String System.Globalization.CultureInfo::nativename String_t* ___nativename_20; // System.String System.Globalization.CultureInfo::iso3lang String_t* ___iso3lang_21; // System.String System.Globalization.CultureInfo::iso2lang String_t* ___iso2lang_22; // System.String System.Globalization.CultureInfo::icu_name String_t* ___icu_name_23; // System.String System.Globalization.CultureInfo::win3lang String_t* ___win3lang_24; // System.String System.Globalization.CultureInfo::territory String_t* ___territory_25; // System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo CompareInfo_t2430230067 * ___compareInfo_26; // System.Int32* System.Globalization.CultureInfo::calendar_data int32_t* ___calendar_data_27; // System.Void* System.Globalization.CultureInfo::textinfo_data void* ___textinfo_data_28; // System.Globalization.Calendar[] System.Globalization.CultureInfo::optional_calendars CalendarU5BU5D_t2577269289* ___optional_calendars_29; // System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture CultureInfo_t270095993 * ___parent_culture_30; // System.Int32 System.Globalization.CultureInfo::m_dataItem int32_t ___m_dataItem_31; // System.Globalization.Calendar System.Globalization.CultureInfo::calendar Calendar_t1655839480 * ___calendar_32; // System.Boolean System.Globalization.CultureInfo::constructed bool ___constructed_33; // System.Byte[] System.Globalization.CultureInfo::cached_serialized_form ByteU5BU5D_t1709610627* ___cached_serialized_form_34; public: inline static int32_t get_offset_of_m_isReadOnly_7() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___m_isReadOnly_7)); } inline bool get_m_isReadOnly_7() const { return ___m_isReadOnly_7; } inline bool* get_address_of_m_isReadOnly_7() { return &___m_isReadOnly_7; } inline void set_m_isReadOnly_7(bool value) { ___m_isReadOnly_7 = value; } inline static int32_t get_offset_of_cultureID_8() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___cultureID_8)); } inline int32_t get_cultureID_8() const { return ___cultureID_8; } inline int32_t* get_address_of_cultureID_8() { return &___cultureID_8; } inline void set_cultureID_8(int32_t value) { ___cultureID_8 = value; } inline static int32_t get_offset_of_parent_lcid_9() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___parent_lcid_9)); } inline int32_t get_parent_lcid_9() const { return ___parent_lcid_9; } inline int32_t* get_address_of_parent_lcid_9() { return &___parent_lcid_9; } inline void set_parent_lcid_9(int32_t value) { ___parent_lcid_9 = value; } inline static int32_t get_offset_of_specific_lcid_10() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___specific_lcid_10)); } inline int32_t get_specific_lcid_10() const { return ___specific_lcid_10; } inline int32_t* get_address_of_specific_lcid_10() { return &___specific_lcid_10; } inline void set_specific_lcid_10(int32_t value) { ___specific_lcid_10 = value; } inline static int32_t get_offset_of_datetime_index_11() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___datetime_index_11)); } inline int32_t get_datetime_index_11() const { return ___datetime_index_11; } inline int32_t* get_address_of_datetime_index_11() { return &___datetime_index_11; } inline void set_datetime_index_11(int32_t value) { ___datetime_index_11 = value; } inline static int32_t get_offset_of_number_index_12() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___number_index_12)); } inline int32_t get_number_index_12() const { return ___number_index_12; } inline int32_t* get_address_of_number_index_12() { return &___number_index_12; } inline void set_number_index_12(int32_t value) { ___number_index_12 = value; } inline static int32_t get_offset_of_m_useUserOverride_13() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___m_useUserOverride_13)); } inline bool get_m_useUserOverride_13() const { return ___m_useUserOverride_13; } inline bool* get_address_of_m_useUserOverride_13() { return &___m_useUserOverride_13; } inline void set_m_useUserOverride_13(bool value) { ___m_useUserOverride_13 = value; } inline static int32_t get_offset_of_numInfo_14() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___numInfo_14)); } inline NumberFormatInfo_t2417595227 * get_numInfo_14() const { return ___numInfo_14; } inline NumberFormatInfo_t2417595227 ** get_address_of_numInfo_14() { return &___numInfo_14; } inline void set_numInfo_14(NumberFormatInfo_t2417595227 * value) { ___numInfo_14 = value; Il2CppCodeGenWriteBarrier((&___numInfo_14), value); } inline static int32_t get_offset_of_dateTimeInfo_15() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___dateTimeInfo_15)); } inline DateTimeFormatInfo_t134263170 * get_dateTimeInfo_15() const { return ___dateTimeInfo_15; } inline DateTimeFormatInfo_t134263170 ** get_address_of_dateTimeInfo_15() { return &___dateTimeInfo_15; } inline void set_dateTimeInfo_15(DateTimeFormatInfo_t134263170 * value) { ___dateTimeInfo_15 = value; Il2CppCodeGenWriteBarrier((&___dateTimeInfo_15), value); } inline static int32_t get_offset_of_textInfo_16() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___textInfo_16)); } inline TextInfo_t3325201661 * get_textInfo_16() const { return ___textInfo_16; } inline TextInfo_t3325201661 ** get_address_of_textInfo_16() { return &___textInfo_16; } inline void set_textInfo_16(TextInfo_t3325201661 * value) { ___textInfo_16 = value; Il2CppCodeGenWriteBarrier((&___textInfo_16), value); } inline static int32_t get_offset_of_m_name_17() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___m_name_17)); } inline String_t* get_m_name_17() const { return ___m_name_17; } inline String_t** get_address_of_m_name_17() { return &___m_name_17; } inline void set_m_name_17(String_t* value) { ___m_name_17 = value; Il2CppCodeGenWriteBarrier((&___m_name_17), value); } inline static int32_t get_offset_of_displayname_18() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___displayname_18)); } inline String_t* get_displayname_18() const { return ___displayname_18; } inline String_t** get_address_of_displayname_18() { return &___displayname_18; } inline void set_displayname_18(String_t* value) { ___displayname_18 = value; Il2CppCodeGenWriteBarrier((&___displayname_18), value); } inline static int32_t get_offset_of_englishname_19() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___englishname_19)); } inline String_t* get_englishname_19() const { return ___englishname_19; } inline String_t** get_address_of_englishname_19() { return &___englishname_19; } inline void set_englishname_19(String_t* value) { ___englishname_19 = value; Il2CppCodeGenWriteBarrier((&___englishname_19), value); } inline static int32_t get_offset_of_nativename_20() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___nativename_20)); } inline String_t* get_nativename_20() const { return ___nativename_20; } inline String_t** get_address_of_nativename_20() { return &___nativename_20; } inline void set_nativename_20(String_t* value) { ___nativename_20 = value; Il2CppCodeGenWriteBarrier((&___nativename_20), value); } inline static int32_t get_offset_of_iso3lang_21() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___iso3lang_21)); } inline String_t* get_iso3lang_21() const { return ___iso3lang_21; } inline String_t** get_address_of_iso3lang_21() { return &___iso3lang_21; } inline void set_iso3lang_21(String_t* value) { ___iso3lang_21 = value; Il2CppCodeGenWriteBarrier((&___iso3lang_21), value); } inline static int32_t get_offset_of_iso2lang_22() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___iso2lang_22)); } inline String_t* get_iso2lang_22() const { return ___iso2lang_22; } inline String_t** get_address_of_iso2lang_22() { return &___iso2lang_22; } inline void set_iso2lang_22(String_t* value) { ___iso2lang_22 = value; Il2CppCodeGenWriteBarrier((&___iso2lang_22), value); } inline static int32_t get_offset_of_icu_name_23() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___icu_name_23)); } inline String_t* get_icu_name_23() const { return ___icu_name_23; } inline String_t** get_address_of_icu_name_23() { return &___icu_name_23; } inline void set_icu_name_23(String_t* value) { ___icu_name_23 = value; Il2CppCodeGenWriteBarrier((&___icu_name_23), value); } inline static int32_t get_offset_of_win3lang_24() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___win3lang_24)); } inline String_t* get_win3lang_24() const { return ___win3lang_24; } inline String_t** get_address_of_win3lang_24() { return &___win3lang_24; } inline void set_win3lang_24(String_t* value) { ___win3lang_24 = value; Il2CppCodeGenWriteBarrier((&___win3lang_24), value); } inline static int32_t get_offset_of_territory_25() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___territory_25)); } inline String_t* get_territory_25() const { return ___territory_25; } inline String_t** get_address_of_territory_25() { return &___territory_25; } inline void set_territory_25(String_t* value) { ___territory_25 = value; Il2CppCodeGenWriteBarrier((&___territory_25), value); } inline static int32_t get_offset_of_compareInfo_26() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___compareInfo_26)); } inline CompareInfo_t2430230067 * get_compareInfo_26() const { return ___compareInfo_26; } inline CompareInfo_t2430230067 ** get_address_of_compareInfo_26() { return &___compareInfo_26; } inline void set_compareInfo_26(CompareInfo_t2430230067 * value) { ___compareInfo_26 = value; Il2CppCodeGenWriteBarrier((&___compareInfo_26), value); } inline static int32_t get_offset_of_calendar_data_27() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___calendar_data_27)); } inline int32_t* get_calendar_data_27() const { return ___calendar_data_27; } inline int32_t** get_address_of_calendar_data_27() { return &___calendar_data_27; } inline void set_calendar_data_27(int32_t* value) { ___calendar_data_27 = value; } inline static int32_t get_offset_of_textinfo_data_28() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___textinfo_data_28)); } inline void* get_textinfo_data_28() const { return ___textinfo_data_28; } inline void** get_address_of_textinfo_data_28() { return &___textinfo_data_28; } inline void set_textinfo_data_28(void* value) { ___textinfo_data_28 = value; } inline static int32_t get_offset_of_optional_calendars_29() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___optional_calendars_29)); } inline CalendarU5BU5D_t2577269289* get_optional_calendars_29() const { return ___optional_calendars_29; } inline CalendarU5BU5D_t2577269289** get_address_of_optional_calendars_29() { return &___optional_calendars_29; } inline void set_optional_calendars_29(CalendarU5BU5D_t2577269289* value) { ___optional_calendars_29 = value; Il2CppCodeGenWriteBarrier((&___optional_calendars_29), value); } inline static int32_t get_offset_of_parent_culture_30() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___parent_culture_30)); } inline CultureInfo_t270095993 * get_parent_culture_30() const { return ___parent_culture_30; } inline CultureInfo_t270095993 ** get_address_of_parent_culture_30() { return &___parent_culture_30; } inline void set_parent_culture_30(CultureInfo_t270095993 * value) { ___parent_culture_30 = value; Il2CppCodeGenWriteBarrier((&___parent_culture_30), value); } inline static int32_t get_offset_of_m_dataItem_31() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___m_dataItem_31)); } inline int32_t get_m_dataItem_31() const { return ___m_dataItem_31; } inline int32_t* get_address_of_m_dataItem_31() { return &___m_dataItem_31; } inline void set_m_dataItem_31(int32_t value) { ___m_dataItem_31 = value; } inline static int32_t get_offset_of_calendar_32() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___calendar_32)); } inline Calendar_t1655839480 * get_calendar_32() const { return ___calendar_32; } inline Calendar_t1655839480 ** get_address_of_calendar_32() { return &___calendar_32; } inline void set_calendar_32(Calendar_t1655839480 * value) { ___calendar_32 = value; Il2CppCodeGenWriteBarrier((&___calendar_32), value); } inline static int32_t get_offset_of_constructed_33() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___constructed_33)); } inline bool get_constructed_33() const { return ___constructed_33; } inline bool* get_address_of_constructed_33() { return &___constructed_33; } inline void set_constructed_33(bool value) { ___constructed_33 = value; } inline static int32_t get_offset_of_cached_serialized_form_34() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993, ___cached_serialized_form_34)); } inline ByteU5BU5D_t1709610627* get_cached_serialized_form_34() const { return ___cached_serialized_form_34; } inline ByteU5BU5D_t1709610627** get_address_of_cached_serialized_form_34() { return &___cached_serialized_form_34; } inline void set_cached_serialized_form_34(ByteU5BU5D_t1709610627* value) { ___cached_serialized_form_34 = value; Il2CppCodeGenWriteBarrier((&___cached_serialized_form_34), value); } }; struct CultureInfo_t270095993_StaticFields { public: // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info CultureInfo_t270095993 * ___invariant_culture_info_4; // System.Object System.Globalization.CultureInfo::shared_table_lock RuntimeObject * ___shared_table_lock_5; // System.Int32 System.Globalization.CultureInfo::BootstrapCultureID int32_t ___BootstrapCultureID_6; // System.String System.Globalization.CultureInfo::MSG_READONLY String_t* ___MSG_READONLY_35; // System.Collections.Hashtable System.Globalization.CultureInfo::shared_by_number Hashtable_t448324601 * ___shared_by_number_36; // System.Collections.Hashtable System.Globalization.CultureInfo::shared_by_name Hashtable_t448324601 * ___shared_by_name_37; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Globalization.CultureInfo::<>f__switch$map19 Dictionary_2_t2052754070 * ___U3CU3Ef__switchU24map19_38; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Globalization.CultureInfo::<>f__switch$map1A Dictionary_2_t2052754070 * ___U3CU3Ef__switchU24map1A_39; public: inline static int32_t get_offset_of_invariant_culture_info_4() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993_StaticFields, ___invariant_culture_info_4)); } inline CultureInfo_t270095993 * get_invariant_culture_info_4() const { return ___invariant_culture_info_4; } inline CultureInfo_t270095993 ** get_address_of_invariant_culture_info_4() { return &___invariant_culture_info_4; } inline void set_invariant_culture_info_4(CultureInfo_t270095993 * value) { ___invariant_culture_info_4 = value; Il2CppCodeGenWriteBarrier((&___invariant_culture_info_4), value); } inline static int32_t get_offset_of_shared_table_lock_5() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993_StaticFields, ___shared_table_lock_5)); } inline RuntimeObject * get_shared_table_lock_5() const { return ___shared_table_lock_5; } inline RuntimeObject ** get_address_of_shared_table_lock_5() { return &___shared_table_lock_5; } inline void set_shared_table_lock_5(RuntimeObject * value) { ___shared_table_lock_5 = value; Il2CppCodeGenWriteBarrier((&___shared_table_lock_5), value); } inline static int32_t get_offset_of_BootstrapCultureID_6() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993_StaticFields, ___BootstrapCultureID_6)); } inline int32_t get_BootstrapCultureID_6() const { return ___BootstrapCultureID_6; } inline int32_t* get_address_of_BootstrapCultureID_6() { return &___BootstrapCultureID_6; } inline void set_BootstrapCultureID_6(int32_t value) { ___BootstrapCultureID_6 = value; } inline static int32_t get_offset_of_MSG_READONLY_35() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993_StaticFields, ___MSG_READONLY_35)); } inline String_t* get_MSG_READONLY_35() const { return ___MSG_READONLY_35; } inline String_t** get_address_of_MSG_READONLY_35() { return &___MSG_READONLY_35; } inline void set_MSG_READONLY_35(String_t* value) { ___MSG_READONLY_35 = value; Il2CppCodeGenWriteBarrier((&___MSG_READONLY_35), value); } inline static int32_t get_offset_of_shared_by_number_36() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993_StaticFields, ___shared_by_number_36)); } inline Hashtable_t448324601 * get_shared_by_number_36() const { return ___shared_by_number_36; } inline Hashtable_t448324601 ** get_address_of_shared_by_number_36() { return &___shared_by_number_36; } inline void set_shared_by_number_36(Hashtable_t448324601 * value) { ___shared_by_number_36 = value; Il2CppCodeGenWriteBarrier((&___shared_by_number_36), value); } inline static int32_t get_offset_of_shared_by_name_37() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993_StaticFields, ___shared_by_name_37)); } inline Hashtable_t448324601 * get_shared_by_name_37() const { return ___shared_by_name_37; } inline Hashtable_t448324601 ** get_address_of_shared_by_name_37() { return &___shared_by_name_37; } inline void set_shared_by_name_37(Hashtable_t448324601 * value) { ___shared_by_name_37 = value; Il2CppCodeGenWriteBarrier((&___shared_by_name_37), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24map19_38() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993_StaticFields, ___U3CU3Ef__switchU24map19_38)); } inline Dictionary_2_t2052754070 * get_U3CU3Ef__switchU24map19_38() const { return ___U3CU3Ef__switchU24map19_38; } inline Dictionary_2_t2052754070 ** get_address_of_U3CU3Ef__switchU24map19_38() { return &___U3CU3Ef__switchU24map19_38; } inline void set_U3CU3Ef__switchU24map19_38(Dictionary_2_t2052754070 * value) { ___U3CU3Ef__switchU24map19_38 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map19_38), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24map1A_39() { return static_cast<int32_t>(offsetof(CultureInfo_t270095993_StaticFields, ___U3CU3Ef__switchU24map1A_39)); } inline Dictionary_2_t2052754070 * get_U3CU3Ef__switchU24map1A_39() const { return ___U3CU3Ef__switchU24map1A_39; } inline Dictionary_2_t2052754070 ** get_address_of_U3CU3Ef__switchU24map1A_39() { return &___U3CU3Ef__switchU24map1A_39; } inline void set_U3CU3Ef__switchU24map1A_39(Dictionary_2_t2052754070 * value) { ___U3CU3Ef__switchU24map1A_39 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map1A_39), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CULTUREINFO_T270095993_H #ifndef TYPECONVERTER_T3595149642_H #define TYPECONVERTER_T3595149642_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.TypeConverter struct TypeConverter_t3595149642 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPECONVERTER_T3595149642_H #ifndef COLLECTIONBASE_T1887873969_H #define COLLECTIONBASE_T1887873969_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.CollectionBase struct CollectionBase_t1887873969 : public RuntimeObject { public: // System.Collections.ArrayList System.Collections.CollectionBase::list ArrayList_t4277734320 * ___list_0; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(CollectionBase_t1887873969, ___list_0)); } inline ArrayList_t4277734320 * get_list_0() const { return ___list_0; } inline ArrayList_t4277734320 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(ArrayList_t4277734320 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COLLECTIONBASE_T1887873969_H #ifndef ATTRIBUTE_T2739832645_H #define ATTRIBUTE_T2739832645_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Attribute struct Attribute_t2739832645 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ATTRIBUTE_T2739832645_H #ifndef CRITICALFINALIZEROBJECT_T351072040_H #define CRITICALFINALIZEROBJECT_T351072040_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.ConstrainedExecution.CriticalFinalizerObject struct CriticalFinalizerObject_t351072040 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CRITICALFINALIZEROBJECT_T351072040_H #ifndef ASNENCODEDDATA_T2501174634_H #define ASNENCODEDDATA_T2501174634_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Cryptography.AsnEncodedData struct AsnEncodedData_t2501174634 : public RuntimeObject { public: // System.Security.Cryptography.Oid System.Security.Cryptography.AsnEncodedData::_oid Oid_t1416572164 * ____oid_0; // System.Byte[] System.Security.Cryptography.AsnEncodedData::_raw ByteU5BU5D_t1709610627* ____raw_1; public: inline static int32_t get_offset_of__oid_0() { return static_cast<int32_t>(offsetof(AsnEncodedData_t2501174634, ____oid_0)); } inline Oid_t1416572164 * get__oid_0() const { return ____oid_0; } inline Oid_t1416572164 ** get_address_of__oid_0() { return &____oid_0; } inline void set__oid_0(Oid_t1416572164 * value) { ____oid_0 = value; Il2CppCodeGenWriteBarrier((&____oid_0), value); } inline static int32_t get_offset_of__raw_1() { return static_cast<int32_t>(offsetof(AsnEncodedData_t2501174634, ____raw_1)); } inline ByteU5BU5D_t1709610627* get__raw_1() const { return ____raw_1; } inline ByteU5BU5D_t1709610627** get_address_of__raw_1() { return &____raw_1; } inline void set__raw_1(ByteU5BU5D_t1709610627* value) { ____raw_1 = value; Il2CppCodeGenWriteBarrier((&____raw_1), value); } }; struct AsnEncodedData_t2501174634_StaticFields { public: // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Security.Cryptography.AsnEncodedData::<>f__switch$mapA Dictionary_2_t2052754070 * ___U3CU3Ef__switchU24mapA_2; public: inline static int32_t get_offset_of_U3CU3Ef__switchU24mapA_2() { return static_cast<int32_t>(offsetof(AsnEncodedData_t2501174634_StaticFields, ___U3CU3Ef__switchU24mapA_2)); } inline Dictionary_2_t2052754070 * get_U3CU3Ef__switchU24mapA_2() const { return ___U3CU3Ef__switchU24mapA_2; } inline Dictionary_2_t2052754070 ** get_address_of_U3CU3Ef__switchU24mapA_2() { return &___U3CU3Ef__switchU24mapA_2; } inline void set_U3CU3Ef__switchU24mapA_2(Dictionary_2_t2052754070 * value) { ___U3CU3Ef__switchU24mapA_2 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24mapA_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ASNENCODEDDATA_T2501174634_H #ifndef MARSHALBYREFOBJECT_T3072832018_H #define MARSHALBYREFOBJECT_T3072832018_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.MarshalByRefObject struct MarshalByRefObject_t3072832018 : public RuntimeObject { public: // System.Runtime.Remoting.ServerIdentity System.MarshalByRefObject::_identity ServerIdentity_t3782504052 * ____identity_0; public: inline static int32_t get_offset_of__identity_0() { return static_cast<int32_t>(offsetof(MarshalByRefObject_t3072832018, ____identity_0)); } inline ServerIdentity_t3782504052 * get__identity_0() const { return ____identity_0; } inline ServerIdentity_t3782504052 ** get_address_of__identity_0() { return &____identity_0; } inline void set__identity_0(ServerIdentity_t3782504052 * value) { ____identity_0 = value; Il2CppCodeGenWriteBarrier((&____identity_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MARSHALBYREFOBJECT_T3072832018_H #ifndef ENCODING_T3296442469_H #define ENCODING_T3296442469_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Text.Encoding struct Encoding_t3296442469 : public RuntimeObject { public: // System.Int32 System.Text.Encoding::codePage int32_t ___codePage_0; // System.Int32 System.Text.Encoding::windows_code_page int32_t ___windows_code_page_1; // System.Boolean System.Text.Encoding::is_readonly bool ___is_readonly_2; // System.Text.DecoderFallback System.Text.Encoding::decoder_fallback DecoderFallback_t4241880903 * ___decoder_fallback_3; // System.Text.EncoderFallback System.Text.Encoding::encoder_fallback EncoderFallback_t3150092088 * ___encoder_fallback_4; // System.String System.Text.Encoding::body_name String_t* ___body_name_8; // System.String System.Text.Encoding::encoding_name String_t* ___encoding_name_9; // System.String System.Text.Encoding::header_name String_t* ___header_name_10; // System.Boolean System.Text.Encoding::is_mail_news_display bool ___is_mail_news_display_11; // System.Boolean System.Text.Encoding::is_mail_news_save bool ___is_mail_news_save_12; // System.Boolean System.Text.Encoding::is_browser_save bool ___is_browser_save_13; // System.Boolean System.Text.Encoding::is_browser_display bool ___is_browser_display_14; // System.String System.Text.Encoding::web_name String_t* ___web_name_15; public: inline static int32_t get_offset_of_codePage_0() { return static_cast<int32_t>(offsetof(Encoding_t3296442469, ___codePage_0)); } inline int32_t get_codePage_0() const { return ___codePage_0; } inline int32_t* get_address_of_codePage_0() { return &___codePage_0; } inline void set_codePage_0(int32_t value) { ___codePage_0 = value; } inline static int32_t get_offset_of_windows_code_page_1() { return static_cast<int32_t>(offsetof(Encoding_t3296442469, ___windows_code_page_1)); } inline int32_t get_windows_code_page_1() const { return ___windows_code_page_1; } inline int32_t* get_address_of_windows_code_page_1() { return &___windows_code_page_1; } inline void set_windows_code_page_1(int32_t value) { ___windows_code_page_1 = value; } inline static int32_t get_offset_of_is_readonly_2() { return static_cast<int32_t>(offsetof(Encoding_t3296442469, ___is_readonly_2)); } inline bool get_is_readonly_2() const { return ___is_readonly_2; } inline bool* get_address_of_is_readonly_2() { return &___is_readonly_2; } inline void set_is_readonly_2(bool value) { ___is_readonly_2 = value; } inline static int32_t get_offset_of_decoder_fallback_3() { return static_cast<int32_t>(offsetof(Encoding_t3296442469, ___decoder_fallback_3)); } inline DecoderFallback_t4241880903 * get_decoder_fallback_3() const { return ___decoder_fallback_3; } inline DecoderFallback_t4241880903 ** get_address_of_decoder_fallback_3() { return &___decoder_fallback_3; } inline void set_decoder_fallback_3(DecoderFallback_t4241880903 * value) { ___decoder_fallback_3 = value; Il2CppCodeGenWriteBarrier((&___decoder_fallback_3), value); } inline static int32_t get_offset_of_encoder_fallback_4() { return static_cast<int32_t>(offsetof(Encoding_t3296442469, ___encoder_fallback_4)); } inline EncoderFallback_t3150092088 * get_encoder_fallback_4() const { return ___encoder_fallback_4; } inline EncoderFallback_t3150092088 ** get_address_of_encoder_fallback_4() { return &___encoder_fallback_4; } inline void set_encoder_fallback_4(EncoderFallback_t3150092088 * value) { ___encoder_fallback_4 = value; Il2CppCodeGenWriteBarrier((&___encoder_fallback_4), value); } inline static int32_t get_offset_of_body_name_8() { return static_cast<int32_t>(offsetof(Encoding_t3296442469, ___body_name_8)); } inline String_t* get_body_name_8() const { return ___body_name_8; } inline String_t** get_address_of_body_name_8() { return &___body_name_8; } inline void set_body_name_8(String_t* value) { ___body_name_8 = value; Il2CppCodeGenWriteBarrier((&___body_name_8), value); } inline static int32_t get_offset_of_encoding_name_9() { return static_cast<int32_t>(offsetof(Encoding_t3296442469, ___encoding_name_9)); } inline String_t* get_encoding_name_9() const { return ___encoding_name_9; } inline String_t** get_address_of_encoding_name_9() { return &___encoding_name_9; } inline void set_encoding_name_9(String_t* value) { ___encoding_name_9 = value; Il2CppCodeGenWriteBarrier((&___encoding_name_9), value); } inline static int32_t get_offset_of_header_name_10() { return static_cast<int32_t>(offsetof(Encoding_t3296442469, ___header_name_10)); } inline String_t* get_header_name_10() const { return ___header_name_10; } inline String_t** get_address_of_header_name_10() { return &___header_name_10; } inline void set_header_name_10(String_t* value) { ___header_name_10 = value; Il2CppCodeGenWriteBarrier((&___header_name_10), value); } inline static int32_t get_offset_of_is_mail_news_display_11() { return static_cast<int32_t>(offsetof(Encoding_t3296442469, ___is_mail_news_display_11)); } inline bool get_is_mail_news_display_11() const { return ___is_mail_news_display_11; } inline bool* get_address_of_is_mail_news_display_11() { return &___is_mail_news_display_11; } inline void set_is_mail_news_display_11(bool value) { ___is_mail_news_display_11 = value; } inline static int32_t get_offset_of_is_mail_news_save_12() { return static_cast<int32_t>(offsetof(Encoding_t3296442469, ___is_mail_news_save_12)); } inline bool get_is_mail_news_save_12() const { return ___is_mail_news_save_12; } inline bool* get_address_of_is_mail_news_save_12() { return &___is_mail_news_save_12; } inline void set_is_mail_news_save_12(bool value) { ___is_mail_news_save_12 = value; } inline static int32_t get_offset_of_is_browser_save_13() { return static_cast<int32_t>(offsetof(Encoding_t3296442469, ___is_browser_save_13)); } inline bool get_is_browser_save_13() const { return ___is_browser_save_13; } inline bool* get_address_of_is_browser_save_13() { return &___is_browser_save_13; } inline void set_is_browser_save_13(bool value) { ___is_browser_save_13 = value; } inline static int32_t get_offset_of_is_browser_display_14() { return static_cast<int32_t>(offsetof(Encoding_t3296442469, ___is_browser_display_14)); } inline bool get_is_browser_display_14() const { return ___is_browser_display_14; } inline bool* get_address_of_is_browser_display_14() { return &___is_browser_display_14; } inline void set_is_browser_display_14(bool value) { ___is_browser_display_14 = value; } inline static int32_t get_offset_of_web_name_15() { return static_cast<int32_t>(offsetof(Encoding_t3296442469, ___web_name_15)); } inline String_t* get_web_name_15() const { return ___web_name_15; } inline String_t** get_address_of_web_name_15() { return &___web_name_15; } inline void set_web_name_15(String_t* value) { ___web_name_15 = value; Il2CppCodeGenWriteBarrier((&___web_name_15), value); } }; struct Encoding_t3296442469_StaticFields { public: // System.Reflection.Assembly System.Text.Encoding::i18nAssembly Assembly_t2742862503 * ___i18nAssembly_5; // System.Boolean System.Text.Encoding::i18nDisabled bool ___i18nDisabled_6; // System.Object[] System.Text.Encoding::encodings ObjectU5BU5D_t4199014551* ___encodings_7; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding Encoding_t3296442469 * ___asciiEncoding_16; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianEncoding Encoding_t3296442469 * ___bigEndianEncoding_17; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding Encoding_t3296442469 * ___defaultEncoding_18; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding Encoding_t3296442469 * ___utf7Encoding_19; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8EncodingWithMarkers Encoding_t3296442469 * ___utf8EncodingWithMarkers_20; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8EncodingWithoutMarkers Encoding_t3296442469 * ___utf8EncodingWithoutMarkers_21; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding Encoding_t3296442469 * ___unicodeEncoding_22; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::isoLatin1Encoding Encoding_t3296442469 * ___isoLatin1Encoding_23; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8EncodingUnsafe Encoding_t3296442469 * ___utf8EncodingUnsafe_24; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding Encoding_t3296442469 * ___utf32Encoding_25; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUTF32Encoding Encoding_t3296442469 * ___bigEndianUTF32Encoding_26; // System.Object System.Text.Encoding::lockobj RuntimeObject * ___lockobj_27; public: inline static int32_t get_offset_of_i18nAssembly_5() { return static_cast<int32_t>(offsetof(Encoding_t3296442469_StaticFields, ___i18nAssembly_5)); } inline Assembly_t2742862503 * get_i18nAssembly_5() const { return ___i18nAssembly_5; } inline Assembly_t2742862503 ** get_address_of_i18nAssembly_5() { return &___i18nAssembly_5; } inline void set_i18nAssembly_5(Assembly_t2742862503 * value) { ___i18nAssembly_5 = value; Il2CppCodeGenWriteBarrier((&___i18nAssembly_5), value); } inline static int32_t get_offset_of_i18nDisabled_6() { return static_cast<int32_t>(offsetof(Encoding_t3296442469_StaticFields, ___i18nDisabled_6)); } inline bool get_i18nDisabled_6() const { return ___i18nDisabled_6; } inline bool* get_address_of_i18nDisabled_6() { return &___i18nDisabled_6; } inline void set_i18nDisabled_6(bool value) { ___i18nDisabled_6 = value; } inline static int32_t get_offset_of_encodings_7() { return static_cast<int32_t>(offsetof(Encoding_t3296442469_StaticFields, ___encodings_7)); } inline ObjectU5BU5D_t4199014551* get_encodings_7() const { return ___encodings_7; } inline ObjectU5BU5D_t4199014551** get_address_of_encodings_7() { return &___encodings_7; } inline void set_encodings_7(ObjectU5BU5D_t4199014551* value) { ___encodings_7 = value; Il2CppCodeGenWriteBarrier((&___encodings_7), value); } inline static int32_t get_offset_of_asciiEncoding_16() { return static_cast<int32_t>(offsetof(Encoding_t3296442469_StaticFields, ___asciiEncoding_16)); } inline Encoding_t3296442469 * get_asciiEncoding_16() const { return ___asciiEncoding_16; } inline Encoding_t3296442469 ** get_address_of_asciiEncoding_16() { return &___asciiEncoding_16; } inline void set_asciiEncoding_16(Encoding_t3296442469 * value) { ___asciiEncoding_16 = value; Il2CppCodeGenWriteBarrier((&___asciiEncoding_16), value); } inline static int32_t get_offset_of_bigEndianEncoding_17() { return static_cast<int32_t>(offsetof(Encoding_t3296442469_StaticFields, ___bigEndianEncoding_17)); } inline Encoding_t3296442469 * get_bigEndianEncoding_17() const { return ___bigEndianEncoding_17; } inline Encoding_t3296442469 ** get_address_of_bigEndianEncoding_17() { return &___bigEndianEncoding_17; } inline void set_bigEndianEncoding_17(Encoding_t3296442469 * value) { ___bigEndianEncoding_17 = value; Il2CppCodeGenWriteBarrier((&___bigEndianEncoding_17), value); } inline static int32_t get_offset_of_defaultEncoding_18() { return static_cast<int32_t>(offsetof(Encoding_t3296442469_StaticFields, ___defaultEncoding_18)); } inline Encoding_t3296442469 * get_defaultEncoding_18() const { return ___defaultEncoding_18; } inline Encoding_t3296442469 ** get_address_of_defaultEncoding_18() { return &___defaultEncoding_18; } inline void set_defaultEncoding_18(Encoding_t3296442469 * value) { ___defaultEncoding_18 = value; Il2CppCodeGenWriteBarrier((&___defaultEncoding_18), value); } inline static int32_t get_offset_of_utf7Encoding_19() { return static_cast<int32_t>(offsetof(Encoding_t3296442469_StaticFields, ___utf7Encoding_19)); } inline Encoding_t3296442469 * get_utf7Encoding_19() const { return ___utf7Encoding_19; } inline Encoding_t3296442469 ** get_address_of_utf7Encoding_19() { return &___utf7Encoding_19; } inline void set_utf7Encoding_19(Encoding_t3296442469 * value) { ___utf7Encoding_19 = value; Il2CppCodeGenWriteBarrier((&___utf7Encoding_19), value); } inline static int32_t get_offset_of_utf8EncodingWithMarkers_20() { return static_cast<int32_t>(offsetof(Encoding_t3296442469_StaticFields, ___utf8EncodingWithMarkers_20)); } inline Encoding_t3296442469 * get_utf8EncodingWithMarkers_20() const { return ___utf8EncodingWithMarkers_20; } inline Encoding_t3296442469 ** get_address_of_utf8EncodingWithMarkers_20() { return &___utf8EncodingWithMarkers_20; } inline void set_utf8EncodingWithMarkers_20(Encoding_t3296442469 * value) { ___utf8EncodingWithMarkers_20 = value; Il2CppCodeGenWriteBarrier((&___utf8EncodingWithMarkers_20), value); } inline static int32_t get_offset_of_utf8EncodingWithoutMarkers_21() { return static_cast<int32_t>(offsetof(Encoding_t3296442469_StaticFields, ___utf8EncodingWithoutMarkers_21)); } inline Encoding_t3296442469 * get_utf8EncodingWithoutMarkers_21() const { return ___utf8EncodingWithoutMarkers_21; } inline Encoding_t3296442469 ** get_address_of_utf8EncodingWithoutMarkers_21() { return &___utf8EncodingWithoutMarkers_21; } inline void set_utf8EncodingWithoutMarkers_21(Encoding_t3296442469 * value) { ___utf8EncodingWithoutMarkers_21 = value; Il2CppCodeGenWriteBarrier((&___utf8EncodingWithoutMarkers_21), value); } inline static int32_t get_offset_of_unicodeEncoding_22() { return static_cast<int32_t>(offsetof(Encoding_t3296442469_StaticFields, ___unicodeEncoding_22)); } inline Encoding_t3296442469 * get_unicodeEncoding_22() const { return ___unicodeEncoding_22; } inline Encoding_t3296442469 ** get_address_of_unicodeEncoding_22() { return &___unicodeEncoding_22; } inline void set_unicodeEncoding_22(Encoding_t3296442469 * value) { ___unicodeEncoding_22 = value; Il2CppCodeGenWriteBarrier((&___unicodeEncoding_22), value); } inline static int32_t get_offset_of_isoLatin1Encoding_23() { return static_cast<int32_t>(offsetof(Encoding_t3296442469_StaticFields, ___isoLatin1Encoding_23)); } inline Encoding_t3296442469 * get_isoLatin1Encoding_23() const { return ___isoLatin1Encoding_23; } inline Encoding_t3296442469 ** get_address_of_isoLatin1Encoding_23() { return &___isoLatin1Encoding_23; } inline void set_isoLatin1Encoding_23(Encoding_t3296442469 * value) { ___isoLatin1Encoding_23 = value; Il2CppCodeGenWriteBarrier((&___isoLatin1Encoding_23), value); } inline static int32_t get_offset_of_utf8EncodingUnsafe_24() { return static_cast<int32_t>(offsetof(Encoding_t3296442469_StaticFields, ___utf8EncodingUnsafe_24)); } inline Encoding_t3296442469 * get_utf8EncodingUnsafe_24() const { return ___utf8EncodingUnsafe_24; } inline Encoding_t3296442469 ** get_address_of_utf8EncodingUnsafe_24() { return &___utf8EncodingUnsafe_24; } inline void set_utf8EncodingUnsafe_24(Encoding_t3296442469 * value) { ___utf8EncodingUnsafe_24 = value; Il2CppCodeGenWriteBarrier((&___utf8EncodingUnsafe_24), value); } inline static int32_t get_offset_of_utf32Encoding_25() { return static_cast<int32_t>(offsetof(Encoding_t3296442469_StaticFields, ___utf32Encoding_25)); } inline Encoding_t3296442469 * get_utf32Encoding_25() const { return ___utf32Encoding_25; } inline Encoding_t3296442469 ** get_address_of_utf32Encoding_25() { return &___utf32Encoding_25; } inline void set_utf32Encoding_25(Encoding_t3296442469 * value) { ___utf32Encoding_25 = value; Il2CppCodeGenWriteBarrier((&___utf32Encoding_25), value); } inline static int32_t get_offset_of_bigEndianUTF32Encoding_26() { return static_cast<int32_t>(offsetof(Encoding_t3296442469_StaticFields, ___bigEndianUTF32Encoding_26)); } inline Encoding_t3296442469 * get_bigEndianUTF32Encoding_26() const { return ___bigEndianUTF32Encoding_26; } inline Encoding_t3296442469 ** get_address_of_bigEndianUTF32Encoding_26() { return &___bigEndianUTF32Encoding_26; } inline void set_bigEndianUTF32Encoding_26(Encoding_t3296442469 * value) { ___bigEndianUTF32Encoding_26 = value; Il2CppCodeGenWriteBarrier((&___bigEndianUTF32Encoding_26), value); } inline static int32_t get_offset_of_lockobj_27() { return static_cast<int32_t>(offsetof(Encoding_t3296442469_StaticFields, ___lockobj_27)); } inline RuntimeObject * get_lockobj_27() const { return ___lockobj_27; } inline RuntimeObject ** get_address_of_lockobj_27() { return &___lockobj_27; } inline void set_lockobj_27(RuntimeObject * value) { ___lockobj_27 = value; Il2CppCodeGenWriteBarrier((&___lockobj_27), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENCODING_T3296442469_H #ifndef KEYSCOLLECTION_T4017748511_H #define KEYSCOLLECTION_T4017748511_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Specialized.NameObjectCollectionBase/KeysCollection struct KeysCollection_t4017748511 : public RuntimeObject { public: // System.Collections.Specialized.NameObjectCollectionBase System.Collections.Specialized.NameObjectCollectionBase/KeysCollection::m_collection NameObjectCollectionBase_t1742866887 * ___m_collection_0; public: inline static int32_t get_offset_of_m_collection_0() { return static_cast<int32_t>(offsetof(KeysCollection_t4017748511, ___m_collection_0)); } inline NameObjectCollectionBase_t1742866887 * get_m_collection_0() const { return ___m_collection_0; } inline NameObjectCollectionBase_t1742866887 ** get_address_of_m_collection_0() { return &___m_collection_0; } inline void set_m_collection_0(NameObjectCollectionBase_t1742866887 * value) { ___m_collection_0 = value; Il2CppCodeGenWriteBarrier((&___m_collection_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYSCOLLECTION_T4017748511_H #ifndef CUSTOMTYPEDESCRIPTOR_T1811165357_H #define CUSTOMTYPEDESCRIPTOR_T1811165357_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.CustomTypeDescriptor struct CustomTypeDescriptor_t1811165357 : public RuntimeObject { public: // System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.CustomTypeDescriptor::_parent RuntimeObject* ____parent_0; public: inline static int32_t get_offset_of__parent_0() { return static_cast<int32_t>(offsetof(CustomTypeDescriptor_t1811165357, ____parent_0)); } inline RuntimeObject* get__parent_0() const { return ____parent_0; } inline RuntimeObject** get_address_of__parent_0() { return &____parent_0; } inline void set__parent_0(RuntimeObject* value) { ____parent_0 = value; Il2CppCodeGenWriteBarrier((&____parent_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CUSTOMTYPEDESCRIPTOR_T1811165357_H #ifndef HASHTABLE_T448324601_H #define HASHTABLE_T448324601_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Hashtable struct Hashtable_t448324601 : public RuntimeObject { public: // System.Int32 System.Collections.Hashtable::inUse int32_t ___inUse_1; // System.Int32 System.Collections.Hashtable::modificationCount int32_t ___modificationCount_2; // System.Single System.Collections.Hashtable::loadFactor float ___loadFactor_3; // System.Collections.Hashtable/Slot[] System.Collections.Hashtable::table SlotU5BU5D_t1822980323* ___table_4; // System.Int32[] System.Collections.Hashtable::hashes Int32U5BU5D_t1883881640* ___hashes_5; // System.Int32 System.Collections.Hashtable::threshold int32_t ___threshold_6; // System.Collections.Hashtable/HashKeys System.Collections.Hashtable::hashKeys HashKeys_t1701823832 * ___hashKeys_7; // System.Collections.Hashtable/HashValues System.Collections.Hashtable::hashValues HashValues_t3999004706 * ___hashValues_8; // System.Collections.IHashCodeProvider System.Collections.Hashtable::hcpRef RuntimeObject* ___hcpRef_9; // System.Collections.IComparer System.Collections.Hashtable::comparerRef RuntimeObject* ___comparerRef_10; // System.Runtime.Serialization.SerializationInfo System.Collections.Hashtable::serializationInfo SerializationInfo_t2260044969 * ___serializationInfo_11; // System.Collections.IEqualityComparer System.Collections.Hashtable::equalityComparer RuntimeObject* ___equalityComparer_12; public: inline static int32_t get_offset_of_inUse_1() { return static_cast<int32_t>(offsetof(Hashtable_t448324601, ___inUse_1)); } inline int32_t get_inUse_1() const { return ___inUse_1; } inline int32_t* get_address_of_inUse_1() { return &___inUse_1; } inline void set_inUse_1(int32_t value) { ___inUse_1 = value; } inline static int32_t get_offset_of_modificationCount_2() { return static_cast<int32_t>(offsetof(Hashtable_t448324601, ___modificationCount_2)); } inline int32_t get_modificationCount_2() const { return ___modificationCount_2; } inline int32_t* get_address_of_modificationCount_2() { return &___modificationCount_2; } inline void set_modificationCount_2(int32_t value) { ___modificationCount_2 = value; } inline static int32_t get_offset_of_loadFactor_3() { return static_cast<int32_t>(offsetof(Hashtable_t448324601, ___loadFactor_3)); } inline float get_loadFactor_3() const { return ___loadFactor_3; } inline float* get_address_of_loadFactor_3() { return &___loadFactor_3; } inline void set_loadFactor_3(float value) { ___loadFactor_3 = value; } inline static int32_t get_offset_of_table_4() { return static_cast<int32_t>(offsetof(Hashtable_t448324601, ___table_4)); } inline SlotU5BU5D_t1822980323* get_table_4() const { return ___table_4; } inline SlotU5BU5D_t1822980323** get_address_of_table_4() { return &___table_4; } inline void set_table_4(SlotU5BU5D_t1822980323* value) { ___table_4 = value; Il2CppCodeGenWriteBarrier((&___table_4), value); } inline static int32_t get_offset_of_hashes_5() { return static_cast<int32_t>(offsetof(Hashtable_t448324601, ___hashes_5)); } inline Int32U5BU5D_t1883881640* get_hashes_5() const { return ___hashes_5; } inline Int32U5BU5D_t1883881640** get_address_of_hashes_5() { return &___hashes_5; } inline void set_hashes_5(Int32U5BU5D_t1883881640* value) { ___hashes_5 = value; Il2CppCodeGenWriteBarrier((&___hashes_5), value); } inline static int32_t get_offset_of_threshold_6() { return static_cast<int32_t>(offsetof(Hashtable_t448324601, ___threshold_6)); } inline int32_t get_threshold_6() const { return ___threshold_6; } inline int32_t* get_address_of_threshold_6() { return &___threshold_6; } inline void set_threshold_6(int32_t value) { ___threshold_6 = value; } inline static int32_t get_offset_of_hashKeys_7() { return static_cast<int32_t>(offsetof(Hashtable_t448324601, ___hashKeys_7)); } inline HashKeys_t1701823832 * get_hashKeys_7() const { return ___hashKeys_7; } inline HashKeys_t1701823832 ** get_address_of_hashKeys_7() { return &___hashKeys_7; } inline void set_hashKeys_7(HashKeys_t1701823832 * value) { ___hashKeys_7 = value; Il2CppCodeGenWriteBarrier((&___hashKeys_7), value); } inline static int32_t get_offset_of_hashValues_8() { return static_cast<int32_t>(offsetof(Hashtable_t448324601, ___hashValues_8)); } inline HashValues_t3999004706 * get_hashValues_8() const { return ___hashValues_8; } inline HashValues_t3999004706 ** get_address_of_hashValues_8() { return &___hashValues_8; } inline void set_hashValues_8(HashValues_t3999004706 * value) { ___hashValues_8 = value; Il2CppCodeGenWriteBarrier((&___hashValues_8), value); } inline static int32_t get_offset_of_hcpRef_9() { return static_cast<int32_t>(offsetof(Hashtable_t448324601, ___hcpRef_9)); } inline RuntimeObject* get_hcpRef_9() const { return ___hcpRef_9; } inline RuntimeObject** get_address_of_hcpRef_9() { return &___hcpRef_9; } inline void set_hcpRef_9(RuntimeObject* value) { ___hcpRef_9 = value; Il2CppCodeGenWriteBarrier((&___hcpRef_9), value); } inline static int32_t get_offset_of_comparerRef_10() { return static_cast<int32_t>(offsetof(Hashtable_t448324601, ___comparerRef_10)); } inline RuntimeObject* get_comparerRef_10() const { return ___comparerRef_10; } inline RuntimeObject** get_address_of_comparerRef_10() { return &___comparerRef_10; } inline void set_comparerRef_10(RuntimeObject* value) { ___comparerRef_10 = value; Il2CppCodeGenWriteBarrier((&___comparerRef_10), value); } inline static int32_t get_offset_of_serializationInfo_11() { return static_cast<int32_t>(offsetof(Hashtable_t448324601, ___serializationInfo_11)); } inline SerializationInfo_t2260044969 * get_serializationInfo_11() const { return ___serializationInfo_11; } inline SerializationInfo_t2260044969 ** get_address_of_serializationInfo_11() { return &___serializationInfo_11; } inline void set_serializationInfo_11(SerializationInfo_t2260044969 * value) { ___serializationInfo_11 = value; Il2CppCodeGenWriteBarrier((&___serializationInfo_11), value); } inline static int32_t get_offset_of_equalityComparer_12() { return static_cast<int32_t>(offsetof(Hashtable_t448324601, ___equalityComparer_12)); } inline RuntimeObject* get_equalityComparer_12() const { return ___equalityComparer_12; } inline RuntimeObject** get_address_of_equalityComparer_12() { return &___equalityComparer_12; } inline void set_equalityComparer_12(RuntimeObject* value) { ___equalityComparer_12 = value; Il2CppCodeGenWriteBarrier((&___equalityComparer_12), value); } }; struct Hashtable_t448324601_StaticFields { public: // System.Int32[] System.Collections.Hashtable::primeTbl Int32U5BU5D_t1883881640* ___primeTbl_13; public: inline static int32_t get_offset_of_primeTbl_13() { return static_cast<int32_t>(offsetof(Hashtable_t448324601_StaticFields, ___primeTbl_13)); } inline Int32U5BU5D_t1883881640* get_primeTbl_13() const { return ___primeTbl_13; } inline Int32U5BU5D_t1883881640** get_address_of_primeTbl_13() { return &___primeTbl_13; } inline void set_primeTbl_13(Int32U5BU5D_t1883881640* value) { ___primeTbl_13 = value; Il2CppCodeGenWriteBarrier((&___primeTbl_13), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // HASHTABLE_T448324601_H #ifndef QUEUE_T4072794599_H #define QUEUE_T4072794599_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Queue struct Queue_t4072794599 : public RuntimeObject { public: // System.Object[] System.Collections.Queue::_array ObjectU5BU5D_t4199014551* ____array_0; // System.Int32 System.Collections.Queue::_head int32_t ____head_1; // System.Int32 System.Collections.Queue::_size int32_t ____size_2; // System.Int32 System.Collections.Queue::_tail int32_t ____tail_3; // System.Int32 System.Collections.Queue::_growFactor int32_t ____growFactor_4; // System.Int32 System.Collections.Queue::_version int32_t ____version_5; public: inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(Queue_t4072794599, ____array_0)); } inline ObjectU5BU5D_t4199014551* get__array_0() const { return ____array_0; } inline ObjectU5BU5D_t4199014551** get_address_of__array_0() { return &____array_0; } inline void set__array_0(ObjectU5BU5D_t4199014551* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((&____array_0), value); } inline static int32_t get_offset_of__head_1() { return static_cast<int32_t>(offsetof(Queue_t4072794599, ____head_1)); } inline int32_t get__head_1() const { return ____head_1; } inline int32_t* get_address_of__head_1() { return &____head_1; } inline void set__head_1(int32_t value) { ____head_1 = value; } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(Queue_t4072794599, ____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__tail_3() { return static_cast<int32_t>(offsetof(Queue_t4072794599, ____tail_3)); } inline int32_t get__tail_3() const { return ____tail_3; } inline int32_t* get_address_of__tail_3() { return &____tail_3; } inline void set__tail_3(int32_t value) { ____tail_3 = value; } inline static int32_t get_offset_of__growFactor_4() { return static_cast<int32_t>(offsetof(Queue_t4072794599, ____growFactor_4)); } inline int32_t get__growFactor_4() const { return ____growFactor_4; } inline int32_t* get_address_of__growFactor_4() { return &____growFactor_4; } inline void set__growFactor_4(int32_t value) { ____growFactor_4 = value; } inline static int32_t get_offset_of__version_5() { return static_cast<int32_t>(offsetof(Queue_t4072794599, ____version_5)); } inline int32_t get__version_5() const { return ____version_5; } inline int32_t* get_address_of__version_5() { return &____version_5; } inline void set__version_5(int32_t value) { ____version_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // QUEUE_T4072794599_H #ifndef WEBPROXY_T234734190_H #define WEBPROXY_T234734190_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.WebProxy struct WebProxy_t234734190 : public RuntimeObject { public: // System.Uri System.Net.WebProxy::address Uri_t3882940875 * ___address_0; // System.Boolean System.Net.WebProxy::bypassOnLocal bool ___bypassOnLocal_1; // System.Collections.ArrayList System.Net.WebProxy::bypassList ArrayList_t4277734320 * ___bypassList_2; // System.Net.ICredentials System.Net.WebProxy::credentials RuntimeObject* ___credentials_3; // System.Boolean System.Net.WebProxy::useDefaultCredentials bool ___useDefaultCredentials_4; public: inline static int32_t get_offset_of_address_0() { return static_cast<int32_t>(offsetof(WebProxy_t234734190, ___address_0)); } inline Uri_t3882940875 * get_address_0() const { return ___address_0; } inline Uri_t3882940875 ** get_address_of_address_0() { return &___address_0; } inline void set_address_0(Uri_t3882940875 * value) { ___address_0 = value; Il2CppCodeGenWriteBarrier((&___address_0), value); } inline static int32_t get_offset_of_bypassOnLocal_1() { return static_cast<int32_t>(offsetof(WebProxy_t234734190, ___bypassOnLocal_1)); } inline bool get_bypassOnLocal_1() const { return ___bypassOnLocal_1; } inline bool* get_address_of_bypassOnLocal_1() { return &___bypassOnLocal_1; } inline void set_bypassOnLocal_1(bool value) { ___bypassOnLocal_1 = value; } inline static int32_t get_offset_of_bypassList_2() { return static_cast<int32_t>(offsetof(WebProxy_t234734190, ___bypassList_2)); } inline ArrayList_t4277734320 * get_bypassList_2() const { return ___bypassList_2; } inline ArrayList_t4277734320 ** get_address_of_bypassList_2() { return &___bypassList_2; } inline void set_bypassList_2(ArrayList_t4277734320 * value) { ___bypassList_2 = value; Il2CppCodeGenWriteBarrier((&___bypassList_2), value); } inline static int32_t get_offset_of_credentials_3() { return static_cast<int32_t>(offsetof(WebProxy_t234734190, ___credentials_3)); } inline RuntimeObject* get_credentials_3() const { return ___credentials_3; } inline RuntimeObject** get_address_of_credentials_3() { return &___credentials_3; } inline void set_credentials_3(RuntimeObject* value) { ___credentials_3 = value; Il2CppCodeGenWriteBarrier((&___credentials_3), value); } inline static int32_t get_offset_of_useDefaultCredentials_4() { return static_cast<int32_t>(offsetof(WebProxy_t234734190, ___useDefaultCredentials_4)); } inline bool get_useDefaultCredentials_4() const { return ___useDefaultCredentials_4; } inline bool* get_address_of_useDefaultCredentials_4() { return &___useDefaultCredentials_4; } inline void set_useDefaultCredentials_4(bool value) { ___useDefaultCredentials_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WEBPROXY_T234734190_H #ifndef CASEINSENSITIVEHASHCODEPROVIDER_T1153736937_H #define CASEINSENSITIVEHASHCODEPROVIDER_T1153736937_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.CaseInsensitiveHashCodeProvider struct CaseInsensitiveHashCodeProvider_t1153736937 : public RuntimeObject { public: // System.Globalization.TextInfo System.Collections.CaseInsensitiveHashCodeProvider::m_text TextInfo_t3325201661 * ___m_text_2; public: inline static int32_t get_offset_of_m_text_2() { return static_cast<int32_t>(offsetof(CaseInsensitiveHashCodeProvider_t1153736937, ___m_text_2)); } inline TextInfo_t3325201661 * get_m_text_2() const { return ___m_text_2; } inline TextInfo_t3325201661 ** get_address_of_m_text_2() { return &___m_text_2; } inline void set_m_text_2(TextInfo_t3325201661 * value) { ___m_text_2 = value; Il2CppCodeGenWriteBarrier((&___m_text_2), value); } }; struct CaseInsensitiveHashCodeProvider_t1153736937_StaticFields { public: // System.Collections.CaseInsensitiveHashCodeProvider System.Collections.CaseInsensitiveHashCodeProvider::singletonInvariant CaseInsensitiveHashCodeProvider_t1153736937 * ___singletonInvariant_0; // System.Object System.Collections.CaseInsensitiveHashCodeProvider::sync RuntimeObject * ___sync_1; public: inline static int32_t get_offset_of_singletonInvariant_0() { return static_cast<int32_t>(offsetof(CaseInsensitiveHashCodeProvider_t1153736937_StaticFields, ___singletonInvariant_0)); } inline CaseInsensitiveHashCodeProvider_t1153736937 * get_singletonInvariant_0() const { return ___singletonInvariant_0; } inline CaseInsensitiveHashCodeProvider_t1153736937 ** get_address_of_singletonInvariant_0() { return &___singletonInvariant_0; } inline void set_singletonInvariant_0(CaseInsensitiveHashCodeProvider_t1153736937 * value) { ___singletonInvariant_0 = value; Il2CppCodeGenWriteBarrier((&___singletonInvariant_0), value); } inline static int32_t get_offset_of_sync_1() { return static_cast<int32_t>(offsetof(CaseInsensitiveHashCodeProvider_t1153736937_StaticFields, ___sync_1)); } inline RuntimeObject * get_sync_1() const { return ___sync_1; } inline RuntimeObject ** get_address_of_sync_1() { return &___sync_1; } inline void set_sync_1(RuntimeObject * value) { ___sync_1 = value; Il2CppCodeGenWriteBarrier((&___sync_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CASEINSENSITIVEHASHCODEPROVIDER_T1153736937_H #ifndef LINKEDLISTNODE_1_T1908715458_H #define LINKEDLISTNODE_1_T1908715458_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.LinkedListNode`1<System.ComponentModel.TypeDescriptionProvider> struct LinkedListNode_1_t1908715458 : public RuntimeObject { public: // T System.Collections.Generic.LinkedListNode`1::item TypeDescriptionProvider_t4220413402 * ___item_0; // System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedListNode`1::container LinkedList_1_t3169462053 * ___container_1; // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::forward LinkedListNode_1_t1908715458 * ___forward_2; // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::back LinkedListNode_1_t1908715458 * ___back_3; public: inline static int32_t get_offset_of_item_0() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t1908715458, ___item_0)); } inline TypeDescriptionProvider_t4220413402 * get_item_0() const { return ___item_0; } inline TypeDescriptionProvider_t4220413402 ** get_address_of_item_0() { return &___item_0; } inline void set_item_0(TypeDescriptionProvider_t4220413402 * value) { ___item_0 = value; Il2CppCodeGenWriteBarrier((&___item_0), value); } inline static int32_t get_offset_of_container_1() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t1908715458, ___container_1)); } inline LinkedList_1_t3169462053 * get_container_1() const { return ___container_1; } inline LinkedList_1_t3169462053 ** get_address_of_container_1() { return &___container_1; } inline void set_container_1(LinkedList_1_t3169462053 * value) { ___container_1 = value; Il2CppCodeGenWriteBarrier((&___container_1), value); } inline static int32_t get_offset_of_forward_2() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t1908715458, ___forward_2)); } inline LinkedListNode_1_t1908715458 * get_forward_2() const { return ___forward_2; } inline LinkedListNode_1_t1908715458 ** get_address_of_forward_2() { return &___forward_2; } inline void set_forward_2(LinkedListNode_1_t1908715458 * value) { ___forward_2 = value; Il2CppCodeGenWriteBarrier((&___forward_2), value); } inline static int32_t get_offset_of_back_3() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t1908715458, ___back_3)); } inline LinkedListNode_1_t1908715458 * get_back_3() const { return ___back_3; } inline LinkedListNode_1_t1908715458 ** get_address_of_back_3() { return &___back_3; } inline void set_back_3(LinkedListNode_1_t1908715458 * value) { ___back_3 = value; Il2CppCodeGenWriteBarrier((&___back_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LINKEDLISTNODE_1_T1908715458_H #ifndef DICTIONARY_2_T120496167_H #define DICTIONARY_2_T120496167_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2<System.String,System.Boolean> struct Dictionary_2_t120496167 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::table Int32U5BU5D_t1883881640* ___table_4; // System.Collections.Generic.Link[] System.Collections.Generic.Dictionary`2::linkSlots LinkU5BU5D_t3296134080* ___linkSlots_5; // TKey[] System.Collections.Generic.Dictionary`2::keySlots StringU5BU5D_t1187188029* ___keySlots_6; // TValue[] System.Collections.Generic.Dictionary`2::valueSlots BooleanU5BU5D_t184022451* ___valueSlots_7; // System.Int32 System.Collections.Generic.Dictionary`2::touchedSlots int32_t ___touchedSlots_8; // System.Int32 System.Collections.Generic.Dictionary`2::emptySlot int32_t ___emptySlot_9; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_10; // System.Int32 System.Collections.Generic.Dictionary`2::threshold int32_t ___threshold_11; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::hcp RuntimeObject* ___hcp_12; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.Dictionary`2::serialization_info SerializationInfo_t2260044969 * ___serialization_info_13; // System.Int32 System.Collections.Generic.Dictionary`2::generation int32_t ___generation_14; public: inline static int32_t get_offset_of_table_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t120496167, ___table_4)); } inline Int32U5BU5D_t1883881640* get_table_4() const { return ___table_4; } inline Int32U5BU5D_t1883881640** get_address_of_table_4() { return &___table_4; } inline void set_table_4(Int32U5BU5D_t1883881640* value) { ___table_4 = value; Il2CppCodeGenWriteBarrier((&___table_4), value); } inline static int32_t get_offset_of_linkSlots_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t120496167, ___linkSlots_5)); } inline LinkU5BU5D_t3296134080* get_linkSlots_5() const { return ___linkSlots_5; } inline LinkU5BU5D_t3296134080** get_address_of_linkSlots_5() { return &___linkSlots_5; } inline void set_linkSlots_5(LinkU5BU5D_t3296134080* value) { ___linkSlots_5 = value; Il2CppCodeGenWriteBarrier((&___linkSlots_5), value); } inline static int32_t get_offset_of_keySlots_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t120496167, ___keySlots_6)); } inline StringU5BU5D_t1187188029* get_keySlots_6() const { return ___keySlots_6; } inline StringU5BU5D_t1187188029** get_address_of_keySlots_6() { return &___keySlots_6; } inline void set_keySlots_6(StringU5BU5D_t1187188029* value) { ___keySlots_6 = value; Il2CppCodeGenWriteBarrier((&___keySlots_6), value); } inline static int32_t get_offset_of_valueSlots_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t120496167, ___valueSlots_7)); } inline BooleanU5BU5D_t184022451* get_valueSlots_7() const { return ___valueSlots_7; } inline BooleanU5BU5D_t184022451** get_address_of_valueSlots_7() { return &___valueSlots_7; } inline void set_valueSlots_7(BooleanU5BU5D_t184022451* value) { ___valueSlots_7 = value; Il2CppCodeGenWriteBarrier((&___valueSlots_7), value); } inline static int32_t get_offset_of_touchedSlots_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t120496167, ___touchedSlots_8)); } inline int32_t get_touchedSlots_8() const { return ___touchedSlots_8; } inline int32_t* get_address_of_touchedSlots_8() { return &___touchedSlots_8; } inline void set_touchedSlots_8(int32_t value) { ___touchedSlots_8 = value; } inline static int32_t get_offset_of_emptySlot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t120496167, ___emptySlot_9)); } inline int32_t get_emptySlot_9() const { return ___emptySlot_9; } inline int32_t* get_address_of_emptySlot_9() { return &___emptySlot_9; } inline void set_emptySlot_9(int32_t value) { ___emptySlot_9 = value; } inline static int32_t get_offset_of_count_10() { return static_cast<int32_t>(offsetof(Dictionary_2_t120496167, ___count_10)); } inline int32_t get_count_10() const { return ___count_10; } inline int32_t* get_address_of_count_10() { return &___count_10; } inline void set_count_10(int32_t value) { ___count_10 = value; } inline static int32_t get_offset_of_threshold_11() { return static_cast<int32_t>(offsetof(Dictionary_2_t120496167, ___threshold_11)); } inline int32_t get_threshold_11() const { return ___threshold_11; } inline int32_t* get_address_of_threshold_11() { return &___threshold_11; } inline void set_threshold_11(int32_t value) { ___threshold_11 = value; } inline static int32_t get_offset_of_hcp_12() { return static_cast<int32_t>(offsetof(Dictionary_2_t120496167, ___hcp_12)); } inline RuntimeObject* get_hcp_12() const { return ___hcp_12; } inline RuntimeObject** get_address_of_hcp_12() { return &___hcp_12; } inline void set_hcp_12(RuntimeObject* value) { ___hcp_12 = value; Il2CppCodeGenWriteBarrier((&___hcp_12), value); } inline static int32_t get_offset_of_serialization_info_13() { return static_cast<int32_t>(offsetof(Dictionary_2_t120496167, ___serialization_info_13)); } inline SerializationInfo_t2260044969 * get_serialization_info_13() const { return ___serialization_info_13; } inline SerializationInfo_t2260044969 ** get_address_of_serialization_info_13() { return &___serialization_info_13; } inline void set_serialization_info_13(SerializationInfo_t2260044969 * value) { ___serialization_info_13 = value; Il2CppCodeGenWriteBarrier((&___serialization_info_13), value); } inline static int32_t get_offset_of_generation_14() { return static_cast<int32_t>(offsetof(Dictionary_2_t120496167, ___generation_14)); } inline int32_t get_generation_14() const { return ___generation_14; } inline int32_t* get_address_of_generation_14() { return &___generation_14; } inline void set_generation_14(int32_t value) { ___generation_14 = value; } }; struct Dictionary_2_t120496167_StaticFields { public: // System.Collections.Generic.Dictionary`2/Transform`1<TKey,TValue,System.Collections.DictionaryEntry> System.Collections.Generic.Dictionary`2::<>f__am$cacheB Transform_1_t2571868449 * ___U3CU3Ef__amU24cacheB_15; public: inline static int32_t get_offset_of_U3CU3Ef__amU24cacheB_15() { return static_cast<int32_t>(offsetof(Dictionary_2_t120496167_StaticFields, ___U3CU3Ef__amU24cacheB_15)); } inline Transform_1_t2571868449 * get_U3CU3Ef__amU24cacheB_15() const { return ___U3CU3Ef__amU24cacheB_15; } inline Transform_1_t2571868449 ** get_address_of_U3CU3Ef__amU24cacheB_15() { return &___U3CU3Ef__amU24cacheB_15; } inline void set_U3CU3Ef__amU24cacheB_15(Transform_1_t2571868449 * value) { ___U3CU3Ef__amU24cacheB_15 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__amU24cacheB_15), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DICTIONARY_2_T120496167_H #ifndef STRINGCOMPARER_T3292076425_H #define STRINGCOMPARER_T3292076425_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.StringComparer struct StringComparer_t3292076425 : public RuntimeObject { public: public: }; struct StringComparer_t3292076425_StaticFields { public: // System.StringComparer System.StringComparer::invariantCultureIgnoreCase StringComparer_t3292076425 * ___invariantCultureIgnoreCase_0; // System.StringComparer System.StringComparer::invariantCulture StringComparer_t3292076425 * ___invariantCulture_1; // System.StringComparer System.StringComparer::ordinalIgnoreCase StringComparer_t3292076425 * ___ordinalIgnoreCase_2; // System.StringComparer System.StringComparer::ordinal StringComparer_t3292076425 * ___ordinal_3; public: inline static int32_t get_offset_of_invariantCultureIgnoreCase_0() { return static_cast<int32_t>(offsetof(StringComparer_t3292076425_StaticFields, ___invariantCultureIgnoreCase_0)); } inline StringComparer_t3292076425 * get_invariantCultureIgnoreCase_0() const { return ___invariantCultureIgnoreCase_0; } inline StringComparer_t3292076425 ** get_address_of_invariantCultureIgnoreCase_0() { return &___invariantCultureIgnoreCase_0; } inline void set_invariantCultureIgnoreCase_0(StringComparer_t3292076425 * value) { ___invariantCultureIgnoreCase_0 = value; Il2CppCodeGenWriteBarrier((&___invariantCultureIgnoreCase_0), value); } inline static int32_t get_offset_of_invariantCulture_1() { return static_cast<int32_t>(offsetof(StringComparer_t3292076425_StaticFields, ___invariantCulture_1)); } inline StringComparer_t3292076425 * get_invariantCulture_1() const { return ___invariantCulture_1; } inline StringComparer_t3292076425 ** get_address_of_invariantCulture_1() { return &___invariantCulture_1; } inline void set_invariantCulture_1(StringComparer_t3292076425 * value) { ___invariantCulture_1 = value; Il2CppCodeGenWriteBarrier((&___invariantCulture_1), value); } inline static int32_t get_offset_of_ordinalIgnoreCase_2() { return static_cast<int32_t>(offsetof(StringComparer_t3292076425_StaticFields, ___ordinalIgnoreCase_2)); } inline StringComparer_t3292076425 * get_ordinalIgnoreCase_2() const { return ___ordinalIgnoreCase_2; } inline StringComparer_t3292076425 ** get_address_of_ordinalIgnoreCase_2() { return &___ordinalIgnoreCase_2; } inline void set_ordinalIgnoreCase_2(StringComparer_t3292076425 * value) { ___ordinalIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((&___ordinalIgnoreCase_2), value); } inline static int32_t get_offset_of_ordinal_3() { return static_cast<int32_t>(offsetof(StringComparer_t3292076425_StaticFields, ___ordinal_3)); } inline StringComparer_t3292076425 * get_ordinal_3() const { return ___ordinal_3; } inline StringComparer_t3292076425 ** get_address_of_ordinal_3() { return &___ordinal_3; } inline void set_ordinal_3(StringComparer_t3292076425 * value) { ___ordinal_3 = value; Il2CppCodeGenWriteBarrier((&___ordinal_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STRINGCOMPARER_T3292076425_H #ifndef ATTRIBUTECOLLECTION_T3634739288_H #define ATTRIBUTECOLLECTION_T3634739288_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.AttributeCollection struct AttributeCollection_t3634739288 : public RuntimeObject { public: // System.Collections.ArrayList System.ComponentModel.AttributeCollection::attrList ArrayList_t4277734320 * ___attrList_0; public: inline static int32_t get_offset_of_attrList_0() { return static_cast<int32_t>(offsetof(AttributeCollection_t3634739288, ___attrList_0)); } inline ArrayList_t4277734320 * get_attrList_0() const { return ___attrList_0; } inline ArrayList_t4277734320 ** get_address_of_attrList_0() { return &___attrList_0; } inline void set_attrList_0(ArrayList_t4277734320 * value) { ___attrList_0 = value; Il2CppCodeGenWriteBarrier((&___attrList_0), value); } }; struct AttributeCollection_t3634739288_StaticFields { public: // System.ComponentModel.AttributeCollection System.ComponentModel.AttributeCollection::Empty AttributeCollection_t3634739288 * ___Empty_1; public: inline static int32_t get_offset_of_Empty_1() { return static_cast<int32_t>(offsetof(AttributeCollection_t3634739288_StaticFields, ___Empty_1)); } inline AttributeCollection_t3634739288 * get_Empty_1() const { return ___Empty_1; } inline AttributeCollection_t3634739288 ** get_address_of_Empty_1() { return &___Empty_1; } inline void set_Empty_1(AttributeCollection_t3634739288 * value) { ___Empty_1 = value; Il2CppCodeGenWriteBarrier((&___Empty_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ATTRIBUTECOLLECTION_T3634739288_H #ifndef NAMEOBJECTCOLLECTIONBASE_T1742866887_H #define NAMEOBJECTCOLLECTIONBASE_T1742866887_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Specialized.NameObjectCollectionBase struct NameObjectCollectionBase_t1742866887 : public RuntimeObject { public: // System.Collections.Hashtable System.Collections.Specialized.NameObjectCollectionBase::m_ItemsContainer Hashtable_t448324601 * ___m_ItemsContainer_0; // System.Collections.Specialized.NameObjectCollectionBase/_Item System.Collections.Specialized.NameObjectCollectionBase::m_NullKeyItem _Item_t1560808045 * ___m_NullKeyItem_1; // System.Collections.ArrayList System.Collections.Specialized.NameObjectCollectionBase::m_ItemsArray ArrayList_t4277734320 * ___m_ItemsArray_2; // System.Collections.IHashCodeProvider System.Collections.Specialized.NameObjectCollectionBase::m_hashprovider RuntimeObject* ___m_hashprovider_3; // System.Collections.IComparer System.Collections.Specialized.NameObjectCollectionBase::m_comparer RuntimeObject* ___m_comparer_4; // System.Int32 System.Collections.Specialized.NameObjectCollectionBase::m_defCapacity int32_t ___m_defCapacity_5; // System.Boolean System.Collections.Specialized.NameObjectCollectionBase::m_readonly bool ___m_readonly_6; // System.Runtime.Serialization.SerializationInfo System.Collections.Specialized.NameObjectCollectionBase::infoCopy SerializationInfo_t2260044969 * ___infoCopy_7; // System.Collections.Specialized.NameObjectCollectionBase/KeysCollection System.Collections.Specialized.NameObjectCollectionBase::keyscoll KeysCollection_t4017748511 * ___keyscoll_8; // System.Collections.IEqualityComparer System.Collections.Specialized.NameObjectCollectionBase::equality_comparer RuntimeObject* ___equality_comparer_9; public: inline static int32_t get_offset_of_m_ItemsContainer_0() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_t1742866887, ___m_ItemsContainer_0)); } inline Hashtable_t448324601 * get_m_ItemsContainer_0() const { return ___m_ItemsContainer_0; } inline Hashtable_t448324601 ** get_address_of_m_ItemsContainer_0() { return &___m_ItemsContainer_0; } inline void set_m_ItemsContainer_0(Hashtable_t448324601 * value) { ___m_ItemsContainer_0 = value; Il2CppCodeGenWriteBarrier((&___m_ItemsContainer_0), value); } inline static int32_t get_offset_of_m_NullKeyItem_1() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_t1742866887, ___m_NullKeyItem_1)); } inline _Item_t1560808045 * get_m_NullKeyItem_1() const { return ___m_NullKeyItem_1; } inline _Item_t1560808045 ** get_address_of_m_NullKeyItem_1() { return &___m_NullKeyItem_1; } inline void set_m_NullKeyItem_1(_Item_t1560808045 * value) { ___m_NullKeyItem_1 = value; Il2CppCodeGenWriteBarrier((&___m_NullKeyItem_1), value); } inline static int32_t get_offset_of_m_ItemsArray_2() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_t1742866887, ___m_ItemsArray_2)); } inline ArrayList_t4277734320 * get_m_ItemsArray_2() const { return ___m_ItemsArray_2; } inline ArrayList_t4277734320 ** get_address_of_m_ItemsArray_2() { return &___m_ItemsArray_2; } inline void set_m_ItemsArray_2(ArrayList_t4277734320 * value) { ___m_ItemsArray_2 = value; Il2CppCodeGenWriteBarrier((&___m_ItemsArray_2), value); } inline static int32_t get_offset_of_m_hashprovider_3() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_t1742866887, ___m_hashprovider_3)); } inline RuntimeObject* get_m_hashprovider_3() const { return ___m_hashprovider_3; } inline RuntimeObject** get_address_of_m_hashprovider_3() { return &___m_hashprovider_3; } inline void set_m_hashprovider_3(RuntimeObject* value) { ___m_hashprovider_3 = value; Il2CppCodeGenWriteBarrier((&___m_hashprovider_3), value); } inline static int32_t get_offset_of_m_comparer_4() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_t1742866887, ___m_comparer_4)); } inline RuntimeObject* get_m_comparer_4() const { return ___m_comparer_4; } inline RuntimeObject** get_address_of_m_comparer_4() { return &___m_comparer_4; } inline void set_m_comparer_4(RuntimeObject* value) { ___m_comparer_4 = value; Il2CppCodeGenWriteBarrier((&___m_comparer_4), value); } inline static int32_t get_offset_of_m_defCapacity_5() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_t1742866887, ___m_defCapacity_5)); } inline int32_t get_m_defCapacity_5() const { return ___m_defCapacity_5; } inline int32_t* get_address_of_m_defCapacity_5() { return &___m_defCapacity_5; } inline void set_m_defCapacity_5(int32_t value) { ___m_defCapacity_5 = value; } inline static int32_t get_offset_of_m_readonly_6() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_t1742866887, ___m_readonly_6)); } inline bool get_m_readonly_6() const { return ___m_readonly_6; } inline bool* get_address_of_m_readonly_6() { return &___m_readonly_6; } inline void set_m_readonly_6(bool value) { ___m_readonly_6 = value; } inline static int32_t get_offset_of_infoCopy_7() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_t1742866887, ___infoCopy_7)); } inline SerializationInfo_t2260044969 * get_infoCopy_7() const { return ___infoCopy_7; } inline SerializationInfo_t2260044969 ** get_address_of_infoCopy_7() { return &___infoCopy_7; } inline void set_infoCopy_7(SerializationInfo_t2260044969 * value) { ___infoCopy_7 = value; Il2CppCodeGenWriteBarrier((&___infoCopy_7), value); } inline static int32_t get_offset_of_keyscoll_8() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_t1742866887, ___keyscoll_8)); } inline KeysCollection_t4017748511 * get_keyscoll_8() const { return ___keyscoll_8; } inline KeysCollection_t4017748511 ** get_address_of_keyscoll_8() { return &___keyscoll_8; } inline void set_keyscoll_8(KeysCollection_t4017748511 * value) { ___keyscoll_8 = value; Il2CppCodeGenWriteBarrier((&___keyscoll_8), value); } inline static int32_t get_offset_of_equality_comparer_9() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_t1742866887, ___equality_comparer_9)); } inline RuntimeObject* get_equality_comparer_9() const { return ___equality_comparer_9; } inline RuntimeObject** get_address_of_equality_comparer_9() { return &___equality_comparer_9; } inline void set_equality_comparer_9(RuntimeObject* value) { ___equality_comparer_9 = value; Il2CppCodeGenWriteBarrier((&___equality_comparer_9), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NAMEOBJECTCOLLECTIONBASE_T1742866887_H #ifndef MEMBERDESCRIPTOR_T1331681536_H #define MEMBERDESCRIPTOR_T1331681536_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.MemberDescriptor struct MemberDescriptor_t1331681536 : public RuntimeObject { public: // System.String System.ComponentModel.MemberDescriptor::name String_t* ___name_0; // System.Attribute[] System.ComponentModel.MemberDescriptor::attrs AttributeU5BU5D_t187261448* ___attrs_1; // System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::attrCollection AttributeCollection_t3634739288 * ___attrCollection_2; public: inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(MemberDescriptor_t1331681536, ___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((&___name_0), value); } inline static int32_t get_offset_of_attrs_1() { return static_cast<int32_t>(offsetof(MemberDescriptor_t1331681536, ___attrs_1)); } inline AttributeU5BU5D_t187261448* get_attrs_1() const { return ___attrs_1; } inline AttributeU5BU5D_t187261448** get_address_of_attrs_1() { return &___attrs_1; } inline void set_attrs_1(AttributeU5BU5D_t187261448* value) { ___attrs_1 = value; Il2CppCodeGenWriteBarrier((&___attrs_1), value); } inline static int32_t get_offset_of_attrCollection_2() { return static_cast<int32_t>(offsetof(MemberDescriptor_t1331681536, ___attrCollection_2)); } inline AttributeCollection_t3634739288 * get_attrCollection_2() const { return ___attrCollection_2; } inline AttributeCollection_t3634739288 ** get_address_of_attrCollection_2() { return &___attrCollection_2; } inline void set_attrCollection_2(AttributeCollection_t3634739288 * value) { ___attrCollection_2 = value; Il2CppCodeGenWriteBarrier((&___attrCollection_2), value); } }; struct MemberDescriptor_t1331681536_StaticFields { public: // System.Collections.IComparer System.ComponentModel.MemberDescriptor::default_comparer RuntimeObject* ___default_comparer_3; public: inline static int32_t get_offset_of_default_comparer_3() { return static_cast<int32_t>(offsetof(MemberDescriptor_t1331681536_StaticFields, ___default_comparer_3)); } inline RuntimeObject* get_default_comparer_3() const { return ___default_comparer_3; } inline RuntimeObject** get_address_of_default_comparer_3() { return &___default_comparer_3; } inline void set_default_comparer_3(RuntimeObject* value) { ___default_comparer_3 = value; Il2CppCodeGenWriteBarrier((&___default_comparer_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MEMBERDESCRIPTOR_T1331681536_H #ifndef CASEINSENSITIVECOMPARER_T2588724170_H #define CASEINSENSITIVECOMPARER_T2588724170_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.CaseInsensitiveComparer struct CaseInsensitiveComparer_t2588724170 : public RuntimeObject { public: // System.Globalization.CultureInfo System.Collections.CaseInsensitiveComparer::culture CultureInfo_t270095993 * ___culture_2; public: inline static int32_t get_offset_of_culture_2() { return static_cast<int32_t>(offsetof(CaseInsensitiveComparer_t2588724170, ___culture_2)); } inline CultureInfo_t270095993 * get_culture_2() const { return ___culture_2; } inline CultureInfo_t270095993 ** get_address_of_culture_2() { return &___culture_2; } inline void set_culture_2(CultureInfo_t270095993 * value) { ___culture_2 = value; Il2CppCodeGenWriteBarrier((&___culture_2), value); } }; struct CaseInsensitiveComparer_t2588724170_StaticFields { public: // System.Collections.CaseInsensitiveComparer System.Collections.CaseInsensitiveComparer::defaultComparer CaseInsensitiveComparer_t2588724170 * ___defaultComparer_0; // System.Collections.CaseInsensitiveComparer System.Collections.CaseInsensitiveComparer::defaultInvariantComparer CaseInsensitiveComparer_t2588724170 * ___defaultInvariantComparer_1; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(CaseInsensitiveComparer_t2588724170_StaticFields, ___defaultComparer_0)); } inline CaseInsensitiveComparer_t2588724170 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline CaseInsensitiveComparer_t2588724170 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(CaseInsensitiveComparer_t2588724170 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } inline static int32_t get_offset_of_defaultInvariantComparer_1() { return static_cast<int32_t>(offsetof(CaseInsensitiveComparer_t2588724170_StaticFields, ___defaultInvariantComparer_1)); } inline CaseInsensitiveComparer_t2588724170 * get_defaultInvariantComparer_1() const { return ___defaultInvariantComparer_1; } inline CaseInsensitiveComparer_t2588724170 ** get_address_of_defaultInvariantComparer_1() { return &___defaultInvariantComparer_1; } inline void set_defaultInvariantComparer_1(CaseInsensitiveComparer_t2588724170 * value) { ___defaultInvariantComparer_1 = value; Il2CppCodeGenWriteBarrier((&___defaultInvariantComparer_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CASEINSENSITIVECOMPARER_T2588724170_H #ifndef WRAPPEDTYPEDESCRIPTIONPROVIDER_T340192907_H #define WRAPPEDTYPEDESCRIPTIONPROVIDER_T340192907_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.TypeDescriptor/WrappedTypeDescriptionProvider struct WrappedTypeDescriptionProvider_t340192907 : public TypeDescriptionProvider_t4220413402 { public: // System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptor/WrappedTypeDescriptionProvider::<Wrapped>k__BackingField TypeDescriptionProvider_t4220413402 * ___U3CWrappedU3Ek__BackingField_2; public: inline static int32_t get_offset_of_U3CWrappedU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(WrappedTypeDescriptionProvider_t340192907, ___U3CWrappedU3Ek__BackingField_2)); } inline TypeDescriptionProvider_t4220413402 * get_U3CWrappedU3Ek__BackingField_2() const { return ___U3CWrappedU3Ek__BackingField_2; } inline TypeDescriptionProvider_t4220413402 ** get_address_of_U3CWrappedU3Ek__BackingField_2() { return &___U3CWrappedU3Ek__BackingField_2; } inline void set_U3CWrappedU3Ek__BackingField_2(TypeDescriptionProvider_t4220413402 * value) { ___U3CWrappedU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((&___U3CWrappedU3Ek__BackingField_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WRAPPEDTYPEDESCRIPTIONPROVIDER_T340192907_H #ifndef DEFAULTTYPEDESCRIPTIONPROVIDER_T2206660091_H #define DEFAULTTYPEDESCRIPTIONPROVIDER_T2206660091_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.TypeDescriptor/DefaultTypeDescriptionProvider struct DefaultTypeDescriptionProvider_t2206660091 : public TypeDescriptionProvider_t4220413402 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTTYPEDESCRIPTIONPROVIDER_T2206660091_H #ifndef BYTE_T2425511462_H #define BYTE_T2425511462_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Byte struct Byte_t2425511462 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_2; public: inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Byte_t2425511462, ___m_value_2)); } inline uint8_t get_m_value_2() const { return ___m_value_2; } inline uint8_t* get_address_of_m_value_2() { return &___m_value_2; } inline void set_m_value_2(uint8_t value) { ___m_value_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BYTE_T2425511462_H #ifndef GCHANDLE_T2464177589_H #define GCHANDLE_T2464177589_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.InteropServices.GCHandle struct GCHandle_t2464177589 { public: // System.Int32 System.Runtime.InteropServices.GCHandle::handle int32_t ___handle_0; public: inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(GCHandle_t2464177589, ___handle_0)); } inline int32_t get_handle_0() const { return ___handle_0; } inline int32_t* get_address_of_handle_0() { return &___handle_0; } inline void set_handle_0(int32_t value) { ___handle_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // GCHANDLE_T2464177589_H #ifndef DICTIONARYENTRY_T1848963796_H #define DICTIONARYENTRY_T1848963796_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.DictionaryEntry struct DictionaryEntry_t1848963796 { public: // System.Object System.Collections.DictionaryEntry::_key RuntimeObject * ____key_0; // System.Object System.Collections.DictionaryEntry::_value RuntimeObject * ____value_1; public: inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_t1848963796, ____key_0)); } inline RuntimeObject * get__key_0() const { return ____key_0; } inline RuntimeObject ** get_address_of__key_0() { return &____key_0; } inline void set__key_0(RuntimeObject * value) { ____key_0 = value; Il2CppCodeGenWriteBarrier((&____key_0), value); } inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_t1848963796, ____value_1)); } inline RuntimeObject * get__value_1() const { return ____value_1; } inline RuntimeObject ** get_address_of__value_1() { return &____value_1; } inline void set__value_1(RuntimeObject * value) { ____value_1 = value; Il2CppCodeGenWriteBarrier((&____value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_t1848963796_marshaled_pinvoke { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // Native definition for COM marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_t1848963796_marshaled_com { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; #endif // DICTIONARYENTRY_T1848963796_H #ifndef COMPONENTINFO_T3532183224_H #define COMPONENTINFO_T3532183224_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.ComponentInfo struct ComponentInfo_t3532183224 : public Info_t623560747 { public: // System.ComponentModel.IComponent System.ComponentModel.ComponentInfo::_component RuntimeObject* ____component_6; // System.ComponentModel.EventDescriptorCollection System.ComponentModel.ComponentInfo::_events EventDescriptorCollection_t3861329784 * ____events_7; // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ComponentInfo::_properties PropertyDescriptorCollection_t2982717747 * ____properties_8; public: inline static int32_t get_offset_of__component_6() { return static_cast<int32_t>(offsetof(ComponentInfo_t3532183224, ____component_6)); } inline RuntimeObject* get__component_6() const { return ____component_6; } inline RuntimeObject** get_address_of__component_6() { return &____component_6; } inline void set__component_6(RuntimeObject* value) { ____component_6 = value; Il2CppCodeGenWriteBarrier((&____component_6), value); } inline static int32_t get_offset_of__events_7() { return static_cast<int32_t>(offsetof(ComponentInfo_t3532183224, ____events_7)); } inline EventDescriptorCollection_t3861329784 * get__events_7() const { return ____events_7; } inline EventDescriptorCollection_t3861329784 ** get_address_of__events_7() { return &____events_7; } inline void set__events_7(EventDescriptorCollection_t3861329784 * value) { ____events_7 = value; Il2CppCodeGenWriteBarrier((&____events_7), value); } inline static int32_t get_offset_of__properties_8() { return static_cast<int32_t>(offsetof(ComponentInfo_t3532183224, ____properties_8)); } inline PropertyDescriptorCollection_t2982717747 * get__properties_8() const { return ____properties_8; } inline PropertyDescriptorCollection_t2982717747 ** get_address_of__properties_8() { return &____properties_8; } inline void set__properties_8(PropertyDescriptorCollection_t2982717747 * value) { ____properties_8 = value; Il2CppCodeGenWriteBarrier((&____properties_8), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPONENTINFO_T3532183224_H #ifndef UINTPTR_T_H #define UINTPTR_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // 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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINTPTR_T_H #ifndef TYPEINFO_T2535999846_H #define TYPEINFO_T2535999846_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.TypeInfo struct TypeInfo_t2535999846 : public Info_t623560747 { public: // System.ComponentModel.EventDescriptorCollection System.ComponentModel.TypeInfo::_events EventDescriptorCollection_t3861329784 * ____events_6; // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeInfo::_properties PropertyDescriptorCollection_t2982717747 * ____properties_7; public: inline static int32_t get_offset_of__events_6() { return static_cast<int32_t>(offsetof(TypeInfo_t2535999846, ____events_6)); } inline EventDescriptorCollection_t3861329784 * get__events_6() const { return ____events_6; } inline EventDescriptorCollection_t3861329784 ** get_address_of__events_6() { return &____events_6; } inline void set__events_6(EventDescriptorCollection_t3861329784 * value) { ____events_6 = value; Il2CppCodeGenWriteBarrier((&____events_6), value); } inline static int32_t get_offset_of__properties_7() { return static_cast<int32_t>(offsetof(TypeInfo_t2535999846, ____properties_7)); } inline PropertyDescriptorCollection_t2982717747 * get__properties_7() const { return ____properties_7; } inline PropertyDescriptorCollection_t2982717747 ** get_address_of__properties_7() { return &____properties_7; } inline void set__properties_7(PropertyDescriptorCollection_t2982717747 * value) { ____properties_7 = value; Il2CppCodeGenWriteBarrier((&____properties_7), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPEINFO_T2535999846_H #ifndef U24ARRAYTYPEU2412_T3783942480_H #define U24ARRAYTYPEU2412_T3783942480_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/$ArrayType$12 struct U24ArrayTypeU2412_t3783942480 { public: union { struct { union { }; }; uint8_t U24ArrayTypeU2412_t3783942480__padding[12]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // U24ARRAYTYPEU2412_T3783942480_H #ifndef IPENDPOINT_T1606333388_H #define IPENDPOINT_T1606333388_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.IPEndPoint struct IPEndPoint_t1606333388 : public EndPoint_t268181662 { public: // System.Net.IPAddress System.Net.IPEndPoint::address IPAddress_t2830710878 * ___address_0; // System.Int32 System.Net.IPEndPoint::port int32_t ___port_1; public: inline static int32_t get_offset_of_address_0() { return static_cast<int32_t>(offsetof(IPEndPoint_t1606333388, ___address_0)); } inline IPAddress_t2830710878 * get_address_0() const { return ___address_0; } inline IPAddress_t2830710878 ** get_address_of_address_0() { return &___address_0; } inline void set_address_0(IPAddress_t2830710878 * value) { ___address_0 = value; Il2CppCodeGenWriteBarrier((&___address_0), value); } inline static int32_t get_offset_of_port_1() { return static_cast<int32_t>(offsetof(IPEndPoint_t1606333388, ___port_1)); } inline int32_t get_port_1() const { return ___port_1; } inline int32_t* get_address_of_port_1() { return &___port_1; } inline void set_port_1(int32_t value) { ___port_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // IPENDPOINT_T1606333388_H #ifndef MONOTODOATTRIBUTE_T952110849_H #define MONOTODOATTRIBUTE_T952110849_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.MonoTODOAttribute struct MonoTODOAttribute_t952110849 : public Attribute_t2739832645 { public: // System.String System.MonoTODOAttribute::comment String_t* ___comment_0; public: inline static int32_t get_offset_of_comment_0() { return static_cast<int32_t>(offsetof(MonoTODOAttribute_t952110849, ___comment_0)); } inline String_t* get_comment_0() const { return ___comment_0; } inline String_t** get_address_of_comment_0() { return &___comment_0; } inline void set_comment_0(String_t* value) { ___comment_0 = value; Il2CppCodeGenWriteBarrier((&___comment_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MONOTODOATTRIBUTE_T952110849_H #ifndef DEFAULTTYPEDESCRIPTOR_T772231057_H #define DEFAULTTYPEDESCRIPTOR_T772231057_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.TypeDescriptor/DefaultTypeDescriptor struct DefaultTypeDescriptor_t772231057 : public CustomTypeDescriptor_t1811165357 { public: // System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptor/DefaultTypeDescriptor::owner TypeDescriptionProvider_t4220413402 * ___owner_1; // System.Type System.ComponentModel.TypeDescriptor/DefaultTypeDescriptor::objectType Type_t * ___objectType_2; // System.Object System.ComponentModel.TypeDescriptor/DefaultTypeDescriptor::instance RuntimeObject * ___instance_3; public: inline static int32_t get_offset_of_owner_1() { return static_cast<int32_t>(offsetof(DefaultTypeDescriptor_t772231057, ___owner_1)); } inline TypeDescriptionProvider_t4220413402 * get_owner_1() const { return ___owner_1; } inline TypeDescriptionProvider_t4220413402 ** get_address_of_owner_1() { return &___owner_1; } inline void set_owner_1(TypeDescriptionProvider_t4220413402 * value) { ___owner_1 = value; Il2CppCodeGenWriteBarrier((&___owner_1), value); } inline static int32_t get_offset_of_objectType_2() { return static_cast<int32_t>(offsetof(DefaultTypeDescriptor_t772231057, ___objectType_2)); } inline Type_t * get_objectType_2() const { return ___objectType_2; } inline Type_t ** get_address_of_objectType_2() { return &___objectType_2; } inline void set_objectType_2(Type_t * value) { ___objectType_2 = value; Il2CppCodeGenWriteBarrier((&___objectType_2), value); } inline static int32_t get_offset_of_instance_3() { return static_cast<int32_t>(offsetof(DefaultTypeDescriptor_t772231057, ___instance_3)); } inline RuntimeObject * get_instance_3() const { return ___instance_3; } inline RuntimeObject ** get_address_of_instance_3() { return &___instance_3; } inline void set_instance_3(RuntimeObject * value) { ___instance_3 = value; Il2CppCodeGenWriteBarrier((&___instance_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTTYPEDESCRIPTOR_T772231057_H #ifndef TYPELISTCONVERTER_T2803081238_H #define TYPELISTCONVERTER_T2803081238_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.TypeListConverter struct TypeListConverter_t2803081238 : public TypeConverter_t3595149642 { public: // System.Type[] System.ComponentModel.TypeListConverter::types TypeU5BU5D_t89919618* ___types_0; public: inline static int32_t get_offset_of_types_0() { return static_cast<int32_t>(offsetof(TypeListConverter_t2803081238, ___types_0)); } inline TypeU5BU5D_t89919618* get_types_0() const { return ___types_0; } inline TypeU5BU5D_t89919618** get_address_of_types_0() { return &___types_0; } inline void set_types_0(TypeU5BU5D_t89919618* value) { ___types_0 = value; Il2CppCodeGenWriteBarrier((&___types_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPELISTCONVERTER_T2803081238_H #ifndef UINT16_T3519387236_H #define UINT16_T3519387236_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UInt16 struct UInt16_t3519387236 { public: // System.UInt16 System.UInt16::m_value uint16_t ___m_value_2; public: inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(UInt16_t3519387236, ___m_value_2)); } inline uint16_t get_m_value_2() const { return ___m_value_2; } inline uint16_t* get_address_of_m_value_2() { return &___m_value_2; } inline void set_m_value_2(uint16_t value) { ___m_value_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINT16_T3519387236_H #ifndef UINT64_T2584094171_H #define UINT64_T2584094171_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UInt64 struct UInt64_t2584094171 { 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_t2584094171, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINT64_T2584094171_H #ifndef SYSTEMEXCEPTION_T2246602023_H #define SYSTEMEXCEPTION_T2246602023_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.SystemException struct SystemException_t2246602023 : public Exception_t2428370182 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SYSTEMEXCEPTION_T2246602023_H #ifndef CHAR_T1260920102_H #define CHAR_T1260920102_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Char struct Char_t1260920102 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_2; public: inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Char_t1260920102, ___m_value_2)); } inline Il2CppChar get_m_value_2() const { return ___m_value_2; } inline Il2CppChar* get_address_of_m_value_2() { return &___m_value_2; } inline void set_m_value_2(Il2CppChar value) { ___m_value_2 = value; } }; struct Char_t1260920102_StaticFields { public: // System.Byte* System.Char::category_data uint8_t* ___category_data_3; // System.Byte* System.Char::numeric_data uint8_t* ___numeric_data_4; // System.Double* System.Char::numeric_data_values double* ___numeric_data_values_5; // System.UInt16* System.Char::to_lower_data_low uint16_t* ___to_lower_data_low_6; // System.UInt16* System.Char::to_lower_data_high uint16_t* ___to_lower_data_high_7; // System.UInt16* System.Char::to_upper_data_low uint16_t* ___to_upper_data_low_8; // System.UInt16* System.Char::to_upper_data_high uint16_t* ___to_upper_data_high_9; public: inline static int32_t get_offset_of_category_data_3() { return static_cast<int32_t>(offsetof(Char_t1260920102_StaticFields, ___category_data_3)); } inline uint8_t* get_category_data_3() const { return ___category_data_3; } inline uint8_t** get_address_of_category_data_3() { return &___category_data_3; } inline void set_category_data_3(uint8_t* value) { ___category_data_3 = value; } inline static int32_t get_offset_of_numeric_data_4() { return static_cast<int32_t>(offsetof(Char_t1260920102_StaticFields, ___numeric_data_4)); } inline uint8_t* get_numeric_data_4() const { return ___numeric_data_4; } inline uint8_t** get_address_of_numeric_data_4() { return &___numeric_data_4; } inline void set_numeric_data_4(uint8_t* value) { ___numeric_data_4 = value; } inline static int32_t get_offset_of_numeric_data_values_5() { return static_cast<int32_t>(offsetof(Char_t1260920102_StaticFields, ___numeric_data_values_5)); } inline double* get_numeric_data_values_5() const { return ___numeric_data_values_5; } inline double** get_address_of_numeric_data_values_5() { return &___numeric_data_values_5; } inline void set_numeric_data_values_5(double* value) { ___numeric_data_values_5 = value; } inline static int32_t get_offset_of_to_lower_data_low_6() { return static_cast<int32_t>(offsetof(Char_t1260920102_StaticFields, ___to_lower_data_low_6)); } inline uint16_t* get_to_lower_data_low_6() const { return ___to_lower_data_low_6; } inline uint16_t** get_address_of_to_lower_data_low_6() { return &___to_lower_data_low_6; } inline void set_to_lower_data_low_6(uint16_t* value) { ___to_lower_data_low_6 = value; } inline static int32_t get_offset_of_to_lower_data_high_7() { return static_cast<int32_t>(offsetof(Char_t1260920102_StaticFields, ___to_lower_data_high_7)); } inline uint16_t* get_to_lower_data_high_7() const { return ___to_lower_data_high_7; } inline uint16_t** get_address_of_to_lower_data_high_7() { return &___to_lower_data_high_7; } inline void set_to_lower_data_high_7(uint16_t* value) { ___to_lower_data_high_7 = value; } inline static int32_t get_offset_of_to_upper_data_low_8() { return static_cast<int32_t>(offsetof(Char_t1260920102_StaticFields, ___to_upper_data_low_8)); } inline uint16_t* get_to_upper_data_low_8() const { return ___to_upper_data_low_8; } inline uint16_t** get_address_of_to_upper_data_low_8() { return &___to_upper_data_low_8; } inline void set_to_upper_data_low_8(uint16_t* value) { ___to_upper_data_low_8 = value; } inline static int32_t get_offset_of_to_upper_data_high_9() { return static_cast<int32_t>(offsetof(Char_t1260920102_StaticFields, ___to_upper_data_high_9)); } inline uint16_t* get_to_upper_data_high_9() const { return ___to_upper_data_high_9; } inline uint16_t** get_address_of_to_upper_data_high_9() { return &___to_upper_data_high_9; } inline void set_to_upper_data_high_9(uint16_t* value) { ___to_upper_data_high_9 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CHAR_T1260920102_H #ifndef DEFAULTURIPARSER_T3234589343_H #define DEFAULTURIPARSER_T3234589343_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DefaultUriParser struct DefaultUriParser_t3234589343 : public UriParser_t812050460 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTURIPARSER_T3234589343_H #ifndef NAMEVALUECOLLECTION_T1416237248_H #define NAMEVALUECOLLECTION_T1416237248_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Specialized.NameValueCollection struct NameValueCollection_t1416237248 : public NameObjectCollectionBase_t1742866887 { public: // System.String[] System.Collections.Specialized.NameValueCollection::cachedAllKeys StringU5BU5D_t1187188029* ___cachedAllKeys_10; // System.String[] System.Collections.Specialized.NameValueCollection::cachedAll StringU5BU5D_t1187188029* ___cachedAll_11; public: inline static int32_t get_offset_of_cachedAllKeys_10() { return static_cast<int32_t>(offsetof(NameValueCollection_t1416237248, ___cachedAllKeys_10)); } inline StringU5BU5D_t1187188029* get_cachedAllKeys_10() const { return ___cachedAllKeys_10; } inline StringU5BU5D_t1187188029** get_address_of_cachedAllKeys_10() { return &___cachedAllKeys_10; } inline void set_cachedAllKeys_10(StringU5BU5D_t1187188029* value) { ___cachedAllKeys_10 = value; Il2CppCodeGenWriteBarrier((&___cachedAllKeys_10), value); } inline static int32_t get_offset_of_cachedAll_11() { return static_cast<int32_t>(offsetof(NameValueCollection_t1416237248, ___cachedAll_11)); } inline StringU5BU5D_t1187188029* get_cachedAll_11() const { return ___cachedAll_11; } inline StringU5BU5D_t1187188029** get_address_of_cachedAll_11() { return &___cachedAll_11; } inline void set_cachedAll_11(StringU5BU5D_t1187188029* value) { ___cachedAll_11 = value; Il2CppCodeGenWriteBarrier((&___cachedAll_11), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NAMEVALUECOLLECTION_T1416237248_H #ifndef U24ARRAYTYPEU24128_T2881262768_H #define U24ARRAYTYPEU24128_T2881262768_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/$ArrayType$128 struct U24ArrayTypeU24128_t2881262768 { public: union { struct { union { }; }; uint8_t U24ArrayTypeU24128_t2881262768__padding[128]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // U24ARRAYTYPEU24128_T2881262768_H #ifndef INT16_T2500022264_H #define INT16_T2500022264_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int16 struct Int16_t2500022264 { public: // System.Int16 System.Int16::m_value int16_t ___m_value_2; public: inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Int16_t2500022264, ___m_value_2)); } inline int16_t get_m_value_2() const { return ___m_value_2; } inline int16_t* get_address_of_m_value_2() { return &___m_value_2; } inline void set_m_value_2(int16_t value) { ___m_value_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT16_T2500022264_H #ifndef DOUBLE_T3048689888_H #define DOUBLE_T3048689888_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Double struct Double_t3048689888 { public: // System.Double System.Double::m_value double ___m_value_13; public: inline static int32_t get_offset_of_m_value_13() { return static_cast<int32_t>(offsetof(Double_t3048689888, ___m_value_13)); } inline double get_m_value_13() const { return ___m_value_13; } inline double* get_address_of_m_value_13() { return &___m_value_13; } inline void set_m_value_13(double value) { ___m_value_13 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DOUBLE_T3048689888_H #ifndef GENERICURIPARSER_T1394540592_H #define GENERICURIPARSER_T1394540592_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.GenericUriParser struct GenericUriParser_t1394540592 : public UriParser_t812050460 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // GENERICURIPARSER_T1394540592_H #ifndef X509CERTIFICATECOLLECTION_T3808695127_H #define X509CERTIFICATECOLLECTION_T3808695127_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Cryptography.X509Certificates.X509CertificateCollection struct X509CertificateCollection_t3808695127 : public CollectionBase_t1887873969 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // X509CERTIFICATECOLLECTION_T3808695127_H #ifndef ATTRIBUTETYPEDESCRIPTOR_T1580723392_H #define ATTRIBUTETYPEDESCRIPTOR_T1580723392_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.TypeDescriptor/AttributeProvider/AttributeTypeDescriptor struct AttributeTypeDescriptor_t1580723392 : public CustomTypeDescriptor_t1811165357 { public: // System.Attribute[] System.ComponentModel.TypeDescriptor/AttributeProvider/AttributeTypeDescriptor::attributes AttributeU5BU5D_t187261448* ___attributes_1; public: inline static int32_t get_offset_of_attributes_1() { return static_cast<int32_t>(offsetof(AttributeTypeDescriptor_t1580723392, ___attributes_1)); } inline AttributeU5BU5D_t187261448* get_attributes_1() const { return ___attributes_1; } inline AttributeU5BU5D_t187261448** get_address_of_attributes_1() { return &___attributes_1; } inline void set_attributes_1(AttributeU5BU5D_t187261448* value) { ___attributes_1 = value; Il2CppCodeGenWriteBarrier((&___attributes_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ATTRIBUTETYPEDESCRIPTOR_T1580723392_H #ifndef X509EXTENSION_T1134947644_H #define X509EXTENSION_T1134947644_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Cryptography.X509Certificates.X509Extension struct X509Extension_t1134947644 : public AsnEncodedData_t2501174634 { public: // System.Boolean System.Security.Cryptography.X509Certificates.X509Extension::_critical bool ____critical_3; public: inline static int32_t get_offset_of__critical_3() { return static_cast<int32_t>(offsetof(X509Extension_t1134947644, ____critical_3)); } inline bool get__critical_3() const { return ____critical_3; } inline bool* get_address_of__critical_3() { return &____critical_3; } inline void set__critical_3(bool value) { ____critical_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // X509EXTENSION_T1134947644_H #ifndef UINT32_T346688532_H #define UINT32_T346688532_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UInt32 struct UInt32_t346688532 { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_2; public: inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(UInt32_t346688532, ___m_value_2)); } inline uint32_t get_m_value_2() const { return ___m_value_2; } inline uint32_t* get_address_of_m_value_2() { return &___m_value_2; } inline void set_m_value_2(uint32_t value) { ___m_value_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINT32_T346688532_H #ifndef ATTRIBUTEPROVIDER_T4079053818_H #define ATTRIBUTEPROVIDER_T4079053818_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.TypeDescriptor/AttributeProvider struct AttributeProvider_t4079053818 : public TypeDescriptionProvider_t4220413402 { public: // System.Attribute[] System.ComponentModel.TypeDescriptor/AttributeProvider::attributes AttributeU5BU5D_t187261448* ___attributes_2; public: inline static int32_t get_offset_of_attributes_2() { return static_cast<int32_t>(offsetof(AttributeProvider_t4079053818, ___attributes_2)); } inline AttributeU5BU5D_t187261448* get_attributes_2() const { return ___attributes_2; } inline AttributeU5BU5D_t187261448** get_address_of_attributes_2() { return &___attributes_2; } inline void set_attributes_2(AttributeU5BU5D_t187261448* value) { ___attributes_2 = value; Il2CppCodeGenWriteBarrier((&___attributes_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ATTRIBUTEPROVIDER_T4079053818_H #ifndef REFRESHEVENTARGS_T632686523_H #define REFRESHEVENTARGS_T632686523_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.RefreshEventArgs struct RefreshEventArgs_t632686523 : public EventArgs_t3326158294 { public: // System.Object System.ComponentModel.RefreshEventArgs::component RuntimeObject * ___component_1; // System.Type System.ComponentModel.RefreshEventArgs::type Type_t * ___type_2; public: inline static int32_t get_offset_of_component_1() { return static_cast<int32_t>(offsetof(RefreshEventArgs_t632686523, ___component_1)); } inline RuntimeObject * get_component_1() const { return ___component_1; } inline RuntimeObject ** get_address_of_component_1() { return &___component_1; } inline void set_component_1(RuntimeObject * value) { ___component_1 = value; Il2CppCodeGenWriteBarrier((&___component_1), value); } inline static int32_t get_offset_of_type_2() { return static_cast<int32_t>(offsetof(RefreshEventArgs_t632686523, ___type_2)); } inline Type_t * get_type_2() const { return ___type_2; } inline Type_t ** get_address_of_type_2() { return &___type_2; } inline void set_type_2(Type_t * value) { ___type_2 = value; Il2CppCodeGenWriteBarrier((&___type_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // REFRESHEVENTARGS_T632686523_H #ifndef DEFAULTVALUEATTRIBUTE_T1210082725_H #define DEFAULTVALUEATTRIBUTE_T1210082725_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.DefaultValueAttribute struct DefaultValueAttribute_t1210082725 : public Attribute_t2739832645 { public: // System.Object System.ComponentModel.DefaultValueAttribute::DefaultValue RuntimeObject * ___DefaultValue_0; public: inline static int32_t get_offset_of_DefaultValue_0() { return static_cast<int32_t>(offsetof(DefaultValueAttribute_t1210082725, ___DefaultValue_0)); } inline RuntimeObject * get_DefaultValue_0() const { return ___DefaultValue_0; } inline RuntimeObject ** get_address_of_DefaultValue_0() { return &___DefaultValue_0; } inline void set_DefaultValue_0(RuntimeObject * value) { ___DefaultValue_0 = value; Il2CppCodeGenWriteBarrier((&___DefaultValue_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTVALUEATTRIBUTE_T1210082725_H #ifndef PARAMETERMODIFIER_T3738514641_H #define PARAMETERMODIFIER_T3738514641_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.ParameterModifier struct ParameterModifier_t3738514641 { public: // System.Boolean[] System.Reflection.ParameterModifier::_byref BooleanU5BU5D_t184022451* ____byref_0; public: inline static int32_t get_offset_of__byref_0() { return static_cast<int32_t>(offsetof(ParameterModifier_t3738514641, ____byref_0)); } inline BooleanU5BU5D_t184022451* get__byref_0() const { return ____byref_0; } inline BooleanU5BU5D_t184022451** get_address_of__byref_0() { return &____byref_0; } inline void set__byref_0(BooleanU5BU5D_t184022451* value) { ____byref_0 = value; Il2CppCodeGenWriteBarrier((&____byref_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier struct ParameterModifier_t3738514641_marshaled_pinvoke { int32_t* ____byref_0; }; // Native definition for COM marshalling of System.Reflection.ParameterModifier struct ParameterModifier_t3738514641_marshaled_com { int32_t* ____byref_0; }; #endif // PARAMETERMODIFIER_T3738514641_H #ifndef PROPERTYINFO_T_H #define PROPERTYINFO_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.PropertyInfo struct PropertyInfo_t : public MemberInfo_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PROPERTYINFO_T_H #ifndef METHODBASE_T2815042627_H #define METHODBASE_T2815042627_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.MethodBase struct MethodBase_t2815042627 : public MemberInfo_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // METHODBASE_T2815042627_H #ifndef EVENTDESCRIPTOR_T3701426622_H #define EVENTDESCRIPTOR_T3701426622_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.EventDescriptor struct EventDescriptor_t3701426622 : public MemberDescriptor_t1331681536 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EVENTDESCRIPTOR_T3701426622_H #ifndef EVENTINFO_T_H #define EVENTINFO_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.EventInfo struct EventInfo_t : public MemberInfo_t { public: // System.Reflection.EventInfo/AddEventAdapter System.Reflection.EventInfo::cached_add_event AddEventAdapter_t2307394402 * ___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_t2307394402 * get_cached_add_event_0() const { return ___cached_add_event_0; } inline AddEventAdapter_t2307394402 ** get_address_of_cached_add_event_0() { return &___cached_add_event_0; } inline void set_cached_add_event_0(AddEventAdapter_t2307394402 * value) { ___cached_add_event_0 = value; Il2CppCodeGenWriteBarrier((&___cached_add_event_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EVENTINFO_T_H #ifndef COMPONENTCOLLECTION_T3558559141_H #define COMPONENTCOLLECTION_T3558559141_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.ComponentCollection struct ComponentCollection_t3558559141 : public ReadOnlyCollectionBase_t2204228304 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPONENTCOLLECTION_T3558559141_H #ifndef REFERENCECONVERTER_T3578457296_H #define REFERENCECONVERTER_T3578457296_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.ReferenceConverter struct ReferenceConverter_t3578457296 : public TypeConverter_t3595149642 { public: // System.Type System.ComponentModel.ReferenceConverter::reference_type Type_t * ___reference_type_0; public: inline static int32_t get_offset_of_reference_type_0() { return static_cast<int32_t>(offsetof(ReferenceConverter_t3578457296, ___reference_type_0)); } inline Type_t * get_reference_type_0() const { return ___reference_type_0; } inline Type_t ** get_address_of_reference_type_0() { return &___reference_type_0; } inline void set_reference_type_0(Type_t * value) { ___reference_type_0 = value; Il2CppCodeGenWriteBarrier((&___reference_type_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // REFERENCECONVERTER_T3578457296_H #ifndef RECOMMENDEDASCONFIGURABLEATTRIBUTE_T2486032475_H #define RECOMMENDEDASCONFIGURABLEATTRIBUTE_T2486032475_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.RecommendedAsConfigurableAttribute struct RecommendedAsConfigurableAttribute_t2486032475 : public Attribute_t2739832645 { public: // System.Boolean System.ComponentModel.RecommendedAsConfigurableAttribute::recommendedAsConfigurable bool ___recommendedAsConfigurable_0; public: inline static int32_t get_offset_of_recommendedAsConfigurable_0() { return static_cast<int32_t>(offsetof(RecommendedAsConfigurableAttribute_t2486032475, ___recommendedAsConfigurable_0)); } inline bool get_recommendedAsConfigurable_0() const { return ___recommendedAsConfigurable_0; } inline bool* get_address_of_recommendedAsConfigurable_0() { return &___recommendedAsConfigurable_0; } inline void set_recommendedAsConfigurable_0(bool value) { ___recommendedAsConfigurable_0 = value; } }; struct RecommendedAsConfigurableAttribute_t2486032475_StaticFields { public: // System.ComponentModel.RecommendedAsConfigurableAttribute System.ComponentModel.RecommendedAsConfigurableAttribute::Default RecommendedAsConfigurableAttribute_t2486032475 * ___Default_1; // System.ComponentModel.RecommendedAsConfigurableAttribute System.ComponentModel.RecommendedAsConfigurableAttribute::No RecommendedAsConfigurableAttribute_t2486032475 * ___No_2; // System.ComponentModel.RecommendedAsConfigurableAttribute System.ComponentModel.RecommendedAsConfigurableAttribute::Yes RecommendedAsConfigurableAttribute_t2486032475 * ___Yes_3; public: inline static int32_t get_offset_of_Default_1() { return static_cast<int32_t>(offsetof(RecommendedAsConfigurableAttribute_t2486032475_StaticFields, ___Default_1)); } inline RecommendedAsConfigurableAttribute_t2486032475 * get_Default_1() const { return ___Default_1; } inline RecommendedAsConfigurableAttribute_t2486032475 ** get_address_of_Default_1() { return &___Default_1; } inline void set_Default_1(RecommendedAsConfigurableAttribute_t2486032475 * value) { ___Default_1 = value; Il2CppCodeGenWriteBarrier((&___Default_1), value); } inline static int32_t get_offset_of_No_2() { return static_cast<int32_t>(offsetof(RecommendedAsConfigurableAttribute_t2486032475_StaticFields, ___No_2)); } inline RecommendedAsConfigurableAttribute_t2486032475 * get_No_2() const { return ___No_2; } inline RecommendedAsConfigurableAttribute_t2486032475 ** get_address_of_No_2() { return &___No_2; } inline void set_No_2(RecommendedAsConfigurableAttribute_t2486032475 * value) { ___No_2 = value; Il2CppCodeGenWriteBarrier((&___No_2), value); } inline static int32_t get_offset_of_Yes_3() { return static_cast<int32_t>(offsetof(RecommendedAsConfigurableAttribute_t2486032475_StaticFields, ___Yes_3)); } inline RecommendedAsConfigurableAttribute_t2486032475 * get_Yes_3() const { return ___Yes_3; } inline RecommendedAsConfigurableAttribute_t2486032475 ** get_address_of_Yes_3() { return &___Yes_3; } inline void set_Yes_3(RecommendedAsConfigurableAttribute_t2486032475 * value) { ___Yes_3 = value; Il2CppCodeGenWriteBarrier((&___Yes_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RECOMMENDEDASCONFIGURABLEATTRIBUTE_T2486032475_H #ifndef DESIGNERATTRIBUTE_T80198024_H #define DESIGNERATTRIBUTE_T80198024_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.DesignerAttribute struct DesignerAttribute_t80198024 : public Attribute_t2739832645 { public: // System.String System.ComponentModel.DesignerAttribute::name String_t* ___name_0; // System.String System.ComponentModel.DesignerAttribute::basetypename String_t* ___basetypename_1; public: inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(DesignerAttribute_t80198024, ___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((&___name_0), value); } inline static int32_t get_offset_of_basetypename_1() { return static_cast<int32_t>(offsetof(DesignerAttribute_t80198024, ___basetypename_1)); } inline String_t* get_basetypename_1() const { return ___basetypename_1; } inline String_t** get_address_of_basetypename_1() { return &___basetypename_1; } inline void set_basetypename_1(String_t* value) { ___basetypename_1 = value; Il2CppCodeGenWriteBarrier((&___basetypename_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DESIGNERATTRIBUTE_T80198024_H #ifndef EDITORATTRIBUTE_T3439099620_H #define EDITORATTRIBUTE_T3439099620_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.EditorAttribute struct EditorAttribute_t3439099620 : public Attribute_t2739832645 { public: // System.String System.ComponentModel.EditorAttribute::name String_t* ___name_0; // System.String System.ComponentModel.EditorAttribute::basename String_t* ___basename_1; public: inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(EditorAttribute_t3439099620, ___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((&___name_0), value); } inline static int32_t get_offset_of_basename_1() { return static_cast<int32_t>(offsetof(EditorAttribute_t3439099620, ___basename_1)); } inline String_t* get_basename_1() const { return ___basename_1; } inline String_t** get_address_of_basename_1() { return &___basename_1; } inline void set_basename_1(String_t* value) { ___basename_1 = value; Il2CppCodeGenWriteBarrier((&___basename_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EDITORATTRIBUTE_T3439099620_H #ifndef ENUM_T1784364487_H #define ENUM_T1784364487_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Enum struct Enum_t1784364487 : public ValueType_t1308615817 { public: public: }; struct Enum_t1784364487_StaticFields { public: // System.Char[] System.Enum::split_char CharU5BU5D_t1289681795* ___split_char_0; public: inline static int32_t get_offset_of_split_char_0() { return static_cast<int32_t>(offsetof(Enum_t1784364487_StaticFields, ___split_char_0)); } inline CharU5BU5D_t1289681795* get_split_char_0() const { return ___split_char_0; } inline CharU5BU5D_t1289681795** get_address_of_split_char_0() { return &___split_char_0; } inline void set_split_char_0(CharU5BU5D_t1289681795* value) { ___split_char_0 = value; Il2CppCodeGenWriteBarrier((&___split_char_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Enum struct Enum_t1784364487_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t1784364487_marshaled_com { }; #endif // ENUM_T1784364487_H #ifndef LOCALIZABLEATTRIBUTE_T2753722371_H #define LOCALIZABLEATTRIBUTE_T2753722371_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.LocalizableAttribute struct LocalizableAttribute_t2753722371 : public Attribute_t2739832645 { public: // System.Boolean System.ComponentModel.LocalizableAttribute::localizable bool ___localizable_0; public: inline static int32_t get_offset_of_localizable_0() { return static_cast<int32_t>(offsetof(LocalizableAttribute_t2753722371, ___localizable_0)); } inline bool get_localizable_0() const { return ___localizable_0; } inline bool* get_address_of_localizable_0() { return &___localizable_0; } inline void set_localizable_0(bool value) { ___localizable_0 = value; } }; struct LocalizableAttribute_t2753722371_StaticFields { public: // System.ComponentModel.LocalizableAttribute System.ComponentModel.LocalizableAttribute::Default LocalizableAttribute_t2753722371 * ___Default_1; // System.ComponentModel.LocalizableAttribute System.ComponentModel.LocalizableAttribute::No LocalizableAttribute_t2753722371 * ___No_2; // System.ComponentModel.LocalizableAttribute System.ComponentModel.LocalizableAttribute::Yes LocalizableAttribute_t2753722371 * ___Yes_3; public: inline static int32_t get_offset_of_Default_1() { return static_cast<int32_t>(offsetof(LocalizableAttribute_t2753722371_StaticFields, ___Default_1)); } inline LocalizableAttribute_t2753722371 * get_Default_1() const { return ___Default_1; } inline LocalizableAttribute_t2753722371 ** get_address_of_Default_1() { return &___Default_1; } inline void set_Default_1(LocalizableAttribute_t2753722371 * value) { ___Default_1 = value; Il2CppCodeGenWriteBarrier((&___Default_1), value); } inline static int32_t get_offset_of_No_2() { return static_cast<int32_t>(offsetof(LocalizableAttribute_t2753722371_StaticFields, ___No_2)); } inline LocalizableAttribute_t2753722371 * get_No_2() const { return ___No_2; } inline LocalizableAttribute_t2753722371 ** get_address_of_No_2() { return &___No_2; } inline void set_No_2(LocalizableAttribute_t2753722371 * value) { ___No_2 = value; Il2CppCodeGenWriteBarrier((&___No_2), value); } inline static int32_t get_offset_of_Yes_3() { return static_cast<int32_t>(offsetof(LocalizableAttribute_t2753722371_StaticFields, ___Yes_3)); } inline LocalizableAttribute_t2753722371 * get_Yes_3() const { return ___Yes_3; } inline LocalizableAttribute_t2753722371 ** get_address_of_Yes_3() { return &___Yes_3; } inline void set_Yes_3(LocalizableAttribute_t2753722371 * value) { ___Yes_3 = value; Il2CppCodeGenWriteBarrier((&___Yes_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LOCALIZABLEATTRIBUTE_T2753722371_H #ifndef PROPERTYDESCRIPTOR_T2555988069_H #define PROPERTYDESCRIPTOR_T2555988069_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.PropertyDescriptor struct PropertyDescriptor_t2555988069 : public MemberDescriptor_t1331681536 { public: // System.ComponentModel.TypeConverter System.ComponentModel.PropertyDescriptor::converter TypeConverter_t3595149642 * ___converter_4; // System.Collections.Hashtable System.ComponentModel.PropertyDescriptor::notifiers Hashtable_t448324601 * ___notifiers_5; public: inline static int32_t get_offset_of_converter_4() { return static_cast<int32_t>(offsetof(PropertyDescriptor_t2555988069, ___converter_4)); } inline TypeConverter_t3595149642 * get_converter_4() const { return ___converter_4; } inline TypeConverter_t3595149642 ** get_address_of_converter_4() { return &___converter_4; } inline void set_converter_4(TypeConverter_t3595149642 * value) { ___converter_4 = value; Il2CppCodeGenWriteBarrier((&___converter_4), value); } inline static int32_t get_offset_of_notifiers_5() { return static_cast<int32_t>(offsetof(PropertyDescriptor_t2555988069, ___notifiers_5)); } inline Hashtable_t448324601 * get_notifiers_5() const { return ___notifiers_5; } inline Hashtable_t448324601 ** get_address_of_notifiers_5() { return &___notifiers_5; } inline void set_notifiers_5(Hashtable_t448324601 * value) { ___notifiers_5 = value; Il2CppCodeGenWriteBarrier((&___notifiers_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PROPERTYDESCRIPTOR_T2555988069_H #ifndef PROPERTYCHANGEDEVENTARGS_T483343543_H #define PROPERTYCHANGEDEVENTARGS_T483343543_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.PropertyChangedEventArgs struct PropertyChangedEventArgs_t483343543 : public EventArgs_t3326158294 { public: // System.String System.ComponentModel.PropertyChangedEventArgs::propertyName String_t* ___propertyName_1; public: inline static int32_t get_offset_of_propertyName_1() { return static_cast<int32_t>(offsetof(PropertyChangedEventArgs_t483343543, ___propertyName_1)); } inline String_t* get_propertyName_1() const { return ___propertyName_1; } inline String_t** get_address_of_propertyName_1() { return &___propertyName_1; } inline void set_propertyName_1(String_t* value) { ___propertyName_1 = value; Il2CppCodeGenWriteBarrier((&___propertyName_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PROPERTYCHANGEDEVENTARGS_T483343543_H #ifndef INTPTR_T_H #define INTPTR_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // 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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTPTR_T_H #ifndef PROGRESSCHANGEDEVENTARGS_T4258918619_H #define PROGRESSCHANGEDEVENTARGS_T4258918619_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.ProgressChangedEventArgs struct ProgressChangedEventArgs_t4258918619 : public EventArgs_t3326158294 { public: // System.Int32 System.ComponentModel.ProgressChangedEventArgs::progress int32_t ___progress_1; // System.Object System.ComponentModel.ProgressChangedEventArgs::state RuntimeObject * ___state_2; public: inline static int32_t get_offset_of_progress_1() { return static_cast<int32_t>(offsetof(ProgressChangedEventArgs_t4258918619, ___progress_1)); } inline int32_t get_progress_1() const { return ___progress_1; } inline int32_t* get_address_of_progress_1() { return &___progress_1; } inline void set_progress_1(int32_t value) { ___progress_1 = value; } inline static int32_t get_offset_of_state_2() { return static_cast<int32_t>(offsetof(ProgressChangedEventArgs_t4258918619, ___state_2)); } inline RuntimeObject * get_state_2() const { return ___state_2; } inline RuntimeObject ** get_address_of_state_2() { return &___state_2; } inline void set_state_2(RuntimeObject * value) { ___state_2 = value; Il2CppCodeGenWriteBarrier((&___state_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PROGRESSCHANGEDEVENTARGS_T4258918619_H #ifndef PASSWORDPROPERTYTEXTATTRIBUTE_T3646071524_H #define PASSWORDPROPERTYTEXTATTRIBUTE_T3646071524_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.PasswordPropertyTextAttribute struct PasswordPropertyTextAttribute_t3646071524 : public Attribute_t2739832645 { public: // System.Boolean System.ComponentModel.PasswordPropertyTextAttribute::_password bool ____password_3; public: inline static int32_t get_offset_of__password_3() { return static_cast<int32_t>(offsetof(PasswordPropertyTextAttribute_t3646071524, ____password_3)); } inline bool get__password_3() const { return ____password_3; } inline bool* get_address_of__password_3() { return &____password_3; } inline void set__password_3(bool value) { ____password_3 = value; } }; struct PasswordPropertyTextAttribute_t3646071524_StaticFields { public: // System.ComponentModel.PasswordPropertyTextAttribute System.ComponentModel.PasswordPropertyTextAttribute::Default PasswordPropertyTextAttribute_t3646071524 * ___Default_0; // System.ComponentModel.PasswordPropertyTextAttribute System.ComponentModel.PasswordPropertyTextAttribute::No PasswordPropertyTextAttribute_t3646071524 * ___No_1; // System.ComponentModel.PasswordPropertyTextAttribute System.ComponentModel.PasswordPropertyTextAttribute::Yes PasswordPropertyTextAttribute_t3646071524 * ___Yes_2; public: inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(PasswordPropertyTextAttribute_t3646071524_StaticFields, ___Default_0)); } inline PasswordPropertyTextAttribute_t3646071524 * get_Default_0() const { return ___Default_0; } inline PasswordPropertyTextAttribute_t3646071524 ** get_address_of_Default_0() { return &___Default_0; } inline void set_Default_0(PasswordPropertyTextAttribute_t3646071524 * value) { ___Default_0 = value; Il2CppCodeGenWriteBarrier((&___Default_0), value); } inline static int32_t get_offset_of_No_1() { return static_cast<int32_t>(offsetof(PasswordPropertyTextAttribute_t3646071524_StaticFields, ___No_1)); } inline PasswordPropertyTextAttribute_t3646071524 * get_No_1() const { return ___No_1; } inline PasswordPropertyTextAttribute_t3646071524 ** get_address_of_No_1() { return &___No_1; } inline void set_No_1(PasswordPropertyTextAttribute_t3646071524 * value) { ___No_1 = value; Il2CppCodeGenWriteBarrier((&___No_1), value); } inline static int32_t get_offset_of_Yes_2() { return static_cast<int32_t>(offsetof(PasswordPropertyTextAttribute_t3646071524_StaticFields, ___Yes_2)); } inline PasswordPropertyTextAttribute_t3646071524 * get_Yes_2() const { return ___Yes_2; } inline PasswordPropertyTextAttribute_t3646071524 ** get_address_of_Yes_2() { return &___Yes_2; } inline void set_Yes_2(PasswordPropertyTextAttribute_t3646071524 * value) { ___Yes_2 = value; Il2CppCodeGenWriteBarrier((&___Yes_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PASSWORDPROPERTYTEXTATTRIBUTE_T3646071524_H #ifndef NULLABLECONVERTER_T3128690719_H #define NULLABLECONVERTER_T3128690719_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.NullableConverter struct NullableConverter_t3128690719 : public TypeConverter_t3595149642 { public: // System.Type System.ComponentModel.NullableConverter::nullableType Type_t * ___nullableType_0; // System.Type System.ComponentModel.NullableConverter::underlyingType Type_t * ___underlyingType_1; // System.ComponentModel.TypeConverter System.ComponentModel.NullableConverter::underlyingTypeConverter TypeConverter_t3595149642 * ___underlyingTypeConverter_2; public: inline static int32_t get_offset_of_nullableType_0() { return static_cast<int32_t>(offsetof(NullableConverter_t3128690719, ___nullableType_0)); } inline Type_t * get_nullableType_0() const { return ___nullableType_0; } inline Type_t ** get_address_of_nullableType_0() { return &___nullableType_0; } inline void set_nullableType_0(Type_t * value) { ___nullableType_0 = value; Il2CppCodeGenWriteBarrier((&___nullableType_0), value); } inline static int32_t get_offset_of_underlyingType_1() { return static_cast<int32_t>(offsetof(NullableConverter_t3128690719, ___underlyingType_1)); } inline Type_t * get_underlyingType_1() const { return ___underlyingType_1; } inline Type_t ** get_address_of_underlyingType_1() { return &___underlyingType_1; } inline void set_underlyingType_1(Type_t * value) { ___underlyingType_1 = value; Il2CppCodeGenWriteBarrier((&___underlyingType_1), value); } inline static int32_t get_offset_of_underlyingTypeConverter_2() { return static_cast<int32_t>(offsetof(NullableConverter_t3128690719, ___underlyingTypeConverter_2)); } inline TypeConverter_t3595149642 * get_underlyingTypeConverter_2() const { return ___underlyingTypeConverter_2; } inline TypeConverter_t3595149642 ** get_address_of_underlyingTypeConverter_2() { return &___underlyingTypeConverter_2; } inline void set_underlyingTypeConverter_2(TypeConverter_t3595149642 * value) { ___underlyingTypeConverter_2 = value; Il2CppCodeGenWriteBarrier((&___underlyingTypeConverter_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NULLABLECONVERTER_T3128690719_H #ifndef NOTIFYPARENTPROPERTYATTRIBUTE_T178192121_H #define NOTIFYPARENTPROPERTYATTRIBUTE_T178192121_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.NotifyParentPropertyAttribute struct NotifyParentPropertyAttribute_t178192121 : public Attribute_t2739832645 { public: // System.Boolean System.ComponentModel.NotifyParentPropertyAttribute::notifyParent bool ___notifyParent_0; public: inline static int32_t get_offset_of_notifyParent_0() { return static_cast<int32_t>(offsetof(NotifyParentPropertyAttribute_t178192121, ___notifyParent_0)); } inline bool get_notifyParent_0() const { return ___notifyParent_0; } inline bool* get_address_of_notifyParent_0() { return &___notifyParent_0; } inline void set_notifyParent_0(bool value) { ___notifyParent_0 = value; } }; struct NotifyParentPropertyAttribute_t178192121_StaticFields { public: // System.ComponentModel.NotifyParentPropertyAttribute System.ComponentModel.NotifyParentPropertyAttribute::Default NotifyParentPropertyAttribute_t178192121 * ___Default_1; // System.ComponentModel.NotifyParentPropertyAttribute System.ComponentModel.NotifyParentPropertyAttribute::No NotifyParentPropertyAttribute_t178192121 * ___No_2; // System.ComponentModel.NotifyParentPropertyAttribute System.ComponentModel.NotifyParentPropertyAttribute::Yes NotifyParentPropertyAttribute_t178192121 * ___Yes_3; public: inline static int32_t get_offset_of_Default_1() { return static_cast<int32_t>(offsetof(NotifyParentPropertyAttribute_t178192121_StaticFields, ___Default_1)); } inline NotifyParentPropertyAttribute_t178192121 * get_Default_1() const { return ___Default_1; } inline NotifyParentPropertyAttribute_t178192121 ** get_address_of_Default_1() { return &___Default_1; } inline void set_Default_1(NotifyParentPropertyAttribute_t178192121 * value) { ___Default_1 = value; Il2CppCodeGenWriteBarrier((&___Default_1), value); } inline static int32_t get_offset_of_No_2() { return static_cast<int32_t>(offsetof(NotifyParentPropertyAttribute_t178192121_StaticFields, ___No_2)); } inline NotifyParentPropertyAttribute_t178192121 * get_No_2() const { return ___No_2; } inline NotifyParentPropertyAttribute_t178192121 ** get_address_of_No_2() { return &___No_2; } inline void set_No_2(NotifyParentPropertyAttribute_t178192121 * value) { ___No_2 = value; Il2CppCodeGenWriteBarrier((&___No_2), value); } inline static int32_t get_offset_of_Yes_3() { return static_cast<int32_t>(offsetof(NotifyParentPropertyAttribute_t178192121_StaticFields, ___Yes_3)); } inline NotifyParentPropertyAttribute_t178192121 * get_Yes_3() const { return ___Yes_3; } inline NotifyParentPropertyAttribute_t178192121 ** get_address_of_Yes_3() { return &___Yes_3; } inline void set_Yes_3(NotifyParentPropertyAttribute_t178192121 * value) { ___Yes_3 = value; Il2CppCodeGenWriteBarrier((&___Yes_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NOTIFYPARENTPROPERTYATTRIBUTE_T178192121_H #ifndef MULTILINESTRINGCONVERTER_T1633040268_H #define MULTILINESTRINGCONVERTER_T1633040268_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.MultilineStringConverter struct MultilineStringConverter_t1633040268 : public TypeConverter_t3595149642 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MULTILINESTRINGCONVERTER_T1633040268_H #ifndef INT32_T1085330725_H #define INT32_T1085330725_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 struct Int32_t1085330725 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_2; public: inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Int32_t1085330725, ___m_value_2)); } inline int32_t get_m_value_2() const { return ___m_value_2; } inline int32_t* get_address_of_m_value_2() { return &___m_value_2; } inline void set_m_value_2(int32_t value) { ___m_value_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT32_T1085330725_H #ifndef BOOLEAN_T3448040118_H #define BOOLEAN_T3448040118_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean struct Boolean_t3448040118 { public: // System.Boolean System.Boolean::m_value bool ___m_value_2; public: inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Boolean_t3448040118, ___m_value_2)); } inline bool get_m_value_2() const { return ___m_value_2; } inline bool* get_address_of_m_value_2() { return &___m_value_2; } inline void set_m_value_2(bool value) { ___m_value_2 = value; } }; struct Boolean_t3448040118_StaticFields { public: // System.String System.Boolean::FalseString String_t* ___FalseString_0; // System.String System.Boolean::TrueString String_t* ___TrueString_1; public: inline static int32_t get_offset_of_FalseString_0() { return static_cast<int32_t>(offsetof(Boolean_t3448040118_StaticFields, ___FalseString_0)); } inline String_t* get_FalseString_0() const { return ___FalseString_0; } inline String_t** get_address_of_FalseString_0() { return &___FalseString_0; } inline void set_FalseString_0(String_t* value) { ___FalseString_0 = value; Il2CppCodeGenWriteBarrier((&___FalseString_0), value); } inline static int32_t get_offset_of_TrueString_1() { return static_cast<int32_t>(offsetof(Boolean_t3448040118_StaticFields, ___TrueString_1)); } inline String_t* get_TrueString_1() const { return ___TrueString_1; } inline String_t** get_address_of_TrueString_1() { return &___TrueString_1; } inline void set_TrueString_1(String_t* value) { ___TrueString_1 = value; Il2CppCodeGenWriteBarrier((&___TrueString_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BOOLEAN_T3448040118_H #ifndef VOID_T326905757_H #define VOID_T326905757_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void struct Void_t326905757 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VOID_T326905757_H #ifndef MERGABLEPROPERTYATTRIBUTE_T3224318606_H #define MERGABLEPROPERTYATTRIBUTE_T3224318606_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.MergablePropertyAttribute struct MergablePropertyAttribute_t3224318606 : public Attribute_t2739832645 { public: // System.Boolean System.ComponentModel.MergablePropertyAttribute::mergable bool ___mergable_0; public: inline static int32_t get_offset_of_mergable_0() { return static_cast<int32_t>(offsetof(MergablePropertyAttribute_t3224318606, ___mergable_0)); } inline bool get_mergable_0() const { return ___mergable_0; } inline bool* get_address_of_mergable_0() { return &___mergable_0; } inline void set_mergable_0(bool value) { ___mergable_0 = value; } }; struct MergablePropertyAttribute_t3224318606_StaticFields { public: // System.ComponentModel.MergablePropertyAttribute System.ComponentModel.MergablePropertyAttribute::Default MergablePropertyAttribute_t3224318606 * ___Default_1; // System.ComponentModel.MergablePropertyAttribute System.ComponentModel.MergablePropertyAttribute::No MergablePropertyAttribute_t3224318606 * ___No_2; // System.ComponentModel.MergablePropertyAttribute System.ComponentModel.MergablePropertyAttribute::Yes MergablePropertyAttribute_t3224318606 * ___Yes_3; public: inline static int32_t get_offset_of_Default_1() { return static_cast<int32_t>(offsetof(MergablePropertyAttribute_t3224318606_StaticFields, ___Default_1)); } inline MergablePropertyAttribute_t3224318606 * get_Default_1() const { return ___Default_1; } inline MergablePropertyAttribute_t3224318606 ** get_address_of_Default_1() { return &___Default_1; } inline void set_Default_1(MergablePropertyAttribute_t3224318606 * value) { ___Default_1 = value; Il2CppCodeGenWriteBarrier((&___Default_1), value); } inline static int32_t get_offset_of_No_2() { return static_cast<int32_t>(offsetof(MergablePropertyAttribute_t3224318606_StaticFields, ___No_2)); } inline MergablePropertyAttribute_t3224318606 * get_No_2() const { return ___No_2; } inline MergablePropertyAttribute_t3224318606 ** get_address_of_No_2() { return &___No_2; } inline void set_No_2(MergablePropertyAttribute_t3224318606 * value) { ___No_2 = value; Il2CppCodeGenWriteBarrier((&___No_2), value); } inline static int32_t get_offset_of_Yes_3() { return static_cast<int32_t>(offsetof(MergablePropertyAttribute_t3224318606_StaticFields, ___Yes_3)); } inline MergablePropertyAttribute_t3224318606 * get_Yes_3() const { return ___Yes_3; } inline MergablePropertyAttribute_t3224318606 ** get_address_of_Yes_3() { return &___Yes_3; } inline void set_Yes_3(MergablePropertyAttribute_t3224318606 * value) { ___Yes_3 = value; Il2CppCodeGenWriteBarrier((&___Yes_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MERGABLEPROPERTYATTRIBUTE_T3224318606_H #ifndef TYPECONVERTERATTRIBUTE_T695735035_H #define TYPECONVERTERATTRIBUTE_T695735035_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.TypeConverterAttribute struct TypeConverterAttribute_t695735035 : public Attribute_t2739832645 { public: // System.String System.ComponentModel.TypeConverterAttribute::converter_type String_t* ___converter_type_1; public: inline static int32_t get_offset_of_converter_type_1() { return static_cast<int32_t>(offsetof(TypeConverterAttribute_t695735035, ___converter_type_1)); } inline String_t* get_converter_type_1() const { return ___converter_type_1; } inline String_t** get_address_of_converter_type_1() { return &___converter_type_1; } inline void set_converter_type_1(String_t* value) { ___converter_type_1 = value; Il2CppCodeGenWriteBarrier((&___converter_type_1), value); } }; struct TypeConverterAttribute_t695735035_StaticFields { public: // System.ComponentModel.TypeConverterAttribute System.ComponentModel.TypeConverterAttribute::Default TypeConverterAttribute_t695735035 * ___Default_0; public: inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(TypeConverterAttribute_t695735035_StaticFields, ___Default_0)); } inline TypeConverterAttribute_t695735035 * get_Default_0() const { return ___Default_0; } inline TypeConverterAttribute_t695735035 ** get_address_of_Default_0() { return &___Default_0; } inline void set_Default_0(TypeConverterAttribute_t695735035 * value) { ___Default_0 = value; Il2CppCodeGenWriteBarrier((&___Default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPECONVERTERATTRIBUTE_T695735035_H #ifndef ASYNCCOMPLETEDEVENTARGS_T1820347970_H #define ASYNCCOMPLETEDEVENTARGS_T1820347970_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.AsyncCompletedEventArgs struct AsyncCompletedEventArgs_t1820347970 : public EventArgs_t3326158294 { public: // System.Exception System.ComponentModel.AsyncCompletedEventArgs::_error Exception_t2428370182 * ____error_1; // System.Boolean System.ComponentModel.AsyncCompletedEventArgs::_cancelled bool ____cancelled_2; // System.Object System.ComponentModel.AsyncCompletedEventArgs::_userState RuntimeObject * ____userState_3; public: inline static int32_t get_offset_of__error_1() { return static_cast<int32_t>(offsetof(AsyncCompletedEventArgs_t1820347970, ____error_1)); } inline Exception_t2428370182 * get__error_1() const { return ____error_1; } inline Exception_t2428370182 ** get_address_of__error_1() { return &____error_1; } inline void set__error_1(Exception_t2428370182 * value) { ____error_1 = value; Il2CppCodeGenWriteBarrier((&____error_1), value); } inline static int32_t get_offset_of__cancelled_2() { return static_cast<int32_t>(offsetof(AsyncCompletedEventArgs_t1820347970, ____cancelled_2)); } inline bool get__cancelled_2() const { return ____cancelled_2; } inline bool* get_address_of__cancelled_2() { return &____cancelled_2; } inline void set__cancelled_2(bool value) { ____cancelled_2 = value; } inline static int32_t get_offset_of__userState_3() { return static_cast<int32_t>(offsetof(AsyncCompletedEventArgs_t1820347970, ____userState_3)); } inline RuntimeObject * get__userState_3() const { return ____userState_3; } inline RuntimeObject ** get_address_of__userState_3() { return &____userState_3; } inline void set__userState_3(RuntimeObject * value) { ____userState_3 = value; Il2CppCodeGenWriteBarrier((&____userState_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ASYNCCOMPLETEDEVENTARGS_T1820347970_H #ifndef READONLYATTRIBUTE_T1832938840_H #define READONLYATTRIBUTE_T1832938840_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.ReadOnlyAttribute struct ReadOnlyAttribute_t1832938840 : public Attribute_t2739832645 { public: // System.Boolean System.ComponentModel.ReadOnlyAttribute::read_only bool ___read_only_0; public: inline static int32_t get_offset_of_read_only_0() { return static_cast<int32_t>(offsetof(ReadOnlyAttribute_t1832938840, ___read_only_0)); } inline bool get_read_only_0() const { return ___read_only_0; } inline bool* get_address_of_read_only_0() { return &___read_only_0; } inline void set_read_only_0(bool value) { ___read_only_0 = value; } }; struct ReadOnlyAttribute_t1832938840_StaticFields { public: // System.ComponentModel.ReadOnlyAttribute System.ComponentModel.ReadOnlyAttribute::No ReadOnlyAttribute_t1832938840 * ___No_1; // System.ComponentModel.ReadOnlyAttribute System.ComponentModel.ReadOnlyAttribute::Yes ReadOnlyAttribute_t1832938840 * ___Yes_2; // System.ComponentModel.ReadOnlyAttribute System.ComponentModel.ReadOnlyAttribute::Default ReadOnlyAttribute_t1832938840 * ___Default_3; public: inline static int32_t get_offset_of_No_1() { return static_cast<int32_t>(offsetof(ReadOnlyAttribute_t1832938840_StaticFields, ___No_1)); } inline ReadOnlyAttribute_t1832938840 * get_No_1() const { return ___No_1; } inline ReadOnlyAttribute_t1832938840 ** get_address_of_No_1() { return &___No_1; } inline void set_No_1(ReadOnlyAttribute_t1832938840 * value) { ___No_1 = value; Il2CppCodeGenWriteBarrier((&___No_1), value); } inline static int32_t get_offset_of_Yes_2() { return static_cast<int32_t>(offsetof(ReadOnlyAttribute_t1832938840_StaticFields, ___Yes_2)); } inline ReadOnlyAttribute_t1832938840 * get_Yes_2() const { return ___Yes_2; } inline ReadOnlyAttribute_t1832938840 ** get_address_of_Yes_2() { return &___Yes_2; } inline void set_Yes_2(ReadOnlyAttribute_t1832938840 * value) { ___Yes_2 = value; Il2CppCodeGenWriteBarrier((&___Yes_2), value); } inline static int32_t get_offset_of_Default_3() { return static_cast<int32_t>(offsetof(ReadOnlyAttribute_t1832938840_StaticFields, ___Default_3)); } inline ReadOnlyAttribute_t1832938840 * get_Default_3() const { return ___Default_3; } inline ReadOnlyAttribute_t1832938840 ** get_address_of_Default_3() { return &___Default_3; } inline void set_Default_3(ReadOnlyAttribute_t1832938840 * value) { ___Default_3 = value; Il2CppCodeGenWriteBarrier((&___Default_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // READONLYATTRIBUTE_T1832938840_H #ifndef SINGLE_T318564439_H #define SINGLE_T318564439_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Single struct Single_t318564439 { public: // System.Single System.Single::m_value float ___m_value_7; public: inline static int32_t get_offset_of_m_value_7() { return static_cast<int32_t>(offsetof(Single_t318564439, ___m_value_7)); } inline float get_m_value_7() const { return ___m_value_7; } inline float* get_address_of_m_value_7() { return &___m_value_7; } inline void set_m_value_7(float value) { ___m_value_7 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SINGLE_T318564439_H #ifndef WEAKOBJECTWRAPPERCOMPARER_T139211652_H #define WEAKOBJECTWRAPPERCOMPARER_T139211652_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.WeakObjectWrapperComparer struct WeakObjectWrapperComparer_t139211652 : public EqualityComparer_1_t3900351378 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WEAKOBJECTWRAPPERCOMPARER_T139211652_H #ifndef EMPTYCUSTOMTYPEDESCRIPTOR_T3398936167_H #define EMPTYCUSTOMTYPEDESCRIPTOR_T3398936167_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.TypeDescriptionProvider/EmptyCustomTypeDescriptor struct EmptyCustomTypeDescriptor_t3398936167 : public CustomTypeDescriptor_t1811165357 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYCUSTOMTYPEDESCRIPTOR_T3398936167_H #ifndef TIMESPANCONVERTER_T1641375511_H #define TIMESPANCONVERTER_T1641375511_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.TimeSpanConverter struct TimeSpanConverter_t1641375511 : public TypeConverter_t3595149642 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TIMESPANCONVERTER_T1641375511_H #ifndef TIMESPAN_T1687785723_H #define TIMESPAN_T1687785723_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.TimeSpan struct TimeSpan_t1687785723 { public: // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_8; public: inline static int32_t get_offset_of__ticks_8() { return static_cast<int32_t>(offsetof(TimeSpan_t1687785723, ____ticks_8)); } inline int64_t get__ticks_8() const { return ____ticks_8; } inline int64_t* get_address_of__ticks_8() { return &____ticks_8; } inline void set__ticks_8(int64_t value) { ____ticks_8 = value; } }; struct TimeSpan_t1687785723_StaticFields { public: // System.TimeSpan System.TimeSpan::MaxValue TimeSpan_t1687785723 ___MaxValue_5; // System.TimeSpan System.TimeSpan::MinValue TimeSpan_t1687785723 ___MinValue_6; // System.TimeSpan System.TimeSpan::Zero TimeSpan_t1687785723 ___Zero_7; public: inline static int32_t get_offset_of_MaxValue_5() { return static_cast<int32_t>(offsetof(TimeSpan_t1687785723_StaticFields, ___MaxValue_5)); } inline TimeSpan_t1687785723 get_MaxValue_5() const { return ___MaxValue_5; } inline TimeSpan_t1687785723 * get_address_of_MaxValue_5() { return &___MaxValue_5; } inline void set_MaxValue_5(TimeSpan_t1687785723 value) { ___MaxValue_5 = value; } inline static int32_t get_offset_of_MinValue_6() { return static_cast<int32_t>(offsetof(TimeSpan_t1687785723_StaticFields, ___MinValue_6)); } inline TimeSpan_t1687785723 get_MinValue_6() const { return ___MinValue_6; } inline TimeSpan_t1687785723 * get_address_of_MinValue_6() { return &___MinValue_6; } inline void set_MinValue_6(TimeSpan_t1687785723 value) { ___MinValue_6 = value; } inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(TimeSpan_t1687785723_StaticFields, ___Zero_7)); } inline TimeSpan_t1687785723 get_Zero_7() const { return ___Zero_7; } inline TimeSpan_t1687785723 * get_address_of_Zero_7() { return &___Zero_7; } inline void set_Zero_7(TimeSpan_t1687785723 value) { ___Zero_7 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TIMESPAN_T1687785723_H #ifndef TOOLBOXITEMATTRIBUTE_T2314889077_H #define TOOLBOXITEMATTRIBUTE_T2314889077_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.ToolboxItemAttribute struct ToolboxItemAttribute_t2314889077 : public Attribute_t2739832645 { public: // System.Type System.ComponentModel.ToolboxItemAttribute::itemType Type_t * ___itemType_3; // System.String System.ComponentModel.ToolboxItemAttribute::itemTypeName String_t* ___itemTypeName_4; public: inline static int32_t get_offset_of_itemType_3() { return static_cast<int32_t>(offsetof(ToolboxItemAttribute_t2314889077, ___itemType_3)); } inline Type_t * get_itemType_3() const { return ___itemType_3; } inline Type_t ** get_address_of_itemType_3() { return &___itemType_3; } inline void set_itemType_3(Type_t * value) { ___itemType_3 = value; Il2CppCodeGenWriteBarrier((&___itemType_3), value); } inline static int32_t get_offset_of_itemTypeName_4() { return static_cast<int32_t>(offsetof(ToolboxItemAttribute_t2314889077, ___itemTypeName_4)); } inline String_t* get_itemTypeName_4() const { return ___itemTypeName_4; } inline String_t** get_address_of_itemTypeName_4() { return &___itemTypeName_4; } inline void set_itemTypeName_4(String_t* value) { ___itemTypeName_4 = value; Il2CppCodeGenWriteBarrier((&___itemTypeName_4), value); } }; struct ToolboxItemAttribute_t2314889077_StaticFields { public: // System.ComponentModel.ToolboxItemAttribute System.ComponentModel.ToolboxItemAttribute::Default ToolboxItemAttribute_t2314889077 * ___Default_1; // System.ComponentModel.ToolboxItemAttribute System.ComponentModel.ToolboxItemAttribute::None ToolboxItemAttribute_t2314889077 * ___None_2; public: inline static int32_t get_offset_of_Default_1() { return static_cast<int32_t>(offsetof(ToolboxItemAttribute_t2314889077_StaticFields, ___Default_1)); } inline ToolboxItemAttribute_t2314889077 * get_Default_1() const { return ___Default_1; } inline ToolboxItemAttribute_t2314889077 ** get_address_of_Default_1() { return &___Default_1; } inline void set_Default_1(ToolboxItemAttribute_t2314889077 * value) { ___Default_1 = value; Il2CppCodeGenWriteBarrier((&___Default_1), value); } inline static int32_t get_offset_of_None_2() { return static_cast<int32_t>(offsetof(ToolboxItemAttribute_t2314889077_StaticFields, ___None_2)); } inline ToolboxItemAttribute_t2314889077 * get_None_2() const { return ___None_2; } inline ToolboxItemAttribute_t2314889077 ** get_address_of_None_2() { return &___None_2; } inline void set_None_2(ToolboxItemAttribute_t2314889077 * value) { ___None_2 = value; Il2CppCodeGenWriteBarrier((&___None_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TOOLBOXITEMATTRIBUTE_T2314889077_H #ifndef BROWSABLEATTRIBUTE_T3900575337_H #define BROWSABLEATTRIBUTE_T3900575337_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.BrowsableAttribute struct BrowsableAttribute_t3900575337 : public Attribute_t2739832645 { public: // System.Boolean System.ComponentModel.BrowsableAttribute::browsable bool ___browsable_0; public: inline static int32_t get_offset_of_browsable_0() { return static_cast<int32_t>(offsetof(BrowsableAttribute_t3900575337, ___browsable_0)); } inline bool get_browsable_0() const { return ___browsable_0; } inline bool* get_address_of_browsable_0() { return &___browsable_0; } inline void set_browsable_0(bool value) { ___browsable_0 = value; } }; struct BrowsableAttribute_t3900575337_StaticFields { public: // System.ComponentModel.BrowsableAttribute System.ComponentModel.BrowsableAttribute::Default BrowsableAttribute_t3900575337 * ___Default_1; // System.ComponentModel.BrowsableAttribute System.ComponentModel.BrowsableAttribute::No BrowsableAttribute_t3900575337 * ___No_2; // System.ComponentModel.BrowsableAttribute System.ComponentModel.BrowsableAttribute::Yes BrowsableAttribute_t3900575337 * ___Yes_3; public: inline static int32_t get_offset_of_Default_1() { return static_cast<int32_t>(offsetof(BrowsableAttribute_t3900575337_StaticFields, ___Default_1)); } inline BrowsableAttribute_t3900575337 * get_Default_1() const { return ___Default_1; } inline BrowsableAttribute_t3900575337 ** get_address_of_Default_1() { return &___Default_1; } inline void set_Default_1(BrowsableAttribute_t3900575337 * value) { ___Default_1 = value; Il2CppCodeGenWriteBarrier((&___Default_1), value); } inline static int32_t get_offset_of_No_2() { return static_cast<int32_t>(offsetof(BrowsableAttribute_t3900575337_StaticFields, ___No_2)); } inline BrowsableAttribute_t3900575337 * get_No_2() const { return ___No_2; } inline BrowsableAttribute_t3900575337 ** get_address_of_No_2() { return &___No_2; } inline void set_No_2(BrowsableAttribute_t3900575337 * value) { ___No_2 = value; Il2CppCodeGenWriteBarrier((&___No_2), value); } inline static int32_t get_offset_of_Yes_3() { return static_cast<int32_t>(offsetof(BrowsableAttribute_t3900575337_StaticFields, ___Yes_3)); } inline BrowsableAttribute_t3900575337 * get_Yes_3() const { return ___Yes_3; } inline BrowsableAttribute_t3900575337 ** get_address_of_Yes_3() { return &___Yes_3; } inline void set_Yes_3(BrowsableAttribute_t3900575337 * value) { ___Yes_3 = value; Il2CppCodeGenWriteBarrier((&___Yes_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BROWSABLEATTRIBUTE_T3900575337_H #ifndef SBYTE_T46020240_H #define SBYTE_T46020240_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.SByte struct SByte_t46020240 { 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_t46020240, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SBYTE_T46020240_H #ifndef INT64_T2704468446_H #define INT64_T2704468446_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int64 struct Int64_t2704468446 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_2; public: inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Int64_t2704468446, ___m_value_2)); } inline int64_t get_m_value_2() const { return ___m_value_2; } inline int64_t* get_address_of_m_value_2() { return &___m_value_2; } inline void set_m_value_2(int64_t value) { ___m_value_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT64_T2704468446_H #ifndef BASENUMBERCONVERTER_T401835300_H #define BASENUMBERCONVERTER_T401835300_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.BaseNumberConverter struct BaseNumberConverter_t401835300 : public TypeConverter_t3595149642 { public: // System.Type System.ComponentModel.BaseNumberConverter::InnerType Type_t * ___InnerType_0; public: inline static int32_t get_offset_of_InnerType_0() { return static_cast<int32_t>(offsetof(BaseNumberConverter_t401835300, ___InnerType_0)); } inline Type_t * get_InnerType_0() const { return ___InnerType_0; } inline Type_t ** get_address_of_InnerType_0() { return &___InnerType_0; } inline void set_InnerType_0(Type_t * value) { ___InnerType_0 = value; Il2CppCodeGenWriteBarrier((&___InnerType_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BASENUMBERCONVERTER_T401835300_H #ifndef STRINGCONVERTER_T482526816_H #define STRINGCONVERTER_T482526816_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.StringConverter struct StringConverter_t482526816 : public TypeConverter_t3595149642 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STRINGCONVERTER_T482526816_H #ifndef SOCKETFLAGS_T122503886_H #define SOCKETFLAGS_T122503886_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.Sockets.SocketFlags struct SocketFlags_t122503886 { public: // System.Int32 System.Net.Sockets.SocketFlags::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SocketFlags_t122503886, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SOCKETFLAGS_T122503886_H #ifndef SECURITYEXCEPTION_T3040899540_H #define SECURITYEXCEPTION_T3040899540_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.SecurityException struct SecurityException_t3040899540 : public SystemException_t2246602023 { public: // System.String System.Security.SecurityException::permissionState String_t* ___permissionState_11; // System.Type System.Security.SecurityException::permissionType Type_t * ___permissionType_12; // System.String System.Security.SecurityException::_granted String_t* ____granted_13; // System.String System.Security.SecurityException::_refused String_t* ____refused_14; // System.Object System.Security.SecurityException::_demanded RuntimeObject * ____demanded_15; // System.Security.IPermission System.Security.SecurityException::_firstperm RuntimeObject* ____firstperm_16; // System.Reflection.MethodInfo System.Security.SecurityException::_method MethodInfo_t * ____method_17; // System.Security.Policy.Evidence System.Security.SecurityException::_evidence Evidence_t735161034 * ____evidence_18; public: inline static int32_t get_offset_of_permissionState_11() { return static_cast<int32_t>(offsetof(SecurityException_t3040899540, ___permissionState_11)); } inline String_t* get_permissionState_11() const { return ___permissionState_11; } inline String_t** get_address_of_permissionState_11() { return &___permissionState_11; } inline void set_permissionState_11(String_t* value) { ___permissionState_11 = value; Il2CppCodeGenWriteBarrier((&___permissionState_11), value); } inline static int32_t get_offset_of_permissionType_12() { return static_cast<int32_t>(offsetof(SecurityException_t3040899540, ___permissionType_12)); } inline Type_t * get_permissionType_12() const { return ___permissionType_12; } inline Type_t ** get_address_of_permissionType_12() { return &___permissionType_12; } inline void set_permissionType_12(Type_t * value) { ___permissionType_12 = value; Il2CppCodeGenWriteBarrier((&___permissionType_12), value); } inline static int32_t get_offset_of__granted_13() { return static_cast<int32_t>(offsetof(SecurityException_t3040899540, ____granted_13)); } inline String_t* get__granted_13() const { return ____granted_13; } inline String_t** get_address_of__granted_13() { return &____granted_13; } inline void set__granted_13(String_t* value) { ____granted_13 = value; Il2CppCodeGenWriteBarrier((&____granted_13), value); } inline static int32_t get_offset_of__refused_14() { return static_cast<int32_t>(offsetof(SecurityException_t3040899540, ____refused_14)); } inline String_t* get__refused_14() const { return ____refused_14; } inline String_t** get_address_of__refused_14() { return &____refused_14; } inline void set__refused_14(String_t* value) { ____refused_14 = value; Il2CppCodeGenWriteBarrier((&____refused_14), value); } inline static int32_t get_offset_of__demanded_15() { return static_cast<int32_t>(offsetof(SecurityException_t3040899540, ____demanded_15)); } inline RuntimeObject * get__demanded_15() const { return ____demanded_15; } inline RuntimeObject ** get_address_of__demanded_15() { return &____demanded_15; } inline void set__demanded_15(RuntimeObject * value) { ____demanded_15 = value; Il2CppCodeGenWriteBarrier((&____demanded_15), value); } inline static int32_t get_offset_of__firstperm_16() { return static_cast<int32_t>(offsetof(SecurityException_t3040899540, ____firstperm_16)); } inline RuntimeObject* get__firstperm_16() const { return ____firstperm_16; } inline RuntimeObject** get_address_of__firstperm_16() { return &____firstperm_16; } inline void set__firstperm_16(RuntimeObject* value) { ____firstperm_16 = value; Il2CppCodeGenWriteBarrier((&____firstperm_16), value); } inline static int32_t get_offset_of__method_17() { return static_cast<int32_t>(offsetof(SecurityException_t3040899540, ____method_17)); } inline MethodInfo_t * get__method_17() const { return ____method_17; } inline MethodInfo_t ** get_address_of__method_17() { return &____method_17; } inline void set__method_17(MethodInfo_t * value) { ____method_17 = value; Il2CppCodeGenWriteBarrier((&____method_17), value); } inline static int32_t get_offset_of__evidence_18() { return static_cast<int32_t>(offsetof(SecurityException_t3040899540, ____evidence_18)); } inline Evidence_t735161034 * get__evidence_18() const { return ____evidence_18; } inline Evidence_t735161034 ** get_address_of__evidence_18() { return &____evidence_18; } inline void set__evidence_18(Evidence_t735161034 * value) { ____evidence_18 = value; Il2CppCodeGenWriteBarrier((&____evidence_18), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SECURITYEXCEPTION_T3040899540_H #ifndef SOCKETSHUTDOWN_T4044259115_H #define SOCKETSHUTDOWN_T4044259115_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.Sockets.SocketShutdown struct SocketShutdown_t4044259115 { public: // System.Int32 System.Net.Sockets.SocketShutdown::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SocketShutdown_t4044259115, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SOCKETSHUTDOWN_T4044259115_H #ifndef THREADABORTEXCEPTION_T2255830171_H #define THREADABORTEXCEPTION_T2255830171_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.ThreadAbortException struct ThreadAbortException_t2255830171 : public SystemException_t2246602023 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // THREADABORTEXCEPTION_T2255830171_H #ifndef SOCKETERROR_T1943161009_H #define SOCKETERROR_T1943161009_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.Sockets.SocketError struct SocketError_t1943161009 { public: // System.Int32 System.Net.Sockets.SocketError::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SocketError_t1943161009, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SOCKETERROR_T1943161009_H #ifndef MONONOTSUPPORTEDATTRIBUTE_T572674597_H #define MONONOTSUPPORTEDATTRIBUTE_T572674597_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.MonoNotSupportedAttribute struct MonoNotSupportedAttribute_t572674597 : public MonoTODOAttribute_t952110849 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MONONOTSUPPORTEDATTRIBUTE_T572674597_H #ifndef SOCKETOPTIONNAME_T1396087684_H #define SOCKETOPTIONNAME_T1396087684_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.Sockets.SocketOptionName struct SocketOptionName_t1396087684 { public: // System.Int32 System.Net.Sockets.SocketOptionName::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SocketOptionName_t1396087684, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SOCKETOPTIONNAME_T1396087684_H #ifndef SOCKETOPTIONLEVEL_T1055721414_H #define SOCKETOPTIONLEVEL_T1055721414_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.Sockets.SocketOptionLevel struct SocketOptionLevel_t1055721414 { public: // System.Int32 System.Net.Sockets.SocketOptionLevel::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SocketOptionLevel_t1055721414, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SOCKETOPTIONLEVEL_T1055721414_H #ifndef DELEGATE_T2639791074_H #define DELEGATE_T2639791074_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Delegate struct Delegate_t2639791074 : 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::method_code intptr_t ___method_code_5; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_6; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_7; // System.DelegateData System.Delegate::data DelegateData_t4011653242 * ___data_8; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t2639791074, ___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_t2639791074, ___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_t2639791074, ___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((&___m_target_2), value); } inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t2639791074, ___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_t2639791074, ___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_method_code_5() { return static_cast<int32_t>(offsetof(Delegate_t2639791074, ___method_code_5)); } inline intptr_t get_method_code_5() const { return ___method_code_5; } inline intptr_t* get_address_of_method_code_5() { return &___method_code_5; } inline void set_method_code_5(intptr_t value) { ___method_code_5 = value; } inline static int32_t get_offset_of_method_info_6() { return static_cast<int32_t>(offsetof(Delegate_t2639791074, ___method_info_6)); } inline MethodInfo_t * get_method_info_6() const { return ___method_info_6; } inline MethodInfo_t ** get_address_of_method_info_6() { return &___method_info_6; } inline void set_method_info_6(MethodInfo_t * value) { ___method_info_6 = value; Il2CppCodeGenWriteBarrier((&___method_info_6), value); } inline static int32_t get_offset_of_original_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t2639791074, ___original_method_info_7)); } inline MethodInfo_t * get_original_method_info_7() const { return ___original_method_info_7; } inline MethodInfo_t ** get_address_of_original_method_info_7() { return &___original_method_info_7; } inline void set_original_method_info_7(MethodInfo_t * value) { ___original_method_info_7 = value; Il2CppCodeGenWriteBarrier((&___original_method_info_7), value); } inline static int32_t get_offset_of_data_8() { return static_cast<int32_t>(offsetof(Delegate_t2639791074, ___data_8)); } inline DelegateData_t4011653242 * get_data_8() const { return ___data_8; } inline DelegateData_t4011653242 ** get_address_of_data_8() { return &___data_8; } inline void set_data_8(DelegateData_t4011653242 * value) { ___data_8 = value; Il2CppCodeGenWriteBarrier((&___data_8), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DELEGATE_T2639791074_H #ifndef SELECTMODE_T1237323251_H #define SELECTMODE_T1237323251_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.Sockets.SelectMode struct SelectMode_t1237323251 { public: // System.Int32 System.Net.Sockets.SelectMode::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SelectMode_t1237323251, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SELECTMODE_T1237323251_H #ifndef PROTOCOLTYPE_T53693402_H #define PROTOCOLTYPE_T53693402_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.Sockets.ProtocolType struct ProtocolType_t53693402 { public: // System.Int32 System.Net.Sockets.ProtocolType::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ProtocolType_t53693402, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PROTOCOLTYPE_T53693402_H #ifndef CONSTRUCTORINFO_T673747461_H #define CONSTRUCTORINFO_T673747461_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.ConstructorInfo struct ConstructorInfo_t673747461 : public MethodBase_t2815042627 { public: public: }; struct ConstructorInfo_t673747461_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_t673747461_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((&___ConstructorName_0), value); } inline static int32_t get_offset_of_TypeConstructorName_1() { return static_cast<int32_t>(offsetof(ConstructorInfo_t673747461_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((&___TypeConstructorName_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CONSTRUCTORINFO_T673747461_H #ifndef SERIALIZATIONEXCEPTION_T1084472723_H #define SERIALIZATIONEXCEPTION_T1084472723_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.SerializationException struct SerializationException_t1084472723 : public SystemException_t2246602023 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SERIALIZATIONEXCEPTION_T1084472723_H #ifndef RUNTIMEFIELDHANDLE_T3385751618_H #define RUNTIMEFIELDHANDLE_T3385751618_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.RuntimeFieldHandle struct RuntimeFieldHandle_t3385751618 { 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_t3385751618, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEFIELDHANDLE_T3385751618_H #ifndef RUNTIMETYPEHANDLE_T1916376386_H #define RUNTIMETYPEHANDLE_T1916376386_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.RuntimeTypeHandle struct RuntimeTypeHandle_t1916376386 { 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_t1916376386, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMETYPEHANDLE_T1916376386_H #ifndef DESIGNERSERIALIZATIONVISIBILITY_T1942547632_H #define DESIGNERSERIALIZATIONVISIBILITY_T1942547632_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.DesignerSerializationVisibility struct DesignerSerializationVisibility_t1942547632 { public: // System.Int32 System.ComponentModel.DesignerSerializationVisibility::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(DesignerSerializationVisibility_t1942547632, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DESIGNERSERIALIZATIONVISIBILITY_T1942547632_H #ifndef THREADSTATE_T697908605_H #define THREADSTATE_T697908605_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.ThreadState struct ThreadState_t697908605 { public: // System.Int32 System.Threading.ThreadState::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ThreadState_t697908605, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // THREADSTATE_T697908605_H #ifndef SIMPLEPROPERTYDESCRIPTOR_T872937162_H #define SIMPLEPROPERTYDESCRIPTOR_T872937162_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.TypeConverter/SimplePropertyDescriptor struct SimplePropertyDescriptor_t872937162 : public PropertyDescriptor_t2555988069 { public: // System.Type System.ComponentModel.TypeConverter/SimplePropertyDescriptor::componentType Type_t * ___componentType_6; // System.Type System.ComponentModel.TypeConverter/SimplePropertyDescriptor::propertyType Type_t * ___propertyType_7; public: inline static int32_t get_offset_of_componentType_6() { return static_cast<int32_t>(offsetof(SimplePropertyDescriptor_t872937162, ___componentType_6)); } inline Type_t * get_componentType_6() const { return ___componentType_6; } inline Type_t ** get_address_of_componentType_6() { return &___componentType_6; } inline void set_componentType_6(Type_t * value) { ___componentType_6 = value; Il2CppCodeGenWriteBarrier((&___componentType_6), value); } inline static int32_t get_offset_of_propertyType_7() { return static_cast<int32_t>(offsetof(SimplePropertyDescriptor_t872937162, ___propertyType_7)); } inline Type_t * get_propertyType_7() const { return ___propertyType_7; } inline Type_t ** get_address_of_propertyType_7() { return &___propertyType_7; } inline void set_propertyType_7(Type_t * value) { ___propertyType_7 = value; Il2CppCodeGenWriteBarrier((&___propertyType_7), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SIMPLEPROPERTYDESCRIPTOR_T872937162_H #ifndef DATETIMEKIND_T3229627285_H #define DATETIMEKIND_T3229627285_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTimeKind struct DateTimeKind_t3229627285 { public: // System.Int32 System.DateTimeKind::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(DateTimeKind_t3229627285, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DATETIMEKIND_T3229627285_H #ifndef STORELOCATION_T3229063144_H #define STORELOCATION_T3229063144_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Cryptography.X509Certificates.StoreLocation struct StoreLocation_t3229063144 { public: // System.Int32 System.Security.Cryptography.X509Certificates.StoreLocation::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(StoreLocation_t3229063144, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STORELOCATION_T3229063144_H #ifndef STREAMINGCONTEXTSTATES_T3055536545_H #define STREAMINGCONTEXTSTATES_T3055536545_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.StreamingContextStates struct StreamingContextStates_t3055536545 { public: // System.Int32 System.Runtime.Serialization.StreamingContextStates::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(StreamingContextStates_t3055536545, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STREAMINGCONTEXTSTATES_T3055536545_H #ifndef TOOLBOXITEMFILTERTYPE_T785669417_H #define TOOLBOXITEMFILTERTYPE_T785669417_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.ToolboxItemFilterType struct ToolboxItemFilterType_t785669417 { public: // System.Int32 System.ComponentModel.ToolboxItemFilterType::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ToolboxItemFilterType_t785669417, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TOOLBOXITEMFILTERTYPE_T785669417_H #ifndef PARAMETERATTRIBUTES_T358523346_H #define PARAMETERATTRIBUTES_T358523346_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.ParameterAttributes struct ParameterAttributes_t358523346 { public: // System.Int32 System.Reflection.ParameterAttributes::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ParameterAttributes_t358523346, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PARAMETERATTRIBUTES_T358523346_H #ifndef NOTIMPLEMENTEDEXCEPTION_T682134635_H #define NOTIMPLEMENTEDEXCEPTION_T682134635_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.NotImplementedException struct NotImplementedException_t682134635 : public SystemException_t2246602023 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NOTIMPLEMENTEDEXCEPTION_T682134635_H #ifndef FORMATEXCEPTION_T3614201526_H #define FORMATEXCEPTION_T3614201526_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.FormatException struct FormatException_t3614201526 : public SystemException_t2246602023 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FORMATEXCEPTION_T3614201526_H #ifndef ASNDECODESTATUS_T3637882175_H #define ASNDECODESTATUS_T3637882175_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Cryptography.AsnDecodeStatus struct AsnDecodeStatus_t3637882175 { public: // System.Int32 System.Security.Cryptography.AsnDecodeStatus::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(AsnDecodeStatus_t3637882175, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ASNDECODESTATUS_T3637882175_H #ifndef REGEXOPTIONS_T4116543231_H #define REGEXOPTIONS_T4116543231_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Text.RegularExpressions.RegexOptions struct RegexOptions_t4116543231 { public: // System.Int32 System.Text.RegularExpressions.RegexOptions::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(RegexOptions_t4116543231, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // REGEXOPTIONS_T4116543231_H #ifndef INVALIDCASTEXCEPTION_T3691826219_H #define INVALIDCASTEXCEPTION_T3691826219_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.InvalidCastException struct InvalidCastException_t3691826219 : public SystemException_t2246602023 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INVALIDCASTEXCEPTION_T3691826219_H #ifndef UINT16CONVERTER_T3562571258_H #define UINT16CONVERTER_T3562571258_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.UInt16Converter struct UInt16Converter_t3562571258 : public BaseNumberConverter_t401835300 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINT16CONVERTER_T3562571258_H #ifndef ASSEMBLY_T2742862503_H #define ASSEMBLY_T2742862503_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.Assembly struct Assembly_t2742862503 : 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_t369095770 * ___resolve_event_holder_1; // System.Security.Policy.Evidence System.Reflection.Assembly::_evidence Evidence_t735161034 * ____evidence_2; // System.Security.PermissionSet System.Reflection.Assembly::_minimum PermissionSet_t1397146 * ____minimum_3; // System.Security.PermissionSet System.Reflection.Assembly::_optional PermissionSet_t1397146 * ____optional_4; // System.Security.PermissionSet System.Reflection.Assembly::_refuse PermissionSet_t1397146 * ____refuse_5; // System.Security.PermissionSet System.Reflection.Assembly::_granted PermissionSet_t1397146 * ____granted_6; // System.Security.PermissionSet System.Reflection.Assembly::_denied PermissionSet_t1397146 * ____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_t2742862503, ____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_t2742862503, ___resolve_event_holder_1)); } inline ResolveEventHolder_t369095770 * get_resolve_event_holder_1() const { return ___resolve_event_holder_1; } inline ResolveEventHolder_t369095770 ** get_address_of_resolve_event_holder_1() { return &___resolve_event_holder_1; } inline void set_resolve_event_holder_1(ResolveEventHolder_t369095770 * value) { ___resolve_event_holder_1 = value; Il2CppCodeGenWriteBarrier((&___resolve_event_holder_1), value); } inline static int32_t get_offset_of__evidence_2() { return static_cast<int32_t>(offsetof(Assembly_t2742862503, ____evidence_2)); } inline Evidence_t735161034 * get__evidence_2() const { return ____evidence_2; } inline Evidence_t735161034 ** get_address_of__evidence_2() { return &____evidence_2; } inline void set__evidence_2(Evidence_t735161034 * value) { ____evidence_2 = value; Il2CppCodeGenWriteBarrier((&____evidence_2), value); } inline static int32_t get_offset_of__minimum_3() { return static_cast<int32_t>(offsetof(Assembly_t2742862503, ____minimum_3)); } inline PermissionSet_t1397146 * get__minimum_3() const { return ____minimum_3; } inline PermissionSet_t1397146 ** get_address_of__minimum_3() { return &____minimum_3; } inline void set__minimum_3(PermissionSet_t1397146 * value) { ____minimum_3 = value; Il2CppCodeGenWriteBarrier((&____minimum_3), value); } inline static int32_t get_offset_of__optional_4() { return static_cast<int32_t>(offsetof(Assembly_t2742862503, ____optional_4)); } inline PermissionSet_t1397146 * get__optional_4() const { return ____optional_4; } inline PermissionSet_t1397146 ** get_address_of__optional_4() { return &____optional_4; } inline void set__optional_4(PermissionSet_t1397146 * value) { ____optional_4 = value; Il2CppCodeGenWriteBarrier((&____optional_4), value); } inline static int32_t get_offset_of__refuse_5() { return static_cast<int32_t>(offsetof(Assembly_t2742862503, ____refuse_5)); } inline PermissionSet_t1397146 * get__refuse_5() const { return ____refuse_5; } inline PermissionSet_t1397146 ** get_address_of__refuse_5() { return &____refuse_5; } inline void set__refuse_5(PermissionSet_t1397146 * value) { ____refuse_5 = value; Il2CppCodeGenWriteBarrier((&____refuse_5), value); } inline static int32_t get_offset_of__granted_6() { return static_cast<int32_t>(offsetof(Assembly_t2742862503, ____granted_6)); } inline PermissionSet_t1397146 * get__granted_6() const { return ____granted_6; } inline PermissionSet_t1397146 ** get_address_of__granted_6() { return &____granted_6; } inline void set__granted_6(PermissionSet_t1397146 * value) { ____granted_6 = value; Il2CppCodeGenWriteBarrier((&____granted_6), value); } inline static int32_t get_offset_of__denied_7() { return static_cast<int32_t>(offsetof(Assembly_t2742862503, ____denied_7)); } inline PermissionSet_t1397146 * get__denied_7() const { return ____denied_7; } inline PermissionSet_t1397146 ** get_address_of__denied_7() { return &____denied_7; } inline void set__denied_7(PermissionSet_t1397146 * value) { ____denied_7 = value; Il2CppCodeGenWriteBarrier((&____denied_7), value); } inline static int32_t get_offset_of_fromByteArray_8() { return static_cast<int32_t>(offsetof(Assembly_t2742862503, ___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_t2742862503, ___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((&___assemblyName_9), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ASSEMBLY_T2742862503_H #ifndef UINT32CONVERTER_T3695056532_H #define UINT32CONVERTER_T3695056532_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.UInt32Converter struct UInt32Converter_t3695056532 : public BaseNumberConverter_t401835300 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINT32CONVERTER_T3695056532_H #ifndef U3CPRIVATEIMPLEMENTATIONDETAILSU3E_T3706520246_H #define U3CPRIVATEIMPLEMENTATIONDETAILSU3E_T3706520246_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails> struct U3CPrivateImplementationDetailsU3E_t3706520246 : public RuntimeObject { public: public: }; struct U3CPrivateImplementationDetailsU3E_t3706520246_StaticFields { public: // <PrivateImplementationDetails>/$ArrayType$128 <PrivateImplementationDetails>::$$field-2 U24ArrayTypeU24128_t2881262768 ___U24U24fieldU2D2_0; // <PrivateImplementationDetails>/$ArrayType$12 <PrivateImplementationDetails>::$$field-3 U24ArrayTypeU2412_t3783942480 ___U24U24fieldU2D3_1; // <PrivateImplementationDetails>/$ArrayType$12 <PrivateImplementationDetails>::$$field-4 U24ArrayTypeU2412_t3783942480 ___U24U24fieldU2D4_2; public: inline static int32_t get_offset_of_U24U24fieldU2D2_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3706520246_StaticFields, ___U24U24fieldU2D2_0)); } inline U24ArrayTypeU24128_t2881262768 get_U24U24fieldU2D2_0() const { return ___U24U24fieldU2D2_0; } inline U24ArrayTypeU24128_t2881262768 * get_address_of_U24U24fieldU2D2_0() { return &___U24U24fieldU2D2_0; } inline void set_U24U24fieldU2D2_0(U24ArrayTypeU24128_t2881262768 value) { ___U24U24fieldU2D2_0 = value; } inline static int32_t get_offset_of_U24U24fieldU2D3_1() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3706520246_StaticFields, ___U24U24fieldU2D3_1)); } inline U24ArrayTypeU2412_t3783942480 get_U24U24fieldU2D3_1() const { return ___U24U24fieldU2D3_1; } inline U24ArrayTypeU2412_t3783942480 * get_address_of_U24U24fieldU2D3_1() { return &___U24U24fieldU2D3_1; } inline void set_U24U24fieldU2D3_1(U24ArrayTypeU2412_t3783942480 value) { ___U24U24fieldU2D3_1 = value; } inline static int32_t get_offset_of_U24U24fieldU2D4_2() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3706520246_StaticFields, ___U24U24fieldU2D4_2)); } inline U24ArrayTypeU2412_t3783942480 get_U24U24fieldU2D4_2() const { return ___U24U24fieldU2D4_2; } inline U24ArrayTypeU2412_t3783942480 * get_address_of_U24U24fieldU2D4_2() { return &___U24U24fieldU2D4_2; } inline void set_U24U24fieldU2D4_2(U24ArrayTypeU2412_t3783942480 value) { ___U24U24fieldU2D4_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // U3CPRIVATEIMPLEMENTATIONDETAILSU3E_T3706520246_H #ifndef ARGUMENTEXCEPTION_T1946723077_H #define ARGUMENTEXCEPTION_T1946723077_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArgumentException struct ArgumentException_t1946723077 : public SystemException_t2246602023 { public: // System.String System.ArgumentException::param_name String_t* ___param_name_12; public: inline static int32_t get_offset_of_param_name_12() { return static_cast<int32_t>(offsetof(ArgumentException_t1946723077, ___param_name_12)); } inline String_t* get_param_name_12() const { return ___param_name_12; } inline String_t** get_address_of_param_name_12() { return &___param_name_12; } inline void set_param_name_12(String_t* value) { ___param_name_12 = value; Il2CppCodeGenWriteBarrier((&___param_name_12), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTEXCEPTION_T1946723077_H #ifndef SOCKETTYPE_T1027529329_H #define SOCKETTYPE_T1027529329_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.Sockets.SocketType struct SocketType_t1027529329 { public: // System.Int32 System.Net.Sockets.SocketType::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SocketType_t1027529329, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SOCKETTYPE_T1027529329_H #ifndef WEBHEADERCOLLECTION_T3555365273_H #define WEBHEADERCOLLECTION_T3555365273_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.WebHeaderCollection struct WebHeaderCollection_t3555365273 : public NameValueCollection_t1416237248 { public: // System.Boolean System.Net.WebHeaderCollection::internallyCreated bool ___internallyCreated_15; public: inline static int32_t get_offset_of_internallyCreated_15() { return static_cast<int32_t>(offsetof(WebHeaderCollection_t3555365273, ___internallyCreated_15)); } inline bool get_internallyCreated_15() const { return ___internallyCreated_15; } inline bool* get_address_of_internallyCreated_15() { return &___internallyCreated_15; } inline void set_internallyCreated_15(bool value) { ___internallyCreated_15 = value; } }; struct WebHeaderCollection_t3555365273_StaticFields { public: // System.Collections.Hashtable System.Net.WebHeaderCollection::restricted Hashtable_t448324601 * ___restricted_12; // System.Collections.Hashtable System.Net.WebHeaderCollection::multiValue Hashtable_t448324601 * ___multiValue_13; // System.Collections.Generic.Dictionary`2<System.String,System.Boolean> System.Net.WebHeaderCollection::restricted_response Dictionary_2_t120496167 * ___restricted_response_14; // System.Boolean[] System.Net.WebHeaderCollection::allowed_chars BooleanU5BU5D_t184022451* ___allowed_chars_16; public: inline static int32_t get_offset_of_restricted_12() { return static_cast<int32_t>(offsetof(WebHeaderCollection_t3555365273_StaticFields, ___restricted_12)); } inline Hashtable_t448324601 * get_restricted_12() const { return ___restricted_12; } inline Hashtable_t448324601 ** get_address_of_restricted_12() { return &___restricted_12; } inline void set_restricted_12(Hashtable_t448324601 * value) { ___restricted_12 = value; Il2CppCodeGenWriteBarrier((&___restricted_12), value); } inline static int32_t get_offset_of_multiValue_13() { return static_cast<int32_t>(offsetof(WebHeaderCollection_t3555365273_StaticFields, ___multiValue_13)); } inline Hashtable_t448324601 * get_multiValue_13() const { return ___multiValue_13; } inline Hashtable_t448324601 ** get_address_of_multiValue_13() { return &___multiValue_13; } inline void set_multiValue_13(Hashtable_t448324601 * value) { ___multiValue_13 = value; Il2CppCodeGenWriteBarrier((&___multiValue_13), value); } inline static int32_t get_offset_of_restricted_response_14() { return static_cast<int32_t>(offsetof(WebHeaderCollection_t3555365273_StaticFields, ___restricted_response_14)); } inline Dictionary_2_t120496167 * get_restricted_response_14() const { return ___restricted_response_14; } inline Dictionary_2_t120496167 ** get_address_of_restricted_response_14() { return &___restricted_response_14; } inline void set_restricted_response_14(Dictionary_2_t120496167 * value) { ___restricted_response_14 = value; Il2CppCodeGenWriteBarrier((&___restricted_response_14), value); } inline static int32_t get_offset_of_allowed_chars_16() { return static_cast<int32_t>(offsetof(WebHeaderCollection_t3555365273_StaticFields, ___allowed_chars_16)); } inline BooleanU5BU5D_t184022451* get_allowed_chars_16() const { return ___allowed_chars_16; } inline BooleanU5BU5D_t184022451** get_address_of_allowed_chars_16() { return &___allowed_chars_16; } inline void set_allowed_chars_16(BooleanU5BU5D_t184022451* value) { ___allowed_chars_16 = value; Il2CppCodeGenWriteBarrier((&___allowed_chars_16), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WEBHEADERCOLLECTION_T3555365273_H #ifndef RUNWORKERCOMPLETEDEVENTARGS_T2985097864_H #define RUNWORKERCOMPLETEDEVENTARGS_T2985097864_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.RunWorkerCompletedEventArgs struct RunWorkerCompletedEventArgs_t2985097864 : public AsyncCompletedEventArgs_t1820347970 { public: // System.Object System.ComponentModel.RunWorkerCompletedEventArgs::result RuntimeObject * ___result_4; public: inline static int32_t get_offset_of_result_4() { return static_cast<int32_t>(offsetof(RunWorkerCompletedEventArgs_t2985097864, ___result_4)); } inline RuntimeObject * get_result_4() const { return ___result_4; } inline RuntimeObject ** get_address_of_result_4() { return &___result_4; } inline void set_result_4(RuntimeObject * value) { ___result_4 = value; Il2CppCodeGenWriteBarrier((&___result_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNWORKERCOMPLETEDEVENTARGS_T2985097864_H #ifndef SBYTECONVERTER_T3452734354_H #define SBYTECONVERTER_T3452734354_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.SByteConverter struct SByteConverter_t3452734354 : public BaseNumberConverter_t401835300 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SBYTECONVERTER_T3452734354_H #ifndef REFRESHPROPERTIES_T4103646669_H #define REFRESHPROPERTIES_T4103646669_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.RefreshProperties struct RefreshProperties_t4103646669 { public: // System.Int32 System.ComponentModel.RefreshProperties::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(RefreshProperties_t4103646669, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // REFRESHPROPERTIES_T4103646669_H #ifndef ADDRESSFAMILY_T2568691419_H #define ADDRESSFAMILY_T2568691419_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.Sockets.AddressFamily struct AddressFamily_t2568691419 { public: // System.Int32 System.Net.Sockets.AddressFamily::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(AddressFamily_t2568691419, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ADDRESSFAMILY_T2568691419_H #ifndef METHODATTRIBUTES_T3592386830_H #define METHODATTRIBUTES_T3592386830_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.MethodAttributes struct MethodAttributes_t3592386830 { public: // System.Int32 System.Reflection.MethodAttributes::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(MethodAttributes_t3592386830, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // METHODATTRIBUTES_T3592386830_H #ifndef FILEACCESS_T1449903724_H #define FILEACCESS_T1449903724_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IO.FileAccess struct FileAccess_t1449903724 { public: // System.Int32 System.IO.FileAccess::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(FileAccess_t1449903724, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FILEACCESS_T1449903724_H #ifndef NOTSUPPORTEDEXCEPTION_T2060369835_H #define NOTSUPPORTEDEXCEPTION_T2060369835_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.NotSupportedException struct NotSupportedException_t2060369835 : public SystemException_t2246602023 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NOTSUPPORTEDEXCEPTION_T2060369835_H #ifndef NUMBERSTYLES_T1302478180_H #define NUMBERSTYLES_T1302478180_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.NumberStyles struct NumberStyles_t1302478180 { public: // System.Int32 System.Globalization.NumberStyles::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(NumberStyles_t1302478180, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NUMBERSTYLES_T1302478180_H #ifndef BINDINGFLAGS_T3584747313_H #define BINDINGFLAGS_T3584747313_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.BindingFlags struct BindingFlags_t3584747313 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(BindingFlags_t3584747313, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BINDINGFLAGS_T3584747313_H #ifndef SSLPOLICYERRORS_T2196644362_H #define SSLPOLICYERRORS_T2196644362_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.Security.SslPolicyErrors struct SslPolicyErrors_t2196644362 { public: // System.Int32 System.Net.Security.SslPolicyErrors::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SslPolicyErrors_t2196644362, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SSLPOLICYERRORS_T2196644362_H #ifndef INVALIDOPERATIONEXCEPTION_T94637358_H #define INVALIDOPERATIONEXCEPTION_T94637358_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.InvalidOperationException struct InvalidOperationException_t94637358 : public SystemException_t2246602023 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INVALIDOPERATIONEXCEPTION_T94637358_H #ifndef REFLECTIONPROPERTYDESCRIPTOR_T1079221997_H #define REFLECTIONPROPERTYDESCRIPTOR_T1079221997_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.ReflectionPropertyDescriptor struct ReflectionPropertyDescriptor_t1079221997 : public PropertyDescriptor_t2555988069 { public: // System.Reflection.PropertyInfo System.ComponentModel.ReflectionPropertyDescriptor::_member PropertyInfo_t * ____member_6; // System.Type System.ComponentModel.ReflectionPropertyDescriptor::_componentType Type_t * ____componentType_7; // System.Type System.ComponentModel.ReflectionPropertyDescriptor::_propertyType Type_t * ____propertyType_8; // System.Reflection.PropertyInfo System.ComponentModel.ReflectionPropertyDescriptor::getter PropertyInfo_t * ___getter_9; // System.Reflection.PropertyInfo System.ComponentModel.ReflectionPropertyDescriptor::setter PropertyInfo_t * ___setter_10; // System.Boolean System.ComponentModel.ReflectionPropertyDescriptor::accessors_inited bool ___accessors_inited_11; public: inline static int32_t get_offset_of__member_6() { return static_cast<int32_t>(offsetof(ReflectionPropertyDescriptor_t1079221997, ____member_6)); } inline PropertyInfo_t * get__member_6() const { return ____member_6; } inline PropertyInfo_t ** get_address_of__member_6() { return &____member_6; } inline void set__member_6(PropertyInfo_t * value) { ____member_6 = value; Il2CppCodeGenWriteBarrier((&____member_6), value); } inline static int32_t get_offset_of__componentType_7() { return static_cast<int32_t>(offsetof(ReflectionPropertyDescriptor_t1079221997, ____componentType_7)); } inline Type_t * get__componentType_7() const { return ____componentType_7; } inline Type_t ** get_address_of__componentType_7() { return &____componentType_7; } inline void set__componentType_7(Type_t * value) { ____componentType_7 = value; Il2CppCodeGenWriteBarrier((&____componentType_7), value); } inline static int32_t get_offset_of__propertyType_8() { return static_cast<int32_t>(offsetof(ReflectionPropertyDescriptor_t1079221997, ____propertyType_8)); } inline Type_t * get__propertyType_8() const { return ____propertyType_8; } inline Type_t ** get_address_of__propertyType_8() { return &____propertyType_8; } inline void set__propertyType_8(Type_t * value) { ____propertyType_8 = value; Il2CppCodeGenWriteBarrier((&____propertyType_8), value); } inline static int32_t get_offset_of_getter_9() { return static_cast<int32_t>(offsetof(ReflectionPropertyDescriptor_t1079221997, ___getter_9)); } inline PropertyInfo_t * get_getter_9() const { return ___getter_9; } inline PropertyInfo_t ** get_address_of_getter_9() { return &___getter_9; } inline void set_getter_9(PropertyInfo_t * value) { ___getter_9 = value; Il2CppCodeGenWriteBarrier((&___getter_9), value); } inline static int32_t get_offset_of_setter_10() { return static_cast<int32_t>(offsetof(ReflectionPropertyDescriptor_t1079221997, ___setter_10)); } inline PropertyInfo_t * get_setter_10() const { return ___setter_10; } inline PropertyInfo_t ** get_address_of_setter_10() { return &___setter_10; } inline void set_setter_10(PropertyInfo_t * value) { ___setter_10 = value; Il2CppCodeGenWriteBarrier((&___setter_10), value); } inline static int32_t get_offset_of_accessors_inited_11() { return static_cast<int32_t>(offsetof(ReflectionPropertyDescriptor_t1079221997, ___accessors_inited_11)); } inline bool get_accessors_inited_11() const { return ___accessors_inited_11; } inline bool* get_address_of_accessors_inited_11() { return &___accessors_inited_11; } inline void set_accessors_inited_11(bool value) { ___accessors_inited_11 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // REFLECTIONPROPERTYDESCRIPTOR_T1079221997_H #ifndef SINGLECONVERTER_T842878517_H #define SINGLECONVERTER_T842878517_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.SingleConverter struct SingleConverter_t842878517 : public BaseNumberConverter_t401835300 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SINGLECONVERTER_T842878517_H #ifndef X509KEYUSAGEFLAGS_T2542461391_H #define X509KEYUSAGEFLAGS_T2542461391_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Cryptography.X509Certificates.X509KeyUsageFlags struct X509KeyUsageFlags_t2542461391 { public: // System.Int32 System.Security.Cryptography.X509Certificates.X509KeyUsageFlags::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(X509KeyUsageFlags_t2542461391, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // X509KEYUSAGEFLAGS_T2542461391_H #ifndef METHODINFO_T_H #define METHODINFO_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.MethodInfo struct MethodInfo_t : public MethodBase_t2815042627 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // METHODINFO_T_H #ifndef EXTERNALEXCEPTION_T1492600716_H #define EXTERNALEXCEPTION_T1492600716_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.InteropServices.ExternalException struct ExternalException_t1492600716 : public SystemException_t2246602023 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EXTERNALEXCEPTION_T1492600716_H #ifndef SECURITYPROTOCOLTYPE_T2013298890_H #define SECURITYPROTOCOLTYPE_T2013298890_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.SecurityProtocolType struct SecurityProtocolType_t2013298890 { public: // System.Int32 System.Net.SecurityProtocolType::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SecurityProtocolType_t2013298890, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SECURITYPROTOCOLTYPE_T2013298890_H #ifndef AUTHENTICATIONLEVEL_T3108020076_H #define AUTHENTICATIONLEVEL_T3108020076_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.Security.AuthenticationLevel struct AuthenticationLevel_t3108020076 { public: // System.Int32 System.Net.Security.AuthenticationLevel::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(AuthenticationLevel_t3108020076, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // AUTHENTICATIONLEVEL_T3108020076_H #ifndef REFLECTIONEVENTDESCRIPTOR_T4023907121_H #define REFLECTIONEVENTDESCRIPTOR_T4023907121_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.ReflectionEventDescriptor struct ReflectionEventDescriptor_t4023907121 : public EventDescriptor_t3701426622 { public: // System.Type System.ComponentModel.ReflectionEventDescriptor::_eventType Type_t * ____eventType_4; // System.Type System.ComponentModel.ReflectionEventDescriptor::_componentType Type_t * ____componentType_5; // System.Reflection.EventInfo System.ComponentModel.ReflectionEventDescriptor::_eventInfo EventInfo_t * ____eventInfo_6; // System.Reflection.MethodInfo System.ComponentModel.ReflectionEventDescriptor::add_method MethodInfo_t * ___add_method_7; // System.Reflection.MethodInfo System.ComponentModel.ReflectionEventDescriptor::remove_method MethodInfo_t * ___remove_method_8; public: inline static int32_t get_offset_of__eventType_4() { return static_cast<int32_t>(offsetof(ReflectionEventDescriptor_t4023907121, ____eventType_4)); } inline Type_t * get__eventType_4() const { return ____eventType_4; } inline Type_t ** get_address_of__eventType_4() { return &____eventType_4; } inline void set__eventType_4(Type_t * value) { ____eventType_4 = value; Il2CppCodeGenWriteBarrier((&____eventType_4), value); } inline static int32_t get_offset_of__componentType_5() { return static_cast<int32_t>(offsetof(ReflectionEventDescriptor_t4023907121, ____componentType_5)); } inline Type_t * get__componentType_5() const { return ____componentType_5; } inline Type_t ** get_address_of__componentType_5() { return &____componentType_5; } inline void set__componentType_5(Type_t * value) { ____componentType_5 = value; Il2CppCodeGenWriteBarrier((&____componentType_5), value); } inline static int32_t get_offset_of__eventInfo_6() { return static_cast<int32_t>(offsetof(ReflectionEventDescriptor_t4023907121, ____eventInfo_6)); } inline EventInfo_t * get__eventInfo_6() const { return ____eventInfo_6; } inline EventInfo_t ** get_address_of__eventInfo_6() { return &____eventInfo_6; } inline void set__eventInfo_6(EventInfo_t * value) { ____eventInfo_6 = value; Il2CppCodeGenWriteBarrier((&____eventInfo_6), value); } inline static int32_t get_offset_of_add_method_7() { return static_cast<int32_t>(offsetof(ReflectionEventDescriptor_t4023907121, ___add_method_7)); } inline MethodInfo_t * get_add_method_7() const { return ___add_method_7; } inline MethodInfo_t ** get_address_of_add_method_7() { return &___add_method_7; } inline void set_add_method_7(MethodInfo_t * value) { ___add_method_7 = value; Il2CppCodeGenWriteBarrier((&___add_method_7), value); } inline static int32_t get_offset_of_remove_method_8() { return static_cast<int32_t>(offsetof(ReflectionEventDescriptor_t4023907121, ___remove_method_8)); } inline MethodInfo_t * get_remove_method_8() const { return ___remove_method_8; } inline MethodInfo_t ** get_address_of_remove_method_8() { return &___remove_method_8; } inline void set_remove_method_8(MethodInfo_t * value) { ___remove_method_8 = value; Il2CppCodeGenWriteBarrier((&___remove_method_8), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // REFLECTIONEVENTDESCRIPTOR_T4023907121_H #ifndef WEAKREFERENCE_T2192111202_H #define WEAKREFERENCE_T2192111202_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.WeakReference struct WeakReference_t2192111202 : public RuntimeObject { public: // System.Boolean System.WeakReference::isLongReference bool ___isLongReference_0; // System.Runtime.InteropServices.GCHandle System.WeakReference::gcHandle GCHandle_t2464177589 ___gcHandle_1; public: inline static int32_t get_offset_of_isLongReference_0() { return static_cast<int32_t>(offsetof(WeakReference_t2192111202, ___isLongReference_0)); } inline bool get_isLongReference_0() const { return ___isLongReference_0; } inline bool* get_address_of_isLongReference_0() { return &___isLongReference_0; } inline void set_isLongReference_0(bool value) { ___isLongReference_0 = value; } inline static int32_t get_offset_of_gcHandle_1() { return static_cast<int32_t>(offsetof(WeakReference_t2192111202, ___gcHandle_1)); } inline GCHandle_t2464177589 get_gcHandle_1() const { return ___gcHandle_1; } inline GCHandle_t2464177589 * get_address_of_gcHandle_1() { return &___gcHandle_1; } inline void set_gcHandle_1(GCHandle_t2464177589 value) { ___gcHandle_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WEAKREFERENCE_T2192111202_H #ifndef STRINGCOMPARISON_T2361741111_H #define STRINGCOMPARISON_T2361741111_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.StringComparison struct StringComparison_t2361741111 { public: // System.Int32 System.StringComparison::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(StringComparison_t2361741111, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STRINGCOMPARISON_T2361741111_H #ifndef UINT64CONVERTER_T3750379122_H #define UINT64CONVERTER_T3750379122_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.UInt64Converter struct UInt64Converter_t3750379122 : public BaseNumberConverter_t401835300 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINT64CONVERTER_T3750379122_H #ifndef X509KEYUSAGEEXTENSION_T3246595939_H #define X509KEYUSAGEEXTENSION_T3246595939_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Cryptography.X509Certificates.X509KeyUsageExtension struct X509KeyUsageExtension_t3246595939 : public X509Extension_t1134947644 { public: // System.Security.Cryptography.X509Certificates.X509KeyUsageFlags System.Security.Cryptography.X509Certificates.X509KeyUsageExtension::_keyUsages int32_t ____keyUsages_7; // System.Security.Cryptography.AsnDecodeStatus System.Security.Cryptography.X509Certificates.X509KeyUsageExtension::_status int32_t ____status_8; public: inline static int32_t get_offset_of__keyUsages_7() { return static_cast<int32_t>(offsetof(X509KeyUsageExtension_t3246595939, ____keyUsages_7)); } inline int32_t get__keyUsages_7() const { return ____keyUsages_7; } inline int32_t* get_address_of__keyUsages_7() { return &____keyUsages_7; } inline void set__keyUsages_7(int32_t value) { ____keyUsages_7 = value; } inline static int32_t get_offset_of__status_8() { return static_cast<int32_t>(offsetof(X509KeyUsageExtension_t3246595939, ____status_8)); } inline int32_t get__status_8() const { return ____status_8; } inline int32_t* get_address_of__status_8() { return &____status_8; } inline void set__status_8(int32_t value) { ____status_8 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // X509KEYUSAGEEXTENSION_T3246595939_H #ifndef X509SUBJECTKEYIDENTIFIEREXTENSION_T2831496947_H #define X509SUBJECTKEYIDENTIFIEREXTENSION_T2831496947_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension struct X509SubjectKeyIdentifierExtension_t2831496947 : public X509Extension_t1134947644 { public: // System.Byte[] System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::_subjectKeyIdentifier ByteU5BU5D_t1709610627* ____subjectKeyIdentifier_6; // System.String System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::_ski String_t* ____ski_7; // System.Security.Cryptography.AsnDecodeStatus System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::_status int32_t ____status_8; public: inline static int32_t get_offset_of__subjectKeyIdentifier_6() { return static_cast<int32_t>(offsetof(X509SubjectKeyIdentifierExtension_t2831496947, ____subjectKeyIdentifier_6)); } inline ByteU5BU5D_t1709610627* get__subjectKeyIdentifier_6() const { return ____subjectKeyIdentifier_6; } inline ByteU5BU5D_t1709610627** get_address_of__subjectKeyIdentifier_6() { return &____subjectKeyIdentifier_6; } inline void set__subjectKeyIdentifier_6(ByteU5BU5D_t1709610627* value) { ____subjectKeyIdentifier_6 = value; Il2CppCodeGenWriteBarrier((&____subjectKeyIdentifier_6), value); } inline static int32_t get_offset_of__ski_7() { return static_cast<int32_t>(offsetof(X509SubjectKeyIdentifierExtension_t2831496947, ____ski_7)); } inline String_t* get__ski_7() const { return ____ski_7; } inline String_t** get_address_of__ski_7() { return &____ski_7; } inline void set__ski_7(String_t* value) { ____ski_7 = value; Il2CppCodeGenWriteBarrier((&____ski_7), value); } inline static int32_t get_offset_of__status_8() { return static_cast<int32_t>(offsetof(X509SubjectKeyIdentifierExtension_t2831496947, ____status_8)); } inline int32_t get__status_8() const { return ____status_8; } inline int32_t* get_address_of__status_8() { return &____status_8; } inline void set__status_8(int32_t value) { ____status_8 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // X509SUBJECTKEYIDENTIFIEREXTENSION_T2831496947_H #ifndef PARAMETERINFO_T4014848178_H #define PARAMETERINFO_T4014848178_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.ParameterInfo struct ParameterInfo_t4014848178 : 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.Reflection.Emit.UnmanagedMarshal System.Reflection.ParameterInfo::marshalAs UnmanagedMarshal_t4261945079 * ___marshalAs_6; public: inline static int32_t get_offset_of_ClassImpl_0() { return static_cast<int32_t>(offsetof(ParameterInfo_t4014848178, ___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((&___ClassImpl_0), value); } inline static int32_t get_offset_of_DefaultValueImpl_1() { return static_cast<int32_t>(offsetof(ParameterInfo_t4014848178, ___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((&___DefaultValueImpl_1), value); } inline static int32_t get_offset_of_MemberImpl_2() { return static_cast<int32_t>(offsetof(ParameterInfo_t4014848178, ___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((&___MemberImpl_2), value); } inline static int32_t get_offset_of_NameImpl_3() { return static_cast<int32_t>(offsetof(ParameterInfo_t4014848178, ___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((&___NameImpl_3), value); } inline static int32_t get_offset_of_PositionImpl_4() { return static_cast<int32_t>(offsetof(ParameterInfo_t4014848178, ___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_t4014848178, ___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_t4014848178, ___marshalAs_6)); } inline UnmanagedMarshal_t4261945079 * get_marshalAs_6() const { return ___marshalAs_6; } inline UnmanagedMarshal_t4261945079 ** get_address_of_marshalAs_6() { return &___marshalAs_6; } inline void set_marshalAs_6(UnmanagedMarshal_t4261945079 * value) { ___marshalAs_6 = value; Il2CppCodeGenWriteBarrier((&___marshalAs_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PARAMETERINFO_T4014848178_H #ifndef ARGUMENTNULLEXCEPTION_T873386607_H #define ARGUMENTNULLEXCEPTION_T873386607_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArgumentNullException struct ArgumentNullException_t873386607 : public ArgumentException_t1946723077 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTNULLEXCEPTION_T873386607_H #ifndef MODULE_T364935609_H #define MODULE_T364935609_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.Module struct Module_t364935609 : public RuntimeObject { public: // System.IntPtr System.Reflection.Module::_impl intptr_t ____impl_3; // System.Reflection.Assembly System.Reflection.Module::assembly Assembly_t2742862503 * ___assembly_4; // System.String System.Reflection.Module::fqname String_t* ___fqname_5; // System.String System.Reflection.Module::name String_t* ___name_6; // System.String System.Reflection.Module::scopename String_t* ___scopename_7; // System.Boolean System.Reflection.Module::is_resource bool ___is_resource_8; // System.Int32 System.Reflection.Module::token int32_t ___token_9; public: inline static int32_t get_offset_of__impl_3() { return static_cast<int32_t>(offsetof(Module_t364935609, ____impl_3)); } inline intptr_t get__impl_3() const { return ____impl_3; } inline intptr_t* get_address_of__impl_3() { return &____impl_3; } inline void set__impl_3(intptr_t value) { ____impl_3 = value; } inline static int32_t get_offset_of_assembly_4() { return static_cast<int32_t>(offsetof(Module_t364935609, ___assembly_4)); } inline Assembly_t2742862503 * get_assembly_4() const { return ___assembly_4; } inline Assembly_t2742862503 ** get_address_of_assembly_4() { return &___assembly_4; } inline void set_assembly_4(Assembly_t2742862503 * value) { ___assembly_4 = value; Il2CppCodeGenWriteBarrier((&___assembly_4), value); } inline static int32_t get_offset_of_fqname_5() { return static_cast<int32_t>(offsetof(Module_t364935609, ___fqname_5)); } inline String_t* get_fqname_5() const { return ___fqname_5; } inline String_t** get_address_of_fqname_5() { return &___fqname_5; } inline void set_fqname_5(String_t* value) { ___fqname_5 = value; Il2CppCodeGenWriteBarrier((&___fqname_5), value); } inline static int32_t get_offset_of_name_6() { return static_cast<int32_t>(offsetof(Module_t364935609, ___name_6)); } inline String_t* get_name_6() const { return ___name_6; } inline String_t** get_address_of_name_6() { return &___name_6; } inline void set_name_6(String_t* value) { ___name_6 = value; Il2CppCodeGenWriteBarrier((&___name_6), value); } inline static int32_t get_offset_of_scopename_7() { return static_cast<int32_t>(offsetof(Module_t364935609, ___scopename_7)); } inline String_t* get_scopename_7() const { return ___scopename_7; } inline String_t** get_address_of_scopename_7() { return &___scopename_7; } inline void set_scopename_7(String_t* value) { ___scopename_7 = value; Il2CppCodeGenWriteBarrier((&___scopename_7), value); } inline static int32_t get_offset_of_is_resource_8() { return static_cast<int32_t>(offsetof(Module_t364935609, ___is_resource_8)); } inline bool get_is_resource_8() const { return ___is_resource_8; } inline bool* get_address_of_is_resource_8() { return &___is_resource_8; } inline void set_is_resource_8(bool value) { ___is_resource_8 = value; } inline static int32_t get_offset_of_token_9() { return static_cast<int32_t>(offsetof(Module_t364935609, ___token_9)); } inline int32_t get_token_9() const { return ___token_9; } inline int32_t* get_address_of_token_9() { return &___token_9; } inline void set_token_9(int32_t value) { ___token_9 = value; } }; struct Module_t364935609_StaticFields { public: // System.Reflection.TypeFilter System.Reflection.Module::FilterTypeName TypeFilter_t1745845478 * ___FilterTypeName_1; // System.Reflection.TypeFilter System.Reflection.Module::FilterTypeNameIgnoreCase TypeFilter_t1745845478 * ___FilterTypeNameIgnoreCase_2; public: inline static int32_t get_offset_of_FilterTypeName_1() { return static_cast<int32_t>(offsetof(Module_t364935609_StaticFields, ___FilterTypeName_1)); } inline TypeFilter_t1745845478 * get_FilterTypeName_1() const { return ___FilterTypeName_1; } inline TypeFilter_t1745845478 ** get_address_of_FilterTypeName_1() { return &___FilterTypeName_1; } inline void set_FilterTypeName_1(TypeFilter_t1745845478 * value) { ___FilterTypeName_1 = value; Il2CppCodeGenWriteBarrier((&___FilterTypeName_1), value); } inline static int32_t get_offset_of_FilterTypeNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Module_t364935609_StaticFields, ___FilterTypeNameIgnoreCase_2)); } inline TypeFilter_t1745845478 * get_FilterTypeNameIgnoreCase_2() const { return ___FilterTypeNameIgnoreCase_2; } inline TypeFilter_t1745845478 ** get_address_of_FilterTypeNameIgnoreCase_2() { return &___FilterTypeNameIgnoreCase_2; } inline void set_FilterTypeNameIgnoreCase_2(TypeFilter_t1745845478 * value) { ___FilterTypeNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((&___FilterTypeNameIgnoreCase_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MODULE_T364935609_H #ifndef TOOLBOXITEMFILTERATTRIBUTE_T2268705424_H #define TOOLBOXITEMFILTERATTRIBUTE_T2268705424_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.ToolboxItemFilterAttribute struct ToolboxItemFilterAttribute_t2268705424 : public Attribute_t2739832645 { public: // System.String System.ComponentModel.ToolboxItemFilterAttribute::Filter String_t* ___Filter_0; // System.ComponentModel.ToolboxItemFilterType System.ComponentModel.ToolboxItemFilterAttribute::ItemFilterType int32_t ___ItemFilterType_1; public: inline static int32_t get_offset_of_Filter_0() { return static_cast<int32_t>(offsetof(ToolboxItemFilterAttribute_t2268705424, ___Filter_0)); } inline String_t* get_Filter_0() const { return ___Filter_0; } inline String_t** get_address_of_Filter_0() { return &___Filter_0; } inline void set_Filter_0(String_t* value) { ___Filter_0 = value; Il2CppCodeGenWriteBarrier((&___Filter_0), value); } inline static int32_t get_offset_of_ItemFilterType_1() { return static_cast<int32_t>(offsetof(ToolboxItemFilterAttribute_t2268705424, ___ItemFilterType_1)); } inline int32_t get_ItemFilterType_1() const { return ___ItemFilterType_1; } inline int32_t* get_address_of_ItemFilterType_1() { return &___ItemFilterType_1; } inline void set_ItemFilterType_1(int32_t value) { ___ItemFilterType_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TOOLBOXITEMFILTERATTRIBUTE_T2268705424_H #ifndef IPADDRESS_T2830710878_H #define IPADDRESS_T2830710878_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.IPAddress struct IPAddress_t2830710878 : public RuntimeObject { public: // System.Int64 System.Net.IPAddress::m_Address int64_t ___m_Address_0; // System.Net.Sockets.AddressFamily System.Net.IPAddress::m_Family int32_t ___m_Family_1; // System.UInt16[] System.Net.IPAddress::m_Numbers UInt16U5BU5D_t1255862157* ___m_Numbers_2; // System.Int64 System.Net.IPAddress::m_ScopeId int64_t ___m_ScopeId_3; public: inline static int32_t get_offset_of_m_Address_0() { return static_cast<int32_t>(offsetof(IPAddress_t2830710878, ___m_Address_0)); } inline int64_t get_m_Address_0() const { return ___m_Address_0; } inline int64_t* get_address_of_m_Address_0() { return &___m_Address_0; } inline void set_m_Address_0(int64_t value) { ___m_Address_0 = value; } inline static int32_t get_offset_of_m_Family_1() { return static_cast<int32_t>(offsetof(IPAddress_t2830710878, ___m_Family_1)); } inline int32_t get_m_Family_1() const { return ___m_Family_1; } inline int32_t* get_address_of_m_Family_1() { return &___m_Family_1; } inline void set_m_Family_1(int32_t value) { ___m_Family_1 = value; } inline static int32_t get_offset_of_m_Numbers_2() { return static_cast<int32_t>(offsetof(IPAddress_t2830710878, ___m_Numbers_2)); } inline UInt16U5BU5D_t1255862157* get_m_Numbers_2() const { return ___m_Numbers_2; } inline UInt16U5BU5D_t1255862157** get_address_of_m_Numbers_2() { return &___m_Numbers_2; } inline void set_m_Numbers_2(UInt16U5BU5D_t1255862157* value) { ___m_Numbers_2 = value; Il2CppCodeGenWriteBarrier((&___m_Numbers_2), value); } inline static int32_t get_offset_of_m_ScopeId_3() { return static_cast<int32_t>(offsetof(IPAddress_t2830710878, ___m_ScopeId_3)); } inline int64_t get_m_ScopeId_3() const { return ___m_ScopeId_3; } inline int64_t* get_address_of_m_ScopeId_3() { return &___m_ScopeId_3; } inline void set_m_ScopeId_3(int64_t value) { ___m_ScopeId_3 = value; } }; struct IPAddress_t2830710878_StaticFields { public: // System.Net.IPAddress System.Net.IPAddress::Any IPAddress_t2830710878 * ___Any_4; // System.Net.IPAddress System.Net.IPAddress::Broadcast IPAddress_t2830710878 * ___Broadcast_5; // System.Net.IPAddress System.Net.IPAddress::Loopback IPAddress_t2830710878 * ___Loopback_6; // System.Net.IPAddress System.Net.IPAddress::None IPAddress_t2830710878 * ___None_7; // System.Net.IPAddress System.Net.IPAddress::IPv6Any IPAddress_t2830710878 * ___IPv6Any_8; // System.Net.IPAddress System.Net.IPAddress::IPv6Loopback IPAddress_t2830710878 * ___IPv6Loopback_9; // System.Net.IPAddress System.Net.IPAddress::IPv6None IPAddress_t2830710878 * ___IPv6None_10; public: inline static int32_t get_offset_of_Any_4() { return static_cast<int32_t>(offsetof(IPAddress_t2830710878_StaticFields, ___Any_4)); } inline IPAddress_t2830710878 * get_Any_4() const { return ___Any_4; } inline IPAddress_t2830710878 ** get_address_of_Any_4() { return &___Any_4; } inline void set_Any_4(IPAddress_t2830710878 * value) { ___Any_4 = value; Il2CppCodeGenWriteBarrier((&___Any_4), value); } inline static int32_t get_offset_of_Broadcast_5() { return static_cast<int32_t>(offsetof(IPAddress_t2830710878_StaticFields, ___Broadcast_5)); } inline IPAddress_t2830710878 * get_Broadcast_5() const { return ___Broadcast_5; } inline IPAddress_t2830710878 ** get_address_of_Broadcast_5() { return &___Broadcast_5; } inline void set_Broadcast_5(IPAddress_t2830710878 * value) { ___Broadcast_5 = value; Il2CppCodeGenWriteBarrier((&___Broadcast_5), value); } inline static int32_t get_offset_of_Loopback_6() { return static_cast<int32_t>(offsetof(IPAddress_t2830710878_StaticFields, ___Loopback_6)); } inline IPAddress_t2830710878 * get_Loopback_6() const { return ___Loopback_6; } inline IPAddress_t2830710878 ** get_address_of_Loopback_6() { return &___Loopback_6; } inline void set_Loopback_6(IPAddress_t2830710878 * value) { ___Loopback_6 = value; Il2CppCodeGenWriteBarrier((&___Loopback_6), value); } inline static int32_t get_offset_of_None_7() { return static_cast<int32_t>(offsetof(IPAddress_t2830710878_StaticFields, ___None_7)); } inline IPAddress_t2830710878 * get_None_7() const { return ___None_7; } inline IPAddress_t2830710878 ** get_address_of_None_7() { return &___None_7; } inline void set_None_7(IPAddress_t2830710878 * value) { ___None_7 = value; Il2CppCodeGenWriteBarrier((&___None_7), value); } inline static int32_t get_offset_of_IPv6Any_8() { return static_cast<int32_t>(offsetof(IPAddress_t2830710878_StaticFields, ___IPv6Any_8)); } inline IPAddress_t2830710878 * get_IPv6Any_8() const { return ___IPv6Any_8; } inline IPAddress_t2830710878 ** get_address_of_IPv6Any_8() { return &___IPv6Any_8; } inline void set_IPv6Any_8(IPAddress_t2830710878 * value) { ___IPv6Any_8 = value; Il2CppCodeGenWriteBarrier((&___IPv6Any_8), value); } inline static int32_t get_offset_of_IPv6Loopback_9() { return static_cast<int32_t>(offsetof(IPAddress_t2830710878_StaticFields, ___IPv6Loopback_9)); } inline IPAddress_t2830710878 * get_IPv6Loopback_9() const { return ___IPv6Loopback_9; } inline IPAddress_t2830710878 ** get_address_of_IPv6Loopback_9() { return &___IPv6Loopback_9; } inline void set_IPv6Loopback_9(IPAddress_t2830710878 * value) { ___IPv6Loopback_9 = value; Il2CppCodeGenWriteBarrier((&___IPv6Loopback_9), value); } inline static int32_t get_offset_of_IPv6None_10() { return static_cast<int32_t>(offsetof(IPAddress_t2830710878_StaticFields, ___IPv6None_10)); } inline IPAddress_t2830710878 * get_IPv6None_10() const { return ___IPv6None_10; } inline IPAddress_t2830710878 ** get_address_of_IPv6None_10() { return &___IPv6None_10; } inline void set_IPv6None_10(IPAddress_t2830710878 * value) { ___IPv6None_10 = value; Il2CppCodeGenWriteBarrier((&___IPv6None_10), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // IPADDRESS_T2830710878_H #ifndef MULTICASTDELEGATE_T2442382558_H #define MULTICASTDELEGATE_T2442382558_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.MulticastDelegate struct MulticastDelegate_t2442382558 : public Delegate_t2639791074 { public: // System.MulticastDelegate System.MulticastDelegate::prev MulticastDelegate_t2442382558 * ___prev_9; // System.MulticastDelegate System.MulticastDelegate::kpm_next MulticastDelegate_t2442382558 * ___kpm_next_10; public: inline static int32_t get_offset_of_prev_9() { return static_cast<int32_t>(offsetof(MulticastDelegate_t2442382558, ___prev_9)); } inline MulticastDelegate_t2442382558 * get_prev_9() const { return ___prev_9; } inline MulticastDelegate_t2442382558 ** get_address_of_prev_9() { return &___prev_9; } inline void set_prev_9(MulticastDelegate_t2442382558 * value) { ___prev_9 = value; Il2CppCodeGenWriteBarrier((&___prev_9), value); } inline static int32_t get_offset_of_kpm_next_10() { return static_cast<int32_t>(offsetof(MulticastDelegate_t2442382558, ___kpm_next_10)); } inline MulticastDelegate_t2442382558 * get_kpm_next_10() const { return ___kpm_next_10; } inline MulticastDelegate_t2442382558 ** get_address_of_kpm_next_10() { return &___kpm_next_10; } inline void set_kpm_next_10(MulticastDelegate_t2442382558 * value) { ___kpm_next_10 = value; Il2CppCodeGenWriteBarrier((&___kpm_next_10), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MULTICASTDELEGATE_T2442382558_H #ifndef X509ENHANCEDKEYUSAGEEXTENSION_T778057432_H #define X509ENHANCEDKEYUSAGEEXTENSION_T778057432_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension struct X509EnhancedKeyUsageExtension_t778057432 : public X509Extension_t1134947644 { public: // System.Security.Cryptography.OidCollection System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension::_enhKeyUsage OidCollection_t5760417 * ____enhKeyUsage_4; // System.Security.Cryptography.AsnDecodeStatus System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension::_status int32_t ____status_5; public: inline static int32_t get_offset_of__enhKeyUsage_4() { return static_cast<int32_t>(offsetof(X509EnhancedKeyUsageExtension_t778057432, ____enhKeyUsage_4)); } inline OidCollection_t5760417 * get__enhKeyUsage_4() const { return ____enhKeyUsage_4; } inline OidCollection_t5760417 ** get_address_of__enhKeyUsage_4() { return &____enhKeyUsage_4; } inline void set__enhKeyUsage_4(OidCollection_t5760417 * value) { ____enhKeyUsage_4 = value; Il2CppCodeGenWriteBarrier((&____enhKeyUsage_4), value); } inline static int32_t get_offset_of__status_5() { return static_cast<int32_t>(offsetof(X509EnhancedKeyUsageExtension_t778057432, ____status_5)); } inline int32_t get__status_5() const { return ____status_5; } inline int32_t* get_address_of__status_5() { return &____status_5; } inline void set__status_5(int32_t value) { ____status_5 = value; } }; struct X509EnhancedKeyUsageExtension_t778057432_StaticFields { public: // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension::<>f__switch$mapE Dictionary_2_t2052754070 * ___U3CU3Ef__switchU24mapE_6; public: inline static int32_t get_offset_of_U3CU3Ef__switchU24mapE_6() { return static_cast<int32_t>(offsetof(X509EnhancedKeyUsageExtension_t778057432_StaticFields, ___U3CU3Ef__switchU24mapE_6)); } inline Dictionary_2_t2052754070 * get_U3CU3Ef__switchU24mapE_6() const { return ___U3CU3Ef__switchU24mapE_6; } inline Dictionary_2_t2052754070 ** get_address_of_U3CU3Ef__switchU24mapE_6() { return &___U3CU3Ef__switchU24mapE_6; } inline void set_U3CU3Ef__switchU24mapE_6(Dictionary_2_t2052754070 * value) { ___U3CU3Ef__switchU24mapE_6 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24mapE_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // X509ENHANCEDKEYUSAGEEXTENSION_T778057432_H #ifndef WEBREQUEST_T294146427_H #define WEBREQUEST_T294146427_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.WebRequest struct WebRequest_t294146427 : public MarshalByRefObject_t3072832018 { public: // System.Net.Security.AuthenticationLevel System.Net.WebRequest::authentication_level int32_t ___authentication_level_4; public: inline static int32_t get_offset_of_authentication_level_4() { return static_cast<int32_t>(offsetof(WebRequest_t294146427, ___authentication_level_4)); } inline int32_t get_authentication_level_4() const { return ___authentication_level_4; } inline int32_t* get_address_of_authentication_level_4() { return &___authentication_level_4; } inline void set_authentication_level_4(int32_t value) { ___authentication_level_4 = value; } }; struct WebRequest_t294146427_StaticFields { public: // System.Collections.Specialized.HybridDictionary System.Net.WebRequest::prefixes HybridDictionary_t979529962 * ___prefixes_1; // System.Boolean System.Net.WebRequest::isDefaultWebProxySet bool ___isDefaultWebProxySet_2; // System.Net.IWebProxy System.Net.WebRequest::defaultWebProxy RuntimeObject* ___defaultWebProxy_3; // System.Object System.Net.WebRequest::lockobj RuntimeObject * ___lockobj_5; public: inline static int32_t get_offset_of_prefixes_1() { return static_cast<int32_t>(offsetof(WebRequest_t294146427_StaticFields, ___prefixes_1)); } inline HybridDictionary_t979529962 * get_prefixes_1() const { return ___prefixes_1; } inline HybridDictionary_t979529962 ** get_address_of_prefixes_1() { return &___prefixes_1; } inline void set_prefixes_1(HybridDictionary_t979529962 * value) { ___prefixes_1 = value; Il2CppCodeGenWriteBarrier((&___prefixes_1), value); } inline static int32_t get_offset_of_isDefaultWebProxySet_2() { return static_cast<int32_t>(offsetof(WebRequest_t294146427_StaticFields, ___isDefaultWebProxySet_2)); } inline bool get_isDefaultWebProxySet_2() const { return ___isDefaultWebProxySet_2; } inline bool* get_address_of_isDefaultWebProxySet_2() { return &___isDefaultWebProxySet_2; } inline void set_isDefaultWebProxySet_2(bool value) { ___isDefaultWebProxySet_2 = value; } inline static int32_t get_offset_of_defaultWebProxy_3() { return static_cast<int32_t>(offsetof(WebRequest_t294146427_StaticFields, ___defaultWebProxy_3)); } inline RuntimeObject* get_defaultWebProxy_3() const { return ___defaultWebProxy_3; } inline RuntimeObject** get_address_of_defaultWebProxy_3() { return &___defaultWebProxy_3; } inline void set_defaultWebProxy_3(RuntimeObject* value) { ___defaultWebProxy_3 = value; Il2CppCodeGenWriteBarrier((&___defaultWebProxy_3), value); } inline static int32_t get_offset_of_lockobj_5() { return static_cast<int32_t>(offsetof(WebRequest_t294146427_StaticFields, ___lockobj_5)); } inline RuntimeObject * get_lockobj_5() const { return ___lockobj_5; } inline RuntimeObject ** get_address_of_lockobj_5() { return &___lockobj_5; } inline void set_lockobj_5(RuntimeObject * value) { ___lockobj_5 = value; Il2CppCodeGenWriteBarrier((&___lockobj_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WEBREQUEST_T294146427_H #ifndef REFRESHPROPERTIESATTRIBUTE_T720074670_H #define REFRESHPROPERTIESATTRIBUTE_T720074670_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.RefreshPropertiesAttribute struct RefreshPropertiesAttribute_t720074670 : public Attribute_t2739832645 { public: // System.ComponentModel.RefreshProperties System.ComponentModel.RefreshPropertiesAttribute::refresh int32_t ___refresh_0; public: inline static int32_t get_offset_of_refresh_0() { return static_cast<int32_t>(offsetof(RefreshPropertiesAttribute_t720074670, ___refresh_0)); } inline int32_t get_refresh_0() const { return ___refresh_0; } inline int32_t* get_address_of_refresh_0() { return &___refresh_0; } inline void set_refresh_0(int32_t value) { ___refresh_0 = value; } }; struct RefreshPropertiesAttribute_t720074670_StaticFields { public: // System.ComponentModel.RefreshPropertiesAttribute System.ComponentModel.RefreshPropertiesAttribute::All RefreshPropertiesAttribute_t720074670 * ___All_1; // System.ComponentModel.RefreshPropertiesAttribute System.ComponentModel.RefreshPropertiesAttribute::Default RefreshPropertiesAttribute_t720074670 * ___Default_2; // System.ComponentModel.RefreshPropertiesAttribute System.ComponentModel.RefreshPropertiesAttribute::Repaint RefreshPropertiesAttribute_t720074670 * ___Repaint_3; public: inline static int32_t get_offset_of_All_1() { return static_cast<int32_t>(offsetof(RefreshPropertiesAttribute_t720074670_StaticFields, ___All_1)); } inline RefreshPropertiesAttribute_t720074670 * get_All_1() const { return ___All_1; } inline RefreshPropertiesAttribute_t720074670 ** get_address_of_All_1() { return &___All_1; } inline void set_All_1(RefreshPropertiesAttribute_t720074670 * value) { ___All_1 = value; Il2CppCodeGenWriteBarrier((&___All_1), value); } inline static int32_t get_offset_of_Default_2() { return static_cast<int32_t>(offsetof(RefreshPropertiesAttribute_t720074670_StaticFields, ___Default_2)); } inline RefreshPropertiesAttribute_t720074670 * get_Default_2() const { return ___Default_2; } inline RefreshPropertiesAttribute_t720074670 ** get_address_of_Default_2() { return &___Default_2; } inline void set_Default_2(RefreshPropertiesAttribute_t720074670 * value) { ___Default_2 = value; Il2CppCodeGenWriteBarrier((&___Default_2), value); } inline static int32_t get_offset_of_Repaint_3() { return static_cast<int32_t>(offsetof(RefreshPropertiesAttribute_t720074670_StaticFields, ___Repaint_3)); } inline RefreshPropertiesAttribute_t720074670 * get_Repaint_3() const { return ___Repaint_3; } inline RefreshPropertiesAttribute_t720074670 ** get_address_of_Repaint_3() { return &___Repaint_3; } inline void set_Repaint_3(RefreshPropertiesAttribute_t720074670 * value) { ___Repaint_3 = value; Il2CppCodeGenWriteBarrier((&___Repaint_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // REFRESHPROPERTIESATTRIBUTE_T720074670_H #ifndef DATETIME_T718238015_H #define DATETIME_T718238015_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTime struct DateTime_t718238015 { public: // System.TimeSpan System.DateTime::ticks TimeSpan_t1687785723 ___ticks_10; // System.DateTimeKind System.DateTime::kind int32_t ___kind_11; public: inline static int32_t get_offset_of_ticks_10() { return static_cast<int32_t>(offsetof(DateTime_t718238015, ___ticks_10)); } inline TimeSpan_t1687785723 get_ticks_10() const { return ___ticks_10; } inline TimeSpan_t1687785723 * get_address_of_ticks_10() { return &___ticks_10; } inline void set_ticks_10(TimeSpan_t1687785723 value) { ___ticks_10 = value; } inline static int32_t get_offset_of_kind_11() { return static_cast<int32_t>(offsetof(DateTime_t718238015, ___kind_11)); } inline int32_t get_kind_11() const { return ___kind_11; } inline int32_t* get_address_of_kind_11() { return &___kind_11; } inline void set_kind_11(int32_t value) { ___kind_11 = value; } }; struct DateTime_t718238015_StaticFields { public: // System.DateTime System.DateTime::MaxValue DateTime_t718238015 ___MaxValue_12; // System.DateTime System.DateTime::MinValue DateTime_t718238015 ___MinValue_13; // System.String[] System.DateTime::ParseTimeFormats StringU5BU5D_t1187188029* ___ParseTimeFormats_14; // System.String[] System.DateTime::ParseYearDayMonthFormats StringU5BU5D_t1187188029* ___ParseYearDayMonthFormats_15; // System.String[] System.DateTime::ParseYearMonthDayFormats StringU5BU5D_t1187188029* ___ParseYearMonthDayFormats_16; // System.String[] System.DateTime::ParseDayMonthYearFormats StringU5BU5D_t1187188029* ___ParseDayMonthYearFormats_17; // System.String[] System.DateTime::ParseMonthDayYearFormats StringU5BU5D_t1187188029* ___ParseMonthDayYearFormats_18; // System.String[] System.DateTime::MonthDayShortFormats StringU5BU5D_t1187188029* ___MonthDayShortFormats_19; // System.String[] System.DateTime::DayMonthShortFormats StringU5BU5D_t1187188029* ___DayMonthShortFormats_20; // System.Int32[] System.DateTime::daysmonth Int32U5BU5D_t1883881640* ___daysmonth_21; // System.Int32[] System.DateTime::daysmonthleap Int32U5BU5D_t1883881640* ___daysmonthleap_22; // System.Object System.DateTime::to_local_time_span_object RuntimeObject * ___to_local_time_span_object_23; // System.Int64 System.DateTime::last_now int64_t ___last_now_24; public: inline static int32_t get_offset_of_MaxValue_12() { return static_cast<int32_t>(offsetof(DateTime_t718238015_StaticFields, ___MaxValue_12)); } inline DateTime_t718238015 get_MaxValue_12() const { return ___MaxValue_12; } inline DateTime_t718238015 * get_address_of_MaxValue_12() { return &___MaxValue_12; } inline void set_MaxValue_12(DateTime_t718238015 value) { ___MaxValue_12 = value; } inline static int32_t get_offset_of_MinValue_13() { return static_cast<int32_t>(offsetof(DateTime_t718238015_StaticFields, ___MinValue_13)); } inline DateTime_t718238015 get_MinValue_13() const { return ___MinValue_13; } inline DateTime_t718238015 * get_address_of_MinValue_13() { return &___MinValue_13; } inline void set_MinValue_13(DateTime_t718238015 value) { ___MinValue_13 = value; } inline static int32_t get_offset_of_ParseTimeFormats_14() { return static_cast<int32_t>(offsetof(DateTime_t718238015_StaticFields, ___ParseTimeFormats_14)); } inline StringU5BU5D_t1187188029* get_ParseTimeFormats_14() const { return ___ParseTimeFormats_14; } inline StringU5BU5D_t1187188029** get_address_of_ParseTimeFormats_14() { return &___ParseTimeFormats_14; } inline void set_ParseTimeFormats_14(StringU5BU5D_t1187188029* value) { ___ParseTimeFormats_14 = value; Il2CppCodeGenWriteBarrier((&___ParseTimeFormats_14), value); } inline static int32_t get_offset_of_ParseYearDayMonthFormats_15() { return static_cast<int32_t>(offsetof(DateTime_t718238015_StaticFields, ___ParseYearDayMonthFormats_15)); } inline StringU5BU5D_t1187188029* get_ParseYearDayMonthFormats_15() const { return ___ParseYearDayMonthFormats_15; } inline StringU5BU5D_t1187188029** get_address_of_ParseYearDayMonthFormats_15() { return &___ParseYearDayMonthFormats_15; } inline void set_ParseYearDayMonthFormats_15(StringU5BU5D_t1187188029* value) { ___ParseYearDayMonthFormats_15 = value; Il2CppCodeGenWriteBarrier((&___ParseYearDayMonthFormats_15), value); } inline static int32_t get_offset_of_ParseYearMonthDayFormats_16() { return static_cast<int32_t>(offsetof(DateTime_t718238015_StaticFields, ___ParseYearMonthDayFormats_16)); } inline StringU5BU5D_t1187188029* get_ParseYearMonthDayFormats_16() const { return ___ParseYearMonthDayFormats_16; } inline StringU5BU5D_t1187188029** get_address_of_ParseYearMonthDayFormats_16() { return &___ParseYearMonthDayFormats_16; } inline void set_ParseYearMonthDayFormats_16(StringU5BU5D_t1187188029* value) { ___ParseYearMonthDayFormats_16 = value; Il2CppCodeGenWriteBarrier((&___ParseYearMonthDayFormats_16), value); } inline static int32_t get_offset_of_ParseDayMonthYearFormats_17() { return static_cast<int32_t>(offsetof(DateTime_t718238015_StaticFields, ___ParseDayMonthYearFormats_17)); } inline StringU5BU5D_t1187188029* get_ParseDayMonthYearFormats_17() const { return ___ParseDayMonthYearFormats_17; } inline StringU5BU5D_t1187188029** get_address_of_ParseDayMonthYearFormats_17() { return &___ParseDayMonthYearFormats_17; } inline void set_ParseDayMonthYearFormats_17(StringU5BU5D_t1187188029* value) { ___ParseDayMonthYearFormats_17 = value; Il2CppCodeGenWriteBarrier((&___ParseDayMonthYearFormats_17), value); } inline static int32_t get_offset_of_ParseMonthDayYearFormats_18() { return static_cast<int32_t>(offsetof(DateTime_t718238015_StaticFields, ___ParseMonthDayYearFormats_18)); } inline StringU5BU5D_t1187188029* get_ParseMonthDayYearFormats_18() const { return ___ParseMonthDayYearFormats_18; } inline StringU5BU5D_t1187188029** get_address_of_ParseMonthDayYearFormats_18() { return &___ParseMonthDayYearFormats_18; } inline void set_ParseMonthDayYearFormats_18(StringU5BU5D_t1187188029* value) { ___ParseMonthDayYearFormats_18 = value; Il2CppCodeGenWriteBarrier((&___ParseMonthDayYearFormats_18), value); } inline static int32_t get_offset_of_MonthDayShortFormats_19() { return static_cast<int32_t>(offsetof(DateTime_t718238015_StaticFields, ___MonthDayShortFormats_19)); } inline StringU5BU5D_t1187188029* get_MonthDayShortFormats_19() const { return ___MonthDayShortFormats_19; } inline StringU5BU5D_t1187188029** get_address_of_MonthDayShortFormats_19() { return &___MonthDayShortFormats_19; } inline void set_MonthDayShortFormats_19(StringU5BU5D_t1187188029* value) { ___MonthDayShortFormats_19 = value; Il2CppCodeGenWriteBarrier((&___MonthDayShortFormats_19), value); } inline static int32_t get_offset_of_DayMonthShortFormats_20() { return static_cast<int32_t>(offsetof(DateTime_t718238015_StaticFields, ___DayMonthShortFormats_20)); } inline StringU5BU5D_t1187188029* get_DayMonthShortFormats_20() const { return ___DayMonthShortFormats_20; } inline StringU5BU5D_t1187188029** get_address_of_DayMonthShortFormats_20() { return &___DayMonthShortFormats_20; } inline void set_DayMonthShortFormats_20(StringU5BU5D_t1187188029* value) { ___DayMonthShortFormats_20 = value; Il2CppCodeGenWriteBarrier((&___DayMonthShortFormats_20), value); } inline static int32_t get_offset_of_daysmonth_21() { return static_cast<int32_t>(offsetof(DateTime_t718238015_StaticFields, ___daysmonth_21)); } inline Int32U5BU5D_t1883881640* get_daysmonth_21() const { return ___daysmonth_21; } inline Int32U5BU5D_t1883881640** get_address_of_daysmonth_21() { return &___daysmonth_21; } inline void set_daysmonth_21(Int32U5BU5D_t1883881640* value) { ___daysmonth_21 = value; Il2CppCodeGenWriteBarrier((&___daysmonth_21), value); } inline static int32_t get_offset_of_daysmonthleap_22() { return static_cast<int32_t>(offsetof(DateTime_t718238015_StaticFields, ___daysmonthleap_22)); } inline Int32U5BU5D_t1883881640* get_daysmonthleap_22() const { return ___daysmonthleap_22; } inline Int32U5BU5D_t1883881640** get_address_of_daysmonthleap_22() { return &___daysmonthleap_22; } inline void set_daysmonthleap_22(Int32U5BU5D_t1883881640* value) { ___daysmonthleap_22 = value; Il2CppCodeGenWriteBarrier((&___daysmonthleap_22), value); } inline static int32_t get_offset_of_to_local_time_span_object_23() { return static_cast<int32_t>(offsetof(DateTime_t718238015_StaticFields, ___to_local_time_span_object_23)); } inline RuntimeObject * get_to_local_time_span_object_23() const { return ___to_local_time_span_object_23; } inline RuntimeObject ** get_address_of_to_local_time_span_object_23() { return &___to_local_time_span_object_23; } inline void set_to_local_time_span_object_23(RuntimeObject * value) { ___to_local_time_span_object_23 = value; Il2CppCodeGenWriteBarrier((&___to_local_time_span_object_23), value); } inline static int32_t get_offset_of_last_now_24() { return static_cast<int32_t>(offsetof(DateTime_t718238015_StaticFields, ___last_now_24)); } inline int64_t get_last_now_24() const { return ___last_now_24; } inline int64_t* get_address_of_last_now_24() { return &___last_now_24; } inline void set_last_now_24(int64_t value) { ___last_now_24 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DATETIME_T718238015_H #ifndef TYPE_T_H #define TYPE_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_t1916376386 ____impl_1; public: inline static int32_t get_offset_of__impl_1() { return static_cast<int32_t>(offsetof(Type_t, ____impl_1)); } inline RuntimeTypeHandle_t1916376386 get__impl_1() const { return ____impl_1; } inline RuntimeTypeHandle_t1916376386 * get_address_of__impl_1() { return &____impl_1; } inline void set__impl_1(RuntimeTypeHandle_t1916376386 value) { ____impl_1 = value; } }; struct Type_t_StaticFields { public: // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_2; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t89919618* ___EmptyTypes_3; // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t1554259723 * ___FilterAttribute_4; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t1554259723 * ___FilterName_5; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t1554259723 * ___FilterNameIgnoreCase_6; // System.Object System.Type::Missing RuntimeObject * ___Missing_7; public: inline static int32_t get_offset_of_Delimiter_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_2)); } inline Il2CppChar get_Delimiter_2() const { return ___Delimiter_2; } inline Il2CppChar* get_address_of_Delimiter_2() { return &___Delimiter_2; } inline void set_Delimiter_2(Il2CppChar value) { ___Delimiter_2 = value; } inline static int32_t get_offset_of_EmptyTypes_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_3)); } inline TypeU5BU5D_t89919618* get_EmptyTypes_3() const { return ___EmptyTypes_3; } inline TypeU5BU5D_t89919618** get_address_of_EmptyTypes_3() { return &___EmptyTypes_3; } inline void set_EmptyTypes_3(TypeU5BU5D_t89919618* value) { ___EmptyTypes_3 = value; Il2CppCodeGenWriteBarrier((&___EmptyTypes_3), value); } inline static int32_t get_offset_of_FilterAttribute_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_4)); } inline MemberFilter_t1554259723 * get_FilterAttribute_4() const { return ___FilterAttribute_4; } inline MemberFilter_t1554259723 ** get_address_of_FilterAttribute_4() { return &___FilterAttribute_4; } inline void set_FilterAttribute_4(MemberFilter_t1554259723 * value) { ___FilterAttribute_4 = value; Il2CppCodeGenWriteBarrier((&___FilterAttribute_4), value); } inline static int32_t get_offset_of_FilterName_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_5)); } inline MemberFilter_t1554259723 * get_FilterName_5() const { return ___FilterName_5; } inline MemberFilter_t1554259723 ** get_address_of_FilterName_5() { return &___FilterName_5; } inline void set_FilterName_5(MemberFilter_t1554259723 * value) { ___FilterName_5 = value; Il2CppCodeGenWriteBarrier((&___FilterName_5), value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_6)); } inline MemberFilter_t1554259723 * get_FilterNameIgnoreCase_6() const { return ___FilterNameIgnoreCase_6; } inline MemberFilter_t1554259723 ** get_address_of_FilterNameIgnoreCase_6() { return &___FilterNameIgnoreCase_6; } inline void set_FilterNameIgnoreCase_6(MemberFilter_t1554259723 * value) { ___FilterNameIgnoreCase_6 = value; Il2CppCodeGenWriteBarrier((&___FilterNameIgnoreCase_6), value); } inline static int32_t get_offset_of_Missing_7() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_7)); } inline RuntimeObject * get_Missing_7() const { return ___Missing_7; } inline RuntimeObject ** get_address_of_Missing_7() { return &___Missing_7; } inline void set_Missing_7(RuntimeObject * value) { ___Missing_7 = value; Il2CppCodeGenWriteBarrier((&___Missing_7), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPE_T_H #ifndef THREAD_T3102188359_H #define THREAD_T3102188359_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.Thread struct Thread_t3102188359 : public CriticalFinalizerObject_t351072040 { public: // System.Int32 System.Threading.Thread::lock_thread_id int32_t ___lock_thread_id_0; // System.IntPtr System.Threading.Thread::system_thread_handle intptr_t ___system_thread_handle_1; // System.Object System.Threading.Thread::cached_culture_info RuntimeObject * ___cached_culture_info_2; // System.IntPtr System.Threading.Thread::unused0 intptr_t ___unused0_3; // System.Boolean System.Threading.Thread::threadpool_thread bool ___threadpool_thread_4; // System.IntPtr System.Threading.Thread::name intptr_t ___name_5; // System.Int32 System.Threading.Thread::name_len int32_t ___name_len_6; // System.Threading.ThreadState System.Threading.Thread::state int32_t ___state_7; // System.Object System.Threading.Thread::abort_exc RuntimeObject * ___abort_exc_8; // System.Int32 System.Threading.Thread::abort_state_handle int32_t ___abort_state_handle_9; // System.Int64 System.Threading.Thread::thread_id int64_t ___thread_id_10; // System.IntPtr System.Threading.Thread::start_notify intptr_t ___start_notify_11; // System.IntPtr System.Threading.Thread::stack_ptr intptr_t ___stack_ptr_12; // System.UIntPtr System.Threading.Thread::static_data uintptr_t ___static_data_13; // System.IntPtr System.Threading.Thread::jit_data intptr_t ___jit_data_14; // System.IntPtr System.Threading.Thread::lock_data intptr_t ___lock_data_15; // System.Object System.Threading.Thread::current_appcontext RuntimeObject * ___current_appcontext_16; // System.Int32 System.Threading.Thread::stack_size int32_t ___stack_size_17; // System.Object System.Threading.Thread::start_obj RuntimeObject * ___start_obj_18; // System.IntPtr System.Threading.Thread::appdomain_refs intptr_t ___appdomain_refs_19; // System.Int32 System.Threading.Thread::interruption_requested int32_t ___interruption_requested_20; // System.IntPtr System.Threading.Thread::suspend_event intptr_t ___suspend_event_21; // System.IntPtr System.Threading.Thread::suspended_event intptr_t ___suspended_event_22; // System.IntPtr System.Threading.Thread::resume_event intptr_t ___resume_event_23; // System.IntPtr System.Threading.Thread::synch_cs intptr_t ___synch_cs_24; // System.IntPtr System.Threading.Thread::serialized_culture_info intptr_t ___serialized_culture_info_25; // System.Int32 System.Threading.Thread::serialized_culture_info_len int32_t ___serialized_culture_info_len_26; // System.IntPtr System.Threading.Thread::serialized_ui_culture_info intptr_t ___serialized_ui_culture_info_27; // System.Int32 System.Threading.Thread::serialized_ui_culture_info_len int32_t ___serialized_ui_culture_info_len_28; // System.Boolean System.Threading.Thread::thread_dump_requested bool ___thread_dump_requested_29; // System.IntPtr System.Threading.Thread::end_stack intptr_t ___end_stack_30; // System.Boolean System.Threading.Thread::thread_interrupt_requested bool ___thread_interrupt_requested_31; // System.Byte System.Threading.Thread::apartment_state uint8_t ___apartment_state_32; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Thread::critical_region_level int32_t ___critical_region_level_33; // System.Int32 System.Threading.Thread::small_id int32_t ___small_id_34; // System.IntPtr System.Threading.Thread::manage_callback intptr_t ___manage_callback_35; // System.Object System.Threading.Thread::pending_exception RuntimeObject * ___pending_exception_36; // System.Threading.ExecutionContext System.Threading.Thread::ec_to_set ExecutionContext_t8583059 * ___ec_to_set_37; // System.IntPtr System.Threading.Thread::interrupt_on_stop intptr_t ___interrupt_on_stop_38; // System.IntPtr System.Threading.Thread::unused3 intptr_t ___unused3_39; // System.IntPtr System.Threading.Thread::unused4 intptr_t ___unused4_40; // System.IntPtr System.Threading.Thread::unused5 intptr_t ___unused5_41; // System.IntPtr System.Threading.Thread::unused6 intptr_t ___unused6_42; // System.MulticastDelegate System.Threading.Thread::threadstart MulticastDelegate_t2442382558 * ___threadstart_45; // System.Int32 System.Threading.Thread::managed_id int32_t ___managed_id_46; // System.Security.Principal.IPrincipal System.Threading.Thread::_principal RuntimeObject* ____principal_47; // System.Boolean System.Threading.Thread::in_currentculture bool ___in_currentculture_50; public: inline static int32_t get_offset_of_lock_thread_id_0() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___lock_thread_id_0)); } inline int32_t get_lock_thread_id_0() const { return ___lock_thread_id_0; } inline int32_t* get_address_of_lock_thread_id_0() { return &___lock_thread_id_0; } inline void set_lock_thread_id_0(int32_t value) { ___lock_thread_id_0 = value; } inline static int32_t get_offset_of_system_thread_handle_1() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___system_thread_handle_1)); } inline intptr_t get_system_thread_handle_1() const { return ___system_thread_handle_1; } inline intptr_t* get_address_of_system_thread_handle_1() { return &___system_thread_handle_1; } inline void set_system_thread_handle_1(intptr_t value) { ___system_thread_handle_1 = value; } inline static int32_t get_offset_of_cached_culture_info_2() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___cached_culture_info_2)); } inline RuntimeObject * get_cached_culture_info_2() const { return ___cached_culture_info_2; } inline RuntimeObject ** get_address_of_cached_culture_info_2() { return &___cached_culture_info_2; } inline void set_cached_culture_info_2(RuntimeObject * value) { ___cached_culture_info_2 = value; Il2CppCodeGenWriteBarrier((&___cached_culture_info_2), value); } inline static int32_t get_offset_of_unused0_3() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___unused0_3)); } inline intptr_t get_unused0_3() const { return ___unused0_3; } inline intptr_t* get_address_of_unused0_3() { return &___unused0_3; } inline void set_unused0_3(intptr_t value) { ___unused0_3 = value; } inline static int32_t get_offset_of_threadpool_thread_4() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___threadpool_thread_4)); } inline bool get_threadpool_thread_4() const { return ___threadpool_thread_4; } inline bool* get_address_of_threadpool_thread_4() { return &___threadpool_thread_4; } inline void set_threadpool_thread_4(bool value) { ___threadpool_thread_4 = value; } inline static int32_t get_offset_of_name_5() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___name_5)); } inline intptr_t get_name_5() const { return ___name_5; } inline intptr_t* get_address_of_name_5() { return &___name_5; } inline void set_name_5(intptr_t value) { ___name_5 = value; } inline static int32_t get_offset_of_name_len_6() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___name_len_6)); } inline int32_t get_name_len_6() const { return ___name_len_6; } inline int32_t* get_address_of_name_len_6() { return &___name_len_6; } inline void set_name_len_6(int32_t value) { ___name_len_6 = value; } inline static int32_t get_offset_of_state_7() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___state_7)); } inline int32_t get_state_7() const { return ___state_7; } inline int32_t* get_address_of_state_7() { return &___state_7; } inline void set_state_7(int32_t value) { ___state_7 = value; } inline static int32_t get_offset_of_abort_exc_8() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___abort_exc_8)); } inline RuntimeObject * get_abort_exc_8() const { return ___abort_exc_8; } inline RuntimeObject ** get_address_of_abort_exc_8() { return &___abort_exc_8; } inline void set_abort_exc_8(RuntimeObject * value) { ___abort_exc_8 = value; Il2CppCodeGenWriteBarrier((&___abort_exc_8), value); } inline static int32_t get_offset_of_abort_state_handle_9() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___abort_state_handle_9)); } inline int32_t get_abort_state_handle_9() const { return ___abort_state_handle_9; } inline int32_t* get_address_of_abort_state_handle_9() { return &___abort_state_handle_9; } inline void set_abort_state_handle_9(int32_t value) { ___abort_state_handle_9 = value; } inline static int32_t get_offset_of_thread_id_10() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___thread_id_10)); } inline int64_t get_thread_id_10() const { return ___thread_id_10; } inline int64_t* get_address_of_thread_id_10() { return &___thread_id_10; } inline void set_thread_id_10(int64_t value) { ___thread_id_10 = value; } inline static int32_t get_offset_of_start_notify_11() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___start_notify_11)); } inline intptr_t get_start_notify_11() const { return ___start_notify_11; } inline intptr_t* get_address_of_start_notify_11() { return &___start_notify_11; } inline void set_start_notify_11(intptr_t value) { ___start_notify_11 = value; } inline static int32_t get_offset_of_stack_ptr_12() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___stack_ptr_12)); } inline intptr_t get_stack_ptr_12() const { return ___stack_ptr_12; } inline intptr_t* get_address_of_stack_ptr_12() { return &___stack_ptr_12; } inline void set_stack_ptr_12(intptr_t value) { ___stack_ptr_12 = value; } inline static int32_t get_offset_of_static_data_13() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___static_data_13)); } inline uintptr_t get_static_data_13() const { return ___static_data_13; } inline uintptr_t* get_address_of_static_data_13() { return &___static_data_13; } inline void set_static_data_13(uintptr_t value) { ___static_data_13 = value; } inline static int32_t get_offset_of_jit_data_14() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___jit_data_14)); } inline intptr_t get_jit_data_14() const { return ___jit_data_14; } inline intptr_t* get_address_of_jit_data_14() { return &___jit_data_14; } inline void set_jit_data_14(intptr_t value) { ___jit_data_14 = value; } inline static int32_t get_offset_of_lock_data_15() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___lock_data_15)); } inline intptr_t get_lock_data_15() const { return ___lock_data_15; } inline intptr_t* get_address_of_lock_data_15() { return &___lock_data_15; } inline void set_lock_data_15(intptr_t value) { ___lock_data_15 = value; } inline static int32_t get_offset_of_current_appcontext_16() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___current_appcontext_16)); } inline RuntimeObject * get_current_appcontext_16() const { return ___current_appcontext_16; } inline RuntimeObject ** get_address_of_current_appcontext_16() { return &___current_appcontext_16; } inline void set_current_appcontext_16(RuntimeObject * value) { ___current_appcontext_16 = value; Il2CppCodeGenWriteBarrier((&___current_appcontext_16), value); } inline static int32_t get_offset_of_stack_size_17() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___stack_size_17)); } inline int32_t get_stack_size_17() const { return ___stack_size_17; } inline int32_t* get_address_of_stack_size_17() { return &___stack_size_17; } inline void set_stack_size_17(int32_t value) { ___stack_size_17 = value; } inline static int32_t get_offset_of_start_obj_18() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___start_obj_18)); } inline RuntimeObject * get_start_obj_18() const { return ___start_obj_18; } inline RuntimeObject ** get_address_of_start_obj_18() { return &___start_obj_18; } inline void set_start_obj_18(RuntimeObject * value) { ___start_obj_18 = value; Il2CppCodeGenWriteBarrier((&___start_obj_18), value); } inline static int32_t get_offset_of_appdomain_refs_19() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___appdomain_refs_19)); } inline intptr_t get_appdomain_refs_19() const { return ___appdomain_refs_19; } inline intptr_t* get_address_of_appdomain_refs_19() { return &___appdomain_refs_19; } inline void set_appdomain_refs_19(intptr_t value) { ___appdomain_refs_19 = value; } inline static int32_t get_offset_of_interruption_requested_20() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___interruption_requested_20)); } inline int32_t get_interruption_requested_20() const { return ___interruption_requested_20; } inline int32_t* get_address_of_interruption_requested_20() { return &___interruption_requested_20; } inline void set_interruption_requested_20(int32_t value) { ___interruption_requested_20 = value; } inline static int32_t get_offset_of_suspend_event_21() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___suspend_event_21)); } inline intptr_t get_suspend_event_21() const { return ___suspend_event_21; } inline intptr_t* get_address_of_suspend_event_21() { return &___suspend_event_21; } inline void set_suspend_event_21(intptr_t value) { ___suspend_event_21 = value; } inline static int32_t get_offset_of_suspended_event_22() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___suspended_event_22)); } inline intptr_t get_suspended_event_22() const { return ___suspended_event_22; } inline intptr_t* get_address_of_suspended_event_22() { return &___suspended_event_22; } inline void set_suspended_event_22(intptr_t value) { ___suspended_event_22 = value; } inline static int32_t get_offset_of_resume_event_23() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___resume_event_23)); } inline intptr_t get_resume_event_23() const { return ___resume_event_23; } inline intptr_t* get_address_of_resume_event_23() { return &___resume_event_23; } inline void set_resume_event_23(intptr_t value) { ___resume_event_23 = value; } inline static int32_t get_offset_of_synch_cs_24() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___synch_cs_24)); } inline intptr_t get_synch_cs_24() const { return ___synch_cs_24; } inline intptr_t* get_address_of_synch_cs_24() { return &___synch_cs_24; } inline void set_synch_cs_24(intptr_t value) { ___synch_cs_24 = value; } inline static int32_t get_offset_of_serialized_culture_info_25() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___serialized_culture_info_25)); } inline intptr_t get_serialized_culture_info_25() const { return ___serialized_culture_info_25; } inline intptr_t* get_address_of_serialized_culture_info_25() { return &___serialized_culture_info_25; } inline void set_serialized_culture_info_25(intptr_t value) { ___serialized_culture_info_25 = value; } inline static int32_t get_offset_of_serialized_culture_info_len_26() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___serialized_culture_info_len_26)); } inline int32_t get_serialized_culture_info_len_26() const { return ___serialized_culture_info_len_26; } inline int32_t* get_address_of_serialized_culture_info_len_26() { return &___serialized_culture_info_len_26; } inline void set_serialized_culture_info_len_26(int32_t value) { ___serialized_culture_info_len_26 = value; } inline static int32_t get_offset_of_serialized_ui_culture_info_27() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___serialized_ui_culture_info_27)); } inline intptr_t get_serialized_ui_culture_info_27() const { return ___serialized_ui_culture_info_27; } inline intptr_t* get_address_of_serialized_ui_culture_info_27() { return &___serialized_ui_culture_info_27; } inline void set_serialized_ui_culture_info_27(intptr_t value) { ___serialized_ui_culture_info_27 = value; } inline static int32_t get_offset_of_serialized_ui_culture_info_len_28() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___serialized_ui_culture_info_len_28)); } inline int32_t get_serialized_ui_culture_info_len_28() const { return ___serialized_ui_culture_info_len_28; } inline int32_t* get_address_of_serialized_ui_culture_info_len_28() { return &___serialized_ui_culture_info_len_28; } inline void set_serialized_ui_culture_info_len_28(int32_t value) { ___serialized_ui_culture_info_len_28 = value; } inline static int32_t get_offset_of_thread_dump_requested_29() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___thread_dump_requested_29)); } inline bool get_thread_dump_requested_29() const { return ___thread_dump_requested_29; } inline bool* get_address_of_thread_dump_requested_29() { return &___thread_dump_requested_29; } inline void set_thread_dump_requested_29(bool value) { ___thread_dump_requested_29 = value; } inline static int32_t get_offset_of_end_stack_30() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___end_stack_30)); } inline intptr_t get_end_stack_30() const { return ___end_stack_30; } inline intptr_t* get_address_of_end_stack_30() { return &___end_stack_30; } inline void set_end_stack_30(intptr_t value) { ___end_stack_30 = value; } inline static int32_t get_offset_of_thread_interrupt_requested_31() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___thread_interrupt_requested_31)); } inline bool get_thread_interrupt_requested_31() const { return ___thread_interrupt_requested_31; } inline bool* get_address_of_thread_interrupt_requested_31() { return &___thread_interrupt_requested_31; } inline void set_thread_interrupt_requested_31(bool value) { ___thread_interrupt_requested_31 = value; } inline static int32_t get_offset_of_apartment_state_32() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___apartment_state_32)); } inline uint8_t get_apartment_state_32() const { return ___apartment_state_32; } inline uint8_t* get_address_of_apartment_state_32() { return &___apartment_state_32; } inline void set_apartment_state_32(uint8_t value) { ___apartment_state_32 = value; } inline static int32_t get_offset_of_critical_region_level_33() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___critical_region_level_33)); } inline int32_t get_critical_region_level_33() const { return ___critical_region_level_33; } inline int32_t* get_address_of_critical_region_level_33() { return &___critical_region_level_33; } inline void set_critical_region_level_33(int32_t value) { ___critical_region_level_33 = value; } inline static int32_t get_offset_of_small_id_34() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___small_id_34)); } inline int32_t get_small_id_34() const { return ___small_id_34; } inline int32_t* get_address_of_small_id_34() { return &___small_id_34; } inline void set_small_id_34(int32_t value) { ___small_id_34 = value; } inline static int32_t get_offset_of_manage_callback_35() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___manage_callback_35)); } inline intptr_t get_manage_callback_35() const { return ___manage_callback_35; } inline intptr_t* get_address_of_manage_callback_35() { return &___manage_callback_35; } inline void set_manage_callback_35(intptr_t value) { ___manage_callback_35 = value; } inline static int32_t get_offset_of_pending_exception_36() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___pending_exception_36)); } inline RuntimeObject * get_pending_exception_36() const { return ___pending_exception_36; } inline RuntimeObject ** get_address_of_pending_exception_36() { return &___pending_exception_36; } inline void set_pending_exception_36(RuntimeObject * value) { ___pending_exception_36 = value; Il2CppCodeGenWriteBarrier((&___pending_exception_36), value); } inline static int32_t get_offset_of_ec_to_set_37() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___ec_to_set_37)); } inline ExecutionContext_t8583059 * get_ec_to_set_37() const { return ___ec_to_set_37; } inline ExecutionContext_t8583059 ** get_address_of_ec_to_set_37() { return &___ec_to_set_37; } inline void set_ec_to_set_37(ExecutionContext_t8583059 * value) { ___ec_to_set_37 = value; Il2CppCodeGenWriteBarrier((&___ec_to_set_37), value); } inline static int32_t get_offset_of_interrupt_on_stop_38() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___interrupt_on_stop_38)); } inline intptr_t get_interrupt_on_stop_38() const { return ___interrupt_on_stop_38; } inline intptr_t* get_address_of_interrupt_on_stop_38() { return &___interrupt_on_stop_38; } inline void set_interrupt_on_stop_38(intptr_t value) { ___interrupt_on_stop_38 = value; } inline static int32_t get_offset_of_unused3_39() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___unused3_39)); } inline intptr_t get_unused3_39() const { return ___unused3_39; } inline intptr_t* get_address_of_unused3_39() { return &___unused3_39; } inline void set_unused3_39(intptr_t value) { ___unused3_39 = value; } inline static int32_t get_offset_of_unused4_40() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___unused4_40)); } inline intptr_t get_unused4_40() const { return ___unused4_40; } inline intptr_t* get_address_of_unused4_40() { return &___unused4_40; } inline void set_unused4_40(intptr_t value) { ___unused4_40 = value; } inline static int32_t get_offset_of_unused5_41() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___unused5_41)); } inline intptr_t get_unused5_41() const { return ___unused5_41; } inline intptr_t* get_address_of_unused5_41() { return &___unused5_41; } inline void set_unused5_41(intptr_t value) { ___unused5_41 = value; } inline static int32_t get_offset_of_unused6_42() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___unused6_42)); } inline intptr_t get_unused6_42() const { return ___unused6_42; } inline intptr_t* get_address_of_unused6_42() { return &___unused6_42; } inline void set_unused6_42(intptr_t value) { ___unused6_42 = value; } inline static int32_t get_offset_of_threadstart_45() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___threadstart_45)); } inline MulticastDelegate_t2442382558 * get_threadstart_45() const { return ___threadstart_45; } inline MulticastDelegate_t2442382558 ** get_address_of_threadstart_45() { return &___threadstart_45; } inline void set_threadstart_45(MulticastDelegate_t2442382558 * value) { ___threadstart_45 = value; Il2CppCodeGenWriteBarrier((&___threadstart_45), value); } inline static int32_t get_offset_of_managed_id_46() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___managed_id_46)); } inline int32_t get_managed_id_46() const { return ___managed_id_46; } inline int32_t* get_address_of_managed_id_46() { return &___managed_id_46; } inline void set_managed_id_46(int32_t value) { ___managed_id_46 = value; } inline static int32_t get_offset_of__principal_47() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ____principal_47)); } inline RuntimeObject* get__principal_47() const { return ____principal_47; } inline RuntimeObject** get_address_of__principal_47() { return &____principal_47; } inline void set__principal_47(RuntimeObject* value) { ____principal_47 = value; Il2CppCodeGenWriteBarrier((&____principal_47), value); } inline static int32_t get_offset_of_in_currentculture_50() { return static_cast<int32_t>(offsetof(Thread_t3102188359, ___in_currentculture_50)); } inline bool get_in_currentculture_50() const { return ___in_currentculture_50; } inline bool* get_address_of_in_currentculture_50() { return &___in_currentculture_50; } inline void set_in_currentculture_50(bool value) { ___in_currentculture_50 = value; } }; struct Thread_t3102188359_StaticFields { public: // System.Collections.Hashtable System.Threading.Thread::datastorehash Hashtable_t448324601 * ___datastorehash_48; // System.Object System.Threading.Thread::datastore_lock RuntimeObject * ___datastore_lock_49; // System.Object System.Threading.Thread::culture_lock RuntimeObject * ___culture_lock_51; public: inline static int32_t get_offset_of_datastorehash_48() { return static_cast<int32_t>(offsetof(Thread_t3102188359_StaticFields, ___datastorehash_48)); } inline Hashtable_t448324601 * get_datastorehash_48() const { return ___datastorehash_48; } inline Hashtable_t448324601 ** get_address_of_datastorehash_48() { return &___datastorehash_48; } inline void set_datastorehash_48(Hashtable_t448324601 * value) { ___datastorehash_48 = value; Il2CppCodeGenWriteBarrier((&___datastorehash_48), value); } inline static int32_t get_offset_of_datastore_lock_49() { return static_cast<int32_t>(offsetof(Thread_t3102188359_StaticFields, ___datastore_lock_49)); } inline RuntimeObject * get_datastore_lock_49() const { return ___datastore_lock_49; } inline RuntimeObject ** get_address_of_datastore_lock_49() { return &___datastore_lock_49; } inline void set_datastore_lock_49(RuntimeObject * value) { ___datastore_lock_49 = value; Il2CppCodeGenWriteBarrier((&___datastore_lock_49), value); } inline static int32_t get_offset_of_culture_lock_51() { return static_cast<int32_t>(offsetof(Thread_t3102188359_StaticFields, ___culture_lock_51)); } inline RuntimeObject * get_culture_lock_51() const { return ___culture_lock_51; } inline RuntimeObject ** get_address_of_culture_lock_51() { return &___culture_lock_51; } inline void set_culture_lock_51(RuntimeObject * value) { ___culture_lock_51 = value; Il2CppCodeGenWriteBarrier((&___culture_lock_51), value); } }; struct Thread_t3102188359_ThreadStaticFields { public: // System.Object[] System.Threading.Thread::local_slots ObjectU5BU5D_t4199014551* ___local_slots_43; // System.Threading.ExecutionContext System.Threading.Thread::_ec ExecutionContext_t8583059 * ____ec_44; public: inline static int32_t get_offset_of_local_slots_43() { return static_cast<int32_t>(offsetof(Thread_t3102188359_ThreadStaticFields, ___local_slots_43)); } inline ObjectU5BU5D_t4199014551* get_local_slots_43() const { return ___local_slots_43; } inline ObjectU5BU5D_t4199014551** get_address_of_local_slots_43() { return &___local_slots_43; } inline void set_local_slots_43(ObjectU5BU5D_t4199014551* value) { ___local_slots_43 = value; Il2CppCodeGenWriteBarrier((&___local_slots_43), value); } inline static int32_t get_offset_of__ec_44() { return static_cast<int32_t>(offsetof(Thread_t3102188359_ThreadStaticFields, ____ec_44)); } inline ExecutionContext_t8583059 * get__ec_44() const { return ____ec_44; } inline ExecutionContext_t8583059 ** get_address_of__ec_44() { return &____ec_44; } inline void set__ec_44(ExecutionContext_t8583059 * value) { ____ec_44 = value; Il2CppCodeGenWriteBarrier((&____ec_44), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // THREAD_T3102188359_H #ifndef X509BASICCONSTRAINTSEXTENSION_T1207207255_H #define X509BASICCONSTRAINTSEXTENSION_T1207207255_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension struct X509BasicConstraintsExtension_t1207207255 : public X509Extension_t1134947644 { public: // System.Boolean System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::_certificateAuthority bool ____certificateAuthority_6; // System.Boolean System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::_hasPathLengthConstraint bool ____hasPathLengthConstraint_7; // System.Int32 System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::_pathLengthConstraint int32_t ____pathLengthConstraint_8; // System.Security.Cryptography.AsnDecodeStatus System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::_status int32_t ____status_9; public: inline static int32_t get_offset_of__certificateAuthority_6() { return static_cast<int32_t>(offsetof(X509BasicConstraintsExtension_t1207207255, ____certificateAuthority_6)); } inline bool get__certificateAuthority_6() const { return ____certificateAuthority_6; } inline bool* get_address_of__certificateAuthority_6() { return &____certificateAuthority_6; } inline void set__certificateAuthority_6(bool value) { ____certificateAuthority_6 = value; } inline static int32_t get_offset_of__hasPathLengthConstraint_7() { return static_cast<int32_t>(offsetof(X509BasicConstraintsExtension_t1207207255, ____hasPathLengthConstraint_7)); } inline bool get__hasPathLengthConstraint_7() const { return ____hasPathLengthConstraint_7; } inline bool* get_address_of__hasPathLengthConstraint_7() { return &____hasPathLengthConstraint_7; } inline void set__hasPathLengthConstraint_7(bool value) { ____hasPathLengthConstraint_7 = value; } inline static int32_t get_offset_of__pathLengthConstraint_8() { return static_cast<int32_t>(offsetof(X509BasicConstraintsExtension_t1207207255, ____pathLengthConstraint_8)); } inline int32_t get__pathLengthConstraint_8() const { return ____pathLengthConstraint_8; } inline int32_t* get_address_of__pathLengthConstraint_8() { return &____pathLengthConstraint_8; } inline void set__pathLengthConstraint_8(int32_t value) { ____pathLengthConstraint_8 = value; } inline static int32_t get_offset_of__status_9() { return static_cast<int32_t>(offsetof(X509BasicConstraintsExtension_t1207207255, ____status_9)); } inline int32_t get__status_9() const { return ____status_9; } inline int32_t* get_address_of__status_9() { return &____status_9; } inline void set__status_9(int32_t value) { ____status_9 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // X509BASICCONSTRAINTSEXTENSION_T1207207255_H #ifndef X509CHAIN_T2226602000_H #define X509CHAIN_T2226602000_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Cryptography.X509Certificates.X509Chain struct X509Chain_t2226602000 : public RuntimeObject { public: // System.Security.Cryptography.X509Certificates.StoreLocation System.Security.Cryptography.X509Certificates.X509Chain::location int32_t ___location_0; // System.Security.Cryptography.X509Certificates.X509ChainElementCollection System.Security.Cryptography.X509Certificates.X509Chain::elements X509ChainElementCollection_t1229866073 * ___elements_1; // System.Security.Cryptography.X509Certificates.X509ChainPolicy System.Security.Cryptography.X509Certificates.X509Chain::policy X509ChainPolicy_t1666388023 * ___policy_2; // System.Security.Cryptography.X509Certificates.X509ChainStatus[] System.Security.Cryptography.X509Certificates.X509Chain::status X509ChainStatusU5BU5D_t1368334163* ___status_3; // System.Int32 System.Security.Cryptography.X509Certificates.X509Chain::max_path_length int32_t ___max_path_length_5; // System.Security.Cryptography.X509Certificates.X500DistinguishedName System.Security.Cryptography.X509Certificates.X509Chain::working_issuer_name X500DistinguishedName_t820240265 * ___working_issuer_name_6; // System.Security.Cryptography.AsymmetricAlgorithm System.Security.Cryptography.X509Certificates.X509Chain::working_public_key AsymmetricAlgorithm_t4157331584 * ___working_public_key_7; // System.Security.Cryptography.X509Certificates.X509ChainElement System.Security.Cryptography.X509Certificates.X509Chain::bce_restriction X509ChainElement_t3017060939 * ___bce_restriction_8; // System.Security.Cryptography.X509Certificates.X509Store System.Security.Cryptography.X509Certificates.X509Chain::roots X509Store_t3464236675 * ___roots_9; // System.Security.Cryptography.X509Certificates.X509Store System.Security.Cryptography.X509Certificates.X509Chain::cas X509Store_t3464236675 * ___cas_10; // System.Security.Cryptography.X509Certificates.X509Certificate2Collection System.Security.Cryptography.X509Certificates.X509Chain::collection X509Certificate2Collection_t3619406075 * ___collection_11; public: inline static int32_t get_offset_of_location_0() { return static_cast<int32_t>(offsetof(X509Chain_t2226602000, ___location_0)); } inline int32_t get_location_0() const { return ___location_0; } inline int32_t* get_address_of_location_0() { return &___location_0; } inline void set_location_0(int32_t value) { ___location_0 = value; } inline static int32_t get_offset_of_elements_1() { return static_cast<int32_t>(offsetof(X509Chain_t2226602000, ___elements_1)); } inline X509ChainElementCollection_t1229866073 * get_elements_1() const { return ___elements_1; } inline X509ChainElementCollection_t1229866073 ** get_address_of_elements_1() { return &___elements_1; } inline void set_elements_1(X509ChainElementCollection_t1229866073 * value) { ___elements_1 = value; Il2CppCodeGenWriteBarrier((&___elements_1), value); } inline static int32_t get_offset_of_policy_2() { return static_cast<int32_t>(offsetof(X509Chain_t2226602000, ___policy_2)); } inline X509ChainPolicy_t1666388023 * get_policy_2() const { return ___policy_2; } inline X509ChainPolicy_t1666388023 ** get_address_of_policy_2() { return &___policy_2; } inline void set_policy_2(X509ChainPolicy_t1666388023 * value) { ___policy_2 = value; Il2CppCodeGenWriteBarrier((&___policy_2), value); } inline static int32_t get_offset_of_status_3() { return static_cast<int32_t>(offsetof(X509Chain_t2226602000, ___status_3)); } inline X509ChainStatusU5BU5D_t1368334163* get_status_3() const { return ___status_3; } inline X509ChainStatusU5BU5D_t1368334163** get_address_of_status_3() { return &___status_3; } inline void set_status_3(X509ChainStatusU5BU5D_t1368334163* value) { ___status_3 = value; Il2CppCodeGenWriteBarrier((&___status_3), value); } inline static int32_t get_offset_of_max_path_length_5() { return static_cast<int32_t>(offsetof(X509Chain_t2226602000, ___max_path_length_5)); } inline int32_t get_max_path_length_5() const { return ___max_path_length_5; } inline int32_t* get_address_of_max_path_length_5() { return &___max_path_length_5; } inline void set_max_path_length_5(int32_t value) { ___max_path_length_5 = value; } inline static int32_t get_offset_of_working_issuer_name_6() { return static_cast<int32_t>(offsetof(X509Chain_t2226602000, ___working_issuer_name_6)); } inline X500DistinguishedName_t820240265 * get_working_issuer_name_6() const { return ___working_issuer_name_6; } inline X500DistinguishedName_t820240265 ** get_address_of_working_issuer_name_6() { return &___working_issuer_name_6; } inline void set_working_issuer_name_6(X500DistinguishedName_t820240265 * value) { ___working_issuer_name_6 = value; Il2CppCodeGenWriteBarrier((&___working_issuer_name_6), value); } inline static int32_t get_offset_of_working_public_key_7() { return static_cast<int32_t>(offsetof(X509Chain_t2226602000, ___working_public_key_7)); } inline AsymmetricAlgorithm_t4157331584 * get_working_public_key_7() const { return ___working_public_key_7; } inline AsymmetricAlgorithm_t4157331584 ** get_address_of_working_public_key_7() { return &___working_public_key_7; } inline void set_working_public_key_7(AsymmetricAlgorithm_t4157331584 * value) { ___working_public_key_7 = value; Il2CppCodeGenWriteBarrier((&___working_public_key_7), value); } inline static int32_t get_offset_of_bce_restriction_8() { return static_cast<int32_t>(offsetof(X509Chain_t2226602000, ___bce_restriction_8)); } inline X509ChainElement_t3017060939 * get_bce_restriction_8() const { return ___bce_restriction_8; } inline X509ChainElement_t3017060939 ** get_address_of_bce_restriction_8() { return &___bce_restriction_8; } inline void set_bce_restriction_8(X509ChainElement_t3017060939 * value) { ___bce_restriction_8 = value; Il2CppCodeGenWriteBarrier((&___bce_restriction_8), value); } inline static int32_t get_offset_of_roots_9() { return static_cast<int32_t>(offsetof(X509Chain_t2226602000, ___roots_9)); } inline X509Store_t3464236675 * get_roots_9() const { return ___roots_9; } inline X509Store_t3464236675 ** get_address_of_roots_9() { return &___roots_9; } inline void set_roots_9(X509Store_t3464236675 * value) { ___roots_9 = value; Il2CppCodeGenWriteBarrier((&___roots_9), value); } inline static int32_t get_offset_of_cas_10() { return static_cast<int32_t>(offsetof(X509Chain_t2226602000, ___cas_10)); } inline X509Store_t3464236675 * get_cas_10() const { return ___cas_10; } inline X509Store_t3464236675 ** get_address_of_cas_10() { return &___cas_10; } inline void set_cas_10(X509Store_t3464236675 * value) { ___cas_10 = value; Il2CppCodeGenWriteBarrier((&___cas_10), value); } inline static int32_t get_offset_of_collection_11() { return static_cast<int32_t>(offsetof(X509Chain_t2226602000, ___collection_11)); } inline X509Certificate2Collection_t3619406075 * get_collection_11() const { return ___collection_11; } inline X509Certificate2Collection_t3619406075 ** get_address_of_collection_11() { return &___collection_11; } inline void set_collection_11(X509Certificate2Collection_t3619406075 * value) { ___collection_11 = value; Il2CppCodeGenWriteBarrier((&___collection_11), value); } }; struct X509Chain_t2226602000_StaticFields { public: // System.Security.Cryptography.X509Certificates.X509ChainStatus[] System.Security.Cryptography.X509Certificates.X509Chain::Empty X509ChainStatusU5BU5D_t1368334163* ___Empty_4; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Security.Cryptography.X509Certificates.X509Chain::<>f__switch$mapB Dictionary_2_t2052754070 * ___U3CU3Ef__switchU24mapB_12; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Security.Cryptography.X509Certificates.X509Chain::<>f__switch$mapC Dictionary_2_t2052754070 * ___U3CU3Ef__switchU24mapC_13; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Security.Cryptography.X509Certificates.X509Chain::<>f__switch$mapD Dictionary_2_t2052754070 * ___U3CU3Ef__switchU24mapD_14; public: inline static int32_t get_offset_of_Empty_4() { return static_cast<int32_t>(offsetof(X509Chain_t2226602000_StaticFields, ___Empty_4)); } inline X509ChainStatusU5BU5D_t1368334163* get_Empty_4() const { return ___Empty_4; } inline X509ChainStatusU5BU5D_t1368334163** get_address_of_Empty_4() { return &___Empty_4; } inline void set_Empty_4(X509ChainStatusU5BU5D_t1368334163* value) { ___Empty_4 = value; Il2CppCodeGenWriteBarrier((&___Empty_4), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24mapB_12() { return static_cast<int32_t>(offsetof(X509Chain_t2226602000_StaticFields, ___U3CU3Ef__switchU24mapB_12)); } inline Dictionary_2_t2052754070 * get_U3CU3Ef__switchU24mapB_12() const { return ___U3CU3Ef__switchU24mapB_12; } inline Dictionary_2_t2052754070 ** get_address_of_U3CU3Ef__switchU24mapB_12() { return &___U3CU3Ef__switchU24mapB_12; } inline void set_U3CU3Ef__switchU24mapB_12(Dictionary_2_t2052754070 * value) { ___U3CU3Ef__switchU24mapB_12 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24mapB_12), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24mapC_13() { return static_cast<int32_t>(offsetof(X509Chain_t2226602000_StaticFields, ___U3CU3Ef__switchU24mapC_13)); } inline Dictionary_2_t2052754070 * get_U3CU3Ef__switchU24mapC_13() const { return ___U3CU3Ef__switchU24mapC_13; } inline Dictionary_2_t2052754070 ** get_address_of_U3CU3Ef__switchU24mapC_13() { return &___U3CU3Ef__switchU24mapC_13; } inline void set_U3CU3Ef__switchU24mapC_13(Dictionary_2_t2052754070 * value) { ___U3CU3Ef__switchU24mapC_13 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24mapC_13), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24mapD_14() { return static_cast<int32_t>(offsetof(X509Chain_t2226602000_StaticFields, ___U3CU3Ef__switchU24mapD_14)); } inline Dictionary_2_t2052754070 * get_U3CU3Ef__switchU24mapD_14() const { return ___U3CU3Ef__switchU24mapD_14; } inline Dictionary_2_t2052754070 ** get_address_of_U3CU3Ef__switchU24mapD_14() { return &___U3CU3Ef__switchU24mapD_14; } inline void set_U3CU3Ef__switchU24mapD_14(Dictionary_2_t2052754070 * value) { ___U3CU3Ef__switchU24mapD_14 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24mapD_14), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // X509CHAIN_T2226602000_H #ifndef WIN32EXCEPTION_T789722284_H #define WIN32EXCEPTION_T789722284_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.Win32Exception struct Win32Exception_t789722284 : public ExternalException_t1492600716 { public: // System.Int32 System.ComponentModel.Win32Exception::native_error_code int32_t ___native_error_code_11; public: inline static int32_t get_offset_of_native_error_code_11() { return static_cast<int32_t>(offsetof(Win32Exception_t789722284, ___native_error_code_11)); } inline int32_t get_native_error_code_11() const { return ___native_error_code_11; } inline int32_t* get_address_of_native_error_code_11() { return &___native_error_code_11; } inline void set_native_error_code_11(int32_t value) { ___native_error_code_11 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WIN32EXCEPTION_T789722284_H #ifndef STREAMINGCONTEXT_T3610716448_H #define STREAMINGCONTEXT_T3610716448_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.StreamingContext struct StreamingContext_t3610716448 { public: // System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::state int32_t ___state_0; // System.Object System.Runtime.Serialization.StreamingContext::additional RuntimeObject * ___additional_1; public: inline static int32_t get_offset_of_state_0() { return static_cast<int32_t>(offsetof(StreamingContext_t3610716448, ___state_0)); } inline int32_t get_state_0() const { return ___state_0; } inline int32_t* get_address_of_state_0() { return &___state_0; } inline void set_state_0(int32_t value) { ___state_0 = value; } inline static int32_t get_offset_of_additional_1() { return static_cast<int32_t>(offsetof(StreamingContext_t3610716448, ___additional_1)); } inline RuntimeObject * get_additional_1() const { return ___additional_1; } inline RuntimeObject ** get_address_of_additional_1() { return &___additional_1; } inline void set_additional_1(RuntimeObject * value) { ___additional_1 = value; Il2CppCodeGenWriteBarrier((&___additional_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t3610716448_marshaled_pinvoke { int32_t ___state_0; Il2CppIUnknown* ___additional_1; }; // Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t3610716448_marshaled_com { int32_t ___state_0; Il2CppIUnknown* ___additional_1; }; #endif // STREAMINGCONTEXT_T3610716448_H #ifndef DESIGNERSERIALIZATIONVISIBILITYATTRIBUTE_T3410153364_H #define DESIGNERSERIALIZATIONVISIBILITYATTRIBUTE_T3410153364_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.DesignerSerializationVisibilityAttribute struct DesignerSerializationVisibilityAttribute_t3410153364 : public Attribute_t2739832645 { public: // System.ComponentModel.DesignerSerializationVisibility System.ComponentModel.DesignerSerializationVisibilityAttribute::visibility int32_t ___visibility_0; public: inline static int32_t get_offset_of_visibility_0() { return static_cast<int32_t>(offsetof(DesignerSerializationVisibilityAttribute_t3410153364, ___visibility_0)); } inline int32_t get_visibility_0() const { return ___visibility_0; } inline int32_t* get_address_of_visibility_0() { return &___visibility_0; } inline void set_visibility_0(int32_t value) { ___visibility_0 = value; } }; struct DesignerSerializationVisibilityAttribute_t3410153364_StaticFields { public: // System.ComponentModel.DesignerSerializationVisibilityAttribute System.ComponentModel.DesignerSerializationVisibilityAttribute::Default DesignerSerializationVisibilityAttribute_t3410153364 * ___Default_1; // System.ComponentModel.DesignerSerializationVisibilityAttribute System.ComponentModel.DesignerSerializationVisibilityAttribute::Content DesignerSerializationVisibilityAttribute_t3410153364 * ___Content_2; // System.ComponentModel.DesignerSerializationVisibilityAttribute System.ComponentModel.DesignerSerializationVisibilityAttribute::Hidden DesignerSerializationVisibilityAttribute_t3410153364 * ___Hidden_3; // System.ComponentModel.DesignerSerializationVisibilityAttribute System.ComponentModel.DesignerSerializationVisibilityAttribute::Visible DesignerSerializationVisibilityAttribute_t3410153364 * ___Visible_4; public: inline static int32_t get_offset_of_Default_1() { return static_cast<int32_t>(offsetof(DesignerSerializationVisibilityAttribute_t3410153364_StaticFields, ___Default_1)); } inline DesignerSerializationVisibilityAttribute_t3410153364 * get_Default_1() const { return ___Default_1; } inline DesignerSerializationVisibilityAttribute_t3410153364 ** get_address_of_Default_1() { return &___Default_1; } inline void set_Default_1(DesignerSerializationVisibilityAttribute_t3410153364 * value) { ___Default_1 = value; Il2CppCodeGenWriteBarrier((&___Default_1), value); } inline static int32_t get_offset_of_Content_2() { return static_cast<int32_t>(offsetof(DesignerSerializationVisibilityAttribute_t3410153364_StaticFields, ___Content_2)); } inline DesignerSerializationVisibilityAttribute_t3410153364 * get_Content_2() const { return ___Content_2; } inline DesignerSerializationVisibilityAttribute_t3410153364 ** get_address_of_Content_2() { return &___Content_2; } inline void set_Content_2(DesignerSerializationVisibilityAttribute_t3410153364 * value) { ___Content_2 = value; Il2CppCodeGenWriteBarrier((&___Content_2), value); } inline static int32_t get_offset_of_Hidden_3() { return static_cast<int32_t>(offsetof(DesignerSerializationVisibilityAttribute_t3410153364_StaticFields, ___Hidden_3)); } inline DesignerSerializationVisibilityAttribute_t3410153364 * get_Hidden_3() const { return ___Hidden_3; } inline DesignerSerializationVisibilityAttribute_t3410153364 ** get_address_of_Hidden_3() { return &___Hidden_3; } inline void set_Hidden_3(DesignerSerializationVisibilityAttribute_t3410153364 * value) { ___Hidden_3 = value; Il2CppCodeGenWriteBarrier((&___Hidden_3), value); } inline static int32_t get_offset_of_Visible_4() { return static_cast<int32_t>(offsetof(DesignerSerializationVisibilityAttribute_t3410153364_StaticFields, ___Visible_4)); } inline DesignerSerializationVisibilityAttribute_t3410153364 * get_Visible_4() const { return ___Visible_4; } inline DesignerSerializationVisibilityAttribute_t3410153364 ** get_address_of_Visible_4() { return &___Visible_4; } inline void set_Visible_4(DesignerSerializationVisibilityAttribute_t3410153364 * value) { ___Visible_4 = value; Il2CppCodeGenWriteBarrier((&___Visible_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DESIGNERSERIALIZATIONVISIBILITYATTRIBUTE_T3410153364_H #ifndef OBJECTDISPOSEDEXCEPTION_T3257614166_H #define OBJECTDISPOSEDEXCEPTION_T3257614166_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ObjectDisposedException struct ObjectDisposedException_t3257614166 : public InvalidOperationException_t94637358 { public: // System.String System.ObjectDisposedException::obj_name String_t* ___obj_name_12; // System.String System.ObjectDisposedException::msg String_t* ___msg_13; public: inline static int32_t get_offset_of_obj_name_12() { return static_cast<int32_t>(offsetof(ObjectDisposedException_t3257614166, ___obj_name_12)); } inline String_t* get_obj_name_12() const { return ___obj_name_12; } inline String_t** get_address_of_obj_name_12() { return &___obj_name_12; } inline void set_obj_name_12(String_t* value) { ___obj_name_12 = value; Il2CppCodeGenWriteBarrier((&___obj_name_12), value); } inline static int32_t get_offset_of_msg_13() { return static_cast<int32_t>(offsetof(ObjectDisposedException_t3257614166, ___msg_13)); } inline String_t* get_msg_13() const { return ___msg_13; } inline String_t** get_address_of_msg_13() { return &___msg_13; } inline void set_msg_13(String_t* value) { ___msg_13 = value; Il2CppCodeGenWriteBarrier((&___msg_13), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OBJECTDISPOSEDEXCEPTION_T3257614166_H #ifndef SERVICEPOINTMANAGER_T3846324623_H #define SERVICEPOINTMANAGER_T3846324623_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.ServicePointManager struct ServicePointManager_t3846324623 : public RuntimeObject { public: public: }; struct ServicePointManager_t3846324623_StaticFields { public: // System.Collections.Specialized.HybridDictionary System.Net.ServicePointManager::servicePoints HybridDictionary_t979529962 * ___servicePoints_0; // System.Net.ICertificatePolicy System.Net.ServicePointManager::policy RuntimeObject* ___policy_1; // System.Int32 System.Net.ServicePointManager::defaultConnectionLimit int32_t ___defaultConnectionLimit_2; // System.Int32 System.Net.ServicePointManager::maxServicePointIdleTime int32_t ___maxServicePointIdleTime_3; // System.Int32 System.Net.ServicePointManager::maxServicePoints int32_t ___maxServicePoints_4; // System.Boolean System.Net.ServicePointManager::_checkCRL bool ____checkCRL_5; // System.Net.SecurityProtocolType System.Net.ServicePointManager::_securityProtocol int32_t ____securityProtocol_6; // System.Boolean System.Net.ServicePointManager::expectContinue bool ___expectContinue_7; // System.Boolean System.Net.ServicePointManager::useNagle bool ___useNagle_8; // System.Net.Security.RemoteCertificateValidationCallback System.Net.ServicePointManager::server_cert_cb RemoteCertificateValidationCallback_t1272219315 * ___server_cert_cb_9; public: inline static int32_t get_offset_of_servicePoints_0() { return static_cast<int32_t>(offsetof(ServicePointManager_t3846324623_StaticFields, ___servicePoints_0)); } inline HybridDictionary_t979529962 * get_servicePoints_0() const { return ___servicePoints_0; } inline HybridDictionary_t979529962 ** get_address_of_servicePoints_0() { return &___servicePoints_0; } inline void set_servicePoints_0(HybridDictionary_t979529962 * value) { ___servicePoints_0 = value; Il2CppCodeGenWriteBarrier((&___servicePoints_0), value); } inline static int32_t get_offset_of_policy_1() { return static_cast<int32_t>(offsetof(ServicePointManager_t3846324623_StaticFields, ___policy_1)); } inline RuntimeObject* get_policy_1() const { return ___policy_1; } inline RuntimeObject** get_address_of_policy_1() { return &___policy_1; } inline void set_policy_1(RuntimeObject* value) { ___policy_1 = value; Il2CppCodeGenWriteBarrier((&___policy_1), value); } inline static int32_t get_offset_of_defaultConnectionLimit_2() { return static_cast<int32_t>(offsetof(ServicePointManager_t3846324623_StaticFields, ___defaultConnectionLimit_2)); } inline int32_t get_defaultConnectionLimit_2() const { return ___defaultConnectionLimit_2; } inline int32_t* get_address_of_defaultConnectionLimit_2() { return &___defaultConnectionLimit_2; } inline void set_defaultConnectionLimit_2(int32_t value) { ___defaultConnectionLimit_2 = value; } inline static int32_t get_offset_of_maxServicePointIdleTime_3() { return static_cast<int32_t>(offsetof(ServicePointManager_t3846324623_StaticFields, ___maxServicePointIdleTime_3)); } inline int32_t get_maxServicePointIdleTime_3() const { return ___maxServicePointIdleTime_3; } inline int32_t* get_address_of_maxServicePointIdleTime_3() { return &___maxServicePointIdleTime_3; } inline void set_maxServicePointIdleTime_3(int32_t value) { ___maxServicePointIdleTime_3 = value; } inline static int32_t get_offset_of_maxServicePoints_4() { return static_cast<int32_t>(offsetof(ServicePointManager_t3846324623_StaticFields, ___maxServicePoints_4)); } inline int32_t get_maxServicePoints_4() const { return ___maxServicePoints_4; } inline int32_t* get_address_of_maxServicePoints_4() { return &___maxServicePoints_4; } inline void set_maxServicePoints_4(int32_t value) { ___maxServicePoints_4 = value; } inline static int32_t get_offset_of__checkCRL_5() { return static_cast<int32_t>(offsetof(ServicePointManager_t3846324623_StaticFields, ____checkCRL_5)); } inline bool get__checkCRL_5() const { return ____checkCRL_5; } inline bool* get_address_of__checkCRL_5() { return &____checkCRL_5; } inline void set__checkCRL_5(bool value) { ____checkCRL_5 = value; } inline static int32_t get_offset_of__securityProtocol_6() { return static_cast<int32_t>(offsetof(ServicePointManager_t3846324623_StaticFields, ____securityProtocol_6)); } inline int32_t get__securityProtocol_6() const { return ____securityProtocol_6; } inline int32_t* get_address_of__securityProtocol_6() { return &____securityProtocol_6; } inline void set__securityProtocol_6(int32_t value) { ____securityProtocol_6 = value; } inline static int32_t get_offset_of_expectContinue_7() { return static_cast<int32_t>(offsetof(ServicePointManager_t3846324623_StaticFields, ___expectContinue_7)); } inline bool get_expectContinue_7() const { return ___expectContinue_7; } inline bool* get_address_of_expectContinue_7() { return &___expectContinue_7; } inline void set_expectContinue_7(bool value) { ___expectContinue_7 = value; } inline static int32_t get_offset_of_useNagle_8() { return static_cast<int32_t>(offsetof(ServicePointManager_t3846324623_StaticFields, ___useNagle_8)); } inline bool get_useNagle_8() const { return ___useNagle_8; } inline bool* get_address_of_useNagle_8() { return &___useNagle_8; } inline void set_useNagle_8(bool value) { ___useNagle_8 = value; } inline static int32_t get_offset_of_server_cert_cb_9() { return static_cast<int32_t>(offsetof(ServicePointManager_t3846324623_StaticFields, ___server_cert_cb_9)); } inline RemoteCertificateValidationCallback_t1272219315 * get_server_cert_cb_9() const { return ___server_cert_cb_9; } inline RemoteCertificateValidationCallback_t1272219315 ** get_address_of_server_cert_cb_9() { return &___server_cert_cb_9; } inline void set_server_cert_cb_9(RemoteCertificateValidationCallback_t1272219315 * value) { ___server_cert_cb_9 = value; Il2CppCodeGenWriteBarrier((&___server_cert_cb_9), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SERVICEPOINTMANAGER_T3846324623_H #ifndef REGEX_T2405265571_H #define REGEX_T2405265571_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Text.RegularExpressions.Regex struct Regex_t2405265571 : public RuntimeObject { public: // System.Text.RegularExpressions.IMachineFactory System.Text.RegularExpressions.Regex::machineFactory RuntimeObject* ___machineFactory_1; // System.Collections.IDictionary System.Text.RegularExpressions.Regex::mapping RuntimeObject* ___mapping_2; // System.Int32 System.Text.RegularExpressions.Regex::group_count int32_t ___group_count_3; // System.Int32 System.Text.RegularExpressions.Regex::gap int32_t ___gap_4; // System.String[] System.Text.RegularExpressions.Regex::group_names StringU5BU5D_t1187188029* ___group_names_5; // System.Int32[] System.Text.RegularExpressions.Regex::group_numbers Int32U5BU5D_t1883881640* ___group_numbers_6; // System.String System.Text.RegularExpressions.Regex::pattern String_t* ___pattern_7; // System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.Regex::roptions int32_t ___roptions_8; public: inline static int32_t get_offset_of_machineFactory_1() { return static_cast<int32_t>(offsetof(Regex_t2405265571, ___machineFactory_1)); } inline RuntimeObject* get_machineFactory_1() const { return ___machineFactory_1; } inline RuntimeObject** get_address_of_machineFactory_1() { return &___machineFactory_1; } inline void set_machineFactory_1(RuntimeObject* value) { ___machineFactory_1 = value; Il2CppCodeGenWriteBarrier((&___machineFactory_1), value); } inline static int32_t get_offset_of_mapping_2() { return static_cast<int32_t>(offsetof(Regex_t2405265571, ___mapping_2)); } inline RuntimeObject* get_mapping_2() const { return ___mapping_2; } inline RuntimeObject** get_address_of_mapping_2() { return &___mapping_2; } inline void set_mapping_2(RuntimeObject* value) { ___mapping_2 = value; Il2CppCodeGenWriteBarrier((&___mapping_2), value); } inline static int32_t get_offset_of_group_count_3() { return static_cast<int32_t>(offsetof(Regex_t2405265571, ___group_count_3)); } inline int32_t get_group_count_3() const { return ___group_count_3; } inline int32_t* get_address_of_group_count_3() { return &___group_count_3; } inline void set_group_count_3(int32_t value) { ___group_count_3 = value; } inline static int32_t get_offset_of_gap_4() { return static_cast<int32_t>(offsetof(Regex_t2405265571, ___gap_4)); } inline int32_t get_gap_4() const { return ___gap_4; } inline int32_t* get_address_of_gap_4() { return &___gap_4; } inline void set_gap_4(int32_t value) { ___gap_4 = value; } inline static int32_t get_offset_of_group_names_5() { return static_cast<int32_t>(offsetof(Regex_t2405265571, ___group_names_5)); } inline StringU5BU5D_t1187188029* get_group_names_5() const { return ___group_names_5; } inline StringU5BU5D_t1187188029** get_address_of_group_names_5() { return &___group_names_5; } inline void set_group_names_5(StringU5BU5D_t1187188029* value) { ___group_names_5 = value; Il2CppCodeGenWriteBarrier((&___group_names_5), value); } inline static int32_t get_offset_of_group_numbers_6() { return static_cast<int32_t>(offsetof(Regex_t2405265571, ___group_numbers_6)); } inline Int32U5BU5D_t1883881640* get_group_numbers_6() const { return ___group_numbers_6; } inline Int32U5BU5D_t1883881640** get_address_of_group_numbers_6() { return &___group_numbers_6; } inline void set_group_numbers_6(Int32U5BU5D_t1883881640* value) { ___group_numbers_6 = value; Il2CppCodeGenWriteBarrier((&___group_numbers_6), value); } inline static int32_t get_offset_of_pattern_7() { return static_cast<int32_t>(offsetof(Regex_t2405265571, ___pattern_7)); } inline String_t* get_pattern_7() const { return ___pattern_7; } inline String_t** get_address_of_pattern_7() { return &___pattern_7; } inline void set_pattern_7(String_t* value) { ___pattern_7 = value; Il2CppCodeGenWriteBarrier((&___pattern_7), value); } inline static int32_t get_offset_of_roptions_8() { return static_cast<int32_t>(offsetof(Regex_t2405265571, ___roptions_8)); } inline int32_t get_roptions_8() const { return ___roptions_8; } inline int32_t* get_address_of_roptions_8() { return &___roptions_8; } inline void set_roptions_8(int32_t value) { ___roptions_8 = value; } }; struct Regex_t2405265571_StaticFields { public: // System.Text.RegularExpressions.FactoryCache System.Text.RegularExpressions.Regex::cache FactoryCache_t3594158732 * ___cache_0; public: inline static int32_t get_offset_of_cache_0() { return static_cast<int32_t>(offsetof(Regex_t2405265571_StaticFields, ___cache_0)); } inline FactoryCache_t3594158732 * get_cache_0() const { return ___cache_0; } inline FactoryCache_t3594158732 ** get_address_of_cache_0() { return &___cache_0; } inline void set_cache_0(FactoryCache_t3594158732 * value) { ___cache_0 = value; Il2CppCodeGenWriteBarrier((&___cache_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // REGEX_T2405265571_H #ifndef SOCKET_T2215831248_H #define SOCKET_T2215831248_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.Sockets.Socket struct Socket_t2215831248 : public RuntimeObject { public: // System.Collections.Queue System.Net.Sockets.Socket::readQ Queue_t4072794599 * ___readQ_0; // System.Collections.Queue System.Net.Sockets.Socket::writeQ Queue_t4072794599 * ___writeQ_1; // System.Boolean System.Net.Sockets.Socket::islistening bool ___islistening_2; // System.Boolean System.Net.Sockets.Socket::useoverlappedIO bool ___useoverlappedIO_3; // System.Int32 System.Net.Sockets.Socket::MinListenPort int32_t ___MinListenPort_4; // System.Int32 System.Net.Sockets.Socket::MaxListenPort int32_t ___MaxListenPort_5; // System.Int32 System.Net.Sockets.Socket::linger_timeout int32_t ___linger_timeout_8; // System.IntPtr System.Net.Sockets.Socket::socket intptr_t ___socket_9; // System.Net.Sockets.AddressFamily System.Net.Sockets.Socket::address_family int32_t ___address_family_10; // System.Net.Sockets.SocketType System.Net.Sockets.Socket::socket_type int32_t ___socket_type_11; // System.Net.Sockets.ProtocolType System.Net.Sockets.Socket::protocol_type int32_t ___protocol_type_12; // System.Boolean System.Net.Sockets.Socket::blocking bool ___blocking_13; // System.Threading.Thread System.Net.Sockets.Socket::blocking_thread Thread_t3102188359 * ___blocking_thread_14; // System.Boolean System.Net.Sockets.Socket::isbound bool ___isbound_15; // System.Int32 System.Net.Sockets.Socket::max_bind_count int32_t ___max_bind_count_17; // System.Boolean System.Net.Sockets.Socket::connected bool ___connected_18; // System.Boolean System.Net.Sockets.Socket::closed bool ___closed_19; // System.Boolean System.Net.Sockets.Socket::disposed bool ___disposed_20; // System.Net.EndPoint System.Net.Sockets.Socket::seed_endpoint EndPoint_t268181662 * ___seed_endpoint_21; public: inline static int32_t get_offset_of_readQ_0() { return static_cast<int32_t>(offsetof(Socket_t2215831248, ___readQ_0)); } inline Queue_t4072794599 * get_readQ_0() const { return ___readQ_0; } inline Queue_t4072794599 ** get_address_of_readQ_0() { return &___readQ_0; } inline void set_readQ_0(Queue_t4072794599 * value) { ___readQ_0 = value; Il2CppCodeGenWriteBarrier((&___readQ_0), value); } inline static int32_t get_offset_of_writeQ_1() { return static_cast<int32_t>(offsetof(Socket_t2215831248, ___writeQ_1)); } inline Queue_t4072794599 * get_writeQ_1() const { return ___writeQ_1; } inline Queue_t4072794599 ** get_address_of_writeQ_1() { return &___writeQ_1; } inline void set_writeQ_1(Queue_t4072794599 * value) { ___writeQ_1 = value; Il2CppCodeGenWriteBarrier((&___writeQ_1), value); } inline static int32_t get_offset_of_islistening_2() { return static_cast<int32_t>(offsetof(Socket_t2215831248, ___islistening_2)); } inline bool get_islistening_2() const { return ___islistening_2; } inline bool* get_address_of_islistening_2() { return &___islistening_2; } inline void set_islistening_2(bool value) { ___islistening_2 = value; } inline static int32_t get_offset_of_useoverlappedIO_3() { return static_cast<int32_t>(offsetof(Socket_t2215831248, ___useoverlappedIO_3)); } inline bool get_useoverlappedIO_3() const { return ___useoverlappedIO_3; } inline bool* get_address_of_useoverlappedIO_3() { return &___useoverlappedIO_3; } inline void set_useoverlappedIO_3(bool value) { ___useoverlappedIO_3 = value; } inline static int32_t get_offset_of_MinListenPort_4() { return static_cast<int32_t>(offsetof(Socket_t2215831248, ___MinListenPort_4)); } inline int32_t get_MinListenPort_4() const { return ___MinListenPort_4; } inline int32_t* get_address_of_MinListenPort_4() { return &___MinListenPort_4; } inline void set_MinListenPort_4(int32_t value) { ___MinListenPort_4 = value; } inline static int32_t get_offset_of_MaxListenPort_5() { return static_cast<int32_t>(offsetof(Socket_t2215831248, ___MaxListenPort_5)); } inline int32_t get_MaxListenPort_5() const { return ___MaxListenPort_5; } inline int32_t* get_address_of_MaxListenPort_5() { return &___MaxListenPort_5; } inline void set_MaxListenPort_5(int32_t value) { ___MaxListenPort_5 = value; } inline static int32_t get_offset_of_linger_timeout_8() { return static_cast<int32_t>(offsetof(Socket_t2215831248, ___linger_timeout_8)); } inline int32_t get_linger_timeout_8() const { return ___linger_timeout_8; } inline int32_t* get_address_of_linger_timeout_8() { return &___linger_timeout_8; } inline void set_linger_timeout_8(int32_t value) { ___linger_timeout_8 = value; } inline static int32_t get_offset_of_socket_9() { return static_cast<int32_t>(offsetof(Socket_t2215831248, ___socket_9)); } inline intptr_t get_socket_9() const { return ___socket_9; } inline intptr_t* get_address_of_socket_9() { return &___socket_9; } inline void set_socket_9(intptr_t value) { ___socket_9 = value; } inline static int32_t get_offset_of_address_family_10() { return static_cast<int32_t>(offsetof(Socket_t2215831248, ___address_family_10)); } inline int32_t get_address_family_10() const { return ___address_family_10; } inline int32_t* get_address_of_address_family_10() { return &___address_family_10; } inline void set_address_family_10(int32_t value) { ___address_family_10 = value; } inline static int32_t get_offset_of_socket_type_11() { return static_cast<int32_t>(offsetof(Socket_t2215831248, ___socket_type_11)); } inline int32_t get_socket_type_11() const { return ___socket_type_11; } inline int32_t* get_address_of_socket_type_11() { return &___socket_type_11; } inline void set_socket_type_11(int32_t value) { ___socket_type_11 = value; } inline static int32_t get_offset_of_protocol_type_12() { return static_cast<int32_t>(offsetof(Socket_t2215831248, ___protocol_type_12)); } inline int32_t get_protocol_type_12() const { return ___protocol_type_12; } inline int32_t* get_address_of_protocol_type_12() { return &___protocol_type_12; } inline void set_protocol_type_12(int32_t value) { ___protocol_type_12 = value; } inline static int32_t get_offset_of_blocking_13() { return static_cast<int32_t>(offsetof(Socket_t2215831248, ___blocking_13)); } inline bool get_blocking_13() const { return ___blocking_13; } inline bool* get_address_of_blocking_13() { return &___blocking_13; } inline void set_blocking_13(bool value) { ___blocking_13 = value; } inline static int32_t get_offset_of_blocking_thread_14() { return static_cast<int32_t>(offsetof(Socket_t2215831248, ___blocking_thread_14)); } inline Thread_t3102188359 * get_blocking_thread_14() const { return ___blocking_thread_14; } inline Thread_t3102188359 ** get_address_of_blocking_thread_14() { return &___blocking_thread_14; } inline void set_blocking_thread_14(Thread_t3102188359 * value) { ___blocking_thread_14 = value; Il2CppCodeGenWriteBarrier((&___blocking_thread_14), value); } inline static int32_t get_offset_of_isbound_15() { return static_cast<int32_t>(offsetof(Socket_t2215831248, ___isbound_15)); } inline bool get_isbound_15() const { return ___isbound_15; } inline bool* get_address_of_isbound_15() { return &___isbound_15; } inline void set_isbound_15(bool value) { ___isbound_15 = value; } inline static int32_t get_offset_of_max_bind_count_17() { return static_cast<int32_t>(offsetof(Socket_t2215831248, ___max_bind_count_17)); } inline int32_t get_max_bind_count_17() const { return ___max_bind_count_17; } inline int32_t* get_address_of_max_bind_count_17() { return &___max_bind_count_17; } inline void set_max_bind_count_17(int32_t value) { ___max_bind_count_17 = value; } inline static int32_t get_offset_of_connected_18() { return static_cast<int32_t>(offsetof(Socket_t2215831248, ___connected_18)); } inline bool get_connected_18() const { return ___connected_18; } inline bool* get_address_of_connected_18() { return &___connected_18; } inline void set_connected_18(bool value) { ___connected_18 = value; } inline static int32_t get_offset_of_closed_19() { return static_cast<int32_t>(offsetof(Socket_t2215831248, ___closed_19)); } inline bool get_closed_19() const { return ___closed_19; } inline bool* get_address_of_closed_19() { return &___closed_19; } inline void set_closed_19(bool value) { ___closed_19 = value; } inline static int32_t get_offset_of_disposed_20() { return static_cast<int32_t>(offsetof(Socket_t2215831248, ___disposed_20)); } inline bool get_disposed_20() const { return ___disposed_20; } inline bool* get_address_of_disposed_20() { return &___disposed_20; } inline void set_disposed_20(bool value) { ___disposed_20 = value; } inline static int32_t get_offset_of_seed_endpoint_21() { return static_cast<int32_t>(offsetof(Socket_t2215831248, ___seed_endpoint_21)); } inline EndPoint_t268181662 * get_seed_endpoint_21() const { return ___seed_endpoint_21; } inline EndPoint_t268181662 ** get_address_of_seed_endpoint_21() { return &___seed_endpoint_21; } inline void set_seed_endpoint_21(EndPoint_t268181662 * value) { ___seed_endpoint_21 = value; Il2CppCodeGenWriteBarrier((&___seed_endpoint_21), value); } }; struct Socket_t2215831248_StaticFields { public: // System.Int32 System.Net.Sockets.Socket::ipv4Supported int32_t ___ipv4Supported_6; // System.Int32 System.Net.Sockets.Socket::ipv6Supported int32_t ___ipv6Supported_7; // System.Int32 System.Net.Sockets.Socket::current_bind_count int32_t ___current_bind_count_16; // System.Reflection.MethodInfo System.Net.Sockets.Socket::check_socket_policy MethodInfo_t * ___check_socket_policy_22; public: inline static int32_t get_offset_of_ipv4Supported_6() { return static_cast<int32_t>(offsetof(Socket_t2215831248_StaticFields, ___ipv4Supported_6)); } inline int32_t get_ipv4Supported_6() const { return ___ipv4Supported_6; } inline int32_t* get_address_of_ipv4Supported_6() { return &___ipv4Supported_6; } inline void set_ipv4Supported_6(int32_t value) { ___ipv4Supported_6 = value; } inline static int32_t get_offset_of_ipv6Supported_7() { return static_cast<int32_t>(offsetof(Socket_t2215831248_StaticFields, ___ipv6Supported_7)); } inline int32_t get_ipv6Supported_7() const { return ___ipv6Supported_7; } inline int32_t* get_address_of_ipv6Supported_7() { return &___ipv6Supported_7; } inline void set_ipv6Supported_7(int32_t value) { ___ipv6Supported_7 = value; } inline static int32_t get_offset_of_current_bind_count_16() { return static_cast<int32_t>(offsetof(Socket_t2215831248_StaticFields, ___current_bind_count_16)); } inline int32_t get_current_bind_count_16() const { return ___current_bind_count_16; } inline int32_t* get_address_of_current_bind_count_16() { return &___current_bind_count_16; } inline void set_current_bind_count_16(int32_t value) { ___current_bind_count_16 = value; } inline static int32_t get_offset_of_check_socket_policy_22() { return static_cast<int32_t>(offsetof(Socket_t2215831248_StaticFields, ___check_socket_policy_22)); } inline MethodInfo_t * get_check_socket_policy_22() const { return ___check_socket_policy_22; } inline MethodInfo_t ** get_address_of_check_socket_policy_22() { return &___check_socket_policy_22; } inline void set_check_socket_policy_22(MethodInfo_t * value) { ___check_socket_policy_22 = value; Il2CppCodeGenWriteBarrier((&___check_socket_policy_22), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SOCKET_T2215831248_H #ifndef ARGUMENTOUTOFRANGEEXCEPTION_T1933742687_H #define ARGUMENTOUTOFRANGEEXCEPTION_T1933742687_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_t1933742687 : public ArgumentException_t1946723077 { public: // System.Object System.ArgumentOutOfRangeException::actual_value RuntimeObject * ___actual_value_13; public: inline static int32_t get_offset_of_actual_value_13() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t1933742687, ___actual_value_13)); } inline RuntimeObject * get_actual_value_13() const { return ___actual_value_13; } inline RuntimeObject ** get_address_of_actual_value_13() { return &___actual_value_13; } inline void set_actual_value_13(RuntimeObject * value) { ___actual_value_13 = value; Il2CppCodeGenWriteBarrier((&___actual_value_13), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTOUTOFRANGEEXCEPTION_T1933742687_H #ifndef SOCKETEXCEPTION_T2171012343_H #define SOCKETEXCEPTION_T2171012343_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.Sockets.SocketException struct SocketException_t2171012343 : public Win32Exception_t789722284 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SOCKETEXCEPTION_T2171012343_H #ifndef PROPERTYCHANGEDEVENTHANDLER_T3629517548_H #define PROPERTYCHANGEDEVENTHANDLER_T3629517548_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.PropertyChangedEventHandler struct PropertyChangedEventHandler_t3629517548 : public MulticastDelegate_t2442382558 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PROPERTYCHANGEDEVENTHANDLER_T3629517548_H #ifndef FTPWEBREQUEST_T2481454041_H #define FTPWEBREQUEST_T2481454041_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.FtpWebRequest struct FtpWebRequest_t2481454041 : public WebRequest_t294146427 { public: // System.Uri System.Net.FtpWebRequest::requestUri Uri_t3882940875 * ___requestUri_6; // System.Net.IWebProxy System.Net.FtpWebRequest::proxy RuntimeObject* ___proxy_7; // System.Int32 System.Net.FtpWebRequest::timeout int32_t ___timeout_8; // System.Int32 System.Net.FtpWebRequest::rwTimeout int32_t ___rwTimeout_9; // System.Boolean System.Net.FtpWebRequest::binary bool ___binary_10; // System.Boolean System.Net.FtpWebRequest::usePassive bool ___usePassive_11; // System.String System.Net.FtpWebRequest::method String_t* ___method_12; // System.Object System.Net.FtpWebRequest::locker RuntimeObject * ___locker_13; // System.Net.Security.RemoteCertificateValidationCallback System.Net.FtpWebRequest::callback RemoteCertificateValidationCallback_t1272219315 * ___callback_15; public: inline static int32_t get_offset_of_requestUri_6() { return static_cast<int32_t>(offsetof(FtpWebRequest_t2481454041, ___requestUri_6)); } inline Uri_t3882940875 * get_requestUri_6() const { return ___requestUri_6; } inline Uri_t3882940875 ** get_address_of_requestUri_6() { return &___requestUri_6; } inline void set_requestUri_6(Uri_t3882940875 * value) { ___requestUri_6 = value; Il2CppCodeGenWriteBarrier((&___requestUri_6), value); } inline static int32_t get_offset_of_proxy_7() { return static_cast<int32_t>(offsetof(FtpWebRequest_t2481454041, ___proxy_7)); } inline RuntimeObject* get_proxy_7() const { return ___proxy_7; } inline RuntimeObject** get_address_of_proxy_7() { return &___proxy_7; } inline void set_proxy_7(RuntimeObject* value) { ___proxy_7 = value; Il2CppCodeGenWriteBarrier((&___proxy_7), value); } inline static int32_t get_offset_of_timeout_8() { return static_cast<int32_t>(offsetof(FtpWebRequest_t2481454041, ___timeout_8)); } inline int32_t get_timeout_8() const { return ___timeout_8; } inline int32_t* get_address_of_timeout_8() { return &___timeout_8; } inline void set_timeout_8(int32_t value) { ___timeout_8 = value; } inline static int32_t get_offset_of_rwTimeout_9() { return static_cast<int32_t>(offsetof(FtpWebRequest_t2481454041, ___rwTimeout_9)); } inline int32_t get_rwTimeout_9() const { return ___rwTimeout_9; } inline int32_t* get_address_of_rwTimeout_9() { return &___rwTimeout_9; } inline void set_rwTimeout_9(int32_t value) { ___rwTimeout_9 = value; } inline static int32_t get_offset_of_binary_10() { return static_cast<int32_t>(offsetof(FtpWebRequest_t2481454041, ___binary_10)); } inline bool get_binary_10() const { return ___binary_10; } inline bool* get_address_of_binary_10() { return &___binary_10; } inline void set_binary_10(bool value) { ___binary_10 = value; } inline static int32_t get_offset_of_usePassive_11() { return static_cast<int32_t>(offsetof(FtpWebRequest_t2481454041, ___usePassive_11)); } inline bool get_usePassive_11() const { return ___usePassive_11; } inline bool* get_address_of_usePassive_11() { return &___usePassive_11; } inline void set_usePassive_11(bool value) { ___usePassive_11 = value; } inline static int32_t get_offset_of_method_12() { return static_cast<int32_t>(offsetof(FtpWebRequest_t2481454041, ___method_12)); } inline String_t* get_method_12() const { return ___method_12; } inline String_t** get_address_of_method_12() { return &___method_12; } inline void set_method_12(String_t* value) { ___method_12 = value; Il2CppCodeGenWriteBarrier((&___method_12), value); } inline static int32_t get_offset_of_locker_13() { return static_cast<int32_t>(offsetof(FtpWebRequest_t2481454041, ___locker_13)); } inline RuntimeObject * get_locker_13() const { return ___locker_13; } inline RuntimeObject ** get_address_of_locker_13() { return &___locker_13; } inline void set_locker_13(RuntimeObject * value) { ___locker_13 = value; Il2CppCodeGenWriteBarrier((&___locker_13), value); } inline static int32_t get_offset_of_callback_15() { return static_cast<int32_t>(offsetof(FtpWebRequest_t2481454041, ___callback_15)); } inline RemoteCertificateValidationCallback_t1272219315 * get_callback_15() const { return ___callback_15; } inline RemoteCertificateValidationCallback_t1272219315 ** get_address_of_callback_15() { return &___callback_15; } inline void set_callback_15(RemoteCertificateValidationCallback_t1272219315 * value) { ___callback_15 = value; Il2CppCodeGenWriteBarrier((&___callback_15), value); } }; struct FtpWebRequest_t2481454041_StaticFields { public: // System.String[] System.Net.FtpWebRequest::supportedCommands StringU5BU5D_t1187188029* ___supportedCommands_14; // System.Net.Security.RemoteCertificateValidationCallback System.Net.FtpWebRequest::<>f__am$cache1C RemoteCertificateValidationCallback_t1272219315 * ___U3CU3Ef__amU24cache1C_16; public: inline static int32_t get_offset_of_supportedCommands_14() { return static_cast<int32_t>(offsetof(FtpWebRequest_t2481454041_StaticFields, ___supportedCommands_14)); } inline StringU5BU5D_t1187188029* get_supportedCommands_14() const { return ___supportedCommands_14; } inline StringU5BU5D_t1187188029** get_address_of_supportedCommands_14() { return &___supportedCommands_14; } inline void set_supportedCommands_14(StringU5BU5D_t1187188029* value) { ___supportedCommands_14 = value; Il2CppCodeGenWriteBarrier((&___supportedCommands_14), value); } inline static int32_t get_offset_of_U3CU3Ef__amU24cache1C_16() { return static_cast<int32_t>(offsetof(FtpWebRequest_t2481454041_StaticFields, ___U3CU3Ef__amU24cache1C_16)); } inline RemoteCertificateValidationCallback_t1272219315 * get_U3CU3Ef__amU24cache1C_16() const { return ___U3CU3Ef__amU24cache1C_16; } inline RemoteCertificateValidationCallback_t1272219315 ** get_address_of_U3CU3Ef__amU24cache1C_16() { return &___U3CU3Ef__amU24cache1C_16; } inline void set_U3CU3Ef__amU24cache1C_16(RemoteCertificateValidationCallback_t1272219315 * value) { ___U3CU3Ef__amU24cache1C_16 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__amU24cache1C_16), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FTPWEBREQUEST_T2481454041_H #ifndef FILEWEBREQUEST_T734527143_H #define FILEWEBREQUEST_T734527143_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.FileWebRequest struct FileWebRequest_t734527143 : public WebRequest_t294146427 { public: // System.Uri System.Net.FileWebRequest::uri Uri_t3882940875 * ___uri_6; // System.Net.WebHeaderCollection System.Net.FileWebRequest::webHeaders WebHeaderCollection_t3555365273 * ___webHeaders_7; // System.String System.Net.FileWebRequest::connectionGroup String_t* ___connectionGroup_8; // System.Int64 System.Net.FileWebRequest::contentLength int64_t ___contentLength_9; // System.IO.FileAccess System.Net.FileWebRequest::fileAccess int32_t ___fileAccess_10; // System.String System.Net.FileWebRequest::method String_t* ___method_11; // System.Net.IWebProxy System.Net.FileWebRequest::proxy RuntimeObject* ___proxy_12; // System.Boolean System.Net.FileWebRequest::preAuthenticate bool ___preAuthenticate_13; // System.Int32 System.Net.FileWebRequest::timeout int32_t ___timeout_14; public: inline static int32_t get_offset_of_uri_6() { return static_cast<int32_t>(offsetof(FileWebRequest_t734527143, ___uri_6)); } inline Uri_t3882940875 * get_uri_6() const { return ___uri_6; } inline Uri_t3882940875 ** get_address_of_uri_6() { return &___uri_6; } inline void set_uri_6(Uri_t3882940875 * value) { ___uri_6 = value; Il2CppCodeGenWriteBarrier((&___uri_6), value); } inline static int32_t get_offset_of_webHeaders_7() { return static_cast<int32_t>(offsetof(FileWebRequest_t734527143, ___webHeaders_7)); } inline WebHeaderCollection_t3555365273 * get_webHeaders_7() const { return ___webHeaders_7; } inline WebHeaderCollection_t3555365273 ** get_address_of_webHeaders_7() { return &___webHeaders_7; } inline void set_webHeaders_7(WebHeaderCollection_t3555365273 * value) { ___webHeaders_7 = value; Il2CppCodeGenWriteBarrier((&___webHeaders_7), value); } inline static int32_t get_offset_of_connectionGroup_8() { return static_cast<int32_t>(offsetof(FileWebRequest_t734527143, ___connectionGroup_8)); } inline String_t* get_connectionGroup_8() const { return ___connectionGroup_8; } inline String_t** get_address_of_connectionGroup_8() { return &___connectionGroup_8; } inline void set_connectionGroup_8(String_t* value) { ___connectionGroup_8 = value; Il2CppCodeGenWriteBarrier((&___connectionGroup_8), value); } inline static int32_t get_offset_of_contentLength_9() { return static_cast<int32_t>(offsetof(FileWebRequest_t734527143, ___contentLength_9)); } inline int64_t get_contentLength_9() const { return ___contentLength_9; } inline int64_t* get_address_of_contentLength_9() { return &___contentLength_9; } inline void set_contentLength_9(int64_t value) { ___contentLength_9 = value; } inline static int32_t get_offset_of_fileAccess_10() { return static_cast<int32_t>(offsetof(FileWebRequest_t734527143, ___fileAccess_10)); } inline int32_t get_fileAccess_10() const { return ___fileAccess_10; } inline int32_t* get_address_of_fileAccess_10() { return &___fileAccess_10; } inline void set_fileAccess_10(int32_t value) { ___fileAccess_10 = value; } inline static int32_t get_offset_of_method_11() { return static_cast<int32_t>(offsetof(FileWebRequest_t734527143, ___method_11)); } inline String_t* get_method_11() const { return ___method_11; } inline String_t** get_address_of_method_11() { return &___method_11; } inline void set_method_11(String_t* value) { ___method_11 = value; Il2CppCodeGenWriteBarrier((&___method_11), value); } inline static int32_t get_offset_of_proxy_12() { return static_cast<int32_t>(offsetof(FileWebRequest_t734527143, ___proxy_12)); } inline RuntimeObject* get_proxy_12() const { return ___proxy_12; } inline RuntimeObject** get_address_of_proxy_12() { return &___proxy_12; } inline void set_proxy_12(RuntimeObject* value) { ___proxy_12 = value; Il2CppCodeGenWriteBarrier((&___proxy_12), value); } inline static int32_t get_offset_of_preAuthenticate_13() { return static_cast<int32_t>(offsetof(FileWebRequest_t734527143, ___preAuthenticate_13)); } inline bool get_preAuthenticate_13() const { return ___preAuthenticate_13; } inline bool* get_address_of_preAuthenticate_13() { return &___preAuthenticate_13; } inline void set_preAuthenticate_13(bool value) { ___preAuthenticate_13 = value; } inline static int32_t get_offset_of_timeout_14() { return static_cast<int32_t>(offsetof(FileWebRequest_t734527143, ___timeout_14)); } inline int32_t get_timeout_14() const { return ___timeout_14; } inline int32_t* get_address_of_timeout_14() { return &___timeout_14; } inline void set_timeout_14(int32_t value) { ___timeout_14 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FILEWEBREQUEST_T734527143_H #ifndef REFRESHEVENTHANDLER_T3510407695_H #define REFRESHEVENTHANDLER_T3510407695_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.RefreshEventHandler struct RefreshEventHandler_t3510407695 : public MulticastDelegate_t2442382558 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // REFRESHEVENTHANDLER_T3510407695_H #ifndef REMOTECERTIFICATEVALIDATIONCALLBACK_T1272219315_H #define REMOTECERTIFICATEVALIDATIONCALLBACK_T1272219315_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.Security.RemoteCertificateValidationCallback struct RemoteCertificateValidationCallback_t1272219315 : public MulticastDelegate_t2442382558 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // REMOTECERTIFICATEVALIDATIONCALLBACK_T1272219315_H #ifndef ASYNCCALLBACK_T1634113497_H #define ASYNCCALLBACK_T1634113497_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.AsyncCallback struct AsyncCallback_t1634113497 : public MulticastDelegate_t2442382558 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ASYNCCALLBACK_T1634113497_H #ifndef RUNWORKERCOMPLETEDEVENTHANDLER_T2405942011_H #define RUNWORKERCOMPLETEDEVENTHANDLER_T2405942011_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.RunWorkerCompletedEventHandler struct RunWorkerCompletedEventHandler_t2405942011 : public MulticastDelegate_t2442382558 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNWORKERCOMPLETEDEVENTHANDLER_T2405942011_H #ifndef SERVICEPOINT_T236056219_H #define SERVICEPOINT_T236056219_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.ServicePoint struct ServicePoint_t236056219 : public RuntimeObject { public: // System.Uri System.Net.ServicePoint::uri Uri_t3882940875 * ___uri_0; // System.Int32 System.Net.ServicePoint::connectionLimit int32_t ___connectionLimit_1; // System.Int32 System.Net.ServicePoint::maxIdleTime int32_t ___maxIdleTime_2; // System.Int32 System.Net.ServicePoint::currentConnections int32_t ___currentConnections_3; // System.DateTime System.Net.ServicePoint::idleSince DateTime_t718238015 ___idleSince_4; // System.Boolean System.Net.ServicePoint::usesProxy bool ___usesProxy_5; // System.Boolean System.Net.ServicePoint::sendContinue bool ___sendContinue_6; // System.Boolean System.Net.ServicePoint::useConnect bool ___useConnect_7; // System.Object System.Net.ServicePoint::locker RuntimeObject * ___locker_8; // System.Object System.Net.ServicePoint::hostE RuntimeObject * ___hostE_9; // System.Boolean System.Net.ServicePoint::useNagle bool ___useNagle_10; public: inline static int32_t get_offset_of_uri_0() { return static_cast<int32_t>(offsetof(ServicePoint_t236056219, ___uri_0)); } inline Uri_t3882940875 * get_uri_0() const { return ___uri_0; } inline Uri_t3882940875 ** get_address_of_uri_0() { return &___uri_0; } inline void set_uri_0(Uri_t3882940875 * value) { ___uri_0 = value; Il2CppCodeGenWriteBarrier((&___uri_0), value); } inline static int32_t get_offset_of_connectionLimit_1() { return static_cast<int32_t>(offsetof(ServicePoint_t236056219, ___connectionLimit_1)); } inline int32_t get_connectionLimit_1() const { return ___connectionLimit_1; } inline int32_t* get_address_of_connectionLimit_1() { return &___connectionLimit_1; } inline void set_connectionLimit_1(int32_t value) { ___connectionLimit_1 = value; } inline static int32_t get_offset_of_maxIdleTime_2() { return static_cast<int32_t>(offsetof(ServicePoint_t236056219, ___maxIdleTime_2)); } inline int32_t get_maxIdleTime_2() const { return ___maxIdleTime_2; } inline int32_t* get_address_of_maxIdleTime_2() { return &___maxIdleTime_2; } inline void set_maxIdleTime_2(int32_t value) { ___maxIdleTime_2 = value; } inline static int32_t get_offset_of_currentConnections_3() { return static_cast<int32_t>(offsetof(ServicePoint_t236056219, ___currentConnections_3)); } inline int32_t get_currentConnections_3() const { return ___currentConnections_3; } inline int32_t* get_address_of_currentConnections_3() { return &___currentConnections_3; } inline void set_currentConnections_3(int32_t value) { ___currentConnections_3 = value; } inline static int32_t get_offset_of_idleSince_4() { return static_cast<int32_t>(offsetof(ServicePoint_t236056219, ___idleSince_4)); } inline DateTime_t718238015 get_idleSince_4() const { return ___idleSince_4; } inline DateTime_t718238015 * get_address_of_idleSince_4() { return &___idleSince_4; } inline void set_idleSince_4(DateTime_t718238015 value) { ___idleSince_4 = value; } inline static int32_t get_offset_of_usesProxy_5() { return static_cast<int32_t>(offsetof(ServicePoint_t236056219, ___usesProxy_5)); } inline bool get_usesProxy_5() const { return ___usesProxy_5; } inline bool* get_address_of_usesProxy_5() { return &___usesProxy_5; } inline void set_usesProxy_5(bool value) { ___usesProxy_5 = value; } inline static int32_t get_offset_of_sendContinue_6() { return static_cast<int32_t>(offsetof(ServicePoint_t236056219, ___sendContinue_6)); } inline bool get_sendContinue_6() const { return ___sendContinue_6; } inline bool* get_address_of_sendContinue_6() { return &___sendContinue_6; } inline void set_sendContinue_6(bool value) { ___sendContinue_6 = value; } inline static int32_t get_offset_of_useConnect_7() { return static_cast<int32_t>(offsetof(ServicePoint_t236056219, ___useConnect_7)); } inline bool get_useConnect_7() const { return ___useConnect_7; } inline bool* get_address_of_useConnect_7() { return &___useConnect_7; } inline void set_useConnect_7(bool value) { ___useConnect_7 = value; } inline static int32_t get_offset_of_locker_8() { return static_cast<int32_t>(offsetof(ServicePoint_t236056219, ___locker_8)); } inline RuntimeObject * get_locker_8() const { return ___locker_8; } inline RuntimeObject ** get_address_of_locker_8() { return &___locker_8; } inline void set_locker_8(RuntimeObject * value) { ___locker_8 = value; Il2CppCodeGenWriteBarrier((&___locker_8), value); } inline static int32_t get_offset_of_hostE_9() { return static_cast<int32_t>(offsetof(ServicePoint_t236056219, ___hostE_9)); } inline RuntimeObject * get_hostE_9() const { return ___hostE_9; } inline RuntimeObject ** get_address_of_hostE_9() { return &___hostE_9; } inline void set_hostE_9(RuntimeObject * value) { ___hostE_9 = value; Il2CppCodeGenWriteBarrier((&___hostE_9), value); } inline static int32_t get_offset_of_useNagle_10() { return static_cast<int32_t>(offsetof(ServicePoint_t236056219, ___useNagle_10)); } inline bool get_useNagle_10() const { return ___useNagle_10; } inline bool* get_address_of_useNagle_10() { return &___useNagle_10; } inline void set_useNagle_10(bool value) { ___useNagle_10 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SERVICEPOINT_T236056219_H #ifndef HTTPWEBREQUEST_T546590891_H #define HTTPWEBREQUEST_T546590891_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.HttpWebRequest struct HttpWebRequest_t546590891 : public WebRequest_t294146427 { public: // System.Uri System.Net.HttpWebRequest::requestUri Uri_t3882940875 * ___requestUri_6; // System.Uri System.Net.HttpWebRequest::actualUri Uri_t3882940875 * ___actualUri_7; // System.Boolean System.Net.HttpWebRequest::hostChanged bool ___hostChanged_8; // System.Boolean System.Net.HttpWebRequest::allowAutoRedirect bool ___allowAutoRedirect_9; // System.Boolean System.Net.HttpWebRequest::allowBuffering bool ___allowBuffering_10; // System.Security.Cryptography.X509Certificates.X509CertificateCollection System.Net.HttpWebRequest::certificates X509CertificateCollection_t3808695127 * ___certificates_11; // System.String System.Net.HttpWebRequest::connectionGroup String_t* ___connectionGroup_12; // System.Int64 System.Net.HttpWebRequest::contentLength int64_t ___contentLength_13; // System.Net.WebHeaderCollection System.Net.HttpWebRequest::webHeaders WebHeaderCollection_t3555365273 * ___webHeaders_14; // System.Boolean System.Net.HttpWebRequest::keepAlive bool ___keepAlive_15; // System.Int32 System.Net.HttpWebRequest::maxAutoRedirect int32_t ___maxAutoRedirect_16; // System.String System.Net.HttpWebRequest::mediaType String_t* ___mediaType_17; // System.String System.Net.HttpWebRequest::method String_t* ___method_18; // System.String System.Net.HttpWebRequest::initialMethod String_t* ___initialMethod_19; // System.Boolean System.Net.HttpWebRequest::pipelined bool ___pipelined_20; // System.Version System.Net.HttpWebRequest::version Version_t269959680 * ___version_21; // System.Net.IWebProxy System.Net.HttpWebRequest::proxy RuntimeObject* ___proxy_22; // System.Boolean System.Net.HttpWebRequest::sendChunked bool ___sendChunked_23; // System.Net.ServicePoint System.Net.HttpWebRequest::servicePoint ServicePoint_t236056219 * ___servicePoint_24; // System.Int32 System.Net.HttpWebRequest::timeout int32_t ___timeout_25; // System.Int32 System.Net.HttpWebRequest::redirects int32_t ___redirects_26; // System.Object System.Net.HttpWebRequest::locker RuntimeObject * ___locker_27; // System.Int32 System.Net.HttpWebRequest::readWriteTimeout int32_t ___readWriteTimeout_29; public: inline static int32_t get_offset_of_requestUri_6() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___requestUri_6)); } inline Uri_t3882940875 * get_requestUri_6() const { return ___requestUri_6; } inline Uri_t3882940875 ** get_address_of_requestUri_6() { return &___requestUri_6; } inline void set_requestUri_6(Uri_t3882940875 * value) { ___requestUri_6 = value; Il2CppCodeGenWriteBarrier((&___requestUri_6), value); } inline static int32_t get_offset_of_actualUri_7() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___actualUri_7)); } inline Uri_t3882940875 * get_actualUri_7() const { return ___actualUri_7; } inline Uri_t3882940875 ** get_address_of_actualUri_7() { return &___actualUri_7; } inline void set_actualUri_7(Uri_t3882940875 * value) { ___actualUri_7 = value; Il2CppCodeGenWriteBarrier((&___actualUri_7), value); } inline static int32_t get_offset_of_hostChanged_8() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___hostChanged_8)); } inline bool get_hostChanged_8() const { return ___hostChanged_8; } inline bool* get_address_of_hostChanged_8() { return &___hostChanged_8; } inline void set_hostChanged_8(bool value) { ___hostChanged_8 = value; } inline static int32_t get_offset_of_allowAutoRedirect_9() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___allowAutoRedirect_9)); } inline bool get_allowAutoRedirect_9() const { return ___allowAutoRedirect_9; } inline bool* get_address_of_allowAutoRedirect_9() { return &___allowAutoRedirect_9; } inline void set_allowAutoRedirect_9(bool value) { ___allowAutoRedirect_9 = value; } inline static int32_t get_offset_of_allowBuffering_10() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___allowBuffering_10)); } inline bool get_allowBuffering_10() const { return ___allowBuffering_10; } inline bool* get_address_of_allowBuffering_10() { return &___allowBuffering_10; } inline void set_allowBuffering_10(bool value) { ___allowBuffering_10 = value; } inline static int32_t get_offset_of_certificates_11() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___certificates_11)); } inline X509CertificateCollection_t3808695127 * get_certificates_11() const { return ___certificates_11; } inline X509CertificateCollection_t3808695127 ** get_address_of_certificates_11() { return &___certificates_11; } inline void set_certificates_11(X509CertificateCollection_t3808695127 * value) { ___certificates_11 = value; Il2CppCodeGenWriteBarrier((&___certificates_11), value); } inline static int32_t get_offset_of_connectionGroup_12() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___connectionGroup_12)); } inline String_t* get_connectionGroup_12() const { return ___connectionGroup_12; } inline String_t** get_address_of_connectionGroup_12() { return &___connectionGroup_12; } inline void set_connectionGroup_12(String_t* value) { ___connectionGroup_12 = value; Il2CppCodeGenWriteBarrier((&___connectionGroup_12), value); } inline static int32_t get_offset_of_contentLength_13() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___contentLength_13)); } inline int64_t get_contentLength_13() const { return ___contentLength_13; } inline int64_t* get_address_of_contentLength_13() { return &___contentLength_13; } inline void set_contentLength_13(int64_t value) { ___contentLength_13 = value; } inline static int32_t get_offset_of_webHeaders_14() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___webHeaders_14)); } inline WebHeaderCollection_t3555365273 * get_webHeaders_14() const { return ___webHeaders_14; } inline WebHeaderCollection_t3555365273 ** get_address_of_webHeaders_14() { return &___webHeaders_14; } inline void set_webHeaders_14(WebHeaderCollection_t3555365273 * value) { ___webHeaders_14 = value; Il2CppCodeGenWriteBarrier((&___webHeaders_14), value); } inline static int32_t get_offset_of_keepAlive_15() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___keepAlive_15)); } inline bool get_keepAlive_15() const { return ___keepAlive_15; } inline bool* get_address_of_keepAlive_15() { return &___keepAlive_15; } inline void set_keepAlive_15(bool value) { ___keepAlive_15 = value; } inline static int32_t get_offset_of_maxAutoRedirect_16() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___maxAutoRedirect_16)); } inline int32_t get_maxAutoRedirect_16() const { return ___maxAutoRedirect_16; } inline int32_t* get_address_of_maxAutoRedirect_16() { return &___maxAutoRedirect_16; } inline void set_maxAutoRedirect_16(int32_t value) { ___maxAutoRedirect_16 = value; } inline static int32_t get_offset_of_mediaType_17() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___mediaType_17)); } inline String_t* get_mediaType_17() const { return ___mediaType_17; } inline String_t** get_address_of_mediaType_17() { return &___mediaType_17; } inline void set_mediaType_17(String_t* value) { ___mediaType_17 = value; Il2CppCodeGenWriteBarrier((&___mediaType_17), value); } inline static int32_t get_offset_of_method_18() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___method_18)); } inline String_t* get_method_18() const { return ___method_18; } inline String_t** get_address_of_method_18() { return &___method_18; } inline void set_method_18(String_t* value) { ___method_18 = value; Il2CppCodeGenWriteBarrier((&___method_18), value); } inline static int32_t get_offset_of_initialMethod_19() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___initialMethod_19)); } inline String_t* get_initialMethod_19() const { return ___initialMethod_19; } inline String_t** get_address_of_initialMethod_19() { return &___initialMethod_19; } inline void set_initialMethod_19(String_t* value) { ___initialMethod_19 = value; Il2CppCodeGenWriteBarrier((&___initialMethod_19), value); } inline static int32_t get_offset_of_pipelined_20() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___pipelined_20)); } inline bool get_pipelined_20() const { return ___pipelined_20; } inline bool* get_address_of_pipelined_20() { return &___pipelined_20; } inline void set_pipelined_20(bool value) { ___pipelined_20 = value; } inline static int32_t get_offset_of_version_21() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___version_21)); } inline Version_t269959680 * get_version_21() const { return ___version_21; } inline Version_t269959680 ** get_address_of_version_21() { return &___version_21; } inline void set_version_21(Version_t269959680 * value) { ___version_21 = value; Il2CppCodeGenWriteBarrier((&___version_21), value); } inline static int32_t get_offset_of_proxy_22() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___proxy_22)); } inline RuntimeObject* get_proxy_22() const { return ___proxy_22; } inline RuntimeObject** get_address_of_proxy_22() { return &___proxy_22; } inline void set_proxy_22(RuntimeObject* value) { ___proxy_22 = value; Il2CppCodeGenWriteBarrier((&___proxy_22), value); } inline static int32_t get_offset_of_sendChunked_23() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___sendChunked_23)); } inline bool get_sendChunked_23() const { return ___sendChunked_23; } inline bool* get_address_of_sendChunked_23() { return &___sendChunked_23; } inline void set_sendChunked_23(bool value) { ___sendChunked_23 = value; } inline static int32_t get_offset_of_servicePoint_24() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___servicePoint_24)); } inline ServicePoint_t236056219 * get_servicePoint_24() const { return ___servicePoint_24; } inline ServicePoint_t236056219 ** get_address_of_servicePoint_24() { return &___servicePoint_24; } inline void set_servicePoint_24(ServicePoint_t236056219 * value) { ___servicePoint_24 = value; Il2CppCodeGenWriteBarrier((&___servicePoint_24), value); } inline static int32_t get_offset_of_timeout_25() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___timeout_25)); } inline int32_t get_timeout_25() const { return ___timeout_25; } inline int32_t* get_address_of_timeout_25() { return &___timeout_25; } inline void set_timeout_25(int32_t value) { ___timeout_25 = value; } inline static int32_t get_offset_of_redirects_26() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___redirects_26)); } inline int32_t get_redirects_26() const { return ___redirects_26; } inline int32_t* get_address_of_redirects_26() { return &___redirects_26; } inline void set_redirects_26(int32_t value) { ___redirects_26 = value; } inline static int32_t get_offset_of_locker_27() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___locker_27)); } inline RuntimeObject * get_locker_27() const { return ___locker_27; } inline RuntimeObject ** get_address_of_locker_27() { return &___locker_27; } inline void set_locker_27(RuntimeObject * value) { ___locker_27 = value; Il2CppCodeGenWriteBarrier((&___locker_27), value); } inline static int32_t get_offset_of_readWriteTimeout_29() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891, ___readWriteTimeout_29)); } inline int32_t get_readWriteTimeout_29() const { return ___readWriteTimeout_29; } inline int32_t* get_address_of_readWriteTimeout_29() { return &___readWriteTimeout_29; } inline void set_readWriteTimeout_29(int32_t value) { ___readWriteTimeout_29 = value; } }; struct HttpWebRequest_t546590891_StaticFields { public: // System.Int32 System.Net.HttpWebRequest::defaultMaxResponseHeadersLength int32_t ___defaultMaxResponseHeadersLength_28; public: inline static int32_t get_offset_of_defaultMaxResponseHeadersLength_28() { return static_cast<int32_t>(offsetof(HttpWebRequest_t546590891_StaticFields, ___defaultMaxResponseHeadersLength_28)); } inline int32_t get_defaultMaxResponseHeadersLength_28() const { return ___defaultMaxResponseHeadersLength_28; } inline int32_t* get_address_of_defaultMaxResponseHeadersLength_28() { return &___defaultMaxResponseHeadersLength_28; } inline void set_defaultMaxResponseHeadersLength_28(int32_t value) { ___defaultMaxResponseHeadersLength_28 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // HTTPWEBREQUEST_T546590891_H #ifndef EVENTHANDLER_T1223794391_H #define EVENTHANDLER_T1223794391_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.EventHandler struct EventHandler_t1223794391 : public MulticastDelegate_t2442382558 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EVENTHANDLER_T1223794391_H #ifndef PROGRESSCHANGEDEVENTHANDLER_T1282004475_H #define PROGRESSCHANGEDEVENTHANDLER_T1282004475_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.ProgressChangedEventHandler struct ProgressChangedEventHandler_t1282004475 : public MulticastDelegate_t2442382558 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PROGRESSCHANGEDEVENTHANDLER_T1282004475_H // System.Attribute[] struct AttributeU5BU5D_t187261448 : public RuntimeArray { public: ALIGN_FIELD (8) Attribute_t2739832645 * m_Items[1]; public: inline Attribute_t2739832645 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Attribute_t2739832645 ** 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_t2739832645 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline Attribute_t2739832645 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Attribute_t2739832645 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Attribute_t2739832645 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.Type[] struct TypeU5BU5D_t89919618 : 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(m_Items + index, 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(m_Items + index, value); } }; // System.Object[] struct ObjectU5BU5D_t4199014551 : 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(m_Items + index, 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(m_Items + index, value); } }; // System.ComponentModel.PropertyDescriptor[] struct PropertyDescriptorU5BU5D_t2463291496 : public RuntimeArray { public: ALIGN_FIELD (8) PropertyDescriptor_t2555988069 * m_Items[1]; public: inline PropertyDescriptor_t2555988069 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline PropertyDescriptor_t2555988069 ** 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, PropertyDescriptor_t2555988069 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline PropertyDescriptor_t2555988069 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline PropertyDescriptor_t2555988069 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, PropertyDescriptor_t2555988069 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.String[] struct StringU5BU5D_t1187188029 : 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(m_Items + index, 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(m_Items + index, value); } }; // System.Reflection.ParameterModifier[] struct ParameterModifierU5BU5D_t4226445516 : public RuntimeArray { public: ALIGN_FIELD (8) ParameterModifier_t3738514641 m_Items[1]; public: inline ParameterModifier_t3738514641 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ParameterModifier_t3738514641 * 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_t3738514641 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline ParameterModifier_t3738514641 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ParameterModifier_t3738514641 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterModifier_t3738514641 value) { m_Items[index] = value; } }; // System.Attribute[][] struct AttributeU5BU5DU5BU5D_t1480584409 : public RuntimeArray { public: ALIGN_FIELD (8) AttributeU5BU5D_t187261448* m_Items[1]; public: inline AttributeU5BU5D_t187261448* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline AttributeU5BU5D_t187261448** 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, AttributeU5BU5D_t187261448* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline AttributeU5BU5D_t187261448* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline AttributeU5BU5D_t187261448** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, AttributeU5BU5D_t187261448* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.Reflection.MethodInfo[] struct MethodInfoU5BU5D_t2289520024 : 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(m_Items + index, 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(m_Items + index, value); } }; // System.Reflection.ParameterInfo[] struct ParameterInfoU5BU5D_t3157369927 : public RuntimeArray { public: ALIGN_FIELD (8) ParameterInfo_t4014848178 * m_Items[1]; public: inline ParameterInfo_t4014848178 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ParameterInfo_t4014848178 ** 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_t4014848178 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline ParameterInfo_t4014848178 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ParameterInfo_t4014848178 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterInfo_t4014848178 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.Reflection.EventInfo[] struct EventInfoU5BU5D_t4034732639 : public RuntimeArray { public: ALIGN_FIELD (8) EventInfo_t * m_Items[1]; public: inline EventInfo_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline EventInfo_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, EventInfo_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline EventInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline EventInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, EventInfo_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.ComponentModel.EventDescriptor[] struct EventDescriptorU5BU5D_t1417302411 : public RuntimeArray { public: ALIGN_FIELD (8) EventDescriptor_t3701426622 * m_Items[1]; public: inline EventDescriptor_t3701426622 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline EventDescriptor_t3701426622 ** 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, EventDescriptor_t3701426622 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline EventDescriptor_t3701426622 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline EventDescriptor_t3701426622 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, EventDescriptor_t3701426622 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.Reflection.PropertyInfo[] struct PropertyInfoU5BU5D_t411061045 : public RuntimeArray { public: ALIGN_FIELD (8) PropertyInfo_t * m_Items[1]; public: inline PropertyInfo_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline PropertyInfo_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, PropertyInfo_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline PropertyInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline PropertyInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, PropertyInfo_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.Net.IPAddress[] struct IPAddressU5BU5D_t3756700779 : public RuntimeArray { public: ALIGN_FIELD (8) IPAddress_t2830710878 * m_Items[1]; public: inline IPAddress_t2830710878 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline IPAddress_t2830710878 ** 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, IPAddress_t2830710878 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline IPAddress_t2830710878 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline IPAddress_t2830710878 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, IPAddress_t2830710878 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.UInt16[] struct UInt16U5BU5D_t1255862157 : public RuntimeArray { public: ALIGN_FIELD (8) uint16_t m_Items[1]; public: inline uint16_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint16_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, uint16_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint16_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint16_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint16_t value) { m_Items[index] = value; } }; // System.Char[] struct CharU5BU5D_t1289681795 : 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.Byte[] struct ByteU5BU5D_t1709610627 : 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.Boolean[] struct BooleanU5BU5D_t184022451 : 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; } }; // System.Int32 System.Array::IndexOf<System.Object>(!!0[],!!0) extern "C" int32_t Array_IndexOf_TisRuntimeObject_m3138364694_gshared (RuntimeObject * __this /* static, unused */, ObjectU5BU5D_t4199014551* p0, RuntimeObject * p1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor() extern "C" void Dictionary_2__ctor_m4268927328_gshared (Dictionary_2_t1587060589 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<!0>) extern "C" void Dictionary_2__ctor_m451964718_gshared (Dictionary_2_t1587060589 * __this, RuntimeObject* p0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(!0,!1&) extern "C" bool Dictionary_2_TryGetValue_m2459405907_gshared (Dictionary_2_t1587060589 * __this, RuntimeObject * p0, RuntimeObject ** p1, const RuntimeMethod* method); // System.Void System.Collections.Generic.LinkedList`1<System.Object>::.ctor() extern "C" void LinkedList_1__ctor_m1014243409_gshared (LinkedList_1_t851826669 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Add(!0,!1) extern "C" void Dictionary_2_Add_m3911559144_gshared (Dictionary_2_t1587060589 * __this, RuntimeObject * p0, RuntimeObject * p1, const RuntimeMethod* method); // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Object>::AddLast(T) extern "C" LinkedListNode_1_t3886047370 * LinkedList_1_AddLast_m1906737739_gshared (LinkedList_1_t851826669 * __this, RuntimeObject * p0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.LinkedList`1<System.Object>::get_Count() extern "C" int32_t LinkedList_1_get_Count_m3797302053_gshared (LinkedList_1_t851826669 * __this, const RuntimeMethod* method); // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Object>::get_Last() extern "C" LinkedListNode_1_t3886047370 * LinkedList_1_get_Last_m3716530414_gshared (LinkedList_1_t851826669 * __this, const RuntimeMethod* method); // T System.Collections.Generic.LinkedListNode`1<System.Object>::get_Value() extern "C" RuntimeObject * LinkedListNode_1_get_Value_m3545330137_gshared (LinkedListNode_1_t3886047370 * __this, const RuntimeMethod* method); // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Object>::get_First() extern "C" LinkedListNode_1_t3886047370 * LinkedList_1_get_First_m1699037605_gshared (LinkedList_1_t851826669 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LinkedList`1<System.Object>::Remove(System.Collections.Generic.LinkedListNode`1<T>) extern "C" void LinkedList_1_Remove_m358144399_gshared (LinkedList_1_t851826669 * __this, LinkedListNode_1_t3886047370 * p0, const RuntimeMethod* method); // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1<System.Object>::get_Previous() extern "C" LinkedListNode_1_t3886047370 * LinkedListNode_1_get_Previous_m1261015704_gshared (LinkedListNode_1_t3886047370 * __this, const RuntimeMethod* method); // System.Void System.Array::Sort<System.Object,System.Object>(!!0[],!!1[]) extern "C" void Array_Sort_TisRuntimeObject_TisRuntimeObject_m2645248746_gshared (RuntimeObject * __this /* static, unused */, ObjectU5BU5D_t4199014551* p0, ObjectU5BU5D_t4199014551* p1, const RuntimeMethod* method); // System.Void System.Collections.Generic.EqualityComparer`1<System.Object>::.ctor() extern "C" void EqualityComparer_1__ctor_m1642193976_gshared (EqualityComparer_1_t2696374620 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::.ctor(System.Collections.Generic.IEqualityComparer`1<!0>) extern "C" void Dictionary_2__ctor_m3638461102_gshared (Dictionary_2_t3132322689 * __this, RuntimeObject* p0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::Add(!0,!1) extern "C" void Dictionary_2_Add_m574372687_gshared (Dictionary_2_t3132322689 * __this, RuntimeObject * p0, bool p1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor(System.Int32) extern "C" void Dictionary_2__ctor_m3507144990_gshared (Dictionary_2_t769613296 * __this, int32_t p0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Add(!0,!1) extern "C" void Dictionary_2_Add_m275528619_gshared (Dictionary_2_t769613296 * __this, RuntimeObject * p0, int32_t p1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::TryGetValue(!0,!1&) extern "C" bool Dictionary_2_TryGetValue_m3424278023_gshared (Dictionary_2_t769613296 * __this, RuntimeObject * p0, int32_t* p1, const RuntimeMethod* method); // System.Void System.Attribute::.ctor() extern "C" void Attribute__ctor_m3216322730 (Attribute_t2739832645 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.MergablePropertyAttribute::.ctor(System.Boolean) extern "C" void MergablePropertyAttribute__ctor_m1411196368 (MergablePropertyAttribute_t3224318606 * __this, bool ___allowMerge0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.ComponentModel.MergablePropertyAttribute::get_AllowMerge() extern "C" bool MergablePropertyAttribute_get_AllowMerge_m3477706305 (MergablePropertyAttribute_t3224318606 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Boolean::GetHashCode() extern "C" int32_t Boolean_GetHashCode_m2529840312 (bool* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.TypeConverter::.ctor() extern "C" void TypeConverter__ctor_m3014391247 (TypeConverter_t3595149642 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.NotImplementedException::.ctor() extern "C" void NotImplementedException__ctor_m1549985598 (NotImplementedException_t682134635 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.NotifyParentPropertyAttribute::.ctor(System.Boolean) extern "C" void NotifyParentPropertyAttribute__ctor_m1003641881 (NotifyParentPropertyAttribute_t178192121 * __this, bool ___notifyParent0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.ComponentModel.NotifyParentPropertyAttribute::get_NotifyParent() extern "C" bool NotifyParentPropertyAttribute_get_NotifyParent_m1184636470 (NotifyParentPropertyAttribute_t178192121 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ArgumentNullException::.ctor(System.String) extern "C" void ArgumentNullException__ctor_m4164121496 (ArgumentNullException_t873386607 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Type System.Nullable::GetUnderlyingType(System.Type) extern "C" Type_t * Nullable_GetUnderlyingType_m1262883790 (RuntimeObject * __this /* static, unused */, Type_t * p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.TypeConverter System.ComponentModel.TypeDescriptor::GetConverter(System.Type) extern "C" TypeConverter_t3595149642 * TypeDescriptor_GetConverter_m1561978434 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.ComponentModel.TypeConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type) extern "C" bool TypeConverter_CanConvertFrom_m2108188258 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, Type_t * ___sourceType1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Type System.Object::GetType() extern "C" Type_t * Object_GetType_m1134229006 (RuntimeObject * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.String::IsNullOrEmpty(System.String) extern "C" bool String_IsNullOrEmpty_m1920291724 (RuntimeObject * __this /* static, unused */, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.ComponentModel.TypeConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object) extern "C" RuntimeObject * TypeConverter_ConvertFrom_m3891144487 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, CultureInfo_t270095993 * ___culture1, RuntimeObject * ___value2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.ComponentModel.TypeConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type) extern "C" RuntimeObject * TypeConverter_ConvertTo_m4033528233 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, CultureInfo_t270095993 * ___culture1, RuntimeObject * ___value2, Type_t * ___destinationType3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.ComponentModel.TypeConverter::CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary) extern "C" RuntimeObject * TypeConverter_CreateInstance_m1198640834 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, RuntimeObject* ___propertyValues1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.ComponentModel.TypeConverter::GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext) extern "C" bool TypeConverter_GetCreateInstanceSupported_m3052882325 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeConverter::GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[]) extern "C" PropertyDescriptorCollection_t2982717747 * TypeConverter_GetProperties_m1252187426 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, AttributeU5BU5D_t187261448* ___attributes2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.ArrayList::.ctor(System.Collections.ICollection) extern "C" void ArrayList__ctor_m2443836621 (ArrayList_t4277734320 * __this, RuntimeObject* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.TypeConverter/StandardValuesCollection::.ctor(System.Collections.ICollection) extern "C" void StandardValuesCollection__ctor_m97593915 (StandardValuesCollection_t884959189 * __this, RuntimeObject* ___values0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.TypeConverter/StandardValuesCollection System.ComponentModel.TypeConverter::GetStandardValues(System.ComponentModel.ITypeDescriptorContext) extern "C" StandardValuesCollection_t884959189 * TypeConverter_GetStandardValues_m276452726 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext) extern "C" bool TypeConverter_GetStandardValuesExclusive_m1667578958 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext) extern "C" bool TypeConverter_GetStandardValuesSupported_m2802635703 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.ComponentModel.TypeConverter::IsValid(System.ComponentModel.ITypeDescriptorContext,System.Object) extern "C" bool TypeConverter_IsValid_m2083459950 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.PasswordPropertyTextAttribute::.ctor(System.Boolean) extern "C" void PasswordPropertyTextAttribute__ctor_m3349410036 (PasswordPropertyTextAttribute_t3646071524 * __this, bool ___password0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.ComponentModel.PasswordPropertyTextAttribute::get_Password() extern "C" bool PasswordPropertyTextAttribute_get_Password_m3506583899 (PasswordPropertyTextAttribute_t3646071524 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.ComponentModel.PasswordPropertyTextAttribute::Equals(System.Object) extern "C" bool PasswordPropertyTextAttribute_Equals_m2062339233 (PasswordPropertyTextAttribute_t3646071524 * __this, RuntimeObject * ___o0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.EventArgs::.ctor() extern "C" void EventArgs__ctor_m2329401472 (EventArgs_t3326158294 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.ProgressChangedEventHandler::Invoke(System.Object,System.ComponentModel.ProgressChangedEventArgs) extern "C" void ProgressChangedEventHandler_Invoke_m3316856453 (ProgressChangedEventHandler_t1282004475 * __this, RuntimeObject * ___sender0, ProgressChangedEventArgs_t4258918619 * ___e1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.PropertyChangedEventHandler::Invoke(System.Object,System.ComponentModel.PropertyChangedEventArgs) extern "C" void PropertyChangedEventHandler_Invoke_m982957224 (PropertyChangedEventHandler_t3629517548 * __this, RuntimeObject * ___sender0, PropertyChangedEventArgs_t483343543 * ___e1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.MemberDescriptor::.ctor(System.ComponentModel.MemberDescriptor) extern "C" void MemberDescriptor__ctor_m2968708675 (MemberDescriptor_t1331681536 * __this, MemberDescriptor_t1331681536 * ___reference0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.MemberDescriptor::.ctor(System.ComponentModel.MemberDescriptor,System.Attribute[]) extern "C" void MemberDescriptor__ctor_m3153297620 (MemberDescriptor_t1331681536 * __this, MemberDescriptor_t1331681536 * ___reference0, AttributeU5BU5D_t187261448* ___attrs1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.MemberDescriptor::.ctor(System.String,System.Attribute[]) extern "C" void MemberDescriptor__ctor_m790722519 (MemberDescriptor_t1331681536 * __this, String_t* ___name0, AttributeU5BU5D_t187261448* ___attrs1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) extern "C" Type_t * Type_GetTypeFromHandle_m2715795878 (RuntimeObject * __this /* static, unused */, RuntimeTypeHandle_t1916376386 p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.ComponentModel.TypeConverterAttribute::get_ConverterTypeName() extern "C" String_t* TypeConverterAttribute_get_ConverterTypeName_m3171634346 (TypeConverterAttribute_t695735035 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Type System.ComponentModel.PropertyDescriptor::GetTypeFromName(System.String) extern "C" Type_t * PropertyDescriptor_GetTypeFromName_m2169027273 (PropertyDescriptor_t2555988069 * __this, String_t* ___typeName0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.ComponentModel.PropertyDescriptor::CreateInstance(System.Type) extern "C" RuntimeObject * PropertyDescriptor_CreateInstance_m1411741552 (PropertyDescriptor_t2555988069 * __this, Type_t * ___type0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.ComponentModel.LocalizableAttribute::get_IsLocalizable() extern "C" bool LocalizableAttribute_get_IsLocalizable_m206364915 (LocalizableAttribute_t2753722371 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.DesignerSerializationVisibility System.ComponentModel.DesignerSerializationVisibilityAttribute::get_Visibility() extern "C" int32_t DesignerSerializationVisibilityAttribute_get_Visibility_m3248641368 (DesignerSerializationVisibilityAttribute_t3410153364 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Hashtable::.ctor() extern "C" void Hashtable__ctor_m4203419798 (Hashtable_t448324601 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Delegate System.Delegate::Combine(System.Delegate,System.Delegate) extern "C" Delegate_t2639791074 * Delegate_Combine_m3162651421 (RuntimeObject * __this /* static, unused */, Delegate_t2639791074 * p0, Delegate_t2639791074 * p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Delegate System.Delegate::Remove(System.Delegate,System.Delegate) extern "C" Delegate_t2639791074 * Delegate_Remove_m798364057 (RuntimeObject * __this /* static, unused */, Delegate_t2639791074 * p0, Delegate_t2639791074 * p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.MemberDescriptor::FillAttributes(System.Collections.IList) extern "C" void MemberDescriptor_FillAttributes_m1535506199 (MemberDescriptor_t1331681536 * __this, RuntimeObject* ___attributeList0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.ComponentModel.MemberDescriptor::GetInvocationTarget(System.Type,System.Object) extern "C" RuntimeObject * MemberDescriptor_GetInvocationTarget_m865065014 (MemberDescriptor_t1331681536 * __this, Type_t * ___type0, RuntimeObject * ___instance1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.EventHandler::Invoke(System.Object,System.EventArgs) extern "C" void EventHandler_Invoke_m2078668233 (EventHandler_t1223794391 * __this, RuntimeObject * p0, EventArgs_t3326158294 * p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Reflection.ConstructorInfo System.Type::GetConstructor(System.Type[]) extern "C" ConstructorInfo_t673747461 * Type_GetConstructor_m2299987216 (Type_t * __this, TypeU5BU5D_t89919618* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.ComponentModel.TypeDescriptor::CreateInstance(System.IServiceProvider,System.Type,System.Type[],System.Object[]) extern "C" RuntimeObject * TypeDescriptor_CreateInstance_m2864588923 (RuntimeObject * __this /* static, unused */, RuntimeObject* ___provider0, Type_t * ___objectType1, TypeU5BU5D_t89919618* ___argTypes2, ObjectU5BU5D_t4199014551* ___args3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.ComponentModel.MemberDescriptor::Equals(System.Object) extern "C" bool MemberDescriptor_Equals_m2953265216 (MemberDescriptor_t1331681536 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.ComponentModel.MemberDescriptor::GetHashCode() extern "C" int32_t MemberDescriptor_GetHashCode_m1577113279 (MemberDescriptor_t1331681536 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Object,System.Attribute[]) extern "C" PropertyDescriptorCollection_t2982717747 * TypeDescriptor_GetProperties_m2849812490 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, AttributeU5BU5D_t187261448* ___attributes1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.ComponentModel.EditorAttribute::get_EditorTypeName() extern "C" String_t* EditorAttribute_get_EditorTypeName_m3243196888 (EditorAttribute_t3439099620 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.ComponentModel.TypeDescriptor::GetEditor(System.Type,System.Type) extern "C" RuntimeObject * TypeDescriptor_GetEditor_m2456209240 (RuntimeObject * __this /* static, unused */, Type_t * ___componentType0, Type_t * ___editorBaseType1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Trim() extern "C" String_t* String_Trim_m17949824 (String_t* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.String::get_Length() extern "C" int32_t String_get_Length_m2584136399 (String_t* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Type System.Type::GetType(System.String) extern "C" Type_t * Type_GetType_m3930427402 (RuntimeObject * __this /* static, unused */, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.String::IndexOf(System.String) extern "C" int32_t String_IndexOf_m1251172182 (String_t* __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Substring(System.Int32,System.Int32) extern "C" String_t* String_Substring_m3946733520 (String_t* __this, int32_t p0, int32_t p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Object::.ctor() extern "C" void Object__ctor_m3115879119 (RuntimeObject * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.ArrayList::.ctor() extern "C" void ArrayList__ctor_m3769859358 (ArrayList_t4277734320 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.PropertyDescriptorCollection::.ctor(System.ComponentModel.PropertyDescriptor[]) extern "C" void PropertyDescriptorCollection__ctor_m175848616 (PropertyDescriptorCollection_t2982717747 * __this, PropertyDescriptorU5BU5D_t2463291496* ___properties0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.PropertyDescriptorCollection::.ctor(System.ComponentModel.PropertyDescriptor[],System.Boolean) extern "C" void PropertyDescriptorCollection__ctor_m3850586682 (PropertyDescriptorCollection_t2982717747 * __this, PropertyDescriptorU5BU5D_t2463291496* ___properties0, bool ___readOnly1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.ComponentModel.PropertyDescriptorCollection::Add(System.ComponentModel.PropertyDescriptor) extern "C" int32_t PropertyDescriptorCollection_Add_m3198021043 (PropertyDescriptorCollection_t2982717747 * __this, PropertyDescriptor_t2555988069 * ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ArgumentException::.ctor(System.String) extern "C" void ArgumentException__ctor_m509860574 (ArgumentException_t1946723077 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.PropertyDescriptorCollection::Clear() extern "C" void PropertyDescriptorCollection_Clear_m2906248565 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.ComponentModel.PropertyDescriptorCollection::Contains(System.ComponentModel.PropertyDescriptor) extern "C" bool PropertyDescriptorCollection_Contains_m348670085 (PropertyDescriptorCollection_t2982717747 * __this, PropertyDescriptor_t2555988069 * ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.ComponentModel.PropertyDescriptorCollection::IndexOf(System.ComponentModel.PropertyDescriptor) extern "C" int32_t PropertyDescriptorCollection_IndexOf_m2085396069 (PropertyDescriptorCollection_t2982717747 * __this, PropertyDescriptor_t2555988069 * ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.PropertyDescriptorCollection::Insert(System.Int32,System.ComponentModel.PropertyDescriptor) extern "C" void PropertyDescriptorCollection_Insert_m2348703070 (PropertyDescriptorCollection_t2982717747 * __this, int32_t ___index0, PropertyDescriptor_t2555988069 * ___value1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.PropertyDescriptorCollection::Remove(System.ComponentModel.PropertyDescriptor) extern "C" void PropertyDescriptorCollection_Remove_m173340434 (PropertyDescriptorCollection_t2982717747 * __this, PropertyDescriptor_t2555988069 * ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.PropertyDescriptorCollection::RemoveAt(System.Int32) extern "C" void PropertyDescriptorCollection_RemoveAt_m797429759 (PropertyDescriptorCollection_t2982717747 * __this, int32_t ___index0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.ComponentModel.PropertyDescriptorCollection::get_Count() extern "C" int32_t PropertyDescriptorCollection_get_Count_m1331030086 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.NotSupportedException::.ctor() extern "C" void NotSupportedException__ctor_m2970087223 (NotSupportedException_t2060369835 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ArgumentException::.ctor() extern "C" void ArgumentException__ctor_m3455789916 (ArgumentException_t1946723077 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.String::Compare(System.String,System.String,System.StringComparison) extern "C" int32_t String_Compare_m4254563879 (RuntimeObject * __this /* static, unused */, String_t* p0, String_t* p1, int32_t p2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.PropertyDescriptorCollection::.ctor() extern "C" void PropertyDescriptorCollection__ctor_m3178666718 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptorCollection::CloneCollection() extern "C" PropertyDescriptorCollection_t2982717747 * PropertyDescriptorCollection_CloneCollection_m2678864866 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.PropertyDescriptorCollection::InternalSort(System.Collections.IComparer) extern "C" void PropertyDescriptorCollection_InternalSort_m1151047326 (PropertyDescriptorCollection_t2982717747 * __this, RuntimeObject* ___ic0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.PropertyDescriptorCollection::InternalSort(System.String[]) extern "C" void PropertyDescriptorCollection_InternalSort_m1985073176 (PropertyDescriptorCollection_t2982717747 * __this, StringU5BU5D_t1187188029* ___order0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.ArrayList System.ComponentModel.PropertyDescriptorCollection::ExtractItems(System.String[]) extern "C" ArrayList_t4277734320 * PropertyDescriptorCollection_ExtractItems_m494224890 (PropertyDescriptorCollection_t2982717747 * __this, StringU5BU5D_t1187188029* ___names0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.IComparer System.ComponentModel.MemberDescriptor::get_DefaultComparer() extern "C" RuntimeObject* MemberDescriptor_get_DefaultComparer_m594962505 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.ArrayList::.ctor(System.Int32) extern "C" void ArrayList__ctor_m4276013087 (ArrayList_t4277734320 * __this, int32_t p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Array::IndexOf<System.String>(!!0[],!!0) #define Array_IndexOf_TisString_t_m2004360725(__this /* static, unused */, p0, p1, method) (( int32_t (*) (RuntimeObject * /* static, unused */, StringU5BU5D_t1187188029*, String_t*, const RuntimeMethod*))Array_IndexOf_TisRuntimeObject_m3138364694_gshared)(__this /* static, unused */, p0, p1, method) // System.Boolean System.ComponentModel.AttributeCollection::Contains(System.Attribute[]) extern "C" bool AttributeCollection_Contains_m2230923291 (AttributeCollection_t3634739288 * __this, AttributeU5BU5D_t187261448* ___attributes0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.ReadOnlyAttribute::.ctor(System.Boolean) extern "C" void ReadOnlyAttribute__ctor_m1220985150 (ReadOnlyAttribute_t1832938840 * __this, bool ___read_only0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.ComponentModel.ReadOnlyAttribute::get_IsReadOnly() extern "C" bool ReadOnlyAttribute_get_IsReadOnly_m3734666292 (ReadOnlyAttribute_t1832938840 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Boolean::Equals(System.Boolean) extern "C" bool Boolean_Equals_m1814344042 (bool* __this, bool p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.ComponentModel.ReadOnlyAttribute::Equals(System.Object) extern "C" bool ReadOnlyAttribute_Equals_m3730980055 (ReadOnlyAttribute_t1832938840 * __this, RuntimeObject * ___o0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.RecommendedAsConfigurableAttribute::.ctor(System.Boolean) extern "C" void RecommendedAsConfigurableAttribute__ctor_m237057204 (RecommendedAsConfigurableAttribute_t2486032475 * __this, bool ___recommendedAsConfigurable0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.ComponentModel.RecommendedAsConfigurableAttribute::get_RecommendedAsConfigurable() extern "C" bool RecommendedAsConfigurableAttribute_get_RecommendedAsConfigurable_m1001760261 (RecommendedAsConfigurableAttribute_t2486032475 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.EventDescriptor::.ctor(System.String,System.Attribute[]) extern "C" void EventDescriptor__ctor_m1718751552 (EventDescriptor_t3701426622 * __this, String_t* ___str0, AttributeU5BU5D_t187261448* ___attrs1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Type System.Reflection.EventInfo::get_EventHandlerType() extern "C" Type_t * EventInfo_get_EventHandlerType_m2365299964 (EventInfo_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Reflection.MethodInfo System.Reflection.EventInfo::GetAddMethod() extern "C" MethodInfo_t * EventInfo_GetAddMethod_m3339908821 (EventInfo_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Reflection.MethodInfo System.Reflection.EventInfo::GetRemoveMethod() extern "C" MethodInfo_t * EventInfo_GetRemoveMethod_m4099505678 (EventInfo_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.EventDescriptor::.ctor(System.ComponentModel.MemberDescriptor,System.Attribute[]) extern "C" void EventDescriptor__ctor_m734671843 (EventDescriptor_t3701426622 * __this, MemberDescriptor_t1331681536 * ___desc0, AttributeU5BU5D_t187261448* ___attrs1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Reflection.EventInfo System.Type::GetEvent(System.String) extern "C" EventInfo_t * Type_GetEvent_m1771644022 (Type_t * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Concat(System.String,System.String,System.String) extern "C" String_t* String_Concat_m1351243557 (RuntimeObject * __this /* static, unused */, String_t* p0, String_t* p1, String_t* p2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[]) extern "C" RuntimeObject * MethodBase_Invoke_m1864115319 (MethodBase_t2815042627 * __this, RuntimeObject * p0, ObjectU5BU5D_t4199014551* p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Reflection.EventInfo System.ComponentModel.ReflectionEventDescriptor::GetEventInfo() extern "C" EventInfo_t * ReflectionEventDescriptor_GetEventInfo_m2686041103 (ReflectionEventDescriptor_t4023907121 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Reflection.EventInfo::get_IsMulticast() extern "C" bool EventInfo_get_IsMulticast_m1261675775 (EventInfo_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.PropertyDescriptor::.ctor(System.ComponentModel.MemberDescriptor,System.Attribute[]) extern "C" void PropertyDescriptor__ctor_m1214378087 (PropertyDescriptor_t2555988069 * __this, MemberDescriptor_t1331681536 * ___reference0, AttributeU5BU5D_t187261448* ___attrs1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.PropertyDescriptor::.ctor(System.String,System.Attribute[]) extern "C" void PropertyDescriptor__ctor_m693998226 (PropertyDescriptor_t2555988069 * __this, String_t* ___name0, AttributeU5BU5D_t187261448* ___attrs1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Reflection.PropertyInfo System.Type::GetProperty(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type,System.Type[],System.Reflection.ParameterModifier[]) extern "C" PropertyInfo_t * Type_GetProperty_m1551119415 (Type_t * __this, String_t* p0, int32_t p1, Binder_t1054974207 * p2, Type_t * p3, TypeU5BU5D_t89919618* p4, ParameterModifierU5BU5D_t4226445516* p5, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Reflection.PropertyInfo System.ComponentModel.ReflectionPropertyDescriptor::GetPropertyInfo() extern "C" PropertyInfo_t * ReflectionPropertyDescriptor_GetPropertyInfo_m3249063637 (ReflectionPropertyDescriptor_t1079221997 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.PropertyDescriptor::FillAttributes(System.Collections.IList) extern "C" void PropertyDescriptor_FillAttributes_m2952147874 (PropertyDescriptor_t2555988069 * __this, RuntimeObject* ___attributeList0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Array::CopyTo(System.Array,System.Int32) extern "C" void Array_CopyTo_m1691627982 (RuntimeArray * __this, RuntimeArray * p0, int32_t p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.AttributeCollection System.ComponentModel.TypeDescriptor::GetAttributes(System.Type) extern "C" AttributeCollection_t3634739288 * TypeDescriptor_GetAttributes_m3292160618 (RuntimeObject * __this /* static, unused */, Type_t * ___componentType0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.IEnumerator System.ComponentModel.AttributeCollection::GetEnumerator() extern "C" RuntimeObject* AttributeCollection_GetEnumerator_m3871199393 (AttributeCollection_t3634739288 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.ComponentModel.MemberDescriptor::GetInvokee(System.Type,System.Object) extern "C" RuntimeObject * MemberDescriptor_GetInvokee_m148565012 (RuntimeObject * __this /* static, unused */, Type_t * ___componentClass0, RuntimeObject * ___component1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.ReflectionPropertyDescriptor::InitAccessors() extern "C" void ReflectionPropertyDescriptor_InitAccessors_m1784019371 (ReflectionPropertyDescriptor_t1079221997 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.PropertyChangedEventArgs::.ctor(System.String) extern "C" void PropertyChangedEventArgs__ctor_m1946057289 (PropertyChangedEventArgs_t483343543 * __this, String_t* ___name0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.Design.DesignerTransaction::Commit() extern "C" void DesignerTransaction_Commit_m2111453529 (DesignerTransaction_t3922712621 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.Design.DesignerTransaction::Cancel() extern "C" void DesignerTransaction_Cancel_m3943572969 (DesignerTransaction_t3922712621 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Reflection.MethodBase::get_IsVirtual() extern "C" bool MethodBase_get_IsVirtual_m1405312777 (MethodBase_t2815042627 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetSetMethod() extern "C" MethodInfo_t * PropertyInfo_GetSetMethod_m1616825401 (PropertyInfo_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod() extern "C" MethodInfo_t * PropertyInfo_GetGetMethod_m2763981415 (PropertyInfo_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.Design.DesignerTransaction System.ComponentModel.ReflectionPropertyDescriptor::CreateTransaction(System.Object,System.String) extern "C" DesignerTransaction_t3922712621 * ReflectionPropertyDescriptor_CreateTransaction_m3525575033 (ReflectionPropertyDescriptor_t1079221997 * __this, RuntimeObject * ___obj0, String_t* ___description1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.ReflectionPropertyDescriptor::EndTransaction(System.Object,System.ComponentModel.Design.DesignerTransaction,System.Object,System.Object,System.Boolean) extern "C" void ReflectionPropertyDescriptor_EndTransaction_m2347500579 (ReflectionPropertyDescriptor_t1079221997 * __this, RuntimeObject * ___obj0, DesignerTransaction_t3922712621 * ___tran1, RuntimeObject * ___oldValue2, RuntimeObject * ___newValue3, bool ___commit4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Concat(System.String,System.String) extern "C" String_t* String_Concat_m3881611230 (RuntimeObject * __this /* static, unused */, String_t* p0, String_t* p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.String::op_Equality(System.String,System.String) extern "C" bool String_op_Equality_m3571002539 (RuntimeObject * __this /* static, unused */, String_t* p0, String_t* p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Reflection.MethodInfo System.ComponentModel.ReflectionPropertyDescriptor::FindPropertyMethod(System.Object,System.String) extern "C" MethodInfo_t * ReflectionPropertyDescriptor_FindPropertyMethod_m3729960446 (ReflectionPropertyDescriptor_t1079221997 * __this, RuntimeObject * ___o0, String_t* ___method_name1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.ComponentModel.AttributeCollection::Contains(System.Attribute) extern "C" bool AttributeCollection_Contains_m1883420386 (AttributeCollection_t3634739288 * __this, Attribute_t2739832645 * ___attr0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.RefreshEventHandler::Invoke(System.ComponentModel.RefreshEventArgs) extern "C" void RefreshEventHandler_Invoke_m1530138922 (RefreshEventHandler_t3510407695 * __this, RefreshEventArgs_t632686523 * ___e0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.RefreshPropertiesAttribute::.ctor(System.ComponentModel.RefreshProperties) extern "C" void RefreshPropertiesAttribute__ctor_m1020623331 (RefreshPropertiesAttribute_t720074670 * __this, int32_t ___refresh0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.RefreshProperties System.ComponentModel.RefreshPropertiesAttribute::get_RefreshProperties() extern "C" int32_t RefreshPropertiesAttribute_get_RefreshProperties_m3149506310 (RefreshPropertiesAttribute_t720074670 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.AsyncCompletedEventArgs::.ctor(System.Exception,System.Boolean,System.Object) extern "C" void AsyncCompletedEventArgs__ctor_m2331589897 (AsyncCompletedEventArgs_t1820347970 * __this, Exception_t2428370182 * ___error0, bool ___cancelled1, RuntimeObject * ___userState2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.AsyncCompletedEventArgs::RaiseExceptionIfNecessary() extern "C" void AsyncCompletedEventArgs_RaiseExceptionIfNecessary_m82002463 (AsyncCompletedEventArgs_t1820347970 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.RunWorkerCompletedEventHandler::Invoke(System.Object,System.ComponentModel.RunWorkerCompletedEventArgs) extern "C" void RunWorkerCompletedEventHandler_Invoke_m3234344108 (RunWorkerCompletedEventHandler_t2405942011 * __this, RuntimeObject * ___sender0, RunWorkerCompletedEventArgs_t2985097864 * ___e1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.BaseNumberConverter::.ctor() extern "C" void BaseNumberConverter__ctor_m1174706078 (BaseNumberConverter_t401835300 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.SByte::ToString(System.String,System.IFormatProvider) extern "C" String_t* SByte_ToString_m1883994907 (int8_t* __this, String_t* p0, RuntimeObject* p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.SByte System.SByte::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) extern "C" int8_t SByte_Parse_m1720621564 (RuntimeObject * __this /* static, unused */, String_t* p0, int32_t p1, RuntimeObject* p2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.SByte System.Convert::ToSByte(System.String,System.Int32) extern "C" int8_t Convert_ToSByte_m128393188 (RuntimeObject * __this /* static, unused */, String_t* p0, int32_t p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Single::ToString(System.String,System.IFormatProvider) extern "C" String_t* Single_ToString_m354944689 (float* __this, String_t* p0, RuntimeObject* p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Single System.Single::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) extern "C" float Single_Parse_m2824391033 (RuntimeObject * __this /* static, unused */, String_t* p0, int32_t p1, RuntimeObject* p2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.ComponentModel.TypeConverter::CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type) extern "C" bool TypeConverter_CanConvertTo_m2935786827 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, Type_t * ___destinationType1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.TimeSpan System.TimeSpan::Parse(System.String) extern "C" TimeSpan_t1687785723 TimeSpan_Parse_m3592962379 (RuntimeObject * __this /* static, unused */, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.FormatException::.ctor(System.String) extern "C" void FormatException__ctor_m1936902822 (FormatException_t3614201526 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.TimeSpan::ToString() extern "C" String_t* TimeSpan_ToString_m3963148588 (TimeSpan_t1687785723 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int64 System.TimeSpan::get_Ticks() extern "C" int64_t TimeSpan_get_Ticks_m760226460 (TimeSpan_t1687785723 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.Design.Serialization.InstanceDescriptor::.ctor(System.Reflection.MemberInfo,System.Collections.ICollection) extern "C" void InstanceDescriptor__ctor_m85546297 (InstanceDescriptor_t156299730 * __this, MemberInfo_t * ___member0, RuntimeObject* ___arguments1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.ToolboxItemAttribute::.ctor(System.String) extern "C" void ToolboxItemAttribute__ctor_m1620422022 (ToolboxItemAttribute_t2314889077 * __this, String_t* ___toolboxItemName0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.ToolboxItemAttribute::.ctor(System.Boolean) extern "C" void ToolboxItemAttribute__ctor_m238509745 (ToolboxItemAttribute_t2314889077 * __this, bool ___defaultType0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Type System.Type::GetType(System.String,System.Boolean) extern "C" Type_t * Type_GetType_m1876527967 (RuntimeObject * __this /* static, unused */, String_t* p0, bool p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ArgumentException::.ctor(System.String,System.Exception) extern "C" void ArgumentException__ctor_m945005194 (ArgumentException_t1946723077 * __this, String_t* p0, Exception_t2428370182 * p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.ComponentModel.ToolboxItemAttribute::get_ToolboxItemTypeName() extern "C" String_t* ToolboxItemAttribute_get_ToolboxItemTypeName_m2802998196 (ToolboxItemAttribute_t2314889077 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.String::GetHashCode() extern "C" int32_t String_GetHashCode_m3513779644 (String_t* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Attribute::GetHashCode() extern "C" int32_t Attribute_GetHashCode_m1425718791 (Attribute_t2739832645 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Attribute::get_TypeId() extern "C" RuntimeObject * Attribute_get_TypeId_m684885516 (Attribute_t2739832645 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Concat(System.Object,System.Object) extern "C" String_t* String_Concat_m4101136157 (RuntimeObject * __this /* static, unused */, RuntimeObject * p0, RuntimeObject * p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.ComponentModel.ToolboxItemFilterAttribute::get_FilterString() extern "C" String_t* ToolboxItemFilterAttribute_get_FilterString_m1989123470 (ToolboxItemFilterAttribute_t2268705424 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.ToolboxItemFilterType System.ComponentModel.ToolboxItemFilterAttribute::get_FilterType() extern "C" int32_t ToolboxItemFilterAttribute_get_FilterType_m1363799316 (ToolboxItemFilterAttribute_t2268705424 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.ComponentModel.ToolboxItemFilterAttribute::ToString() extern "C" String_t* ToolboxItemFilterAttribute_ToString_m2524325177 (ToolboxItemFilterAttribute_t2268705424 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Format(System.String,System.Object,System.Object) extern "C" String_t* String_Format_m659658103 (RuntimeObject * __this /* static, unused */, String_t* p0, RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture() extern "C" CultureInfo_t270095993 * CultureInfo_get_CurrentCulture_m856101117 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.ComponentModel.Design.Serialization.InstanceDescriptor::Invoke() extern "C" RuntimeObject * InstanceDescriptor_Invoke_m2265721018 (InstanceDescriptor_t156299730 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Exception System.ComponentModel.TypeConverter::GetConvertFromException(System.Object) extern "C" Exception_t2428370182 * TypeConverter_GetConvertFromException_m59689527 (TypeConverter_t3595149642 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.ComponentModel.TypeConverter::ConvertFromInvariantString(System.ComponentModel.ITypeDescriptorContext,System.String) extern "C" RuntimeObject * TypeConverter_ConvertFromInvariantString_m3779203635 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, String_t* ___text1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture() extern "C" CultureInfo_t270095993 * CultureInfo_get_InvariantCulture_m307173330 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.ComponentModel.TypeConverter::ConvertFromString(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.String) extern "C" RuntimeObject * TypeConverter_ConvertFromString_m948938740 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, CultureInfo_t270095993 * ___culture1, String_t* ___text2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.ComponentModel.TypeConverter::ConvertFrom(System.Object) extern "C" RuntimeObject * TypeConverter_ConvertFrom_m1997812589 (TypeConverter_t3595149642 * __this, RuntimeObject * ___o0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Exception System.ComponentModel.TypeConverter::GetConvertToException(System.Object,System.Type) extern "C" Exception_t2428370182 * TypeConverter_GetConvertToException_m3795797516 (TypeConverter_t3595149642 * __this, RuntimeObject * ___value0, Type_t * ___destinationType1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.ComponentModel.TypeConverter::ConvertToInvariantString(System.ComponentModel.ITypeDescriptorContext,System.Object) extern "C" String_t* TypeConverter_ConvertToInvariantString_m2521499702 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Format(System.IFormatProvider,System.String,System.Object[]) extern "C" String_t* String_Format_m3843026812 (RuntimeObject * __this /* static, unused */, RuntimeObject* p0, String_t* p1, ObjectU5BU5D_t4199014551* p2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.NotSupportedException::.ctor(System.String) extern "C" void NotSupportedException__ctor_m1363103711 (NotSupportedException_t2060369835 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeConverter::GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object) extern "C" PropertyDescriptorCollection_t2982717747 * TypeConverter_GetProperties_m4083564014 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.TypeConverter/SimplePropertyDescriptor::.ctor(System.Type,System.String,System.Type,System.Attribute[]) extern "C" void SimplePropertyDescriptor__ctor_m3402338302 (SimplePropertyDescriptor_t872937162 * __this, Type_t * ___componentType0, String_t* ___name1, Type_t * ___propertyType2, AttributeU5BU5D_t187261448* ___attributes3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.TypeConverter/StandardValuesCollection::CopyTo(System.Array,System.Int32) extern "C" void StandardValuesCollection_CopyTo_m3620071702 (StandardValuesCollection_t884959189 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.IEnumerator System.ComponentModel.TypeConverter/StandardValuesCollection::GetEnumerator() extern "C" RuntimeObject* StandardValuesCollection_GetEnumerator_m486923630 (StandardValuesCollection_t884959189 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.ComponentModel.TypeConverter/StandardValuesCollection::get_Count() extern "C" int32_t StandardValuesCollection_get_Count_m2128744804 (StandardValuesCollection_t884959189 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.TypeConverterAttribute::.ctor() extern "C" void TypeConverterAttribute__ctor_m1309396276 (TypeConverterAttribute_t695735035 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Activator::CreateInstance(System.Type,System.Object[]) extern "C" RuntimeObject * Activator_CreateInstance_m1834653757 (RuntimeObject * __this /* static, unused */, Type_t * p0, ObjectU5BU5D_t4199014551* p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.TypeDescriptionProvider/EmptyCustomTypeDescriptor::.ctor() extern "C" void EmptyCustomTypeDescriptor__ctor_m1551730805 (EmptyCustomTypeDescriptor_t3398936167 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Object) extern "C" RuntimeObject* TypeDescriptionProvider_GetTypeDescriptor_m2092826612 (TypeDescriptionProvider_t4220413402 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.CustomTypeDescriptor::.ctor() extern "C" void CustomTypeDescriptor__ctor_m1414500274 (CustomTypeDescriptor_t1811165357 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>>::.ctor() #define Dictionary_2__ctor_m2978406208(__this, method) (( void (*) (Dictionary_2_t3039616987 *, const RuntimeMethod*))Dictionary_2__ctor_m4268927328_gshared)(__this, method) // System.Void System.ComponentModel.WeakObjectWrapperComparer::.ctor() extern "C" void WeakObjectWrapperComparer__ctor_m2787707685 (WeakObjectWrapperComparer_t139211652 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Generic.Dictionary`2<System.ComponentModel.WeakObjectWrapper,System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>>::.ctor(System.Collections.Generic.IEqualityComparer`1<!0>) #define Dictionary_2__ctor_m3243990460(__this, p0, method) (( void (*) (Dictionary_2_t1504552994 *, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_m451964718_gshared)(__this, p0, method) // System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptor::GetProvider(System.Object) extern "C" TypeDescriptionProvider_t4220413402 * TypeDescriptor_GetProvider_m476155507 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___instance0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.TypeDescriptor/AttributeProvider::.ctor(System.Attribute[],System.ComponentModel.TypeDescriptionProvider) extern "C" void AttributeProvider__ctor_m1120275715 (AttributeProvider_t4079053818 * __this, AttributeU5BU5D_t187261448* ___attributes0, TypeDescriptionProvider_t4220413402 * ___parent1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.TypeDescriptor::AddProvider(System.ComponentModel.TypeDescriptionProvider,System.Object) extern "C" void TypeDescriptor_AddProvider_m3867577384 (RuntimeObject * __this /* static, unused */, TypeDescriptionProvider_t4220413402 * ___provider0, RuntimeObject * ___instance1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptor::GetProvider(System.Type) extern "C" TypeDescriptionProvider_t4220413402 * TypeDescriptor_GetProvider_m514055783 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.TypeDescriptor::AddProvider(System.ComponentModel.TypeDescriptionProvider,System.Type) extern "C" void TypeDescriptor_AddProvider_m2406393404 (RuntimeObject * __this /* static, unused */, TypeDescriptionProvider_t4220413402 * ___provider0, Type_t * ___type1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Threading.Monitor::Enter(System.Object) extern "C" void Monitor_Enter_m1524383546 (RuntimeObject * __this /* static, unused */, RuntimeObject * p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.WeakObjectWrapper::.ctor(System.Object) extern "C" void WeakObjectWrapper__ctor_m3552650423 (WeakObjectWrapper_t3106754776 * __this, RuntimeObject * ___target0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Collections.Generic.Dictionary`2<System.ComponentModel.WeakObjectWrapper,System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>>::TryGetValue(!0,!1&) #define Dictionary_2_TryGetValue_m2172175164(__this, p0, p1, method) (( bool (*) (Dictionary_2_t1504552994 *, WeakObjectWrapper_t3106754776 *, LinkedList_1_t3169462053 **, const RuntimeMethod*))Dictionary_2_TryGetValue_m2459405907_gshared)(__this, p0, p1, method) // System.Void System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>::.ctor() #define LinkedList_1__ctor_m915351385(__this, method) (( void (*) (LinkedList_1_t3169462053 *, const RuntimeMethod*))LinkedList_1__ctor_m1014243409_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2<System.ComponentModel.WeakObjectWrapper,System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>>::Add(!0,!1) #define Dictionary_2_Add_m3047456897(__this, p0, p1, method) (( void (*) (Dictionary_2_t1504552994 *, WeakObjectWrapper_t3106754776 *, LinkedList_1_t3169462053 *, const RuntimeMethod*))Dictionary_2_Add_m3911559144_gshared)(__this, p0, p1, method) // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>::AddLast(T) #define LinkedList_1_AddLast_m953928916(__this, p0, method) (( LinkedListNode_1_t1908715458 * (*) (LinkedList_1_t3169462053 *, TypeDescriptionProvider_t4220413402 *, const RuntimeMethod*))LinkedList_1_AddLast_m1906737739_gshared)(__this, p0, method) // System.Void System.ComponentModel.TypeDescriptor::Refresh(System.Object) extern "C" void TypeDescriptor_Refresh_m2931561063 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Threading.Monitor::Exit(System.Object) extern "C" void Monitor_Exit_m69827708 (RuntimeObject * __this /* static, unused */, RuntimeObject * p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>>::TryGetValue(!0,!1&) #define Dictionary_2_TryGetValue_m3960761973(__this, p0, p1, method) (( bool (*) (Dictionary_2_t3039616987 *, Type_t *, LinkedList_1_t3169462053 **, const RuntimeMethod*))Dictionary_2_TryGetValue_m2459405907_gshared)(__this, p0, p1, method) // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>>::Add(!0,!1) #define Dictionary_2_Add_m145337118(__this, p0, p1, method) (( void (*) (Dictionary_2_t3039616987 *, Type_t *, LinkedList_1_t3169462053 *, const RuntimeMethod*))Dictionary_2_Add_m3911559144_gshared)(__this, p0, p1, method) // System.Void System.ComponentModel.TypeDescriptor::Refresh(System.Type) extern "C" void TypeDescriptor_Refresh_m2947627068 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.AttributeCollection System.ComponentModel.TypeDescriptor::GetAttributes(System.Object) extern "C" AttributeCollection_t3634739288 * TypeDescriptor_GetAttributes_m3997682573 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.ComponentModel.DesignerAttribute::get_DesignerBaseTypeName() extern "C" String_t* DesignerAttribute_get_DesignerBaseTypeName_m2467696068 (DesignerAttribute_t80198024 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.ComponentModel.DesignerAttribute::get_DesignerTypeName() extern "C" String_t* DesignerAttribute_get_DesignerTypeName_m2452529458 (DesignerAttribute_t80198024 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Type System.ComponentModel.TypeDescriptor::GetTypeFromName(System.ComponentModel.IComponent,System.String) extern "C" Type_t * TypeDescriptor_GetTypeFromName_m4158908695 (RuntimeObject * __this /* static, unused */, RuntimeObject* ___component0, String_t* ___typeName1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Activator::CreateInstance(System.Type) extern "C" RuntimeObject * Activator_CreateInstance_m3338111582 (RuntimeObject * __this /* static, unused */, Type_t * p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.ReflectionEventDescriptor::.ctor(System.Type,System.String,System.Type,System.Attribute[]) extern "C" void ReflectionEventDescriptor__ctor_m481248106 (ReflectionEventDescriptor_t4023907121 * __this, Type_t * ___componentType0, String_t* ___name1, Type_t * ___type2, AttributeU5BU5D_t187261448* ___attrs3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.ReflectionEventDescriptor::.ctor(System.Type,System.ComponentModel.EventDescriptor,System.Attribute[]) extern "C" void ReflectionEventDescriptor__ctor_m1990245723 (ReflectionEventDescriptor_t4023907121 * __this, Type_t * ___componentType0, EventDescriptor_t3701426622 * ___oldEventDescriptor1, AttributeU5BU5D_t187261448* ___attrs2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.ReflectionPropertyDescriptor::.ctor(System.Type,System.String,System.Type,System.Attribute[]) extern "C" void ReflectionPropertyDescriptor__ctor_m3691613756 (ReflectionPropertyDescriptor_t1079221997 * __this, Type_t * ___componentType0, String_t* ___name1, Type_t * ___type2, AttributeU5BU5D_t187261448* ___attributes3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.ReflectionPropertyDescriptor::.ctor(System.Type,System.ComponentModel.PropertyDescriptor,System.Attribute[]) extern "C" void ReflectionPropertyDescriptor__ctor_m2706362668 (ReflectionPropertyDescriptor_t1079221997 * __this, Type_t * ___componentType0, PropertyDescriptor_t2555988069 * ___oldPropertyDescriptor1, AttributeU5BU5D_t187261448* ___attributes2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.TypeInfo System.ComponentModel.TypeDescriptor::GetTypeInfo(System.Type) extern "C" TypeInfo_t2535999846 * TypeDescriptor_GetTypeInfo_m1821580626 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.AttributeCollection System.ComponentModel.TypeDescriptor::GetAttributes(System.Object,System.Boolean) extern "C" AttributeCollection_t3634739288 * TypeDescriptor_GetAttributes_m2157745829 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.ComponentInfo System.ComponentModel.TypeDescriptor::GetComponentInfo(System.ComponentModel.IComponent) extern "C" ComponentInfo_t3532183224 * TypeDescriptor_GetComponentInfo_m1529259269 (RuntimeObject * __this /* static, unused */, RuntimeObject* ___com0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.ComponentModel.TypeDescriptor::GetClassName(System.Object,System.Boolean) extern "C" String_t* TypeDescriptor_GetClassName_m1796385024 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ArgumentNullException::.ctor(System.String,System.String) extern "C" void ArgumentNullException__ctor_m1329052997 (ArgumentNullException_t873386607 * __this, String_t* p0, String_t* p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.ComponentModel.TypeDescriptor::GetComponentName(System.Object,System.Boolean) extern "C" String_t* TypeDescriptor_GetComponentName_m1710822790 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.TypeConverter System.ComponentModel.TypeDescriptor::GetConverter(System.Object,System.Boolean) extern "C" TypeConverter_t3595149642 * TypeDescriptor_GetConverter_m78243983 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Type System.ComponentModel.TypeDescriptor::FindDefaultConverterType(System.Type) extern "C" Type_t * TypeDescriptor_FindDefaultConverterType_m2157367584 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Reflection.ConstructorInfo::Invoke(System.Object[]) extern "C" RuntimeObject * ConstructorInfo_Invoke_m3520953233 (ConstructorInfo_t673747461 * __this, ObjectU5BU5D_t4199014551* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.DictionaryEntry::.ctor(System.Object,System.Object) extern "C" void DictionaryEntry__ctor_m1917443737 (DictionaryEntry_t1848963796 * __this, RuntimeObject * p0, RuntimeObject * p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.ArrayList System.ComponentModel.TypeDescriptor::get_DefaultConverters() extern "C" ArrayList_t4277734320 * TypeDescriptor_get_DefaultConverters_m1945021735 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Collections.DictionaryEntry::get_Key() extern "C" RuntimeObject * DictionaryEntry_get_Key_m1016518513 (DictionaryEntry_t1848963796 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Collections.DictionaryEntry::get_Value() extern "C" RuntimeObject * DictionaryEntry_get_Value_m958923286 (DictionaryEntry_t1848963796 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Type::get_IsInterface() extern "C" bool Type_get_IsInterface_m1173714483 (Type_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.EventDescriptor System.ComponentModel.Info::GetDefaultEvent() extern "C" EventDescriptor_t3701426622 * Info_GetDefaultEvent_m2713044848 (Info_t623560747 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.EventDescriptor System.ComponentModel.TypeDescriptor::GetDefaultEvent(System.Object,System.Boolean) extern "C" EventDescriptor_t3701426622 * TypeDescriptor_GetDefaultEvent_m1399767514 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.PropertyDescriptor System.ComponentModel.Info::GetDefaultProperty() extern "C" PropertyDescriptor_t2555988069 * Info_GetDefaultProperty_m402073838 (Info_t623560747 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.PropertyDescriptor System.ComponentModel.TypeDescriptor::GetDefaultProperty(System.Object,System.Boolean) extern "C" PropertyDescriptor_t2555988069 * TypeDescriptor_GetDefaultProperty_m1361939177 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.ComponentModel.TypeDescriptor::CreateEditor(System.Type,System.Type) extern "C" RuntimeObject * TypeDescriptor_CreateEditor_m2228326398 (RuntimeObject * __this /* static, unused */, Type_t * ___t0, Type_t * ___componentType1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Runtime.CompilerServices.RuntimeHelpers::RunClassConstructor(System.RuntimeTypeHandle) extern "C" void RuntimeHelpers_RunClassConstructor_m328126940 (RuntimeObject * __this /* static, unused */, RuntimeTypeHandle_t1916376386 p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.ComponentModel.TypeDescriptor::FindEditorInTable(System.Type,System.Type,System.Collections.Hashtable) extern "C" RuntimeObject * TypeDescriptor_FindEditorInTable_m103077439 (RuntimeObject * __this /* static, unused */, Type_t * ___componentType0, Type_t * ___editorBaseType1, Hashtable_t448324601 * ___table2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.ComponentModel.TypeDescriptor::GetEditor(System.Object,System.Type,System.Boolean) extern "C" RuntimeObject * TypeDescriptor_GetEditor_m1547543191 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, Type_t * ___editorBaseType1, bool ___noCustomTypeDesc2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.ComponentModel.EditorAttribute::get_EditorBaseTypeName() extern "C" String_t* EditorAttribute_get_EditorBaseTypeName_m3190369308 (EditorAttribute_t3439099620 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.EventDescriptorCollection System.ComponentModel.TypeDescriptor::GetEvents(System.Object,System.Boolean) extern "C" EventDescriptorCollection_t3861329784 * TypeDescriptor_GetEvents_m189377188 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.EventDescriptorCollection System.ComponentModel.TypeDescriptor::GetEvents(System.Type,System.Attribute[]) extern "C" EventDescriptorCollection_t3861329784 * TypeDescriptor_GetEvents_m3586592604 (RuntimeObject * __this /* static, unused */, Type_t * ___componentType0, AttributeU5BU5D_t187261448* ___attributes1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.EventDescriptorCollection System.ComponentModel.TypeDescriptor::GetEvents(System.Object,System.Attribute[],System.Boolean) extern "C" EventDescriptorCollection_t3861329784 * TypeDescriptor_GetEvents_m2388143899 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, AttributeU5BU5D_t187261448* ___attributes1, bool ___noCustomTypeDesc2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.EventDescriptorCollection System.ComponentModel.Info::GetEvents(System.Attribute[]) extern "C" EventDescriptorCollection_t3861329784 * Info_GetEvents_m779782179 (Info_t623560747 * __this, AttributeU5BU5D_t187261448* ___attributes0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Object,System.Boolean) extern "C" PropertyDescriptorCollection_t2982717747 * TypeDescriptor_GetProperties_m4060776569 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Type,System.Attribute[]) extern "C" PropertyDescriptorCollection_t2982717747 * TypeDescriptor_GetProperties_m3032014321 (RuntimeObject * __this /* static, unused */, Type_t * ___componentType0, AttributeU5BU5D_t187261448* ___attributes1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Object,System.Attribute[],System.Boolean) extern "C" PropertyDescriptorCollection_t2982717747 * TypeDescriptor_GetProperties_m2048219527 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, AttributeU5BU5D_t187261448* ___attributes1, bool ___noCustomTypeDesc2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.Info::GetProperties(System.Attribute[]) extern "C" PropertyDescriptorCollection_t2982717747 * Info_GetProperties_m3122816418 (Info_t623560747 * __this, AttributeU5BU5D_t187261448* ___attributes0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>::get_Count() #define LinkedList_1_get_Count_m2665033812(__this, method) (( int32_t (*) (LinkedList_1_t3169462053 *, const RuntimeMethod*))LinkedList_1_get_Count_m3797302053_gshared)(__this, method) // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>::get_Last() #define LinkedList_1_get_Last_m1918679422(__this, method) (( LinkedListNode_1_t1908715458 * (*) (LinkedList_1_t3169462053 *, const RuntimeMethod*))LinkedList_1_get_Last_m3716530414_gshared)(__this, method) // T System.Collections.Generic.LinkedListNode`1<System.ComponentModel.TypeDescriptionProvider>::get_Value() #define LinkedListNode_1_get_Value_m167305195(__this, method) (( TypeDescriptionProvider_t4220413402 * (*) (LinkedListNode_1_t1908715458 *, const RuntimeMethod*))LinkedListNode_1_get_Value_m3545330137_gshared)(__this, method) // System.Void System.ComponentModel.TypeDescriptor/DefaultTypeDescriptionProvider::.ctor() extern "C" void DefaultTypeDescriptionProvider__ctor_m30009566 (DefaultTypeDescriptionProvider_t2206660091 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.TypeDescriptor/WrappedTypeDescriptionProvider::.ctor(System.ComponentModel.TypeDescriptionProvider) extern "C" void WrappedTypeDescriptionProvider__ctor_m2033595495 (WrappedTypeDescriptionProvider_t340192907 * __this, TypeDescriptionProvider_t4220413402 * ___wrapped0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.TypeDescriptor::RemoveProvider(System.ComponentModel.TypeDescriptionProvider,System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>) extern "C" void TypeDescriptor_RemoveProvider_m736963711 (RuntimeObject * __this /* static, unused */, TypeDescriptionProvider_t4220413402 * ___provider0, LinkedList_1_t3169462053 * ___plist1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.RefreshEventArgs::.ctor(System.Object) extern "C" void RefreshEventArgs__ctor_m2983157069 (RefreshEventArgs_t632686523 * __this, RuntimeObject * ___componentChanged0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.RefreshEventArgs::.ctor(System.Type) extern "C" void RefreshEventArgs__ctor_m2829995138 (RefreshEventArgs_t632686523 * __this, Type_t * ___typeChanged0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>::get_First() #define LinkedList_1_get_First_m2295245609(__this, method) (( LinkedListNode_1_t1908715458 * (*) (LinkedList_1_t3169462053 *, const RuntimeMethod*))LinkedList_1_get_First_m1699037605_gshared)(__this, method) // System.Void System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>::Remove(System.Collections.Generic.LinkedListNode`1<T>) #define LinkedList_1_Remove_m2525782714(__this, p0, method) (( void (*) (LinkedList_1_t3169462053 *, LinkedListNode_1_t1908715458 *, const RuntimeMethod*))LinkedList_1_Remove_m358144399_gshared)(__this, p0, method) // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1<System.ComponentModel.TypeDescriptionProvider>::get_Previous() #define LinkedListNode_1_get_Previous_m2628299079(__this, method) (( LinkedListNode_1_t1908715458 * (*) (LinkedListNode_1_t1908715458 *, const RuntimeMethod*))LinkedListNode_1_get_Previous_m1261015704_gshared)(__this, method) // System.Void System.Array::Sort<System.String,System.Object>(!!0[],!!1[]) #define Array_Sort_TisString_t_TisRuntimeObject_m1572220042(__this /* static, unused */, p0, p1, method) (( void (*) (RuntimeObject * /* static, unused */, StringU5BU5D_t1187188029*, ObjectU5BU5D_t4199014551*, const RuntimeMethod*))Array_Sort_TisRuntimeObject_TisRuntimeObject_m2645248746_gshared)(__this /* static, unused */, p0, p1, method) // System.Void System.EventHandler::.ctor(System.Object,System.IntPtr) extern "C" void EventHandler__ctor_m1374350660 (EventHandler_t1223794391 * __this, RuntimeObject * p0, intptr_t p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.ComponentInfo::.ctor(System.ComponentModel.IComponent) extern "C" void ComponentInfo__ctor_m1873793124 (ComponentInfo_t3532183224 * __this, RuntimeObject* ___component0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.TypeInfo::.ctor(System.Type) extern "C" void TypeInfo__ctor_m2845478269 (TypeInfo_t2535999846 * __this, Type_t * ___t0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.TypeDescriptionProvider::.ctor(System.ComponentModel.TypeDescriptionProvider) extern "C" void TypeDescriptionProvider__ctor_m4181401345 (TypeDescriptionProvider_t4220413402 * __this, TypeDescriptionProvider_t4220413402 * ___parent0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Type,System.Object) extern "C" RuntimeObject* TypeDescriptionProvider_GetTypeDescriptor_m3076123750 (TypeDescriptionProvider_t4220413402 * __this, Type_t * ___objectType0, RuntimeObject * ___instance1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.TypeDescriptor/AttributeProvider/AttributeTypeDescriptor::.ctor(System.ComponentModel.ICustomTypeDescriptor,System.Attribute[]) extern "C" void AttributeTypeDescriptor__ctor_m1639046417 (AttributeTypeDescriptor_t1580723392 * __this, RuntimeObject* ___parent0, AttributeU5BU5D_t187261448* ___attributes1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.CustomTypeDescriptor::.ctor(System.ComponentModel.ICustomTypeDescriptor) extern "C" void CustomTypeDescriptor__ctor_m416000688 (CustomTypeDescriptor_t1811165357 * __this, RuntimeObject* ___parent0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.AttributeCollection System.ComponentModel.CustomTypeDescriptor::GetAttributes() extern "C" AttributeCollection_t3634739288 * CustomTypeDescriptor_GetAttributes_m1616513161 (CustomTypeDescriptor_t1811165357 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.ComponentModel.AttributeCollection::get_Count() extern "C" int32_t AttributeCollection_get_Count_m3209680082 (AttributeCollection_t3634739288 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.AttributeCollection System.ComponentModel.AttributeCollection::FromExisting(System.ComponentModel.AttributeCollection,System.Attribute[]) extern "C" AttributeCollection_t3634739288 * AttributeCollection_FromExisting_m2649688489 (RuntimeObject * __this /* static, unused */, AttributeCollection_t3634739288 * ___existing0, AttributeU5BU5D_t187261448* ___newAttributes1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.AttributeCollection::.ctor(System.Attribute[]) extern "C" void AttributeCollection__ctor_m1505974831 (AttributeCollection_t3634739288 * __this, AttributeU5BU5D_t187261448* ___attributes0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.TypeDescriptionProvider::.ctor() extern "C" void TypeDescriptionProvider__ctor_m1179016195 (TypeDescriptionProvider_t4220413402 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.TypeDescriptor/DefaultTypeDescriptor::.ctor(System.ComponentModel.TypeDescriptionProvider,System.Type,System.Object) extern "C" void DefaultTypeDescriptor__ctor_m3086738070 (DefaultTypeDescriptor_t772231057 * __this, TypeDescriptionProvider_t4220413402 * ___owner0, Type_t * ___objectType1, RuntimeObject * ___instance2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptor/WrappedTypeDescriptionProvider::get_Wrapped() extern "C" TypeDescriptionProvider_t4220413402 * WrappedTypeDescriptionProvider_get_Wrapped_m2592708047 (WrappedTypeDescriptionProvider_t340192907 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.ComponentModel.CustomTypeDescriptor::GetClassName() extern "C" String_t* CustomTypeDescriptor_GetClassName_m2861940726 (CustomTypeDescriptor_t1811165357 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.PropertyDescriptor System.ComponentModel.CustomTypeDescriptor::GetDefaultProperty() extern "C" PropertyDescriptor_t2555988069 * CustomTypeDescriptor_GetDefaultProperty_m764382202 (CustomTypeDescriptor_t1811165357 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.CustomTypeDescriptor::GetProperties() extern "C" PropertyDescriptorCollection_t2982717747 * CustomTypeDescriptor_GetProperties_m4097309576 (CustomTypeDescriptor_t1811165357 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.TypeDescriptor/WrappedTypeDescriptionProvider::set_Wrapped(System.ComponentModel.TypeDescriptionProvider) extern "C" void WrappedTypeDescriptionProvider_set_Wrapped_m2908134787 (WrappedTypeDescriptionProvider_t340192907 * __this, TypeDescriptionProvider_t4220413402 * ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.ComponentModel.TypeDescriptionProvider::CreateInstance(System.IServiceProvider,System.Type,System.Type[],System.Object[]) extern "C" RuntimeObject * TypeDescriptionProvider_CreateInstance_m48832699 (TypeDescriptionProvider_t4220413402 * __this, RuntimeObject* ___provider0, Type_t * ___objectType1, TypeU5BU5D_t89919618* ___argTypes2, ObjectU5BU5D_t4199014551* ___args3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.IDictionary System.ComponentModel.TypeDescriptionProvider::GetCache(System.Object) extern "C" RuntimeObject* TypeDescriptionProvider_GetCache_m2663141428 (TypeDescriptionProvider_t4220413402 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.ComponentModel.TypeDescriptionProvider::GetFullComponentName(System.Object) extern "C" String_t* TypeDescriptionProvider_GetFullComponentName_m1778673754 (TypeDescriptionProvider_t4220413402 * __this, RuntimeObject * ___component0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Type System.ComponentModel.TypeDescriptionProvider::GetReflectionType(System.Type,System.Object) extern "C" Type_t * TypeDescriptionProvider_GetReflectionType_m1277652757 (TypeDescriptionProvider_t4220413402 * __this, Type_t * ___objectType0, RuntimeObject * ___instance1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.Info::.ctor(System.Type) extern "C" void Info__ctor_m2848147448 (Info_t623560747 * __this, Type_t * ___infoType0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.ComponentModel.AttributeCollection System.ComponentModel.Info::GetAttributes(System.ComponentModel.IComponent) extern "C" AttributeCollection_t3634739288 * Info_GetAttributes_m4073515494 (Info_t623560747 * __this, RuntimeObject* ___comp0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Type System.ComponentModel.Info::get_InfoType() extern "C" Type_t * Info_get_InfoType_m2206070527 (Info_t623560747 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.ReflectionEventDescriptor::.ctor(System.Reflection.EventInfo) extern "C" void ReflectionEventDescriptor__ctor_m467625783 (ReflectionEventDescriptor_t4023907121 * __this, EventInfo_t * ___eventInfo0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.EventDescriptorCollection::.ctor(System.ComponentModel.EventDescriptor[]) extern "C" void EventDescriptorCollection__ctor_m1869792367 (EventDescriptorCollection_t3861329784 * __this, EventDescriptorU5BU5D_t1417302411* ___events0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.ReflectionPropertyDescriptor::.ctor(System.Reflection.PropertyInfo) extern "C" void ReflectionPropertyDescriptor__ctor_m1124124130 (ReflectionPropertyDescriptor_t1079221997 * __this, PropertyInfo_t * ___info0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.InvalidCastException::.ctor(System.String) extern "C" void InvalidCastException__ctor_m483127764 (InvalidCastException_t3691826219 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.UInt16::ToString(System.String,System.IFormatProvider) extern "C" String_t* UInt16_ToString_m2258635989 (uint16_t* __this, String_t* p0, RuntimeObject* p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.UInt16 System.UInt16::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) extern "C" uint16_t UInt16_Parse_m625648077 (RuntimeObject * __this /* static, unused */, String_t* p0, int32_t p1, RuntimeObject* p2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.UInt16 System.Convert::ToUInt16(System.String,System.Int32) extern "C" uint16_t Convert_ToUInt16_m332483425 (RuntimeObject * __this /* static, unused */, String_t* p0, int32_t p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.UInt32::ToString(System.String,System.IFormatProvider) extern "C" String_t* UInt32_ToString_m1960414428 (uint32_t* __this, String_t* p0, RuntimeObject* p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.UInt32 System.UInt32::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) extern "C" uint32_t UInt32_Parse_m348622122 (RuntimeObject * __this /* static, unused */, String_t* p0, int32_t p1, RuntimeObject* p2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.UInt32 System.Convert::ToUInt32(System.String,System.Int32) extern "C" uint32_t Convert_ToUInt32_m1312165592 (RuntimeObject * __this /* static, unused */, String_t* p0, int32_t p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.UInt64::ToString(System.String,System.IFormatProvider) extern "C" String_t* UInt64_ToString_m293009761 (uint64_t* __this, String_t* p0, RuntimeObject* p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.UInt64 System.UInt64::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) extern "C" uint64_t UInt64_Parse_m2335355093 (RuntimeObject * __this /* static, unused */, String_t* p0, int32_t p1, RuntimeObject* p2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.UInt64 System.Convert::ToUInt64(System.String,System.Int32) extern "C" uint64_t Convert_ToUInt64_m3939729637 (RuntimeObject * __this /* static, unused */, String_t* p0, int32_t p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.WeakObjectWrapper::set_TargetHashCode(System.Int32) extern "C" void WeakObjectWrapper_set_TargetHashCode_m3849672419 (WeakObjectWrapper_t3106754776 * __this, int32_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.WeakReference::.ctor(System.Object) extern "C" void WeakReference__ctor_m155627274 (WeakReference_t2192111202 * __this, RuntimeObject * p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.WeakObjectWrapper::set_Weak(System.WeakReference) extern "C" void WeakObjectWrapper_set_Weak_m94142163 (WeakObjectWrapper_t3106754776 * __this, WeakReference_t2192111202 * ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Generic.EqualityComparer`1<System.ComponentModel.WeakObjectWrapper>::.ctor() #define EqualityComparer_1__ctor_m3443408297(__this, method) (( void (*) (EqualityComparer_1_t3900351378 *, const RuntimeMethod*))EqualityComparer_1__ctor_m1642193976_gshared)(__this, method) // System.WeakReference System.ComponentModel.WeakObjectWrapper::get_Weak() extern "C" WeakReference_t2192111202 * WeakObjectWrapper_get_Weak_m1135905172 (WeakObjectWrapper_t3106754776 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.ComponentModel.WeakObjectWrapper::get_TargetHashCode() extern "C" int32_t WeakObjectWrapper_get_TargetHashCode_m3445918633 (WeakObjectWrapper_t3106754776 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Runtime.InteropServices.Marshal::GetLastWin32Error() extern "C" int32_t Marshal_GetLastWin32Error_m3562032077 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.ComponentModel.Win32Exception::W32ErrorMessage(System.Int32) extern "C" String_t* Win32Exception_W32ErrorMessage_m3526061089 (RuntimeObject * __this /* static, unused */, int32_t ___error_code0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Runtime.InteropServices.ExternalException::.ctor(System.String) extern "C" void ExternalException__ctor_m4118943283 (ExternalException_t1492600716 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Runtime.InteropServices.ExternalException::.ctor(System.String,System.Exception) extern "C" void ExternalException__ctor_m2378692208 (ExternalException_t1492600716 * __this, String_t* p0, Exception_t2428370182 * p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Runtime.InteropServices.ExternalException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void ExternalException__ctor_m512094069 (ExternalException_t1492600716 * __this, SerializationInfo_t2260044969 * p0, StreamingContext_t3610716448 p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Runtime.Serialization.SerializationInfo::GetInt32(System.String) extern "C" int32_t SerializationInfo_GetInt32_m877527589 (SerializationInfo_t2260044969 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Int32) extern "C" void SerializationInfo_AddValue_m2171140450 (SerializationInfo_t2260044969 * __this, String_t* p0, int32_t p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Exception::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void Exception_GetObjectData_m1633779873 (Exception_t2428370182 * __this, SerializationInfo_t2260044969 * p0, StreamingContext_t3610716448 p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.UriParser::.ctor() extern "C" void UriParser__ctor_m3702954886 (UriParser_t812050460 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Console::WriteLine(System.String) extern "C" void Console_WriteLine_m1160833560 (RuntimeObject * __this /* static, unused */, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int64 System.Diagnostics.Stopwatch::get_ElapsedTicks() extern "C" int64_t Stopwatch_get_ElapsedTicks_m386717968 (Stopwatch_t2576777071 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.TimeSpan System.TimeSpan::FromTicks(System.Int64) extern "C" TimeSpan_t1687785723 TimeSpan_FromTicks_m1667776122 (RuntimeObject * __this /* static, unused */, int64_t p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.TimeSpan System.Diagnostics.Stopwatch::get_Elapsed() extern "C" TimeSpan_t1687785723 Stopwatch_get_Elapsed_m3817606815 (Stopwatch_t2576777071 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Double System.TimeSpan::get_TotalMilliseconds() extern "C" double TimeSpan_get_TotalMilliseconds_m3785175732 (TimeSpan_t1687785723 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int64 System.Diagnostics.Stopwatch::GetTimestamp() extern "C" int64_t Stopwatch_GetTimestamp_m1064852326 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.MonoTODOAttribute::.ctor(System.String) extern "C" void MonoTODOAttribute__ctor_m3723609312 (MonoTODOAttribute_t952110849 * __this, String_t* ___comment0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.Security.RemoteCertificateValidationCallback System.Net.ServicePointManager::get_ServerCertificateValidationCallback() extern "C" RemoteCertificateValidationCallback_t1272219315 * ServicePointManager_get_ServerCertificateValidationCallback_m4196527332 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.Sockets.Socket::CheckProtocolSupport() extern "C" void Socket_CheckProtocolSupport_m1096119766 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.IPHostEntry::.ctor() extern "C" void IPHostEntry__ctor_m4274864846 (IPHostEntry_t1585536838 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.IPHostEntry::set_HostName(System.String) extern "C" void IPHostEntry_set_HostName_m450026793 (IPHostEntry_t1585536838 * __this, String_t* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.IPHostEntry::set_Aliases(System.String[]) extern "C" void IPHostEntry_set_Aliases_m116993255 (IPHostEntry_t1585536838 * __this, StringU5BU5D_t1187188029* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.IPAddress System.Net.IPAddress::Parse(System.String) extern "C" IPAddress_t2830710878 * IPAddress_Parse_m3708738621 (RuntimeObject * __this /* static, unused */, String_t* ___ipString0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Net.Sockets.Socket::get_SupportsIPv6() extern "C" bool Socket_get_SupportsIPv6_m4254163272 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.Sockets.AddressFamily System.Net.IPAddress::get_AddressFamily() extern "C" int32_t IPAddress_get_AddressFamily_m3128376784 (IPAddress_t2830710878 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Net.Sockets.Socket::get_SupportsIPv4() extern "C" bool Socket_get_SupportsIPv4_m804629203 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.Sockets.SocketException::.ctor(System.Int32) extern "C" void SocketException__ctor_m1010342242 (SocketException_t2171012343 * __this, int32_t ___error0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.IPHostEntry::set_AddressList(System.Net.IPAddress[]) extern "C" void IPHostEntry_set_AddressList_m2174166557 (IPHostEntry_t1585536838 * __this, IPAddressU5BU5D_t3756700779* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.String::Equals(System.String) extern "C" bool String_Equals_m3676969663 (String_t* __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Net.Dns::GetHostByAddr_internal(System.String,System.String&,System.String[]&,System.String[]&) extern "C" bool Dns_GetHostByAddr_internal_m2873596872 (RuntimeObject * __this /* static, unused */, String_t* ___addr0, String_t** ___h_name1, StringU5BU5D_t1187188029** ___h_aliases2, StringU5BU5D_t1187188029** ___h_addr_list3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.IPHostEntry System.Net.Dns::hostent_to_IPHostEntry(System.String,System.String[],System.String[]) extern "C" IPHostEntry_t1585536838 * Dns_hostent_to_IPHostEntry_m550634719 (RuntimeObject * __this /* static, unused */, String_t* ___h_name0, StringU5BU5D_t1187188029* ___h_aliases1, StringU5BU5D_t1187188029* ___h_addrlist2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ArgumentException::.ctor(System.String,System.String) extern "C" void ArgumentException__ctor_m2999873659 (ArgumentException_t1946723077 * __this, String_t* p0, String_t* p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Net.IPAddress::TryParse(System.String,System.Net.IPAddress&) extern "C" bool IPAddress_TryParse_m442898607 (RuntimeObject * __this /* static, unused */, String_t* ___ipString0, IPAddress_t2830710878 ** ___address1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.IPHostEntry System.Net.Dns::GetHostEntry(System.Net.IPAddress) extern "C" IPHostEntry_t1585536838 * Dns_GetHostEntry_m1682641189 (RuntimeObject * __this /* static, unused */, IPAddress_t2830710878 * ___address0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.IPHostEntry System.Net.Dns::GetHostByName(System.String) extern "C" IPHostEntry_t1585536838 * Dns_GetHostByName_m978575555 (RuntimeObject * __this /* static, unused */, String_t* ___hostName0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.IPHostEntry System.Net.Dns::GetHostByAddressFromString(System.String,System.Boolean) extern "C" IPHostEntry_t1585536838 * Dns_GetHostByAddressFromString_m1589502680 (RuntimeObject * __this /* static, unused */, String_t* ___address0, bool ___parse1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.IPHostEntry System.Net.Dns::GetHostEntry(System.String) extern "C" IPHostEntry_t1585536838 * Dns_GetHostEntry_m1144250075 (RuntimeObject * __this /* static, unused */, String_t* ___hostNameOrAddress0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.IPAddress[] System.Net.IPHostEntry::get_AddressList() extern "C" IPAddressU5BU5D_t3756700779* IPHostEntry_get_AddressList_m2069605532 (IPHostEntry_t1585536838 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Net.Dns::GetHostByName_internal(System.String,System.String&,System.String[]&,System.String[]&) extern "C" bool Dns_GetHostByName_internal_m260542805 (RuntimeObject * __this /* static, unused */, String_t* ___host0, String_t** ___h_name1, StringU5BU5D_t1187188029** ___h_aliases2, StringU5BU5D_t1187188029** ___h_addr_list3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Exception System.Net.EndPoint::NotImplemented() extern "C" Exception_t2428370182 * EndPoint_NotImplemented_m3815175566 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.WebRequest::.ctor() extern "C" void WebRequest__ctor_m1143597694 (WebRequest_t294146427 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.WebHeaderCollection::.ctor() extern "C" void WebHeaderCollection__ctor_m1604616055 (WebHeaderCollection_t3555365273 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Runtime.Serialization.SerializationInfo::GetValue(System.String,System.Type) extern "C" RuntimeObject * SerializationInfo_GetValue_m376336523 (SerializationInfo_t2260044969 * __this, String_t* p0, Type_t * p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Runtime.Serialization.SerializationInfo::GetString(System.String) extern "C" String_t* SerializationInfo_GetString_m2297443841 (SerializationInfo_t2260044969 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int64 System.Runtime.Serialization.SerializationInfo::GetInt64(System.String) extern "C" int64_t SerializationInfo_GetInt64_m3494402209 (SerializationInfo_t2260044969 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Runtime.Serialization.SerializationInfo::GetBoolean(System.String) extern "C" bool SerializationInfo_GetBoolean_m706624525 (SerializationInfo_t2260044969 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object,System.Type) extern "C" void SerializationInfo_AddValue_m1233434328 (SerializationInfo_t2260044969 * __this, String_t* p0, RuntimeObject * p1, Type_t * p2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object) extern "C" void SerializationInfo_AddValue_m3743344052 (SerializationInfo_t2260044969 * __this, String_t* p0, RuntimeObject * p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Int64) extern "C" void SerializationInfo_AddValue_m618654658 (SerializationInfo_t2260044969 * __this, String_t* p0, int64_t p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Boolean) extern "C" void SerializationInfo_AddValue_m3100423471 (SerializationInfo_t2260044969 * __this, String_t* p0, bool p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.FileWebRequest::.ctor(System.Uri) extern "C" void FileWebRequest__ctor_m275703078 (FileWebRequest_t734527143 * __this, Uri_t3882940875 * ___uri0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.FtpWebRequest::.ctor(System.Uri) extern "C" void FtpWebRequest__ctor_m3034724643 (FtpWebRequest_t2481454041 * __this, Uri_t3882940875 * ___uri0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.Security.RemoteCertificateValidationCallback::.ctor(System.Object,System.IntPtr) extern "C" void RemoteCertificateValidationCallback__ctor_m3584509631 (RemoteCertificateValidationCallback_t1272219315 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.IWebProxy System.Net.GlobalProxySelection::get_Select() extern "C" RuntimeObject* GlobalProxySelection_get_Select_m121130108 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Net.Security.RemoteCertificateValidationCallback::Invoke(System.Object,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Net.Security.SslPolicyErrors) extern "C" bool RemoteCertificateValidationCallback_Invoke_m3002754149 (RemoteCertificateValidationCallback_t1272219315 * __this, RuntimeObject * ___sender0, X509Certificate_t1566844445 * ___certificate1, X509Chain_t2226602000 * ___chain2, int32_t ___sslPolicyErrors3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.InvalidOperationException::.ctor(System.String) extern "C" void InvalidOperationException__ctor_m1166481370 (InvalidOperationException_t94637358 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.IWebProxy System.Net.WebRequest::get_DefaultWebProxy() extern "C" RuntimeObject* WebRequest_get_DefaultWebProxy_m1954888778 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.HttpWebRequest::.ctor(System.Uri) extern "C" void HttpWebRequest__ctor_m3249692819 (HttpWebRequest_t546590891 * __this, Uri_t3882940875 * ___uri0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Version::.ctor(System.Int32,System.Int32) extern "C" void Version__ctor_m729134856 (Version_t269959680 * __this, int32_t p0, int32_t p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.WebHeaderCollection::.ctor(System.Boolean) extern "C" void WebHeaderCollection__ctor_m1317962248 (WebHeaderCollection_t3555365273 * __this, bool ___internallyCreated0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.ServicePoint System.Net.HttpWebRequest::GetServicePoint() extern "C" ServicePoint_t236056219 * HttpWebRequest_GetServicePoint_m1588434857 (HttpWebRequest_t546590891 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.ServicePoint System.Net.ServicePointManager::FindServicePoint(System.Uri,System.Net.IWebProxy) extern "C" ServicePoint_t236056219 * ServicePointManager_FindServicePoint_m1468708084 (RuntimeObject * __this /* static, unused */, Uri_t3882940875 * ___address0, RuntimeObject* ___proxy1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int16 System.Net.IPAddress::HostToNetworkOrder(System.Int16) extern "C" int16_t IPAddress_HostToNetworkOrder_m2436850084 (RuntimeObject * __this /* static, unused */, int16_t ___host0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.IPAddress::.ctor(System.Int64) extern "C" void IPAddress__ctor_m2213721830 (IPAddress_t2830710878 * __this, int64_t ___addr0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.IPAddress System.Net.IPAddress::ParseIPV6(System.String) extern "C" IPAddress_t2830710878 * IPAddress_ParseIPV6_m3353368636 (RuntimeObject * __this /* static, unused */, String_t* ___ip0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int16 System.Net.IPAddress::SwapShort(System.Int16) extern "C" int16_t IPAddress_SwapShort_m4226936771 (RuntimeObject * __this /* static, unused */, int16_t ___number0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.IPAddress System.Net.IPAddress::ParseIPV4(System.String) extern "C" IPAddress_t2830710878 * IPAddress_ParseIPV4_m1096964376 (RuntimeObject * __this /* static, unused */, String_t* ___ip0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.String::IndexOf(System.Char) extern "C" int32_t String_IndexOf_m3163027715 (String_t* __this, Il2CppChar p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Substring(System.Int32) extern "C" String_t* String_Substring_m4064971911 (String_t* __this, int32_t p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String[] System.String::Split(System.Char[]) extern "C" StringU5BU5D_t1187188029* String_Split_m853698014 (String_t* __this, CharU5BU5D_t1289681795* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Char[] System.String::ToCharArray() extern "C" CharU5BU5D_t1289681795* String_ToCharArray_m2342718794 (String_t* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Uri::IsHexDigit(System.Char) extern "C" bool Uri_IsHexDigit_m2101298566 (RuntimeObject * __this /* static, unused */, Il2CppChar ___digit0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Char System.String::get_Chars(System.Int32) extern "C" Il2CppChar String_get_Chars_m1760567447 (String_t* __this, int32_t p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Uri::FromHex(System.Char) extern "C" int32_t Uri_FromHex_m558617423 (RuntimeObject * __this /* static, unused */, Il2CppChar ___digit0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Int64::TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Int64&) extern "C" bool Int64_TryParse_m2330259503 (RuntimeObject * __this /* static, unused */, String_t* p0, int32_t p1, RuntimeObject* p2, int64_t* p3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Net.IPv6Address::TryParse(System.String,System.Net.IPv6Address&) extern "C" bool IPv6Address_TryParse_m412911054 (RuntimeObject * __this /* static, unused */, String_t* ___ipString0, IPv6Address_t2007755840 ** ___result1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.UInt16[] System.Net.IPv6Address::get_Address() extern "C" UInt16U5BU5D_t1255862157* IPv6Address_get_Address_m844321525 (IPv6Address_t2007755840 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int64 System.Net.IPv6Address::get_ScopeId() extern "C" int64_t IPv6Address_get_ScopeId_m1617357672 (IPv6Address_t2007755840 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.IPAddress::.ctor(System.UInt16[],System.Int64) extern "C" void IPAddress__ctor_m809365054 (IPAddress_t2830710878 * __this, UInt16U5BU5D_t1255862157* ___address0, int64_t ___scopeId1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Exception::.ctor(System.String) extern "C" void Exception__ctor_m4229980544 (Exception_t2428370182 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Buffer::BlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) extern "C" void Buffer_BlockCopy_m568541762 (RuntimeObject * __this /* static, unused */, RuntimeArray * p0, int32_t p1, RuntimeArray * p2, int32_t p3, int32_t p4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int16 System.Net.IPAddress::NetworkToHostOrder(System.Int16) extern "C" int16_t IPAddress_NetworkToHostOrder_m2003899271 (RuntimeObject * __this /* static, unused */, int16_t ___network0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Net.IPAddress::ToString(System.Int64) extern "C" String_t* IPAddress_ToString_m1586858173 (RuntimeObject * __this /* static, unused */, int64_t ___addr0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Array::Clone() extern "C" RuntimeObject * Array_Clone_m3054328322 (RuntimeArray * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.IPv6Address::.ctor(System.UInt16[]) extern "C" void IPv6Address__ctor_m3006175894 (IPv6Address_t2007755840 * __this, UInt16U5BU5D_t1255862157* ___addr0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int64 System.Net.IPAddress::get_ScopeId() extern "C" int64_t IPAddress_get_ScopeId_m1130465158 (IPAddress_t2830710878 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.IPv6Address::set_ScopeId(System.Int64) extern "C" void IPv6Address_set_ScopeId_m2362086601 (IPv6Address_t2007755840 * __this, int64_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Int64::ToString() extern "C" String_t* Int64_ToString_m4165984453 (int64_t* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Concat(System.String[]) extern "C" String_t* String_Concat_m4124671234 (RuntimeObject * __this /* static, unused */, StringU5BU5D_t1187188029* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Net.IPAddress::Hash(System.Int32,System.Int32,System.Int32,System.Int32) extern "C" int32_t IPAddress_Hash_m775817492 (RuntimeObject * __this /* static, unused */, int32_t ___i0, int32_t ___j1, int32_t ___k2, int32_t ___l3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.EndPoint::.ctor() extern "C" void EndPoint__ctor_m3636779127 (EndPoint_t268181662 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.IPEndPoint::set_Address(System.Net.IPAddress) extern "C" void IPEndPoint_set_Address_m2670857108 (IPEndPoint_t1606333388 * __this, IPAddress_t2830710878 * ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.IPEndPoint::set_Port(System.Int32) extern "C" void IPEndPoint_set_Port_m2730216019 (IPEndPoint_t1606333388 * __this, int32_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ArgumentOutOfRangeException::.ctor(System.String) extern "C" void ArgumentOutOfRangeException__ctor_m2330281379 (ArgumentOutOfRangeException_t1933742687 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.Sockets.AddressFamily System.Net.SocketAddress::get_Family() extern "C" int32_t SocketAddress_get_Family_m3812398706 (SocketAddress_t1723199846 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Concat(System.Object[]) extern "C" String_t* String_Concat_m2203353132 (RuntimeObject * __this /* static, unused */, ObjectU5BU5D_t4199014551* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Net.SocketAddress::get_Size() extern "C" int32_t SocketAddress_get_Size_m1839617643 (SocketAddress_t1723199846 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Byte System.Net.SocketAddress::get_Item(System.Int32) extern "C" uint8_t SocketAddress_get_Item_m30997818 (SocketAddress_t1723199846 * __this, int32_t ___offset0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.IPEndPoint::.ctor(System.Int64,System.Int32) extern "C" void IPEndPoint__ctor_m234162846 (IPEndPoint_t1606333388 * __this, int64_t ___iaddr0, int32_t ___port1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.IPEndPoint::.ctor(System.Net.IPAddress,System.Int32) extern "C" void IPEndPoint__ctor_m3582815052 (IPEndPoint_t1606333388 * __this, IPAddress_t2830710878 * ___address0, int32_t ___port1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.SocketAddress::.ctor(System.Net.Sockets.AddressFamily,System.Int32) extern "C" void SocketAddress__ctor_m4256079279 (SocketAddress_t1723199846 * __this, int32_t ___family0, int32_t ___size1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.SocketAddress::set_Item(System.Int32,System.Byte) extern "C" void SocketAddress_set_Item_m1141364269 (SocketAddress_t1723199846 * __this, int32_t ___offset0, uint8_t ___value1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int64 System.Net.IPAddress::get_InternalIPv4Address() extern "C" int64_t IPAddress_get_InternalIPv4Address_m1377209505 (IPAddress_t2830710878 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Byte[] System.Net.IPAddress::GetAddressBytes() extern "C" ByteU5BU5D_t1709610627* IPAddress_GetAddressBytes_m879949174 (IPAddress_t2830710878 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Concat(System.Object,System.Object,System.Object) extern "C" String_t* String_Concat_m2926526737 (RuntimeObject * __this /* static, unused */, RuntimeObject * p0, RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.IPv6Address::.ctor(System.UInt16[],System.Int32) extern "C" void IPv6Address__ctor_m1240619628 (IPv6Address_t2007755840 * __this, UInt16U5BU5D_t1255862157* ___addr0, int32_t ___prefixLength1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.IPv6Address System.Net.IPv6Address::Parse(System.String) extern "C" IPv6Address_t2007755840 * IPv6Address_Parse_m428862144 (RuntimeObject * __this /* static, unused */, String_t* ___ipString0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Int32::TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Int32&) extern "C" bool Int32_TryParse_m275795741 (RuntimeObject * __this /* static, unused */, String_t* p0, int32_t p1, RuntimeObject* p2, int32_t* p3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.String::LastIndexOf(System.Char) extern "C" int32_t String_LastIndexOf_m2617292187 (String_t* __this, Il2CppChar p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Net.IPv6Address::TryParse(System.String,System.Int32&) extern "C" bool IPv6Address_TryParse_m2575875235 (RuntimeObject * __this /* static, unused */, String_t* ___prefix0, int32_t* ___res1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Net.IPv6Address::Fill(System.UInt16[],System.String) extern "C" int32_t IPv6Address_Fill_m1519478767 (RuntimeObject * __this /* static, unused */, UInt16U5BU5D_t1255862157* ___addr0, String_t* ___ipString1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.IPv6Address::.ctor(System.UInt16[],System.Int32,System.Int32) extern "C" void IPv6Address__ctor_m3472332158 (IPv6Address_t2007755840 * __this, UInt16U5BU5D_t1255862157* ___addr0, int32_t ___prefixLength1, int32_t ___scopeId2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.UInt16 System.Net.IPv6Address::SwapUShort(System.UInt16) extern "C" uint16_t IPv6Address_SwapUShort_m1827635909 (RuntimeObject * __this /* static, unused */, uint16_t ___number0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Net.IPv6Address::AsIPv4Int() extern "C" int32_t IPv6Address_AsIPv4Int_m3403158558 (IPv6Address_t2007755840 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Text.StringBuilder::.ctor() extern "C" void StringBuilder__ctor_m3807124734 (StringBuilder_t1723565765 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Net.IPv6Address::IsIPv4Compatible() extern "C" bool IPv6Address_IsIPv4Compatible_m2433077592 (IPv6Address_t2007755840 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Net.IPv6Address::IsIPv4Mapped() extern "C" bool IPv6Address_IsIPv4Mapped_m1097108779 (IPv6Address_t2007755840 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String) extern "C" StringBuilder_t1723565765 * StringBuilder_Append_m2808439928 (StringBuilder_t1723565765 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Text.StringBuilder::ToString() extern "C" String_t* StringBuilder_ToString_m4017876341 (StringBuilder_t1723565765 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Text.StringBuilder System.Text.StringBuilder::AppendFormat(System.String,System.Object) extern "C" StringBuilder_t1723565765 * StringBuilder_AppendFormat_m2761752028 (StringBuilder_t1723565765 * __this, String_t* p0, RuntimeObject * p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char) extern "C" StringBuilder_t1723565765 * StringBuilder_Append_m1590428652 (StringBuilder_t1723565765 * __this, Il2CppChar p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Int64) extern "C" StringBuilder_t1723565765 * StringBuilder_Append_m3561457556 (StringBuilder_t1723565765 * __this, int64_t p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Net.IPv6Address::Hash(System.Int32,System.Int32,System.Int32,System.Int32) extern "C" int32_t IPv6Address_Hash_m1834498758 (RuntimeObject * __this /* static, unused */, int32_t ___i0, int32_t ___j1, int32_t ___k2, int32_t ___l3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.DateTime System.DateTime::get_Now() extern "C" DateTime_t718238015 DateTime_get_Now_m1834417922 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.ServicePoint::set_SendContinue(System.Boolean) extern "C" void ServicePoint_set_SendContinue_m3827139042 (ServicePoint_t236056219 * __this, bool ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Net.ServicePoint::get_CurrentConnections() extern "C" int32_t ServicePoint_get_CurrentConnections_m3528356187 (ServicePoint_t236056219 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.DateTime System.Net.ServicePoint::get_IdleSince() extern "C" DateTime_t718238015 ServicePoint_get_IdleSince_m3125529858 (ServicePoint_t236056219 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.DateTime System.DateTime::AddMilliseconds(System.Double) extern "C" DateTime_t718238015 DateTime_AddMilliseconds_m4136902214 (DateTime_t718238015 * __this, double p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.DateTime::op_GreaterThanOrEqual(System.DateTime,System.DateTime) extern "C" bool DateTime_op_GreaterThanOrEqual_m2823807249 (RuntimeObject * __this /* static, unused */, DateTime_t718238015 p0, DateTime_t718238015 p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Specialized.HybridDictionary::.ctor() extern "C" void HybridDictionary__ctor_m1509955104 (HybridDictionary_t979529962 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.DefaultCertificatePolicy::.ctor() extern "C" void DefaultCertificatePolicy__ctor_m1698267278 (DefaultCertificatePolicy_t1503698831 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Uri::op_Equality(System.Uri,System.Uri) extern "C" bool Uri_op_Equality_m2318555073 (RuntimeObject * __this /* static, unused */, Uri_t3882940875 * ___u10, Uri_t3882940875 * ___u21, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.ServicePointManager::RecycleServicePoints() extern "C" void ServicePointManager_RecycleServicePoints_m1283083192 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Uri::get_Scheme() extern "C" String_t* Uri_get_Scheme_m681902525 (Uri_t3882940875 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.String::op_Inequality(System.String,System.String) extern "C" bool String_op_Inequality_m1660367964 (RuntimeObject * __this /* static, unused */, String_t* p0, String_t* p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Uri::get_Authority() extern "C" String_t* Uri_get_Authority_m1702279103 (Uri_t3882940875 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Uri::.ctor(System.String) extern "C" void Uri__ctor_m3129882193 (Uri_t3882940875 * __this, String_t* ___uriString0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.ServicePointManager/SPKey::.ctor(System.Uri,System.Boolean) extern "C" void SPKey__ctor_m1504203566 (SPKey_t3349994041 * __this, Uri_t3882940875 * ___uri0, bool ___use_connect1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Collections.Specialized.HybridDictionary::get_Item(System.Object) extern "C" RuntimeObject * HybridDictionary_get_Item_m1354733226 (HybridDictionary_t979529962 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Collections.Specialized.HybridDictionary::get_Count() extern "C" int32_t HybridDictionary_get_Count_m1630970262 (HybridDictionary_t979529962 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.ServicePoint::.ctor(System.Uri,System.Int32,System.Int32) extern "C" void ServicePoint__ctor_m2304191186 (ServicePoint_t236056219 * __this, Uri_t3882940875 * ___uri0, int32_t ___connectionLimit1, int32_t ___maxIdleTime2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.ServicePoint::set_Expect100Continue(System.Boolean) extern "C" void ServicePoint_set_Expect100Continue_m585818429 (ServicePoint_t236056219 * __this, bool ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.ServicePoint::set_UseNagleAlgorithm(System.Boolean) extern "C" void ServicePoint_set_UseNagleAlgorithm_m3895224104 (ServicePoint_t236056219 * __this, bool ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.ServicePoint::set_UsesProxy(System.Boolean) extern "C" void ServicePoint_set_UsesProxy_m1502625926 (ServicePoint_t236056219 * __this, bool ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.ServicePoint::set_UseConnect(System.Boolean) extern "C" void ServicePoint_set_UseConnect_m2697034844 (ServicePoint_t236056219 * __this, bool ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Specialized.HybridDictionary::Add(System.Object,System.Object) extern "C" void HybridDictionary_Add_m1147581187 (HybridDictionary_t979529962 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.IDictionaryEnumerator System.Collections.Specialized.HybridDictionary::GetEnumerator() extern "C" RuntimeObject* HybridDictionary_GetEnumerator_m2347203662 (HybridDictionary_t979529962 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Net.ServicePoint::get_AvailableForRecycling() extern "C" bool ServicePoint_get_AvailableForRecycling_m3985306945 (ServicePoint_t236056219 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Specialized.HybridDictionary::Remove(System.Object) extern "C" void HybridDictionary_Remove_m3394452943 (HybridDictionary_t979529962 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.SortedList::.ctor(System.Int32) extern "C" void SortedList__ctor_m3745045255 (SortedList_t1920303691 * __this, int32_t p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.ServicePoint::set_IdleSince(System.DateTime) extern "C" void ServicePoint_set_IdleSince_m1847881400 (ServicePoint_t236056219 * __this, DateTime_t718238015 ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Uri System.Net.ServicePoint::get_Address() extern "C" Uri_t3882940875 * ServicePoint_get_Address_m2490071477 (ServicePoint_t236056219 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Queue::.ctor(System.Int32) extern "C" void Queue__ctor_m1333671058 (Queue_t4072794599 * __this, int32_t p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.IntPtr System.Net.Sockets.Socket::Socket_internal(System.Net.Sockets.AddressFamily,System.Net.Sockets.SocketType,System.Net.Sockets.ProtocolType,System.Int32&) extern "C" intptr_t Socket_Socket_internal_m4060053520 (Socket_t2215831248 * __this, int32_t ___family0, int32_t ___type1, int32_t ___proto2, int32_t* ___error3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ObjectDisposedException::.ctor(System.String) extern "C" void ObjectDisposedException__ctor_m2005756758 (ObjectDisposedException_t3257614166 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Net.Sockets.Socket::Available_internal(System.IntPtr,System.Int32&) extern "C" int32_t Socket_Available_internal_m1414329746 (RuntimeObject * __this /* static, unused */, intptr_t ___socket0, int32_t* ___error1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.SocketAddress System.Net.Sockets.Socket::LocalEndPoint_internal(System.IntPtr,System.Int32&) extern "C" SocketAddress_t1723199846 * Socket_LocalEndPoint_internal_m1375667575 (RuntimeObject * __this /* static, unused */, intptr_t ___socket0, int32_t* ___error1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String) extern "C" void ArgumentOutOfRangeException__ctor_m985369605 (ArgumentOutOfRangeException_t1933742687 * __this, String_t* p0, String_t* p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.Sockets.Socket::SetSocketOption(System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName,System.Int32) extern "C" void Socket_SetSocketOption_m206373293 (Socket_t2215831248 * __this, int32_t ___optionLevel0, int32_t ___optionName1, int32_t ___optionValue2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.Sockets.Socket::Connect(System.Net.EndPoint) extern "C" void Socket_Connect_m611381486 (Socket_t2215831248 * __this, EndPoint_t268181662 * ___remoteEP0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.Sockets.AddressFamily System.Net.Sockets.Socket::get_AddressFamily() extern "C" int32_t Socket_get_AddressFamily_m480135769 (Socket_t2215831248 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.InvalidOperationException::.ctor() extern "C" void InvalidOperationException__ctor_m2272205370 (InvalidOperationException_t94637358 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.Sockets.Socket::Connect_internal(System.IntPtr,System.Net.SocketAddress,System.Int32&) extern "C" void Socket_Connect_internal_m2367322474 (RuntimeObject * __this /* static, unused */, intptr_t ___sock0, SocketAddress_t1723199846 * ___sa1, int32_t* ___error2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Net.Sockets.Socket::Poll(System.Int32,System.Net.Sockets.SelectMode) extern "C" bool Socket_Poll_m1770499247 (Socket_t2215831248 * __this, int32_t ___time_us0, int32_t ___mode1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Net.Sockets.Socket::GetSocketOption(System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName) extern "C" RuntimeObject * Socket_GetSocketOption_m2250061835 (Socket_t2215831248 * __this, int32_t ___optionLevel0, int32_t ___optionName1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.IPAddress[] System.Net.Dns::GetHostAddresses(System.String) extern "C" IPAddressU5BU5D_t3756700779* Dns_GetHostAddresses_m2939178862 (RuntimeObject * __this /* static, unused */, String_t* ___hostNameOrAddress0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.Sockets.Socket::Connect(System.Net.IPAddress[],System.Int32) extern "C" void Socket_Connect_m2472886291 (Socket_t2215831248 * __this, IPAddressU5BU5D_t3756700779* ___addresses0, int32_t ___port1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Net.Sockets.Socket::Poll_internal(System.IntPtr,System.Net.Sockets.SelectMode,System.Int32,System.Int32&) extern "C" bool Socket_Poll_internal_m1396376171 (RuntimeObject * __this /* static, unused */, intptr_t ___socket0, int32_t ___mode1, int32_t ___timeout2, int32_t* ___error3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Net.Sockets.Socket::Receive_nochecks(System.Byte[],System.Int32,System.Int32,System.Net.Sockets.SocketFlags,System.Net.Sockets.SocketError&) extern "C" int32_t Socket_Receive_nochecks_m2605287863 (Socket_t2215831248 * __this, ByteU5BU5D_t1709610627* ___buf0, int32_t ___offset1, int32_t ___size2, int32_t ___flags3, int32_t* ___error4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.Sockets.SocketException::.ctor(System.Int32,System.String) extern "C" void SocketException__ctor_m2418413251 (SocketException_t2171012343 * __this, int32_t ___error0, String_t* ___message1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Net.Sockets.Socket::RecvFrom_internal(System.IntPtr,System.Byte[],System.Int32,System.Int32,System.Net.Sockets.SocketFlags,System.Net.SocketAddress&,System.Int32&) extern "C" int32_t Socket_RecvFrom_internal_m1561942901 (RuntimeObject * __this /* static, unused */, intptr_t ___sock0, ByteU5BU5D_t1709610627* ___buffer1, int32_t ___offset2, int32_t ___count3, int32_t ___flags4, SocketAddress_t1723199846 ** ___sockaddr5, int32_t* ___error6, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Environment::get_SocketSecurityEnabled() extern "C" bool Environment_get_SocketSecurityEnabled_m535401884 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Net.Sockets.Socket::CheckEndPoint(System.Net.SocketAddress) extern "C" bool Socket_CheckEndPoint_m892490345 (RuntimeObject * __this /* static, unused */, SocketAddress_t1723199846 * ___sa0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Array::Initialize() extern "C" void Array_Initialize_m1250343159 (RuntimeArray * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Security.SecurityException::.ctor(System.String) extern "C" void SecurityException__ctor_m1823879396 (SecurityException_t3040899540 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Net.Sockets.Socket::Send_nochecks(System.Byte[],System.Int32,System.Int32,System.Net.Sockets.SocketFlags,System.Net.Sockets.SocketError&) extern "C" int32_t Socket_Send_nochecks_m333970931 (Socket_t2215831248 * __this, ByteU5BU5D_t1709610627* ___buf0, int32_t ___offset1, int32_t ___size2, int32_t ___flags3, int32_t* ___error4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.Sockets.Socket::.ctor(System.Net.Sockets.AddressFamily,System.Net.Sockets.SocketType,System.Net.Sockets.ProtocolType) extern "C" void Socket__ctor_m3106057280 (Socket_t2215831248 * __this, int32_t ___family0, int32_t ___type1, int32_t ___proto2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.Sockets.Socket::Close() extern "C" void Socket_Close_m3321357048 (Socket_t2215831248 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Object::Finalize() extern "C" void Object_Finalize_m1219447859 (RuntimeObject * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.Sockets.Socket::ThrowIfUpd() extern "C" void Socket_ThrowIfUpd_m4264328861 (Socket_t2215831248 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.SocketAddress System.Net.Sockets.Socket::RemoteEndPoint_internal(System.IntPtr,System.Int32&) extern "C" SocketAddress_t1723199846 * Socket_RemoteEndPoint_internal_m1113431622 (RuntimeObject * __this /* static, unused */, intptr_t ___socket0, int32_t* ___error1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.Sockets.Socket::Shutdown_internal(System.IntPtr,System.Net.Sockets.SocketShutdown,System.Int32&) extern "C" void Socket_Shutdown_internal_m1060800058 (RuntimeObject * __this /* static, unused */, intptr_t ___socket0, int32_t ___how1, int32_t* ___error2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.Sockets.LingerOption::.ctor(System.Boolean,System.Int32) extern "C" void LingerOption__ctor_m2827030615 (LingerOption_t1955249639 * __this, bool ___enable0, int32_t ___secs1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.Sockets.Socket::SetSocketOption_internal(System.IntPtr,System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName,System.Object,System.Byte[],System.Int32,System.Int32&) extern "C" void Socket_SetSocketOption_internal_m3798720458 (RuntimeObject * __this /* static, unused */, intptr_t ___socket0, int32_t ___level1, int32_t ___name2, RuntimeObject * ___obj_val3, ByteU5BU5D_t1709610627* ___byte_val4, int32_t ___int_val5, int32_t* ___error6, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.IntPtr::op_Explicit(System.IntPtr) extern "C" int32_t IntPtr_op_Explicit_m999229369 (RuntimeObject * __this /* static, unused */, intptr_t p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.IntPtr System.IntPtr::op_Explicit(System.Int32) extern "C" intptr_t IntPtr_op_Explicit_m2360224199 (RuntimeObject * __this /* static, unused */, int32_t p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Threading.Thread::Abort() extern "C" void Thread_Abort_m1664890088 (Thread_t3102188359 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.Sockets.Socket::Linger(System.IntPtr) extern "C" void Socket_Linger_m3264146316 (Socket_t2215831248 * __this, intptr_t ___handle0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.Sockets.Socket::Close_internal(System.IntPtr,System.Int32&) extern "C" void Socket_Close_internal_m2870548462 (RuntimeObject * __this /* static, unused */, intptr_t ___socket0, int32_t* ___error1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.GC::SuppressFinalize(System.Object) extern "C" void GC_SuppressFinalize_m768645527 (RuntimeObject * __this /* static, unused */, RuntimeObject * p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.Sockets.Socket::Connect_internal(System.IntPtr,System.Net.SocketAddress,System.Int32&,System.Boolean) extern "C" void Socket_Connect_internal_m3421818009 (RuntimeObject * __this /* static, unused */, intptr_t ___sock0, SocketAddress_t1723199846 * ___sa1, int32_t* ___error2, bool ___requireSocketPolicyFile3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.Sockets.Socket::Connect_internal_real(System.IntPtr,System.Net.SocketAddress,System.Int32&) extern "C" void Socket_Connect_internal_real_m69548539 (RuntimeObject * __this /* static, unused */, intptr_t ___sock0, SocketAddress_t1723199846 * ___sa1, int32_t* ___error2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Reflection.MethodInfo System.Net.Sockets.Socket::GetUnityCrossDomainHelperMethod(System.String) extern "C" MethodInfo_t * Socket_GetUnityCrossDomainHelperMethod_m303196429 (RuntimeObject * __this /* static, unused */, String_t* ___methodname0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.IPAddress System.Net.IPEndPoint::get_Address() extern "C" IPAddress_t2830710878 * IPEndPoint_get_Address_m4034902075 (IPEndPoint_t1606333388 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Net.IPEndPoint::get_Port() extern "C" int32_t IPEndPoint_get_Port_m527879344 (IPEndPoint_t1606333388 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Reflection.MethodInfo System.Type::GetMethod(System.String) extern "C" MethodInfo_t * Type_GetMethod_m1453190512 (Type_t * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.Sockets.Socket::Connect(System.Net.EndPoint,System.Boolean) extern "C" void Socket_Connect_m3770920720 (Socket_t2215831248 * __this, EndPoint_t268181662 * ___remoteEP0, bool ___requireSocketPolicy1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Threading.Thread System.Threading.Thread::get_CurrentThread() extern "C" Thread_t3102188359 * Thread_get_CurrentThread_m577432072 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Threading.Thread::ResetAbort() extern "C" void Thread_ResetAbort_m958710345 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Net.Sockets.Socket::ReceiveFrom_nochecks_exc(System.Byte[],System.Int32,System.Int32,System.Net.Sockets.SocketFlags,System.Net.EndPoint&,System.Boolean,System.Int32&) extern "C" int32_t Socket_ReceiveFrom_nochecks_exc_m580463546 (Socket_t2215831248 * __this, ByteU5BU5D_t1709610627* ___buf0, int32_t ___offset1, int32_t ___size2, int32_t ___flags3, EndPoint_t268181662 ** ___remote_end4, bool ___throwOnError5, int32_t* ___error6, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Net.Sockets.Socket::Receive_internal(System.IntPtr,System.Byte[],System.Int32,System.Int32,System.Net.Sockets.SocketFlags,System.Int32&) extern "C" int32_t Socket_Receive_internal_m1478365027 (RuntimeObject * __this /* static, unused */, intptr_t ___sock0, ByteU5BU5D_t1709610627* ___buffer1, int32_t ___offset2, int32_t ___count3, int32_t ___flags4, int32_t* ___error5, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Net.Sockets.Socket::Send_internal(System.IntPtr,System.Byte[],System.Int32,System.Int32,System.Net.Sockets.SocketFlags,System.Int32&) extern "C" int32_t Socket_Send_internal_m2793093257 (RuntimeObject * __this /* static, unused */, intptr_t ___sock0, ByteU5BU5D_t1709610627* ___buf1, int32_t ___offset2, int32_t ___count3, int32_t ___flags4, int32_t* ___error5, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.Sockets.Socket::GetSocketOption_obj_internal(System.IntPtr,System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName,System.Object&,System.Int32&) extern "C" void Socket_GetSocketOption_obj_internal_m1850898037 (RuntimeObject * __this /* static, unused */, intptr_t ___socket0, int32_t ___level1, int32_t ___name2, RuntimeObject ** ___obj_val3, int32_t* ___error4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Net.Sockets.SocketException::WSAGetLastError_internal() extern "C" int32_t SocketException_WSAGetLastError_internal_m2958171769 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.Win32Exception::.ctor(System.Int32) extern "C" void Win32Exception__ctor_m10977592 (Win32Exception_t789722284 * __this, int32_t ___error0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.Win32Exception::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void Win32Exception__ctor_m1389307655 (Win32Exception_t789722284 * __this, SerializationInfo_t2260044969 * ___info0, StreamingContext_t3610716448 ___context1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ComponentModel.Win32Exception::.ctor(System.Int32,System.String) extern "C" void Win32Exception__ctor_m1703036844 (Win32Exception_t789722284 * __this, int32_t ___error0, String_t* ___message1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.ComponentModel.Win32Exception::get_NativeErrorCode() extern "C" int32_t Win32Exception_get_NativeErrorCode_m1748228136 (Win32Exception_t789722284 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Exception::get_Message() extern "C" String_t* Exception_get_Message_m3004078240 (Exception_t2428370182 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Specialized.NameValueCollection::.ctor() extern "C" void NameValueCollection__ctor_m1872871932 (NameValueCollection_t1416237248 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Int32::ToString() extern "C" String_t* Int32_ToString_m2394199081 (int32_t* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle) extern "C" void RuntimeHelpers_InitializeArray_m68930590 (RuntimeObject * __this /* static, unused */, RuntimeArray * p0, RuntimeFieldHandle_t3385751618 p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.CaseInsensitiveHashCodeProvider System.Collections.CaseInsensitiveHashCodeProvider::get_DefaultInvariant() extern "C" CaseInsensitiveHashCodeProvider_t1153736937 * CaseInsensitiveHashCodeProvider_get_DefaultInvariant_m468958183 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.CaseInsensitiveComparer System.Collections.CaseInsensitiveComparer::get_DefaultInvariant() extern "C" CaseInsensitiveComparer_t2588724170 * CaseInsensitiveComparer_get_DefaultInvariant_m3840188841 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Hashtable::.ctor(System.Collections.IHashCodeProvider,System.Collections.IComparer) extern "C" void Hashtable__ctor_m3104597869 (Hashtable_t448324601 * __this, RuntimeObject* p0, RuntimeObject* p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.StringComparer System.StringComparer::get_InvariantCultureIgnoreCase() extern "C" StringComparer_t3292076425 * StringComparer_get_InvariantCultureIgnoreCase_m4127723561 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Generic.Dictionary`2<System.String,System.Boolean>::.ctor(System.Collections.Generic.IEqualityComparer`1<!0>) #define Dictionary_2__ctor_m1275257838(__this, p0, method) (( void (*) (Dictionary_2_t120496167 *, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_m3638461102_gshared)(__this, p0, method) // System.Void System.Collections.Generic.Dictionary`2<System.String,System.Boolean>::Add(!0,!1) #define Dictionary_2_Add_m562197175(__this, p0, p1, method) (( void (*) (Dictionary_2_t120496167 *, String_t*, bool, const RuntimeMethod*))Dictionary_2_Add_m574372687_gshared)(__this, p0, p1, method) // System.Boolean System.Net.WebHeaderCollection::IsRestricted(System.String) extern "C" bool WebHeaderCollection_IsRestricted_m1165393757 (RuntimeObject * __this /* static, unused */, String_t* ___headerName0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.WebHeaderCollection::AddWithoutValidate(System.String,System.String) extern "C" void WebHeaderCollection_AddWithoutValidate_m391413266 (WebHeaderCollection_t3555365273 * __this, String_t* ___headerName0, String_t* ___headerValue1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Net.WebHeaderCollection::IsHeaderName(System.String) extern "C" bool WebHeaderCollection_IsHeaderName_m2786743463 (RuntimeObject * __this /* static, unused */, String_t* ___name0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Net.WebHeaderCollection::IsHeaderValue(System.String) extern "C" bool WebHeaderCollection_IsHeaderValue_m1310012786 (RuntimeObject * __this /* static, unused */, String_t* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Specialized.NameValueCollection::Add(System.String,System.String) extern "C" void NameValueCollection_Add_m1455414060 (NameValueCollection_t1416237248 * __this, String_t* ___name0, String_t* ___val1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Collections.Specialized.NameObjectCollectionBase::get_Count() extern "C" int32_t NameObjectCollectionBase_get_Count_m1082627926 (NameObjectCollectionBase_t1742866887 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.Specialized.NameObjectCollectionBase/KeysCollection System.Collections.Specialized.NameObjectCollectionBase::get_Keys() extern "C" KeysCollection_t4017748511 * NameObjectCollectionBase_get_Keys_m3830472704 (NameObjectCollectionBase_t1742866887 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Collections.Specialized.NameValueCollection::Get(System.Int32) extern "C" String_t* NameValueCollection_Get_m1680895466 (NameValueCollection_t1416237248 * __this, int32_t ___index0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Collections.Specialized.NameValueCollection::GetKey(System.Int32) extern "C" String_t* NameValueCollection_GetKey_m975685328 (NameValueCollection_t1416237248 * __this, int32_t ___index0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.IEnumerator System.Collections.Specialized.NameObjectCollectionBase::GetEnumerator() extern "C" RuntimeObject* NameObjectCollectionBase_GetEnumerator_m2065869120 (NameObjectCollectionBase_t1742866887 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.WebProxy::.ctor(System.Uri,System.Boolean,System.String[],System.Net.ICredentials) extern "C" void WebProxy__ctor_m3644851391 (WebProxy_t234734190 * __this, Uri_t3882940875 * ___address0, bool ___bypassOnLocal1, StringU5BU5D_t1187188029* ___bypassList2, RuntimeObject* ___credentials3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.WebProxy::CheckBypassList() extern "C" void WebProxy_CheckBypassList_m1544871404 (WebProxy_t234734190 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Net.WebProxy::IsBypassed(System.Uri) extern "C" bool WebProxy_IsBypassed_m367914737 (WebProxy_t234734190 * __this, Uri_t3882940875 * ___host0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Uri::get_IsLoopback() extern "C" bool Uri_get_IsLoopback_m2572783566 (Uri_t3882940875 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Uri::get_Host() extern "C" String_t* Uri_get_Host_m4264362232 (Uri_t3882940875 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.String::Compare(System.String,System.String,System.Boolean,System.Globalization.CultureInfo) extern "C" int32_t String_Compare_m1677189168 (RuntimeObject * __this /* static, unused */, String_t* p0, String_t* p1, bool p2, CultureInfo_t270095993 * p3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Net.IPAddress::IsLoopback(System.Net.IPAddress) extern "C" bool IPAddress_IsLoopback_m1557316953 (RuntimeObject * __this /* static, unused */, IPAddress_t2830710878 * ___addr0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Text.RegularExpressions.Regex::.ctor(System.String,System.Text.RegularExpressions.RegexOptions) extern "C" void Regex__ctor_m1710886513 (Regex_t2405265571 * __this, String_t* ___pattern0, int32_t ___options1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String) extern "C" bool Regex_IsMatch_m651348755 (Regex_t2405265571 * __this, String_t* ___input0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Text.RegularExpressions.Regex::.ctor(System.String) extern "C" void Regex__ctor_m2000001007 (Regex_t2405265571 * __this, String_t* ___pattern0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Net.WebProxy::get_UseDefaultCredentials() extern "C" bool WebProxy_get_UseDefaultCredentials_m3070668334 (WebProxy_t234734190 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.MarshalByRefObject::.ctor() extern "C" void MarshalByRefObject__ctor_m3192187787 (MarshalByRefObject_t3072832018 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.WebRequest::AddDynamicPrefix(System.String,System.String) extern "C" void WebRequest_AddDynamicPrefix_m411026550 (RuntimeObject * __this /* static, unused */, String_t* ___protocol0, String_t* ___implementor1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Net.WebRequest::AddPrefix(System.String,System.Type) extern "C" void WebRequest_AddPrefix_m1190702954 (RuntimeObject * __this /* static, unused */, String_t* ___prefix0, Type_t * ___type1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.NotImplementedException::.ctor(System.String) extern "C" void NotImplementedException__ctor_m272930463 (NotImplementedException_t682134635 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Net.IWebProxy System.Net.WebRequest::GetDefaultWebProxy() extern "C" RuntimeObject* WebRequest_GetDefaultWebProxy_m215964591 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Exception System.Net.WebRequest::GetMustImplement() extern "C" Exception_t2428370182 * WebRequest_GetMustImplement_m184024796 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Activator::CreateInstance(System.Type,System.Boolean) extern "C" RuntimeObject * Activator_CreateInstance_m755441566 (RuntimeObject * __this /* static, unused */, Type_t * p0, bool p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Specialized.HybridDictionary::set_Item(System.Object,System.Object) extern "C" void HybridDictionary_set_Item_m223444751 (HybridDictionary_t979529962 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Security.Cryptography.Oid::.ctor(System.String) extern "C" void Oid__ctor_m2480021574 (Oid_t1416572164 * __this, String_t* ___oid0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Security.Cryptography.AsnEncodedData::set_RawData(System.Byte[]) extern "C" void AsnEncodedData_set_RawData_m3736237913 (AsnEncodedData_t2501174634 * __this, ByteU5BU5D_t1709610627* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Security.Cryptography.AsnEncodedData::set_Oid(System.Security.Cryptography.Oid) extern "C" void AsnEncodedData_set_Oid_m3720899968 (AsnEncodedData_t2501174634 * __this, Oid_t1416572164 * ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Security.Cryptography.Oid::.ctor(System.Security.Cryptography.Oid) extern "C" void Oid__ctor_m3313774207 (Oid_t1416572164 * __this, Oid_t1416572164 * ___oid0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Security.Cryptography.Oid::get_Value() extern "C" String_t* Oid_get_Value_m1039239028 (Oid_t1416572164 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::.ctor(System.Int32) #define Dictionary_2__ctor_m3230131747(__this, p0, method) (( void (*) (Dictionary_2_t2052754070 *, int32_t, const RuntimeMethod*))Dictionary_2__ctor_m3507144990_gshared)(__this, p0, method) // System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) #define Dictionary_2_Add_m3664665439(__this, p0, p1, method) (( void (*) (Dictionary_2_t2052754070 *, String_t*, int32_t, const RuntimeMethod*))Dictionary_2_Add_m275528619_gshared)(__this, p0, p1, method) // System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::TryGetValue(!0,!1&) #define Dictionary_2_TryGetValue_m960735834(__this, p0, p1, method) (( bool (*) (Dictionary_2_t2052754070 *, String_t*, int32_t*, const RuntimeMethod*))Dictionary_2_TryGetValue_m3424278023_gshared)(__this, p0, p1, method) // System.String System.Security.Cryptography.AsnEncodedData::BasicConstraintsExtension(System.Boolean) extern "C" String_t* AsnEncodedData_BasicConstraintsExtension_m842585528 (AsnEncodedData_t2501174634 * __this, bool ___multiLine0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Security.Cryptography.AsnEncodedData::EnhancedKeyUsageExtension(System.Boolean) extern "C" String_t* AsnEncodedData_EnhancedKeyUsageExtension_m1429011967 (AsnEncodedData_t2501174634 * __this, bool ___multiLine0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Security.Cryptography.AsnEncodedData::KeyUsageExtension(System.Boolean) extern "C" String_t* AsnEncodedData_KeyUsageExtension_m1744264604 (AsnEncodedData_t2501174634 * __this, bool ___multiLine0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Security.Cryptography.AsnEncodedData::SubjectKeyIdentifierExtension(System.Boolean) extern "C" String_t* AsnEncodedData_SubjectKeyIdentifierExtension_m2277791034 (AsnEncodedData_t2501174634 * __this, bool ___multiLine0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Security.Cryptography.AsnEncodedData::SubjectAltName(System.Boolean) extern "C" String_t* AsnEncodedData_SubjectAltName_m2045235003 (AsnEncodedData_t2501174634 * __this, bool ___multiLine0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Security.Cryptography.AsnEncodedData::NetscapeCertType(System.Boolean) extern "C" String_t* AsnEncodedData_NetscapeCertType_m4094850323 (AsnEncodedData_t2501174634 * __this, bool ___multiLine0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Security.Cryptography.AsnEncodedData::Default(System.Boolean) extern "C" String_t* AsnEncodedData_Default_m3512740418 (AsnEncodedData_t2501174634 * __this, bool ___multiLine0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Byte::ToString(System.String) extern "C" String_t* Byte_ToString_m3730449428 (uint8_t* __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::.ctor(System.Security.Cryptography.AsnEncodedData,System.Boolean) extern "C" void X509BasicConstraintsExtension__ctor_m2847909888 (X509BasicConstraintsExtension_t1207207255 * __this, AsnEncodedData_t2501174634 * ___encodedBasicConstraints0, bool ___critical1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::ToString(System.Boolean) extern "C" String_t* X509BasicConstraintsExtension_ToString_m3940628223 (X509BasicConstraintsExtension_t1207207255 * __this, bool ___multiLine0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension::.ctor(System.Security.Cryptography.AsnEncodedData,System.Boolean) extern "C" void X509EnhancedKeyUsageExtension__ctor_m1382476803 (X509EnhancedKeyUsageExtension_t778057432 * __this, AsnEncodedData_t2501174634 * ___encodedEnhancedKeyUsages0, bool ___critical1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension::ToString(System.Boolean) extern "C" String_t* X509EnhancedKeyUsageExtension_ToString_m572667286 (X509EnhancedKeyUsageExtension_t778057432 * __this, bool ___multiLine0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Security.Cryptography.X509Certificates.X509KeyUsageExtension::.ctor(System.Security.Cryptography.AsnEncodedData,System.Boolean) extern "C" void X509KeyUsageExtension__ctor_m1337989643 (X509KeyUsageExtension_t3246595939 * __this, AsnEncodedData_t2501174634 * ___encodedKeyUsage0, bool ___critical1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Security.Cryptography.X509Certificates.X509KeyUsageExtension::ToString(System.Boolean) extern "C" String_t* X509KeyUsageExtension_ToString_m3539842244 (X509KeyUsageExtension_t3246595939 * __this, bool ___multiLine0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::.ctor(System.Security.Cryptography.AsnEncodedData,System.Boolean) extern "C" void X509SubjectKeyIdentifierExtension__ctor_m1402408632 (X509SubjectKeyIdentifierExtension_t2831496947 * __this, AsnEncodedData_t2501174634 * ___encodedSubjectKeyIdentifier0, bool ___critical1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::ToString(System.Boolean) extern "C" String_t* X509SubjectKeyIdentifierExtension_ToString_m2611723470 (X509SubjectKeyIdentifierExtension_t2831496947 * __this, bool ___multiLine0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void Mono.Security.ASN1::.ctor(System.Byte[]) extern "C" void ASN1__ctor_m3000560880 (ASN1_t2575024487 * __this, ByteU5BU5D_t1709610627* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // Mono.Security.ASN1 Mono.Security.ASN1::get_Item(System.Int32) extern "C" ASN1_t2575024487 * ASN1_get_Item_m3158563920 (ASN1_t2575024487 * __this, int32_t p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Byte Mono.Security.ASN1::get_Tag() extern "C" uint8_t ASN1_get_Tag_m4184187564 (ASN1_t2575024487 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Text.Encoding System.Text.Encoding::get_ASCII() extern "C" Encoding_t3296442469 * Encoding_get_ASCII_m1481601337 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Byte[] Mono.Security.ASN1::get_Value() extern "C" ByteU5BU5D_t1709610627* ASN1_get_Value_m3168500790 (ASN1_t2575024487 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Format(System.String,System.Object) extern "C" String_t* String_Format_m3436242843 (RuntimeObject * __this /* static, unused */, String_t* p0, RuntimeObject * p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String Mono.Security.Cryptography.CryptoConvert::ToHex(System.Byte[]) extern "C" String_t* CryptoConvert_ToHex_m292390700 (RuntimeObject * __this /* static, unused */, ByteU5BU5D_t1709610627* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Environment::get_NewLine() extern "C" String_t* Environment_get_NewLine_m264761464 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 Mono.Security.ASN1::get_Count() extern "C" int32_t ASN1_get_Count_m3229415929 (ASN1_t2575024487 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Text.StringBuilder::get_Length() extern "C" int32_t StringBuilder_get_Length_m4005776360 (StringBuilder_t1723565765 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Int32::ToString(System.String) extern "C" String_t* Int32_ToString_m3093922668 (int32_t* __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Security.Cryptography.Oid::GetName(System.String) extern "C" String_t* Oid_GetName_m490454385 (Oid_t1416572164 * __this, String_t* ___oid0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Security.Cryptography.Oid::get_FriendlyName() extern "C" String_t* Oid_get_FriendlyName_m1010528668 (Oid_t1416572164 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Security.Cryptography.OidEnumerator::.ctor(System.Security.Cryptography.OidCollection) extern "C" void OidEnumerator__ctor_m581949267 (OidEnumerator_t822741923 * __this, OidCollection_t5760417 * ___collection0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ArgumentOutOfRangeException::.ctor() extern "C" void ArgumentOutOfRangeException__ctor_m3881672281 (ArgumentOutOfRangeException_t1933742687 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Security.Cryptography.Oid System.Security.Cryptography.OidCollection::get_Item(System.Int32) extern "C" Oid_t1416572164 * OidCollection_get_Item_m1837888684 (OidCollection_t5760417 * __this, int32_t ___index0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Security.Cryptography.OidCollection::get_Count() extern "C" int32_t OidCollection_get_Count_m1553273653 (OidCollection_t5760417 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ComponentModel.MergablePropertyAttribute::.ctor(System.Boolean) extern "C" void MergablePropertyAttribute__ctor_m1411196368 (MergablePropertyAttribute_t3224318606 * __this, bool ___allowMerge0, const RuntimeMethod* method) { { Attribute__ctor_m3216322730(__this, /*hidden argument*/NULL); bool L_0 = ___allowMerge0; __this->set_mergable_0(L_0); return; } } // System.Void System.ComponentModel.MergablePropertyAttribute::.cctor() extern "C" void MergablePropertyAttribute__cctor_m3861808039 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MergablePropertyAttribute__cctor_m3861808039_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MergablePropertyAttribute_t3224318606 * L_0 = (MergablePropertyAttribute_t3224318606 *)il2cpp_codegen_object_new(MergablePropertyAttribute_t3224318606_il2cpp_TypeInfo_var); MergablePropertyAttribute__ctor_m1411196368(L_0, (bool)1, /*hidden argument*/NULL); ((MergablePropertyAttribute_t3224318606_StaticFields*)il2cpp_codegen_static_fields_for(MergablePropertyAttribute_t3224318606_il2cpp_TypeInfo_var))->set_Default_1(L_0); MergablePropertyAttribute_t3224318606 * L_1 = (MergablePropertyAttribute_t3224318606 *)il2cpp_codegen_object_new(MergablePropertyAttribute_t3224318606_il2cpp_TypeInfo_var); MergablePropertyAttribute__ctor_m1411196368(L_1, (bool)0, /*hidden argument*/NULL); ((MergablePropertyAttribute_t3224318606_StaticFields*)il2cpp_codegen_static_fields_for(MergablePropertyAttribute_t3224318606_il2cpp_TypeInfo_var))->set_No_2(L_1); MergablePropertyAttribute_t3224318606 * L_2 = (MergablePropertyAttribute_t3224318606 *)il2cpp_codegen_object_new(MergablePropertyAttribute_t3224318606_il2cpp_TypeInfo_var); MergablePropertyAttribute__ctor_m1411196368(L_2, (bool)1, /*hidden argument*/NULL); ((MergablePropertyAttribute_t3224318606_StaticFields*)il2cpp_codegen_static_fields_for(MergablePropertyAttribute_t3224318606_il2cpp_TypeInfo_var))->set_Yes_3(L_2); return; } } // System.Boolean System.ComponentModel.MergablePropertyAttribute::get_AllowMerge() extern "C" bool MergablePropertyAttribute_get_AllowMerge_m3477706305 (MergablePropertyAttribute_t3224318606 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_mergable_0(); return L_0; } } // System.Boolean System.ComponentModel.MergablePropertyAttribute::Equals(System.Object) extern "C" bool MergablePropertyAttribute_Equals_m3373100257 (MergablePropertyAttribute_t3224318606 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MergablePropertyAttribute_Equals_m3373100257_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; if (((MergablePropertyAttribute_t3224318606 *)IsInstSealed((RuntimeObject*)L_0, MergablePropertyAttribute_t3224318606_il2cpp_TypeInfo_var))) { goto IL_000d; } } { return (bool)0; } IL_000d: { RuntimeObject * L_1 = ___obj0; if ((!(((RuntimeObject*)(RuntimeObject *)L_1) == ((RuntimeObject*)(MergablePropertyAttribute_t3224318606 *)__this)))) { goto IL_0016; } } { return (bool)1; } IL_0016: { RuntimeObject * L_2 = ___obj0; NullCheck(((MergablePropertyAttribute_t3224318606 *)CastclassSealed((RuntimeObject*)L_2, MergablePropertyAttribute_t3224318606_il2cpp_TypeInfo_var))); bool L_3 = MergablePropertyAttribute_get_AllowMerge_m3477706305(((MergablePropertyAttribute_t3224318606 *)CastclassSealed((RuntimeObject*)L_2, MergablePropertyAttribute_t3224318606_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); bool L_4 = __this->get_mergable_0(); return (bool)((((int32_t)L_3) == ((int32_t)L_4))? 1 : 0); } } // System.Int32 System.ComponentModel.MergablePropertyAttribute::GetHashCode() extern "C" int32_t MergablePropertyAttribute_GetHashCode_m920417933 (MergablePropertyAttribute_t3224318606 * __this, const RuntimeMethod* method) { { bool* L_0 = __this->get_address_of_mergable_0(); int32_t L_1 = Boolean_GetHashCode_m2529840312(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.ComponentModel.MergablePropertyAttribute::IsDefaultAttribute() extern "C" bool MergablePropertyAttribute_IsDefaultAttribute_m1664887222 (MergablePropertyAttribute_t3224318606 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MergablePropertyAttribute_IsDefaultAttribute_m1664887222_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_mergable_0(); IL2CPP_RUNTIME_CLASS_INIT(MergablePropertyAttribute_t3224318606_il2cpp_TypeInfo_var); MergablePropertyAttribute_t3224318606 * L_1 = ((MergablePropertyAttribute_t3224318606_StaticFields*)il2cpp_codegen_static_fields_for(MergablePropertyAttribute_t3224318606_il2cpp_TypeInfo_var))->get_Default_1(); NullCheck(L_1); bool L_2 = MergablePropertyAttribute_get_AllowMerge_m3477706305(L_1, /*hidden argument*/NULL); return (bool)((((int32_t)L_0) == ((int32_t)L_2))? 1 : 0); } } // System.Void System.ComponentModel.MultilineStringConverter::.ctor() extern "C" void MultilineStringConverter__ctor_m827194766 (MultilineStringConverter_t1633040268 * __this, const RuntimeMethod* method) { { TypeConverter__ctor_m3014391247(__this, /*hidden argument*/NULL); return; } } // System.Object System.ComponentModel.MultilineStringConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type) extern "C" RuntimeObject * MultilineStringConverter_ConvertTo_m1636155888 (MultilineStringConverter_t1633040268 * __this, RuntimeObject* ___context0, CultureInfo_t270095993 * ___culture1, RuntimeObject * ___value2, Type_t * ___destinationType3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MultilineStringConverter_ConvertTo_m1636155888_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotImplementedException_t682134635 * L_0 = (NotImplementedException_t682134635 *)il2cpp_codegen_object_new(NotImplementedException_t682134635_il2cpp_TypeInfo_var); NotImplementedException__ctor_m1549985598(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.MultilineStringConverter::GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[]) extern "C" PropertyDescriptorCollection_t2982717747 * MultilineStringConverter_GetProperties_m1278860306 (MultilineStringConverter_t1633040268 * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, AttributeU5BU5D_t187261448* ___attributes2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MultilineStringConverter_GetProperties_m1278860306_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotImplementedException_t682134635 * L_0 = (NotImplementedException_t682134635 *)il2cpp_codegen_object_new(NotImplementedException_t682134635_il2cpp_TypeInfo_var); NotImplementedException__ctor_m1549985598(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.ComponentModel.MultilineStringConverter::GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext) extern "C" bool MultilineStringConverter_GetPropertiesSupported_m3643911077 (MultilineStringConverter_t1633040268 * __this, RuntimeObject* ___context0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MultilineStringConverter_GetPropertiesSupported_m3643911077_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotImplementedException_t682134635 * L_0 = (NotImplementedException_t682134635 *)il2cpp_codegen_object_new(NotImplementedException_t682134635_il2cpp_TypeInfo_var); NotImplementedException__ctor_m1549985598(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.ComponentModel.NotifyParentPropertyAttribute::.ctor(System.Boolean) extern "C" void NotifyParentPropertyAttribute__ctor_m1003641881 (NotifyParentPropertyAttribute_t178192121 * __this, bool ___notifyParent0, const RuntimeMethod* method) { { Attribute__ctor_m3216322730(__this, /*hidden argument*/NULL); bool L_0 = ___notifyParent0; __this->set_notifyParent_0(L_0); return; } } // System.Void System.ComponentModel.NotifyParentPropertyAttribute::.cctor() extern "C" void NotifyParentPropertyAttribute__cctor_m3294558172 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NotifyParentPropertyAttribute__cctor_m3294558172_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotifyParentPropertyAttribute_t178192121 * L_0 = (NotifyParentPropertyAttribute_t178192121 *)il2cpp_codegen_object_new(NotifyParentPropertyAttribute_t178192121_il2cpp_TypeInfo_var); NotifyParentPropertyAttribute__ctor_m1003641881(L_0, (bool)0, /*hidden argument*/NULL); ((NotifyParentPropertyAttribute_t178192121_StaticFields*)il2cpp_codegen_static_fields_for(NotifyParentPropertyAttribute_t178192121_il2cpp_TypeInfo_var))->set_Default_1(L_0); NotifyParentPropertyAttribute_t178192121 * L_1 = (NotifyParentPropertyAttribute_t178192121 *)il2cpp_codegen_object_new(NotifyParentPropertyAttribute_t178192121_il2cpp_TypeInfo_var); NotifyParentPropertyAttribute__ctor_m1003641881(L_1, (bool)0, /*hidden argument*/NULL); ((NotifyParentPropertyAttribute_t178192121_StaticFields*)il2cpp_codegen_static_fields_for(NotifyParentPropertyAttribute_t178192121_il2cpp_TypeInfo_var))->set_No_2(L_1); NotifyParentPropertyAttribute_t178192121 * L_2 = (NotifyParentPropertyAttribute_t178192121 *)il2cpp_codegen_object_new(NotifyParentPropertyAttribute_t178192121_il2cpp_TypeInfo_var); NotifyParentPropertyAttribute__ctor_m1003641881(L_2, (bool)1, /*hidden argument*/NULL); ((NotifyParentPropertyAttribute_t178192121_StaticFields*)il2cpp_codegen_static_fields_for(NotifyParentPropertyAttribute_t178192121_il2cpp_TypeInfo_var))->set_Yes_3(L_2); return; } } // System.Boolean System.ComponentModel.NotifyParentPropertyAttribute::get_NotifyParent() extern "C" bool NotifyParentPropertyAttribute_get_NotifyParent_m1184636470 (NotifyParentPropertyAttribute_t178192121 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_notifyParent_0(); return L_0; } } // System.Boolean System.ComponentModel.NotifyParentPropertyAttribute::Equals(System.Object) extern "C" bool NotifyParentPropertyAttribute_Equals_m1635853362 (NotifyParentPropertyAttribute_t178192121 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NotifyParentPropertyAttribute_Equals_m1635853362_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; if (((NotifyParentPropertyAttribute_t178192121 *)IsInstSealed((RuntimeObject*)L_0, NotifyParentPropertyAttribute_t178192121_il2cpp_TypeInfo_var))) { goto IL_000d; } } { return (bool)0; } IL_000d: { RuntimeObject * L_1 = ___obj0; if ((!(((RuntimeObject*)(RuntimeObject *)L_1) == ((RuntimeObject*)(NotifyParentPropertyAttribute_t178192121 *)__this)))) { goto IL_0016; } } { return (bool)1; } IL_0016: { RuntimeObject * L_2 = ___obj0; NullCheck(((NotifyParentPropertyAttribute_t178192121 *)CastclassSealed((RuntimeObject*)L_2, NotifyParentPropertyAttribute_t178192121_il2cpp_TypeInfo_var))); bool L_3 = NotifyParentPropertyAttribute_get_NotifyParent_m1184636470(((NotifyParentPropertyAttribute_t178192121 *)CastclassSealed((RuntimeObject*)L_2, NotifyParentPropertyAttribute_t178192121_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); bool L_4 = __this->get_notifyParent_0(); return (bool)((((int32_t)L_3) == ((int32_t)L_4))? 1 : 0); } } // System.Int32 System.ComponentModel.NotifyParentPropertyAttribute::GetHashCode() extern "C" int32_t NotifyParentPropertyAttribute_GetHashCode_m145211436 (NotifyParentPropertyAttribute_t178192121 * __this, const RuntimeMethod* method) { { bool* L_0 = __this->get_address_of_notifyParent_0(); int32_t L_1 = Boolean_GetHashCode_m2529840312(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.ComponentModel.NotifyParentPropertyAttribute::IsDefaultAttribute() extern "C" bool NotifyParentPropertyAttribute_IsDefaultAttribute_m2380369306 (NotifyParentPropertyAttribute_t178192121 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NotifyParentPropertyAttribute_IsDefaultAttribute_m2380369306_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_notifyParent_0(); IL2CPP_RUNTIME_CLASS_INIT(NotifyParentPropertyAttribute_t178192121_il2cpp_TypeInfo_var); NotifyParentPropertyAttribute_t178192121 * L_1 = ((NotifyParentPropertyAttribute_t178192121_StaticFields*)il2cpp_codegen_static_fields_for(NotifyParentPropertyAttribute_t178192121_il2cpp_TypeInfo_var))->get_Default_1(); NullCheck(L_1); bool L_2 = NotifyParentPropertyAttribute_get_NotifyParent_m1184636470(L_1, /*hidden argument*/NULL); return (bool)((((int32_t)L_0) == ((int32_t)L_2))? 1 : 0); } } // System.Void System.ComponentModel.NullableConverter::.ctor(System.Type) extern "C" void NullableConverter__ctor_m2675798518 (NullableConverter_t3128690719 * __this, Type_t * ___nullableType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NullableConverter__ctor_m2675798518_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TypeConverter__ctor_m3014391247(__this, /*hidden argument*/NULL); Type_t * L_0 = ___nullableType0; if (L_0) { goto IL_0017; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral1371690706, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0017: { Type_t * L_2 = ___nullableType0; __this->set_nullableType_0(L_2); Type_t * L_3 = ___nullableType0; Type_t * L_4 = Nullable_GetUnderlyingType_m1262883790(NULL /*static, unused*/, L_3, /*hidden argument*/NULL); __this->set_underlyingType_1(L_4); Type_t * L_5 = __this->get_underlyingType_1(); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeConverter_t3595149642 * L_6 = TypeDescriptor_GetConverter_m1561978434(NULL /*static, unused*/, L_5, /*hidden argument*/NULL); __this->set_underlyingTypeConverter_2(L_6); return; } } // System.Boolean System.ComponentModel.NullableConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type) extern "C" bool NullableConverter_CanConvertFrom_m2439416569 (NullableConverter_t3128690719 * __this, RuntimeObject* ___context0, Type_t * ___sourceType1, const RuntimeMethod* method) { { Type_t * L_0 = ___sourceType1; Type_t * L_1 = __this->get_underlyingType_1(); if ((!(((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(Type_t *)L_1)))) { goto IL_000e; } } { return (bool)1; } IL_000e: { TypeConverter_t3595149642 * L_2 = __this->get_underlyingTypeConverter_2(); if (!L_2) { goto IL_0027; } } { TypeConverter_t3595149642 * L_3 = __this->get_underlyingTypeConverter_2(); RuntimeObject* L_4 = ___context0; Type_t * L_5 = ___sourceType1; NullCheck(L_3); bool L_6 = VirtFuncInvoker2< bool, RuntimeObject*, Type_t * >::Invoke(4 /* System.Boolean System.ComponentModel.TypeConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type) */, L_3, L_4, L_5); return L_6; } IL_0027: { RuntimeObject* L_7 = ___context0; Type_t * L_8 = ___sourceType1; bool L_9 = TypeConverter_CanConvertFrom_m2108188258(__this, L_7, L_8, /*hidden argument*/NULL); return L_9; } } // System.Boolean System.ComponentModel.NullableConverter::CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type) extern "C" bool NullableConverter_CanConvertTo_m2465721198 (NullableConverter_t3128690719 * __this, RuntimeObject* ___context0, Type_t * ___destinationType1, const RuntimeMethod* method) { { Type_t * L_0 = ___destinationType1; Type_t * L_1 = __this->get_underlyingType_1(); if ((!(((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(Type_t *)L_1)))) { goto IL_000e; } } { return (bool)1; } IL_000e: { TypeConverter_t3595149642 * L_2 = __this->get_underlyingTypeConverter_2(); if (!L_2) { goto IL_0027; } } { TypeConverter_t3595149642 * L_3 = __this->get_underlyingTypeConverter_2(); RuntimeObject* L_4 = ___context0; Type_t * L_5 = ___destinationType1; NullCheck(L_3); bool L_6 = VirtFuncInvoker2< bool, RuntimeObject*, Type_t * >::Invoke(5 /* System.Boolean System.ComponentModel.TypeConverter::CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type) */, L_3, L_4, L_5); return L_6; } IL_0027: { RuntimeObject* L_7 = ___context0; Type_t * L_8 = ___destinationType1; bool L_9 = TypeConverter_CanConvertFrom_m2108188258(__this, L_7, L_8, /*hidden argument*/NULL); return L_9; } } // System.Object System.ComponentModel.NullableConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object) extern "C" RuntimeObject * NullableConverter_ConvertFrom_m2489129077 (NullableConverter_t3128690719 * __this, RuntimeObject* ___context0, CultureInfo_t270095993 * ___culture1, RuntimeObject * ___value2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NullableConverter_ConvertFrom_m2489129077_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value2; if (!L_0) { goto IL_0017; } } { RuntimeObject * L_1 = ___value2; NullCheck(L_1); Type_t * L_2 = Object_GetType_m1134229006(L_1, /*hidden argument*/NULL); Type_t * L_3 = __this->get_underlyingType_1(); if ((!(((RuntimeObject*)(Type_t *)L_2) == ((RuntimeObject*)(Type_t *)L_3)))) { goto IL_0019; } } IL_0017: { RuntimeObject * L_4 = ___value2; return L_4; } IL_0019: { RuntimeObject * L_5 = ___value2; if (!((String_t*)IsInstSealed((RuntimeObject*)L_5, String_t_il2cpp_TypeInfo_var))) { goto IL_0036; } } { RuntimeObject * L_6 = ___value2; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_7 = String_IsNullOrEmpty_m1920291724(NULL /*static, unused*/, ((String_t*)CastclassSealed((RuntimeObject*)L_6, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (!L_7) { goto IL_0036; } } { return NULL; } IL_0036: { TypeConverter_t3595149642 * L_8 = __this->get_underlyingTypeConverter_2(); if (!L_8) { goto IL_0050; } } { TypeConverter_t3595149642 * L_9 = __this->get_underlyingTypeConverter_2(); RuntimeObject* L_10 = ___context0; CultureInfo_t270095993 * L_11 = ___culture1; RuntimeObject * L_12 = ___value2; NullCheck(L_9); RuntimeObject * L_13 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject*, CultureInfo_t270095993 *, RuntimeObject * >::Invoke(6 /* System.Object System.ComponentModel.TypeConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object) */, L_9, L_10, L_11, L_12); return L_13; } IL_0050: { RuntimeObject* L_14 = ___context0; CultureInfo_t270095993 * L_15 = ___culture1; RuntimeObject * L_16 = ___value2; RuntimeObject * L_17 = TypeConverter_ConvertFrom_m3891144487(__this, L_14, L_15, L_16, /*hidden argument*/NULL); return L_17; } } // System.Object System.ComponentModel.NullableConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type) extern "C" RuntimeObject * NullableConverter_ConvertTo_m3556550397 (NullableConverter_t3128690719 * __this, RuntimeObject* ___context0, CultureInfo_t270095993 * ___culture1, RuntimeObject * ___value2, Type_t * ___destinationType3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NullableConverter_ConvertTo_m3556550397_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___destinationType3; if (L_0) { goto IL_0012; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral4203514363, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0012: { Type_t * L_2 = ___destinationType3; Type_t * L_3 = __this->get_underlyingType_1(); if ((!(((RuntimeObject*)(Type_t *)L_2) == ((RuntimeObject*)(Type_t *)L_3)))) { goto IL_0032; } } { RuntimeObject * L_4 = ___value2; NullCheck(L_4); Type_t * L_5 = Object_GetType_m1134229006(L_4, /*hidden argument*/NULL); Type_t * L_6 = __this->get_nullableType_0(); if ((!(((RuntimeObject*)(Type_t *)L_5) == ((RuntimeObject*)(Type_t *)L_6)))) { goto IL_0032; } } { RuntimeObject * L_7 = ___value2; return L_7; } IL_0032: { TypeConverter_t3595149642 * L_8 = __this->get_underlyingTypeConverter_2(); if (!L_8) { goto IL_0054; } } { RuntimeObject * L_9 = ___value2; if (!L_9) { goto IL_0054; } } { TypeConverter_t3595149642 * L_10 = __this->get_underlyingTypeConverter_2(); RuntimeObject* L_11 = ___context0; CultureInfo_t270095993 * L_12 = ___culture1; RuntimeObject * L_13 = ___value2; Type_t * L_14 = ___destinationType3; NullCheck(L_10); RuntimeObject * L_15 = VirtFuncInvoker4< RuntimeObject *, RuntimeObject*, CultureInfo_t270095993 *, RuntimeObject *, Type_t * >::Invoke(7 /* System.Object System.ComponentModel.TypeConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type) */, L_10, L_11, L_12, L_13, L_14); return L_15; } IL_0054: { RuntimeObject* L_16 = ___context0; CultureInfo_t270095993 * L_17 = ___culture1; RuntimeObject * L_18 = ___value2; Type_t * L_19 = ___destinationType3; RuntimeObject * L_20 = TypeConverter_ConvertTo_m4033528233(__this, L_16, L_17, L_18, L_19, /*hidden argument*/NULL); return L_20; } } // System.Object System.ComponentModel.NullableConverter::CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary) extern "C" RuntimeObject * NullableConverter_CreateInstance_m2831045513 (NullableConverter_t3128690719 * __this, RuntimeObject* ___context0, RuntimeObject* ___propertyValues1, const RuntimeMethod* method) { { TypeConverter_t3595149642 * L_0 = __this->get_underlyingTypeConverter_2(); if (!L_0) { goto IL_0019; } } { TypeConverter_t3595149642 * L_1 = __this->get_underlyingTypeConverter_2(); RuntimeObject* L_2 = ___context0; RuntimeObject* L_3 = ___propertyValues1; NullCheck(L_1); RuntimeObject * L_4 = VirtFuncInvoker2< RuntimeObject *, RuntimeObject*, RuntimeObject* >::Invoke(8 /* System.Object System.ComponentModel.TypeConverter::CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary) */, L_1, L_2, L_3); return L_4; } IL_0019: { RuntimeObject* L_5 = ___context0; RuntimeObject* L_6 = ___propertyValues1; RuntimeObject * L_7 = TypeConverter_CreateInstance_m1198640834(__this, L_5, L_6, /*hidden argument*/NULL); return L_7; } } // System.Boolean System.ComponentModel.NullableConverter::GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext) extern "C" bool NullableConverter_GetCreateInstanceSupported_m2002770919 (NullableConverter_t3128690719 * __this, RuntimeObject* ___context0, const RuntimeMethod* method) { { TypeConverter_t3595149642 * L_0 = __this->get_underlyingTypeConverter_2(); if (!L_0) { goto IL_0018; } } { TypeConverter_t3595149642 * L_1 = __this->get_underlyingTypeConverter_2(); RuntimeObject* L_2 = ___context0; NullCheck(L_1); bool L_3 = VirtFuncInvoker1< bool, RuntimeObject* >::Invoke(9 /* System.Boolean System.ComponentModel.TypeConverter::GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext) */, L_1, L_2); return L_3; } IL_0018: { RuntimeObject* L_4 = ___context0; bool L_5 = TypeConverter_GetCreateInstanceSupported_m3052882325(__this, L_4, /*hidden argument*/NULL); return L_5; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.NullableConverter::GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[]) extern "C" PropertyDescriptorCollection_t2982717747 * NullableConverter_GetProperties_m3886251959 (NullableConverter_t3128690719 * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, AttributeU5BU5D_t187261448* ___attributes2, const RuntimeMethod* method) { { TypeConverter_t3595149642 * L_0 = __this->get_underlyingTypeConverter_2(); if (!L_0) { goto IL_001a; } } { TypeConverter_t3595149642 * L_1 = __this->get_underlyingTypeConverter_2(); RuntimeObject* L_2 = ___context0; RuntimeObject * L_3 = ___value1; AttributeU5BU5D_t187261448* L_4 = ___attributes2; NullCheck(L_1); PropertyDescriptorCollection_t2982717747 * L_5 = VirtFuncInvoker3< PropertyDescriptorCollection_t2982717747 *, RuntimeObject*, RuntimeObject *, AttributeU5BU5D_t187261448* >::Invoke(10 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeConverter::GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[]) */, L_1, L_2, L_3, L_4); return L_5; } IL_001a: { RuntimeObject* L_6 = ___context0; RuntimeObject * L_7 = ___value1; AttributeU5BU5D_t187261448* L_8 = ___attributes2; PropertyDescriptorCollection_t2982717747 * L_9 = TypeConverter_GetProperties_m1252187426(__this, L_6, L_7, L_8, /*hidden argument*/NULL); return L_9; } } // System.Boolean System.ComponentModel.NullableConverter::GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext) extern "C" bool NullableConverter_GetPropertiesSupported_m1999056476 (NullableConverter_t3128690719 * __this, RuntimeObject* ___context0, const RuntimeMethod* method) { { TypeConverter_t3595149642 * L_0 = __this->get_underlyingTypeConverter_2(); if (!L_0) { goto IL_0018; } } { TypeConverter_t3595149642 * L_1 = __this->get_underlyingTypeConverter_2(); RuntimeObject* L_2 = ___context0; NullCheck(L_1); bool L_3 = VirtFuncInvoker1< bool, RuntimeObject* >::Invoke(9 /* System.Boolean System.ComponentModel.TypeConverter::GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext) */, L_1, L_2); return L_3; } IL_0018: { RuntimeObject* L_4 = ___context0; bool L_5 = TypeConverter_GetCreateInstanceSupported_m3052882325(__this, L_4, /*hidden argument*/NULL); return L_5; } } // System.ComponentModel.TypeConverter/StandardValuesCollection System.ComponentModel.NullableConverter::GetStandardValues(System.ComponentModel.ITypeDescriptorContext) extern "C" StandardValuesCollection_t884959189 * NullableConverter_GetStandardValues_m1861306264 (NullableConverter_t3128690719 * __this, RuntimeObject* ___context0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NullableConverter_GetStandardValues_m1861306264_MetadataUsageId); s_Il2CppMethodInitialized = true; } StandardValuesCollection_t884959189 * V_0 = NULL; ArrayList_t4277734320 * V_1 = NULL; { TypeConverter_t3595149642 * L_0 = __this->get_underlyingTypeConverter_2(); if (!L_0) { goto IL_0045; } } { TypeConverter_t3595149642 * L_1 = __this->get_underlyingTypeConverter_2(); RuntimeObject* L_2 = ___context0; NullCheck(L_1); bool L_3 = VirtFuncInvoker1< bool, RuntimeObject* >::Invoke(14 /* System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext) */, L_1, L_2); if (!L_3) { goto IL_0045; } } { TypeConverter_t3595149642 * L_4 = __this->get_underlyingTypeConverter_2(); RuntimeObject* L_5 = ___context0; NullCheck(L_4); StandardValuesCollection_t884959189 * L_6 = VirtFuncInvoker1< StandardValuesCollection_t884959189 *, RuntimeObject* >::Invoke(12 /* System.ComponentModel.TypeConverter/StandardValuesCollection System.ComponentModel.TypeConverter::GetStandardValues(System.ComponentModel.ITypeDescriptorContext) */, L_4, L_5); V_0 = L_6; StandardValuesCollection_t884959189 * L_7 = V_0; if (!L_7) { goto IL_0045; } } { StandardValuesCollection_t884959189 * L_8 = V_0; ArrayList_t4277734320 * L_9 = (ArrayList_t4277734320 *)il2cpp_codegen_object_new(ArrayList_t4277734320_il2cpp_TypeInfo_var); ArrayList__ctor_m2443836621(L_9, L_8, /*hidden argument*/NULL); V_1 = L_9; ArrayList_t4277734320 * L_10 = V_1; NullCheck(L_10); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_10, NULL); ArrayList_t4277734320 * L_11 = V_1; StandardValuesCollection_t884959189 * L_12 = (StandardValuesCollection_t884959189 *)il2cpp_codegen_object_new(StandardValuesCollection_t884959189_il2cpp_TypeInfo_var); StandardValuesCollection__ctor_m97593915(L_12, L_11, /*hidden argument*/NULL); return L_12; } IL_0045: { RuntimeObject* L_13 = ___context0; StandardValuesCollection_t884959189 * L_14 = TypeConverter_GetStandardValues_m276452726(__this, L_13, /*hidden argument*/NULL); return L_14; } } // System.Boolean System.ComponentModel.NullableConverter::GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext) extern "C" bool NullableConverter_GetStandardValuesExclusive_m959465158 (NullableConverter_t3128690719 * __this, RuntimeObject* ___context0, const RuntimeMethod* method) { { TypeConverter_t3595149642 * L_0 = __this->get_underlyingTypeConverter_2(); if (!L_0) { goto IL_0018; } } { TypeConverter_t3595149642 * L_1 = __this->get_underlyingTypeConverter_2(); RuntimeObject* L_2 = ___context0; NullCheck(L_1); bool L_3 = VirtFuncInvoker1< bool, RuntimeObject* >::Invoke(13 /* System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext) */, L_1, L_2); return L_3; } IL_0018: { RuntimeObject* L_4 = ___context0; bool L_5 = TypeConverter_GetStandardValuesExclusive_m1667578958(__this, L_4, /*hidden argument*/NULL); return L_5; } } // System.Boolean System.ComponentModel.NullableConverter::GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext) extern "C" bool NullableConverter_GetStandardValuesSupported_m3569220440 (NullableConverter_t3128690719 * __this, RuntimeObject* ___context0, const RuntimeMethod* method) { { TypeConverter_t3595149642 * L_0 = __this->get_underlyingTypeConverter_2(); if (!L_0) { goto IL_0018; } } { TypeConverter_t3595149642 * L_1 = __this->get_underlyingTypeConverter_2(); RuntimeObject* L_2 = ___context0; NullCheck(L_1); bool L_3 = VirtFuncInvoker1< bool, RuntimeObject* >::Invoke(14 /* System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext) */, L_1, L_2); return L_3; } IL_0018: { RuntimeObject* L_4 = ___context0; bool L_5 = TypeConverter_GetStandardValuesSupported_m2802635703(__this, L_4, /*hidden argument*/NULL); return L_5; } } // System.Boolean System.ComponentModel.NullableConverter::IsValid(System.ComponentModel.ITypeDescriptorContext,System.Object) extern "C" bool NullableConverter_IsValid_m1205652704 (NullableConverter_t3128690719 * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, const RuntimeMethod* method) { { TypeConverter_t3595149642 * L_0 = __this->get_underlyingTypeConverter_2(); if (!L_0) { goto IL_0019; } } { TypeConverter_t3595149642 * L_1 = __this->get_underlyingTypeConverter_2(); RuntimeObject* L_2 = ___context0; RuntimeObject * L_3 = ___value1; NullCheck(L_1); bool L_4 = VirtFuncInvoker2< bool, RuntimeObject*, RuntimeObject * >::Invoke(15 /* System.Boolean System.ComponentModel.TypeConverter::IsValid(System.ComponentModel.ITypeDescriptorContext,System.Object) */, L_1, L_2, L_3); return L_4; } IL_0019: { RuntimeObject* L_5 = ___context0; RuntimeObject * L_6 = ___value1; bool L_7 = TypeConverter_IsValid_m2083459950(__this, L_5, L_6, /*hidden argument*/NULL); return L_7; } } // System.Type System.ComponentModel.NullableConverter::get_NullableType() extern "C" Type_t * NullableConverter_get_NullableType_m922390422 (NullableConverter_t3128690719 * __this, const RuntimeMethod* method) { { Type_t * L_0 = __this->get_nullableType_0(); return L_0; } } // System.Type System.ComponentModel.NullableConverter::get_UnderlyingType() extern "C" Type_t * NullableConverter_get_UnderlyingType_m783803529 (NullableConverter_t3128690719 * __this, const RuntimeMethod* method) { { Type_t * L_0 = __this->get_underlyingType_1(); return L_0; } } // System.ComponentModel.TypeConverter System.ComponentModel.NullableConverter::get_UnderlyingTypeConverter() extern "C" TypeConverter_t3595149642 * NullableConverter_get_UnderlyingTypeConverter_m2267714091 (NullableConverter_t3128690719 * __this, const RuntimeMethod* method) { { TypeConverter_t3595149642 * L_0 = __this->get_underlyingTypeConverter_2(); return L_0; } } // System.Void System.ComponentModel.PasswordPropertyTextAttribute::.ctor() extern "C" void PasswordPropertyTextAttribute__ctor_m4209600169 (PasswordPropertyTextAttribute_t3646071524 * __this, const RuntimeMethod* method) { { PasswordPropertyTextAttribute__ctor_m3349410036(__this, (bool)0, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.PasswordPropertyTextAttribute::.ctor(System.Boolean) extern "C" void PasswordPropertyTextAttribute__ctor_m3349410036 (PasswordPropertyTextAttribute_t3646071524 * __this, bool ___password0, const RuntimeMethod* method) { { Attribute__ctor_m3216322730(__this, /*hidden argument*/NULL); bool L_0 = ___password0; __this->set__password_3(L_0); return; } } // System.Void System.ComponentModel.PasswordPropertyTextAttribute::.cctor() extern "C" void PasswordPropertyTextAttribute__cctor_m1342363729 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PasswordPropertyTextAttribute__cctor_m1342363729_MetadataUsageId); s_Il2CppMethodInitialized = true; } { PasswordPropertyTextAttribute_t3646071524 * L_0 = (PasswordPropertyTextAttribute_t3646071524 *)il2cpp_codegen_object_new(PasswordPropertyTextAttribute_t3646071524_il2cpp_TypeInfo_var); PasswordPropertyTextAttribute__ctor_m3349410036(L_0, (bool)0, /*hidden argument*/NULL); ((PasswordPropertyTextAttribute_t3646071524_StaticFields*)il2cpp_codegen_static_fields_for(PasswordPropertyTextAttribute_t3646071524_il2cpp_TypeInfo_var))->set_No_1(L_0); PasswordPropertyTextAttribute_t3646071524 * L_1 = (PasswordPropertyTextAttribute_t3646071524 *)il2cpp_codegen_object_new(PasswordPropertyTextAttribute_t3646071524_il2cpp_TypeInfo_var); PasswordPropertyTextAttribute__ctor_m3349410036(L_1, (bool)1, /*hidden argument*/NULL); ((PasswordPropertyTextAttribute_t3646071524_StaticFields*)il2cpp_codegen_static_fields_for(PasswordPropertyTextAttribute_t3646071524_il2cpp_TypeInfo_var))->set_Yes_2(L_1); PasswordPropertyTextAttribute_t3646071524 * L_2 = ((PasswordPropertyTextAttribute_t3646071524_StaticFields*)il2cpp_codegen_static_fields_for(PasswordPropertyTextAttribute_t3646071524_il2cpp_TypeInfo_var))->get_No_1(); ((PasswordPropertyTextAttribute_t3646071524_StaticFields*)il2cpp_codegen_static_fields_for(PasswordPropertyTextAttribute_t3646071524_il2cpp_TypeInfo_var))->set_Default_0(L_2); return; } } // System.Boolean System.ComponentModel.PasswordPropertyTextAttribute::get_Password() extern "C" bool PasswordPropertyTextAttribute_get_Password_m3506583899 (PasswordPropertyTextAttribute_t3646071524 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get__password_3(); return L_0; } } // System.Boolean System.ComponentModel.PasswordPropertyTextAttribute::Equals(System.Object) extern "C" bool PasswordPropertyTextAttribute_Equals_m2062339233 (PasswordPropertyTextAttribute_t3646071524 * __this, RuntimeObject * ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PasswordPropertyTextAttribute_Equals_m2062339233_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___o0; if (((PasswordPropertyTextAttribute_t3646071524 *)IsInstSealed((RuntimeObject*)L_0, PasswordPropertyTextAttribute_t3646071524_il2cpp_TypeInfo_var))) { goto IL_000d; } } { return (bool)0; } IL_000d: { RuntimeObject * L_1 = ___o0; NullCheck(((PasswordPropertyTextAttribute_t3646071524 *)CastclassSealed((RuntimeObject*)L_1, PasswordPropertyTextAttribute_t3646071524_il2cpp_TypeInfo_var))); bool L_2 = PasswordPropertyTextAttribute_get_Password_m3506583899(((PasswordPropertyTextAttribute_t3646071524 *)CastclassSealed((RuntimeObject*)L_1, PasswordPropertyTextAttribute_t3646071524_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); bool L_3 = PasswordPropertyTextAttribute_get_Password_m3506583899(__this, /*hidden argument*/NULL); return (bool)((((int32_t)L_2) == ((int32_t)L_3))? 1 : 0); } } // System.Int32 System.ComponentModel.PasswordPropertyTextAttribute::GetHashCode() extern "C" int32_t PasswordPropertyTextAttribute_GetHashCode_m297138593 (PasswordPropertyTextAttribute_t3646071524 * __this, const RuntimeMethod* method) { bool V_0 = false; { bool L_0 = PasswordPropertyTextAttribute_get_Password_m3506583899(__this, /*hidden argument*/NULL); V_0 = L_0; int32_t L_1 = Boolean_GetHashCode_m2529840312((&V_0), /*hidden argument*/NULL); return L_1; } } // System.Boolean System.ComponentModel.PasswordPropertyTextAttribute::IsDefaultAttribute() extern "C" bool PasswordPropertyTextAttribute_IsDefaultAttribute_m3608088487 (PasswordPropertyTextAttribute_t3646071524 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PasswordPropertyTextAttribute_IsDefaultAttribute_m3608088487_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(PasswordPropertyTextAttribute_t3646071524_il2cpp_TypeInfo_var); PasswordPropertyTextAttribute_t3646071524 * L_0 = ((PasswordPropertyTextAttribute_t3646071524_StaticFields*)il2cpp_codegen_static_fields_for(PasswordPropertyTextAttribute_t3646071524_il2cpp_TypeInfo_var))->get_Default_0(); NullCheck(L_0); bool L_1 = PasswordPropertyTextAttribute_Equals_m2062339233(L_0, __this, /*hidden argument*/NULL); return L_1; } } // System.Void System.ComponentModel.ProgressChangedEventArgs::.ctor(System.Int32,System.Object) extern "C" void ProgressChangedEventArgs__ctor_m3049313393 (ProgressChangedEventArgs_t4258918619 * __this, int32_t ___progressPercentage0, RuntimeObject * ___userState1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ProgressChangedEventArgs__ctor_m3049313393_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t3326158294_il2cpp_TypeInfo_var); EventArgs__ctor_m2329401472(__this, /*hidden argument*/NULL); int32_t L_0 = ___progressPercentage0; __this->set_progress_1(L_0); RuntimeObject * L_1 = ___userState1; __this->set_state_2(L_1); return; } } // System.Int32 System.ComponentModel.ProgressChangedEventArgs::get_ProgressPercentage() extern "C" int32_t ProgressChangedEventArgs_get_ProgressPercentage_m2272366069 (ProgressChangedEventArgs_t4258918619 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_progress_1(); return L_0; } } // System.Object System.ComponentModel.ProgressChangedEventArgs::get_UserState() extern "C" RuntimeObject * ProgressChangedEventArgs_get_UserState_m2414597196 (ProgressChangedEventArgs_t4258918619 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_state_2(); return L_0; } } // System.Void System.ComponentModel.ProgressChangedEventHandler::.ctor(System.Object,System.IntPtr) extern "C" void ProgressChangedEventHandler__ctor_m3576118121 (ProgressChangedEventHandler_t1282004475 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.ComponentModel.ProgressChangedEventHandler::Invoke(System.Object,System.ComponentModel.ProgressChangedEventArgs) extern "C" void ProgressChangedEventHandler_Invoke_m3316856453 (ProgressChangedEventHandler_t1282004475 * __this, RuntimeObject * ___sender0, ProgressChangedEventArgs_t4258918619 * ___e1, const RuntimeMethod* method) { if(__this->get_prev_9() != NULL) { ProgressChangedEventHandler_Invoke_m3316856453((ProgressChangedEventHandler_t1282004475 *)__this->get_prev_9(),___sender0, ___e1, method); } il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3())); bool ___methodIsStatic = MethodIsStatic((RuntimeMethod*)(__this->get_method_3())); if (__this->get_m_target_2() != NULL && ___methodIsStatic) { typedef void (*FunctionPointerType) (RuntimeObject *, void* __this, RuntimeObject * ___sender0, ProgressChangedEventArgs_t4258918619 * ___e1, const RuntimeMethod* method); ((FunctionPointerType)__this->get_method_ptr_0())(NULL,__this->get_m_target_2(),___sender0, ___e1,(RuntimeMethod*)(__this->get_method_3())); } else if (__this->get_m_target_2() != NULL || ___methodIsStatic) { typedef void (*FunctionPointerType) (void* __this, RuntimeObject * ___sender0, ProgressChangedEventArgs_t4258918619 * ___e1, const RuntimeMethod* method); ((FunctionPointerType)__this->get_method_ptr_0())(__this->get_m_target_2(),___sender0, ___e1,(RuntimeMethod*)(__this->get_method_3())); } else { typedef void (*FunctionPointerType) (void* __this, ProgressChangedEventArgs_t4258918619 * ___e1, const RuntimeMethod* method); ((FunctionPointerType)__this->get_method_ptr_0())(___sender0, ___e1,(RuntimeMethod*)(__this->get_method_3())); } } // System.IAsyncResult System.ComponentModel.ProgressChangedEventHandler::BeginInvoke(System.Object,System.ComponentModel.ProgressChangedEventArgs,System.AsyncCallback,System.Object) extern "C" RuntimeObject* ProgressChangedEventHandler_BeginInvoke_m2113689816 (ProgressChangedEventHandler_t1282004475 * __this, RuntimeObject * ___sender0, ProgressChangedEventArgs_t4258918619 * ___e1, AsyncCallback_t1634113497 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { void *__d_args[3] = {0}; __d_args[0] = ___sender0; __d_args[1] = ___e1; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3); } // System.Void System.ComponentModel.ProgressChangedEventHandler::EndInvoke(System.IAsyncResult) extern "C" void ProgressChangedEventHandler_EndInvoke_m3912683270 (ProgressChangedEventHandler_t1282004475 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } // System.Void System.ComponentModel.PropertyChangedEventArgs::.ctor(System.String) extern "C" void PropertyChangedEventArgs__ctor_m1946057289 (PropertyChangedEventArgs_t483343543 * __this, String_t* ___name0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyChangedEventArgs__ctor_m1946057289_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t3326158294_il2cpp_TypeInfo_var); EventArgs__ctor_m2329401472(__this, /*hidden argument*/NULL); String_t* L_0 = ___name0; __this->set_propertyName_1(L_0); return; } } // System.String System.ComponentModel.PropertyChangedEventArgs::get_PropertyName() extern "C" String_t* PropertyChangedEventArgs_get_PropertyName_m1046884238 (PropertyChangedEventArgs_t483343543 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_propertyName_1(); return L_0; } } // System.Void System.ComponentModel.PropertyChangedEventHandler::.ctor(System.Object,System.IntPtr) extern "C" void PropertyChangedEventHandler__ctor_m241622514 (PropertyChangedEventHandler_t3629517548 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.ComponentModel.PropertyChangedEventHandler::Invoke(System.Object,System.ComponentModel.PropertyChangedEventArgs) extern "C" void PropertyChangedEventHandler_Invoke_m982957224 (PropertyChangedEventHandler_t3629517548 * __this, RuntimeObject * ___sender0, PropertyChangedEventArgs_t483343543 * ___e1, const RuntimeMethod* method) { if(__this->get_prev_9() != NULL) { PropertyChangedEventHandler_Invoke_m982957224((PropertyChangedEventHandler_t3629517548 *)__this->get_prev_9(),___sender0, ___e1, method); } il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3())); bool ___methodIsStatic = MethodIsStatic((RuntimeMethod*)(__this->get_method_3())); if (__this->get_m_target_2() != NULL && ___methodIsStatic) { typedef void (*FunctionPointerType) (RuntimeObject *, void* __this, RuntimeObject * ___sender0, PropertyChangedEventArgs_t483343543 * ___e1, const RuntimeMethod* method); ((FunctionPointerType)__this->get_method_ptr_0())(NULL,__this->get_m_target_2(),___sender0, ___e1,(RuntimeMethod*)(__this->get_method_3())); } else if (__this->get_m_target_2() != NULL || ___methodIsStatic) { typedef void (*FunctionPointerType) (void* __this, RuntimeObject * ___sender0, PropertyChangedEventArgs_t483343543 * ___e1, const RuntimeMethod* method); ((FunctionPointerType)__this->get_method_ptr_0())(__this->get_m_target_2(),___sender0, ___e1,(RuntimeMethod*)(__this->get_method_3())); } else { typedef void (*FunctionPointerType) (void* __this, PropertyChangedEventArgs_t483343543 * ___e1, const RuntimeMethod* method); ((FunctionPointerType)__this->get_method_ptr_0())(___sender0, ___e1,(RuntimeMethod*)(__this->get_method_3())); } } // System.IAsyncResult System.ComponentModel.PropertyChangedEventHandler::BeginInvoke(System.Object,System.ComponentModel.PropertyChangedEventArgs,System.AsyncCallback,System.Object) extern "C" RuntimeObject* PropertyChangedEventHandler_BeginInvoke_m1096522888 (PropertyChangedEventHandler_t3629517548 * __this, RuntimeObject * ___sender0, PropertyChangedEventArgs_t483343543 * ___e1, AsyncCallback_t1634113497 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { void *__d_args[3] = {0}; __d_args[0] = ___sender0; __d_args[1] = ___e1; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3); } // System.Void System.ComponentModel.PropertyChangedEventHandler::EndInvoke(System.IAsyncResult) extern "C" void PropertyChangedEventHandler_EndInvoke_m1020758053 (PropertyChangedEventHandler_t3629517548 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } // System.Void System.ComponentModel.PropertyDescriptor::.ctor(System.ComponentModel.MemberDescriptor) extern "C" void PropertyDescriptor__ctor_m1978000623 (PropertyDescriptor_t2555988069 * __this, MemberDescriptor_t1331681536 * ___reference0, const RuntimeMethod* method) { { MemberDescriptor_t1331681536 * L_0 = ___reference0; MemberDescriptor__ctor_m2968708675(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.PropertyDescriptor::.ctor(System.ComponentModel.MemberDescriptor,System.Attribute[]) extern "C" void PropertyDescriptor__ctor_m1214378087 (PropertyDescriptor_t2555988069 * __this, MemberDescriptor_t1331681536 * ___reference0, AttributeU5BU5D_t187261448* ___attrs1, const RuntimeMethod* method) { { MemberDescriptor_t1331681536 * L_0 = ___reference0; AttributeU5BU5D_t187261448* L_1 = ___attrs1; MemberDescriptor__ctor_m3153297620(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.PropertyDescriptor::.ctor(System.String,System.Attribute[]) extern "C" void PropertyDescriptor__ctor_m693998226 (PropertyDescriptor_t2555988069 * __this, String_t* ___name0, AttributeU5BU5D_t187261448* ___attrs1, const RuntimeMethod* method) { { String_t* L_0 = ___name0; AttributeU5BU5D_t187261448* L_1 = ___attrs1; MemberDescriptor__ctor_m790722519(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.ComponentModel.TypeConverter System.ComponentModel.PropertyDescriptor::get_Converter() extern "C" TypeConverter_t3595149642 * PropertyDescriptor_get_Converter_m2661309159 (PropertyDescriptor_t2555988069 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptor_get_Converter_m2661309159_MetadataUsageId); s_Il2CppMethodInitialized = true; } TypeConverterAttribute_t695735035 * V_0 = NULL; Type_t * V_1 = NULL; { TypeConverter_t3595149642 * L_0 = __this->get_converter_4(); if (L_0) { goto IL_0098; } } { Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this); if (!L_1) { goto IL_0098; } } { AttributeCollection_t3634739288 * L_2 = VirtFuncInvoker0< AttributeCollection_t3634739288 * >::Invoke(7 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_3 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(TypeConverterAttribute_t695735035_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_2); Attribute_t2739832645 * L_4 = VirtFuncInvoker1< Attribute_t2739832645 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_2, L_3); V_0 = ((TypeConverterAttribute_t695735035 *)CastclassSealed((RuntimeObject*)L_4, TypeConverterAttribute_t695735035_il2cpp_TypeInfo_var)); TypeConverterAttribute_t695735035 * L_5 = V_0; if (!L_5) { goto IL_007c; } } { TypeConverterAttribute_t695735035 * L_6 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TypeConverterAttribute_t695735035_il2cpp_TypeInfo_var); TypeConverterAttribute_t695735035 * L_7 = ((TypeConverterAttribute_t695735035_StaticFields*)il2cpp_codegen_static_fields_for(TypeConverterAttribute_t695735035_il2cpp_TypeInfo_var))->get_Default_0(); if ((((RuntimeObject*)(TypeConverterAttribute_t695735035 *)L_6) == ((RuntimeObject*)(TypeConverterAttribute_t695735035 *)L_7))) { goto IL_007c; } } { TypeConverterAttribute_t695735035 * L_8 = V_0; NullCheck(L_8); String_t* L_9 = TypeConverterAttribute_get_ConverterTypeName_m3171634346(L_8, /*hidden argument*/NULL); Type_t * L_10 = PropertyDescriptor_GetTypeFromName_m2169027273(__this, L_9, /*hidden argument*/NULL); V_1 = L_10; Type_t * L_11 = V_1; if (!L_11) { goto IL_007c; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(TypeConverter_t3595149642_0_0_0_var), /*hidden argument*/NULL); Type_t * L_13 = V_1; NullCheck(L_12); bool L_14 = VirtFuncInvoker1< bool, Type_t * >::Invoke(41 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_12, L_13); if (!L_14) { goto IL_007c; } } { Type_t * L_15 = V_1; RuntimeObject * L_16 = PropertyDescriptor_CreateInstance_m1411741552(__this, L_15, /*hidden argument*/NULL); __this->set_converter_4(((TypeConverter_t3595149642 *)CastclassClass((RuntimeObject*)L_16, TypeConverter_t3595149642_il2cpp_TypeInfo_var))); } IL_007c: { TypeConverter_t3595149642 * L_17 = __this->get_converter_4(); if (L_17) { goto IL_0098; } } { Type_t * L_18 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeConverter_t3595149642 * L_19 = TypeDescriptor_GetConverter_m1561978434(NULL /*static, unused*/, L_18, /*hidden argument*/NULL); __this->set_converter_4(L_19); } IL_0098: { TypeConverter_t3595149642 * L_20 = __this->get_converter_4(); return L_20; } } // System.Boolean System.ComponentModel.PropertyDescriptor::get_IsLocalizable() extern "C" bool PropertyDescriptor_get_IsLocalizable_m1530108338 (PropertyDescriptor_t2555988069 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptor_get_IsLocalizable_m1530108338_MetadataUsageId); s_Il2CppMethodInitialized = true; } Attribute_t2739832645 * V_0 = NULL; AttributeU5BU5D_t187261448* V_1 = NULL; int32_t V_2 = 0; { AttributeU5BU5D_t187261448* L_0 = VirtFuncInvoker0< AttributeU5BU5D_t187261448* >::Invoke(4 /* System.Attribute[] System.ComponentModel.MemberDescriptor::get_AttributeArray() */, __this); V_1 = L_0; V_2 = 0; goto IL_002d; } IL_000e: { AttributeU5BU5D_t187261448* L_1 = V_1; int32_t L_2 = V_2; NullCheck(L_1); int32_t L_3 = L_2; Attribute_t2739832645 * L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); V_0 = L_4; Attribute_t2739832645 * L_5 = V_0; if (!((LocalizableAttribute_t2753722371 *)IsInstSealed((RuntimeObject*)L_5, LocalizableAttribute_t2753722371_il2cpp_TypeInfo_var))) { goto IL_0029; } } { Attribute_t2739832645 * L_6 = V_0; NullCheck(((LocalizableAttribute_t2753722371 *)CastclassSealed((RuntimeObject*)L_6, LocalizableAttribute_t2753722371_il2cpp_TypeInfo_var))); bool L_7 = LocalizableAttribute_get_IsLocalizable_m206364915(((LocalizableAttribute_t2753722371 *)CastclassSealed((RuntimeObject*)L_6, LocalizableAttribute_t2753722371_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_7; } IL_0029: { int32_t L_8 = V_2; V_2 = ((int32_t)((int32_t)L_8+(int32_t)1)); } IL_002d: { int32_t L_9 = V_2; AttributeU5BU5D_t187261448* L_10 = V_1; NullCheck(L_10); if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length))))))) { goto IL_000e; } } { return (bool)0; } } // System.Boolean System.ComponentModel.PropertyDescriptor::get_SupportsChangeEvents() extern "C" bool PropertyDescriptor_get_SupportsChangeEvents_m2467115257 (PropertyDescriptor_t2555988069 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.ComponentModel.DesignerSerializationVisibility System.ComponentModel.PropertyDescriptor::get_SerializationVisibility() extern "C" int32_t PropertyDescriptor_get_SerializationVisibility_m1858974999 (PropertyDescriptor_t2555988069 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptor_get_SerializationVisibility_m1858974999_MetadataUsageId); s_Il2CppMethodInitialized = true; } Attribute_t2739832645 * V_0 = NULL; AttributeU5BU5D_t187261448* V_1 = NULL; int32_t V_2 = 0; DesignerSerializationVisibilityAttribute_t3410153364 * V_3 = NULL; { AttributeU5BU5D_t187261448* L_0 = VirtFuncInvoker0< AttributeU5BU5D_t187261448* >::Invoke(4 /* System.Attribute[] System.ComponentModel.MemberDescriptor::get_AttributeArray() */, __this); V_1 = L_0; V_2 = 0; goto IL_002f; } IL_000e: { AttributeU5BU5D_t187261448* L_1 = V_1; int32_t L_2 = V_2; NullCheck(L_1); int32_t L_3 = L_2; Attribute_t2739832645 * L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); V_0 = L_4; Attribute_t2739832645 * L_5 = V_0; if (!((DesignerSerializationVisibilityAttribute_t3410153364 *)IsInstSealed((RuntimeObject*)L_5, DesignerSerializationVisibilityAttribute_t3410153364_il2cpp_TypeInfo_var))) { goto IL_002b; } } { Attribute_t2739832645 * L_6 = V_0; V_3 = ((DesignerSerializationVisibilityAttribute_t3410153364 *)CastclassSealed((RuntimeObject*)L_6, DesignerSerializationVisibilityAttribute_t3410153364_il2cpp_TypeInfo_var)); DesignerSerializationVisibilityAttribute_t3410153364 * L_7 = V_3; NullCheck(L_7); int32_t L_8 = DesignerSerializationVisibilityAttribute_get_Visibility_m3248641368(L_7, /*hidden argument*/NULL); return L_8; } IL_002b: { int32_t L_9 = V_2; V_2 = ((int32_t)((int32_t)L_9+(int32_t)1)); } IL_002f: { int32_t L_10 = V_2; AttributeU5BU5D_t187261448* L_11 = V_1; NullCheck(L_11); if ((((int32_t)L_10) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_11)->max_length))))))) { goto IL_000e; } } { return (int32_t)(1); } } // System.Void System.ComponentModel.PropertyDescriptor::AddValueChanged(System.Object,System.EventHandler) extern "C" void PropertyDescriptor_AddValueChanged_m3641604278 (PropertyDescriptor_t2555988069 * __this, RuntimeObject * ___component0, EventHandler_t1223794391 * ___handler1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptor_AddValueChanged_m3641604278_MetadataUsageId); s_Il2CppMethodInitialized = true; } EventHandler_t1223794391 * V_0 = NULL; { RuntimeObject * L_0 = ___component0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral340364817, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { EventHandler_t1223794391 * L_2 = ___handler1; if (L_2) { goto IL_0022; } } { ArgumentNullException_t873386607 * L_3 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_3, _stringLiteral915811739, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_0022: { Hashtable_t448324601 * L_4 = __this->get_notifiers_5(); if (L_4) { goto IL_0038; } } { Hashtable_t448324601 * L_5 = (Hashtable_t448324601 *)il2cpp_codegen_object_new(Hashtable_t448324601_il2cpp_TypeInfo_var); Hashtable__ctor_m4203419798(L_5, /*hidden argument*/NULL); __this->set_notifiers_5(L_5); } IL_0038: { Hashtable_t448324601 * L_6 = __this->get_notifiers_5(); RuntimeObject * L_7 = ___component0; NullCheck(L_6); RuntimeObject * L_8 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_6, L_7); V_0 = ((EventHandler_t1223794391 *)CastclassSealed((RuntimeObject*)L_8, EventHandler_t1223794391_il2cpp_TypeInfo_var)); EventHandler_t1223794391 * L_9 = V_0; if (!L_9) { goto IL_006f; } } { EventHandler_t1223794391 * L_10 = V_0; EventHandler_t1223794391 * L_11 = ___handler1; Delegate_t2639791074 * L_12 = Delegate_Combine_m3162651421(NULL /*static, unused*/, L_10, L_11, /*hidden argument*/NULL); V_0 = ((EventHandler_t1223794391 *)CastclassSealed((RuntimeObject*)L_12, EventHandler_t1223794391_il2cpp_TypeInfo_var)); Hashtable_t448324601 * L_13 = __this->get_notifiers_5(); RuntimeObject * L_14 = ___component0; EventHandler_t1223794391 * L_15 = V_0; NullCheck(L_13); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(31 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_13, L_14, L_15); goto IL_007c; } IL_006f: { Hashtable_t448324601 * L_16 = __this->get_notifiers_5(); RuntimeObject * L_17 = ___component0; EventHandler_t1223794391 * L_18 = ___handler1; NullCheck(L_16); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(31 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_16, L_17, L_18); } IL_007c: { return; } } // System.Void System.ComponentModel.PropertyDescriptor::RemoveValueChanged(System.Object,System.EventHandler) extern "C" void PropertyDescriptor_RemoveValueChanged_m377419575 (PropertyDescriptor_t2555988069 * __this, RuntimeObject * ___component0, EventHandler_t1223794391 * ___handler1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptor_RemoveValueChanged_m377419575_MetadataUsageId); s_Il2CppMethodInitialized = true; } EventHandler_t1223794391 * V_0 = NULL; { RuntimeObject * L_0 = ___component0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral340364817, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { EventHandler_t1223794391 * L_2 = ___handler1; if (L_2) { goto IL_0022; } } { ArgumentNullException_t873386607 * L_3 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_3, _stringLiteral915811739, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_0022: { Hashtable_t448324601 * L_4 = __this->get_notifiers_5(); if (L_4) { goto IL_002e; } } { return; } IL_002e: { Hashtable_t448324601 * L_5 = __this->get_notifiers_5(); RuntimeObject * L_6 = ___component0; NullCheck(L_5); RuntimeObject * L_7 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_5, L_6); V_0 = ((EventHandler_t1223794391 *)CastclassSealed((RuntimeObject*)L_7, EventHandler_t1223794391_il2cpp_TypeInfo_var)); EventHandler_t1223794391 * L_8 = V_0; EventHandler_t1223794391 * L_9 = ___handler1; Delegate_t2639791074 * L_10 = Delegate_Remove_m798364057(NULL /*static, unused*/, L_8, L_9, /*hidden argument*/NULL); V_0 = ((EventHandler_t1223794391 *)CastclassSealed((RuntimeObject*)L_10, EventHandler_t1223794391_il2cpp_TypeInfo_var)); EventHandler_t1223794391 * L_11 = V_0; if (L_11) { goto IL_0064; } } { Hashtable_t448324601 * L_12 = __this->get_notifiers_5(); RuntimeObject * L_13 = ___component0; NullCheck(L_12); VirtActionInvoker1< RuntimeObject * >::Invoke(37 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_12, L_13); goto IL_0071; } IL_0064: { Hashtable_t448324601 * L_14 = __this->get_notifiers_5(); RuntimeObject * L_15 = ___component0; EventHandler_t1223794391 * L_16 = V_0; NullCheck(L_14); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(31 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_14, L_15, L_16); } IL_0071: { return; } } // System.Void System.ComponentModel.PropertyDescriptor::FillAttributes(System.Collections.IList) extern "C" void PropertyDescriptor_FillAttributes_m2952147874 (PropertyDescriptor_t2555988069 * __this, RuntimeObject* ___attributeList0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___attributeList0; MemberDescriptor_FillAttributes_m1535506199(__this, L_0, /*hidden argument*/NULL); return; } } // System.Object System.ComponentModel.PropertyDescriptor::GetInvocationTarget(System.Type,System.Object) extern "C" RuntimeObject * PropertyDescriptor_GetInvocationTarget_m1296012682 (PropertyDescriptor_t2555988069 * __this, Type_t * ___type0, RuntimeObject * ___instance1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptor_GetInvocationTarget_m1296012682_MetadataUsageId); s_Il2CppMethodInitialized = true; } CustomTypeDescriptor_t1811165357 * V_0 = NULL; { Type_t * L_0 = ___type0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral4074451177, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { RuntimeObject * L_2 = ___instance1; if (L_2) { goto IL_0022; } } { ArgumentNullException_t873386607 * L_3 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_3, _stringLiteral2374827162, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_0022: { RuntimeObject * L_4 = ___instance1; if (!((CustomTypeDescriptor_t1811165357 *)IsInstClass((RuntimeObject*)L_4, CustomTypeDescriptor_t1811165357_il2cpp_TypeInfo_var))) { goto IL_003c; } } { RuntimeObject * L_5 = ___instance1; V_0 = ((CustomTypeDescriptor_t1811165357 *)CastclassClass((RuntimeObject*)L_5, CustomTypeDescriptor_t1811165357_il2cpp_TypeInfo_var)); CustomTypeDescriptor_t1811165357 * L_6 = V_0; NullCheck(L_6); RuntimeObject * L_7 = VirtFuncInvoker1< RuntimeObject *, PropertyDescriptor_t2555988069 * >::Invoke(27 /* System.Object System.ComponentModel.CustomTypeDescriptor::GetPropertyOwner(System.ComponentModel.PropertyDescriptor) */, L_6, __this); return L_7; } IL_003c: { Type_t * L_8 = ___type0; RuntimeObject * L_9 = ___instance1; RuntimeObject * L_10 = MemberDescriptor_GetInvocationTarget_m865065014(__this, L_8, L_9, /*hidden argument*/NULL); return L_10; } } // System.EventHandler System.ComponentModel.PropertyDescriptor::GetValueChangedHandler(System.Object) extern "C" EventHandler_t1223794391 * PropertyDescriptor_GetValueChangedHandler_m3083673540 (PropertyDescriptor_t2555988069 * __this, RuntimeObject * ___component0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptor_GetValueChangedHandler_m3083673540_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___component0; if (!L_0) { goto IL_0011; } } { Hashtable_t448324601 * L_1 = __this->get_notifiers_5(); if (L_1) { goto IL_0013; } } IL_0011: { return (EventHandler_t1223794391 *)NULL; } IL_0013: { Hashtable_t448324601 * L_2 = __this->get_notifiers_5(); RuntimeObject * L_3 = ___component0; NullCheck(L_2); RuntimeObject * L_4 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_2, L_3); return ((EventHandler_t1223794391 *)CastclassSealed((RuntimeObject*)L_4, EventHandler_t1223794391_il2cpp_TypeInfo_var)); } } // System.Void System.ComponentModel.PropertyDescriptor::OnValueChanged(System.Object,System.EventArgs) extern "C" void PropertyDescriptor_OnValueChanged_m4046283467 (PropertyDescriptor_t2555988069 * __this, RuntimeObject * ___component0, EventArgs_t3326158294 * ___e1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptor_OnValueChanged_m4046283467_MetadataUsageId); s_Il2CppMethodInitialized = true; } EventHandler_t1223794391 * V_0 = NULL; { Hashtable_t448324601 * L_0 = __this->get_notifiers_5(); if (L_0) { goto IL_000c; } } { return; } IL_000c: { Hashtable_t448324601 * L_1 = __this->get_notifiers_5(); RuntimeObject * L_2 = ___component0; NullCheck(L_1); RuntimeObject * L_3 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_1, L_2); V_0 = ((EventHandler_t1223794391 *)CastclassSealed((RuntimeObject*)L_3, EventHandler_t1223794391_il2cpp_TypeInfo_var)); EventHandler_t1223794391 * L_4 = V_0; if (L_4) { goto IL_0025; } } { return; } IL_0025: { EventHandler_t1223794391 * L_5 = V_0; RuntimeObject * L_6 = ___component0; EventArgs_t3326158294 * L_7 = ___e1; NullCheck(L_5); EventHandler_Invoke_m2078668233(L_5, L_6, L_7, /*hidden argument*/NULL); return; } } // System.Object System.ComponentModel.PropertyDescriptor::CreateInstance(System.Type) extern "C" RuntimeObject * PropertyDescriptor_CreateInstance_m1411741552 (PropertyDescriptor_t2555988069 * __this, Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptor_CreateInstance_m1411741552_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; TypeU5BU5D_t89919618* V_1 = NULL; ConstructorInfo_t673747461 * V_2 = NULL; ObjectU5BU5D_t4199014551* V_3 = NULL; { Type_t * L_0 = ___type0; if (!L_0) { goto IL_0011; } } { Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this); if (L_1) { goto IL_0013; } } IL_0011: { return NULL; } IL_0013: { V_0 = NULL; TypeU5BU5D_t89919618* L_2 = ((TypeU5BU5D_t89919618*)SZArrayNew(TypeU5BU5D_t89919618_il2cpp_TypeInfo_var, (uint32_t)1)); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_3 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Type_t_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_2); ArrayElementTypeCheck (L_2, L_3); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_3); V_1 = L_2; Type_t * L_4 = ___type0; TypeU5BU5D_t89919618* L_5 = V_1; NullCheck(L_4); ConstructorInfo_t673747461 * L_6 = Type_GetConstructor_m2299987216(L_4, L_5, /*hidden argument*/NULL); V_2 = L_6; ConstructorInfo_t673747461 * L_7 = V_2; if (!L_7) { goto IL_0056; } } { ObjectU5BU5D_t4199014551* L_8 = ((ObjectU5BU5D_t4199014551*)SZArrayNew(ObjectU5BU5D_t4199014551_il2cpp_TypeInfo_var, (uint32_t)1)); Type_t * L_9 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this); NullCheck(L_8); ArrayElementTypeCheck (L_8, L_9); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_9); V_3 = L_8; Type_t * L_10 = ___type0; TypeU5BU5D_t89919618* L_11 = V_1; ObjectU5BU5D_t4199014551* L_12 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RuntimeObject * L_13 = TypeDescriptor_CreateInstance_m2864588923(NULL /*static, unused*/, (RuntimeObject*)NULL, L_10, L_11, L_12, /*hidden argument*/NULL); V_0 = L_13; goto IL_0060; } IL_0056: { Type_t * L_14 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RuntimeObject * L_15 = TypeDescriptor_CreateInstance_m2864588923(NULL /*static, unused*/, (RuntimeObject*)NULL, L_14, (TypeU5BU5D_t89919618*)(TypeU5BU5D_t89919618*)NULL, (ObjectU5BU5D_t4199014551*)(ObjectU5BU5D_t4199014551*)NULL, /*hidden argument*/NULL); V_0 = L_15; } IL_0060: { RuntimeObject * L_16 = V_0; return L_16; } } // System.Boolean System.ComponentModel.PropertyDescriptor::Equals(System.Object) extern "C" bool PropertyDescriptor_Equals_m2952062623 (PropertyDescriptor_t2555988069 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptor_Equals_m2952062623_MetadataUsageId); s_Il2CppMethodInitialized = true; } PropertyDescriptor_t2555988069 * V_0 = NULL; { RuntimeObject * L_0 = ___obj0; bool L_1 = MemberDescriptor_Equals_m2953265216(__this, L_0, /*hidden argument*/NULL); if (L_1) { goto IL_000e; } } { return (bool)0; } IL_000e: { RuntimeObject * L_2 = ___obj0; V_0 = ((PropertyDescriptor_t2555988069 *)IsInstClass((RuntimeObject*)L_2, PropertyDescriptor_t2555988069_il2cpp_TypeInfo_var)); PropertyDescriptor_t2555988069 * L_3 = V_0; if (L_3) { goto IL_001d; } } { return (bool)0; } IL_001d: { PropertyDescriptor_t2555988069 * L_4 = V_0; NullCheck(L_4); Type_t * L_5 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, L_4); Type_t * L_6 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this); return (bool)((((RuntimeObject*)(Type_t *)L_5) == ((RuntimeObject*)(Type_t *)L_6))? 1 : 0); } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptor::GetChildProperties() extern "C" PropertyDescriptorCollection_t2982717747 * PropertyDescriptor_GetChildProperties_m1586803637 (PropertyDescriptor_t2555988069 * __this, const RuntimeMethod* method) { { PropertyDescriptorCollection_t2982717747 * L_0 = VirtFuncInvoker2< PropertyDescriptorCollection_t2982717747 *, RuntimeObject *, AttributeU5BU5D_t187261448* >::Invoke(31 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptor::GetChildProperties(System.Object,System.Attribute[]) */, __this, NULL, (AttributeU5BU5D_t187261448*)(AttributeU5BU5D_t187261448*)NULL); return L_0; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptor::GetChildProperties(System.Object) extern "C" PropertyDescriptorCollection_t2982717747 * PropertyDescriptor_GetChildProperties_m1470513698 (PropertyDescriptor_t2555988069 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___instance0; PropertyDescriptorCollection_t2982717747 * L_1 = VirtFuncInvoker2< PropertyDescriptorCollection_t2982717747 *, RuntimeObject *, AttributeU5BU5D_t187261448* >::Invoke(31 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptor::GetChildProperties(System.Object,System.Attribute[]) */, __this, L_0, (AttributeU5BU5D_t187261448*)(AttributeU5BU5D_t187261448*)NULL); return L_1; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptor::GetChildProperties(System.Attribute[]) extern "C" PropertyDescriptorCollection_t2982717747 * PropertyDescriptor_GetChildProperties_m140867120 (PropertyDescriptor_t2555988069 * __this, AttributeU5BU5D_t187261448* ___filter0, const RuntimeMethod* method) { { AttributeU5BU5D_t187261448* L_0 = ___filter0; PropertyDescriptorCollection_t2982717747 * L_1 = VirtFuncInvoker2< PropertyDescriptorCollection_t2982717747 *, RuntimeObject *, AttributeU5BU5D_t187261448* >::Invoke(31 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptor::GetChildProperties(System.Object,System.Attribute[]) */, __this, NULL, L_0); return L_1; } } // System.Int32 System.ComponentModel.PropertyDescriptor::GetHashCode() extern "C" int32_t PropertyDescriptor_GetHashCode_m2223190056 (PropertyDescriptor_t2555988069 * __this, const RuntimeMethod* method) { { int32_t L_0 = MemberDescriptor_GetHashCode_m1577113279(__this, /*hidden argument*/NULL); return L_0; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptor::GetChildProperties(System.Object,System.Attribute[]) extern "C" PropertyDescriptorCollection_t2982717747 * PropertyDescriptor_GetChildProperties_m3516391685 (PropertyDescriptor_t2555988069 * __this, RuntimeObject * ___instance0, AttributeU5BU5D_t187261448* ___filter1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptor_GetChildProperties_m3516391685_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___instance0; AttributeU5BU5D_t187261448* L_1 = ___filter1; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); PropertyDescriptorCollection_t2982717747 * L_2 = TypeDescriptor_GetProperties_m2849812490(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Object System.ComponentModel.PropertyDescriptor::GetEditor(System.Type) extern "C" RuntimeObject * PropertyDescriptor_GetEditor_m902956406 (PropertyDescriptor_t2555988069 * __this, Type_t * ___editorBaseType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptor_GetEditor_m902956406_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; AttributeU5BU5D_t187261448* V_1 = NULL; Attribute_t2739832645 * V_2 = NULL; AttributeU5BU5D_t187261448* V_3 = NULL; int32_t V_4 = 0; EditorAttribute_t3439099620 * V_5 = NULL; RuntimeObject * V_6 = NULL; { V_0 = (Type_t *)NULL; AttributeU5BU5D_t187261448* L_0 = VirtFuncInvoker0< AttributeU5BU5D_t187261448* >::Invoke(4 /* System.Attribute[] System.ComponentModel.MemberDescriptor::get_AttributeArray() */, __this); V_1 = L_0; AttributeU5BU5D_t187261448* L_1 = V_1; if (!L_1) { goto IL_006f; } } { AttributeU5BU5D_t187261448* L_2 = V_1; NullCheck(L_2); if (!(((int32_t)((int32_t)(((RuntimeArray *)L_2)->max_length))))) { goto IL_006f; } } { AttributeU5BU5D_t187261448* L_3 = V_1; V_3 = L_3; V_4 = 0; goto IL_0065; } IL_0021: { AttributeU5BU5D_t187261448* L_4 = V_3; int32_t L_5 = V_4; NullCheck(L_4); int32_t L_6 = L_5; Attribute_t2739832645 * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); V_2 = L_7; Attribute_t2739832645 * L_8 = V_2; V_5 = ((EditorAttribute_t3439099620 *)IsInstSealed((RuntimeObject*)L_8, EditorAttribute_t3439099620_il2cpp_TypeInfo_var)); EditorAttribute_t3439099620 * L_9 = V_5; if (L_9) { goto IL_003a; } } { goto IL_005f; } IL_003a: { EditorAttribute_t3439099620 * L_10 = V_5; NullCheck(L_10); String_t* L_11 = EditorAttribute_get_EditorTypeName_m3243196888(L_10, /*hidden argument*/NULL); Type_t * L_12 = PropertyDescriptor_GetTypeFromName_m2169027273(__this, L_11, /*hidden argument*/NULL); V_0 = L_12; Type_t * L_13 = V_0; if (!L_13) { goto IL_005f; } } { Type_t * L_14 = V_0; Type_t * L_15 = ___editorBaseType0; NullCheck(L_14); bool L_16 = VirtFuncInvoker1< bool, Type_t * >::Invoke(39 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_14, L_15); if (!L_16) { goto IL_005f; } } { goto IL_006f; } IL_005f: { int32_t L_17 = V_4; V_4 = ((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0065: { int32_t L_18 = V_4; AttributeU5BU5D_t187261448* L_19 = V_3; NullCheck(L_19); if ((((int32_t)L_18) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_19)->max_length))))))) { goto IL_0021; } } IL_006f: { V_6 = NULL; Type_t * L_20 = V_0; if (!L_20) { goto IL_0081; } } { Type_t * L_21 = V_0; RuntimeObject * L_22 = PropertyDescriptor_CreateInstance_m1411741552(__this, L_21, /*hidden argument*/NULL); V_6 = L_22; } IL_0081: { RuntimeObject * L_23 = V_6; if (L_23) { goto IL_0096; } } { Type_t * L_24 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this); Type_t * L_25 = ___editorBaseType0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RuntimeObject * L_26 = TypeDescriptor_GetEditor_m2456209240(NULL /*static, unused*/, L_24, L_25, /*hidden argument*/NULL); V_6 = L_26; } IL_0096: { RuntimeObject * L_27 = V_6; return L_27; } } // System.Type System.ComponentModel.PropertyDescriptor::GetTypeFromName(System.String) extern "C" Type_t * PropertyDescriptor_GetTypeFromName_m2169027273 (PropertyDescriptor_t2555988069 * __this, String_t* ___typeName0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptor_GetTypeFromName_m2169027273_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; int32_t V_1 = 0; { String_t* L_0 = ___typeName0; if (!L_0) { goto IL_0021; } } { Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.ComponentModel.PropertyDescriptor::get_ComponentType() */, __this); if (!L_1) { goto IL_0021; } } { String_t* L_2 = ___typeName0; NullCheck(L_2); String_t* L_3 = String_Trim_m17949824(L_2, /*hidden argument*/NULL); NullCheck(L_3); int32_t L_4 = String_get_Length_m2584136399(L_3, /*hidden argument*/NULL); if (L_4) { goto IL_0023; } } IL_0021: { return (Type_t *)NULL; } IL_0023: { String_t* L_5 = ___typeName0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_m3930427402, L_5, "System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"); V_0 = L_6; Type_t * L_7 = V_0; if (L_7) { goto IL_005f; } } { String_t* L_8 = ___typeName0; NullCheck(L_8); int32_t L_9 = String_IndexOf_m1251172182(L_8, _stringLiteral216392854, /*hidden argument*/NULL); V_1 = L_9; int32_t L_10 = V_1; if ((((int32_t)L_10) == ((int32_t)(-1)))) { goto IL_004d; } } { String_t* L_11 = ___typeName0; int32_t L_12 = V_1; NullCheck(L_11); String_t* L_13 = String_Substring_m3946733520(L_11, 0, L_12, /*hidden argument*/NULL); ___typeName0 = L_13; } IL_004d: { Type_t * L_14 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.ComponentModel.PropertyDescriptor::get_ComponentType() */, __this); NullCheck(L_14); Assembly_t2742862503 * L_15 = VirtFuncInvoker0< Assembly_t2742862503 * >::Invoke(14 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_14); String_t* L_16 = ___typeName0; NullCheck(L_15); Type_t * L_17 = VirtFuncInvoker1< Type_t *, String_t* >::Invoke(14 /* System.Type System.Reflection.Assembly::GetType(System.String) */, L_15, L_16); V_0 = L_17; } IL_005f: { Type_t * L_18 = V_0; return L_18; } } // System.Void System.ComponentModel.PropertyDescriptorCollection::.ctor(System.ComponentModel.PropertyDescriptor[]) extern "C" void PropertyDescriptorCollection__ctor_m175848616 (PropertyDescriptorCollection_t2982717747 * __this, PropertyDescriptorU5BU5D_t2463291496* ___properties0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection__ctor_m175848616_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); ArrayList_t4277734320 * L_0 = (ArrayList_t4277734320 *)il2cpp_codegen_object_new(ArrayList_t4277734320_il2cpp_TypeInfo_var); ArrayList__ctor_m3769859358(L_0, /*hidden argument*/NULL); __this->set_properties_1(L_0); PropertyDescriptorU5BU5D_t2463291496* L_1 = ___properties0; if (L_1) { goto IL_0018; } } { return; } IL_0018: { ArrayList_t4277734320 * L_2 = __this->get_properties_1(); PropertyDescriptorU5BU5D_t2463291496* L_3 = ___properties0; NullCheck(L_2); VirtActionInvoker1< RuntimeObject* >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_2, (RuntimeObject*)(RuntimeObject*)L_3); return; } } // System.Void System.ComponentModel.PropertyDescriptorCollection::.ctor(System.ComponentModel.PropertyDescriptor[],System.Boolean) extern "C" void PropertyDescriptorCollection__ctor_m3850586682 (PropertyDescriptorCollection_t2982717747 * __this, PropertyDescriptorU5BU5D_t2463291496* ___properties0, bool ___readOnly1, const RuntimeMethod* method) { { PropertyDescriptorU5BU5D_t2463291496* L_0 = ___properties0; PropertyDescriptorCollection__ctor_m175848616(__this, L_0, /*hidden argument*/NULL); bool L_1 = ___readOnly1; __this->set_readOnly_2(L_1); return; } } // System.Void System.ComponentModel.PropertyDescriptorCollection::.ctor() extern "C" void PropertyDescriptorCollection__ctor_m3178666718 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.PropertyDescriptorCollection::.cctor() extern "C" void PropertyDescriptorCollection__cctor_m2127392149 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection__cctor_m2127392149_MetadataUsageId); s_Il2CppMethodInitialized = true; } { PropertyDescriptorCollection_t2982717747 * L_0 = (PropertyDescriptorCollection_t2982717747 *)il2cpp_codegen_object_new(PropertyDescriptorCollection_t2982717747_il2cpp_TypeInfo_var); PropertyDescriptorCollection__ctor_m3850586682(L_0, (PropertyDescriptorU5BU5D_t2463291496*)(PropertyDescriptorU5BU5D_t2463291496*)NULL, (bool)1, /*hidden argument*/NULL); ((PropertyDescriptorCollection_t2982717747_StaticFields*)il2cpp_codegen_static_fields_for(PropertyDescriptorCollection_t2982717747_il2cpp_TypeInfo_var))->set_Empty_0(L_0); return; } } // System.Int32 System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.Add(System.Object) extern "C" int32_t PropertyDescriptorCollection_System_Collections_IList_Add_m3189680819 (PropertyDescriptorCollection_t2982717747 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IList_Add_m3189680819_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; int32_t L_1 = PropertyDescriptorCollection_Add_m3198021043(__this, ((PropertyDescriptor_t2555988069 *)CastclassClass((RuntimeObject*)L_0, PropertyDescriptor_t2555988069_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_1; } } // System.Void System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.Add(System.Object,System.Object) extern "C" void PropertyDescriptorCollection_System_Collections_IDictionary_Add_m742463398 (PropertyDescriptorCollection_t2982717747 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IDictionary_Add_m742463398_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value1; if (((PropertyDescriptor_t2555988069 *)IsInstClass((RuntimeObject*)L_0, PropertyDescriptor_t2555988069_il2cpp_TypeInfo_var))) { goto IL_0016; } } { ArgumentException_t1946723077 * L_1 = (ArgumentException_t1946723077 *)il2cpp_codegen_object_new(ArgumentException_t1946723077_il2cpp_TypeInfo_var); ArgumentException__ctor_m509860574(L_1, _stringLiteral1939629895, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0016: { RuntimeObject * L_2 = ___value1; PropertyDescriptorCollection_Add_m3198021043(__this, ((PropertyDescriptor_t2555988069 *)CastclassClass((RuntimeObject*)L_2, PropertyDescriptor_t2555988069_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.Clear() extern "C" void PropertyDescriptorCollection_System_Collections_IList_Clear_m1930833665 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) { { PropertyDescriptorCollection_Clear_m2906248565(__this, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.Clear() extern "C" void PropertyDescriptorCollection_System_Collections_IDictionary_Clear_m2308828877 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) { { PropertyDescriptorCollection_Clear_m2906248565(__this, /*hidden argument*/NULL); return; } } // System.Boolean System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.Contains(System.Object) extern "C" bool PropertyDescriptorCollection_System_Collections_IList_Contains_m3443102904 (PropertyDescriptorCollection_t2982717747 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IList_Contains_m3443102904_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; bool L_1 = PropertyDescriptorCollection_Contains_m348670085(__this, ((PropertyDescriptor_t2555988069 *)CastclassClass((RuntimeObject*)L_0, PropertyDescriptor_t2555988069_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_1; } } // System.Boolean System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.Contains(System.Object) extern "C" bool PropertyDescriptorCollection_System_Collections_IDictionary_Contains_m73837269 (PropertyDescriptorCollection_t2982717747 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IDictionary_Contains_m73837269_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; bool L_1 = PropertyDescriptorCollection_Contains_m348670085(__this, ((PropertyDescriptor_t2555988069 *)CastclassClass((RuntimeObject*)L_0, PropertyDescriptor_t2555988069_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_1; } } // System.Collections.IEnumerator System.ComponentModel.PropertyDescriptorCollection::System.Collections.IEnumerable.GetEnumerator() extern "C" RuntimeObject* PropertyDescriptorCollection_System_Collections_IEnumerable_GetEnumerator_m1501458585 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = VirtFuncInvoker0< RuntimeObject* >::Invoke(33 /* System.Collections.IEnumerator System.ComponentModel.PropertyDescriptorCollection::GetEnumerator() */, __this); return L_0; } } // System.Collections.IDictionaryEnumerator System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.GetEnumerator() extern "C" RuntimeObject* PropertyDescriptorCollection_System_Collections_IDictionary_GetEnumerator_m1926839451 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IDictionary_GetEnumerator_m1926839451_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotImplementedException_t682134635 * L_0 = (NotImplementedException_t682134635 *)il2cpp_codegen_object_new(NotImplementedException_t682134635_il2cpp_TypeInfo_var); NotImplementedException__ctor_m1549985598(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Int32 System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.IndexOf(System.Object) extern "C" int32_t PropertyDescriptorCollection_System_Collections_IList_IndexOf_m1854268203 (PropertyDescriptorCollection_t2982717747 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IList_IndexOf_m1854268203_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; int32_t L_1 = PropertyDescriptorCollection_IndexOf_m2085396069(__this, ((PropertyDescriptor_t2555988069 *)CastclassClass((RuntimeObject*)L_0, PropertyDescriptor_t2555988069_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_1; } } // System.Void System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.Insert(System.Int32,System.Object) extern "C" void PropertyDescriptorCollection_System_Collections_IList_Insert_m936344247 (PropertyDescriptorCollection_t2982717747 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IList_Insert_m936344247_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___index0; RuntimeObject * L_1 = ___value1; PropertyDescriptorCollection_Insert_m2348703070(__this, L_0, ((PropertyDescriptor_t2555988069 *)CastclassClass((RuntimeObject*)L_1, PropertyDescriptor_t2555988069_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.Remove(System.Object) extern "C" void PropertyDescriptorCollection_System_Collections_IDictionary_Remove_m1759435516 (PropertyDescriptorCollection_t2982717747 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IDictionary_Remove_m1759435516_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; PropertyDescriptorCollection_Remove_m173340434(__this, ((PropertyDescriptor_t2555988069 *)CastclassClass((RuntimeObject*)L_0, PropertyDescriptor_t2555988069_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.Remove(System.Object) extern "C" void PropertyDescriptorCollection_System_Collections_IList_Remove_m1286137197 (PropertyDescriptorCollection_t2982717747 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IList_Remove_m1286137197_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; PropertyDescriptorCollection_Remove_m173340434(__this, ((PropertyDescriptor_t2555988069 *)CastclassClass((RuntimeObject*)L_0, PropertyDescriptor_t2555988069_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.RemoveAt(System.Int32) extern "C" void PropertyDescriptorCollection_System_Collections_IList_RemoveAt_m2843745717 (PropertyDescriptorCollection_t2982717747 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; PropertyDescriptorCollection_RemoveAt_m797429759(__this, L_0, /*hidden argument*/NULL); return; } } // System.Boolean System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.get_IsFixedSize() extern "C" bool PropertyDescriptorCollection_System_Collections_IDictionary_get_IsFixedSize_m3353100512 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IDictionary_get_IsFixedSize_m3353100512_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IList::get_IsFixedSize() */, IList_t1481205421_il2cpp_TypeInfo_var, __this); return L_0; } } // System.Boolean System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.get_IsFixedSize() extern "C" bool PropertyDescriptorCollection_System_Collections_IList_get_IsFixedSize_m3915952916 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_readOnly_2(); return L_0; } } // System.Boolean System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.get_IsReadOnly() extern "C" bool PropertyDescriptorCollection_System_Collections_IDictionary_get_IsReadOnly_m2022393380 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IDictionary_get_IsReadOnly_m2022393380_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IList::get_IsReadOnly() */, IList_t1481205421_il2cpp_TypeInfo_var, __this); return L_0; } } // System.Boolean System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.get_IsReadOnly() extern "C" bool PropertyDescriptorCollection_System_Collections_IList_get_IsReadOnly_m4159735257 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_readOnly_2(); return L_0; } } // System.Boolean System.ComponentModel.PropertyDescriptorCollection::System.Collections.ICollection.get_IsSynchronized() extern "C" bool PropertyDescriptorCollection_System_Collections_ICollection_get_IsSynchronized_m3523900063 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Int32 System.ComponentModel.PropertyDescriptorCollection::System.Collections.ICollection.get_Count() extern "C" int32_t PropertyDescriptorCollection_System_Collections_ICollection_get_Count_m583428225 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) { { int32_t L_0 = PropertyDescriptorCollection_get_Count_m1331030086(__this, /*hidden argument*/NULL); return L_0; } } // System.Object System.ComponentModel.PropertyDescriptorCollection::System.Collections.ICollection.get_SyncRoot() extern "C" RuntimeObject * PropertyDescriptorCollection_System_Collections_ICollection_get_SyncRoot_m2345221127 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) { { return NULL; } } // System.Collections.ICollection System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.get_Keys() extern "C" RuntimeObject* PropertyDescriptorCollection_System_Collections_IDictionary_get_Keys_m4271611341 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IDictionary_get_Keys_m4271611341_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringU5BU5D_t1187188029* V_0 = NULL; int32_t V_1 = 0; PropertyDescriptor_t2555988069 * V_2 = NULL; RuntimeObject* V_3 = NULL; RuntimeObject* V_4 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { ArrayList_t4277734320 * L_0 = __this->get_properties_1(); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0); V_0 = ((StringU5BU5D_t1187188029*)SZArrayNew(StringU5BU5D_t1187188029_il2cpp_TypeInfo_var, (uint32_t)L_1)); V_1 = 0; ArrayList_t4277734320 * L_2 = __this->get_properties_1(); NullCheck(L_2); RuntimeObject* L_3 = VirtFuncInvoker0< RuntimeObject* >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_2); V_3 = L_3; } IL_001f: try { // begin try (depth: 1) { goto IL_003d; } IL_0024: { RuntimeObject* L_4 = V_3; NullCheck(L_4); RuntimeObject * L_5 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1868781825_il2cpp_TypeInfo_var, L_4); V_2 = ((PropertyDescriptor_t2555988069 *)CastclassClass((RuntimeObject*)L_5, PropertyDescriptor_t2555988069_il2cpp_TypeInfo_var)); StringU5BU5D_t1187188029* L_6 = V_0; int32_t L_7 = V_1; int32_t L_8 = L_7; V_1 = ((int32_t)((int32_t)L_8+(int32_t)1)); PropertyDescriptor_t2555988069 * L_9 = V_2; NullCheck(L_9); String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(13 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_9); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_10); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (String_t*)L_10); } IL_003d: { RuntimeObject* L_11 = V_3; NullCheck(L_11); bool L_12 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1868781825_il2cpp_TypeInfo_var, L_11); if (L_12) { goto IL_0024; } } IL_0048: { IL2CPP_LEAVE(0x62, FINALLY_004d); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_004d; } FINALLY_004d: { // begin finally (depth: 1) { RuntimeObject* L_13 = V_3; V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_13, IDisposable_t3750220212_il2cpp_TypeInfo_var)); RuntimeObject* L_14 = V_4; if (L_14) { goto IL_005a; } } IL_0059: { IL2CPP_END_FINALLY(77) } IL_005a: { RuntimeObject* L_15 = V_4; NullCheck(L_15); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3750220212_il2cpp_TypeInfo_var, L_15); IL2CPP_END_FINALLY(77) } } // end finally (depth: 1) IL2CPP_CLEANUP(77) { IL2CPP_JUMP_TBL(0x62, IL_0062) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_0062: { StringU5BU5D_t1187188029* L_16 = V_0; return (RuntimeObject*)L_16; } } // System.Collections.ICollection System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.get_Values() extern "C" RuntimeObject* PropertyDescriptorCollection_System_Collections_IDictionary_get_Values_m1089935682 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IDictionary_get_Values_m1089935682_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ArrayList_t4277734320 * L_0 = __this->get_properties_1(); NullCheck(L_0); RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(49 /* System.Object System.Collections.ArrayList::Clone() */, L_0); return ((RuntimeObject*)Castclass((RuntimeObject*)L_1, ICollection_t2597392361_il2cpp_TypeInfo_var)); } } // System.Object System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.get_Item(System.Object) extern "C" RuntimeObject * PropertyDescriptorCollection_System_Collections_IDictionary_get_Item_m122079940 (PropertyDescriptorCollection_t2982717747 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IDictionary_get_Item_m122079940_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___key0; if (((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var))) { goto IL_000d; } } { return NULL; } IL_000d: { RuntimeObject * L_1 = ___key0; PropertyDescriptor_t2555988069 * L_2 = VirtFuncInvoker1< PropertyDescriptor_t2555988069 *, String_t* >::Invoke(40 /* System.ComponentModel.PropertyDescriptor System.ComponentModel.PropertyDescriptorCollection::get_Item(System.String) */, __this, ((String_t*)CastclassSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var))); return L_2; } } // System.Void System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.set_Item(System.Object,System.Object) extern "C" void PropertyDescriptorCollection_System_Collections_IDictionary_set_Item_m1097437721 (PropertyDescriptorCollection_t2982717747 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IDictionary_set_Item_m1097437721_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { bool L_0 = __this->get_readOnly_2(); if (!L_0) { goto IL_0011; } } { NotSupportedException_t2060369835 * L_1 = (NotSupportedException_t2060369835 *)il2cpp_codegen_object_new(NotSupportedException_t2060369835_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2970087223(L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { RuntimeObject * L_2 = ___key0; if (!((String_t*)IsInstSealed((RuntimeObject*)L_2, String_t_il2cpp_TypeInfo_var))) { goto IL_0027; } } { RuntimeObject * L_3 = ___value1; if (((PropertyDescriptor_t2555988069 *)IsInstClass((RuntimeObject*)L_3, PropertyDescriptor_t2555988069_il2cpp_TypeInfo_var))) { goto IL_002d; } } IL_0027: { ArgumentException_t1946723077 * L_4 = (ArgumentException_t1946723077 *)il2cpp_codegen_object_new(ArgumentException_t1946723077_il2cpp_TypeInfo_var); ArgumentException__ctor_m3455789916(L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_002d: { ArrayList_t4277734320 * L_5 = __this->get_properties_1(); RuntimeObject * L_6 = ___value1; NullCheck(L_5); int32_t L_7 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(33 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object) */, L_5, L_6); V_0 = L_7; int32_t L_8 = V_0; if ((!(((uint32_t)L_8) == ((uint32_t)(-1))))) { goto IL_0053; } } { RuntimeObject * L_9 = ___value1; PropertyDescriptorCollection_Add_m3198021043(__this, ((PropertyDescriptor_t2555988069 *)CastclassClass((RuntimeObject*)L_9, PropertyDescriptor_t2555988069_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); goto IL_0060; } IL_0053: { ArrayList_t4277734320 * L_10 = __this->get_properties_1(); int32_t L_11 = V_0; RuntimeObject * L_12 = ___value1; NullCheck(L_10); VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(22 /* System.Void System.Collections.ArrayList::set_Item(System.Int32,System.Object) */, L_10, L_11, L_12); } IL_0060: { return; } } // System.Object System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.get_Item(System.Int32) extern "C" RuntimeObject * PropertyDescriptorCollection_System_Collections_IList_get_Item_m1327381298 (PropertyDescriptorCollection_t2982717747 * __this, int32_t ___index0, const RuntimeMethod* method) { { ArrayList_t4277734320 * L_0 = __this->get_properties_1(); int32_t L_1 = ___index0; NullCheck(L_0); RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1); return L_2; } } // System.Void System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.set_Item(System.Int32,System.Object) extern "C" void PropertyDescriptorCollection_System_Collections_IList_set_Item_m2005243043 (PropertyDescriptorCollection_t2982717747 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IList_set_Item_m2005243043_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_readOnly_2(); if (!L_0) { goto IL_0011; } } { NotSupportedException_t2060369835 * L_1 = (NotSupportedException_t2060369835 *)il2cpp_codegen_object_new(NotSupportedException_t2060369835_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2970087223(L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { ArrayList_t4277734320 * L_2 = __this->get_properties_1(); int32_t L_3 = ___index0; RuntimeObject * L_4 = ___value1; NullCheck(L_2); VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(22 /* System.Void System.Collections.ArrayList::set_Item(System.Int32,System.Object) */, L_2, L_3, L_4); return; } } // System.Int32 System.ComponentModel.PropertyDescriptorCollection::Add(System.ComponentModel.PropertyDescriptor) extern "C" int32_t PropertyDescriptorCollection_Add_m3198021043 (PropertyDescriptorCollection_t2982717747 * __this, PropertyDescriptor_t2555988069 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_Add_m3198021043_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_readOnly_2(); if (!L_0) { goto IL_0011; } } { NotSupportedException_t2060369835 * L_1 = (NotSupportedException_t2060369835 *)il2cpp_codegen_object_new(NotSupportedException_t2060369835_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2970087223(L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { ArrayList_t4277734320 * L_2 = __this->get_properties_1(); PropertyDescriptor_t2555988069 * L_3 = ___value0; NullCheck(L_2); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_2, L_3); ArrayList_t4277734320 * L_4 = __this->get_properties_1(); NullCheck(L_4); int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_4); return ((int32_t)((int32_t)L_5-(int32_t)1)); } } // System.Void System.ComponentModel.PropertyDescriptorCollection::Clear() extern "C" void PropertyDescriptorCollection_Clear_m2906248565 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_Clear_m2906248565_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_readOnly_2(); if (!L_0) { goto IL_0011; } } { NotSupportedException_t2060369835 * L_1 = (NotSupportedException_t2060369835 *)il2cpp_codegen_object_new(NotSupportedException_t2060369835_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2970087223(L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { ArrayList_t4277734320 * L_2 = __this->get_properties_1(); NullCheck(L_2); VirtActionInvoker0::Invoke(31 /* System.Void System.Collections.ArrayList::Clear() */, L_2); return; } } // System.Boolean System.ComponentModel.PropertyDescriptorCollection::Contains(System.ComponentModel.PropertyDescriptor) extern "C" bool PropertyDescriptorCollection_Contains_m348670085 (PropertyDescriptorCollection_t2982717747 * __this, PropertyDescriptor_t2555988069 * ___value0, const RuntimeMethod* method) { { ArrayList_t4277734320 * L_0 = __this->get_properties_1(); PropertyDescriptor_t2555988069 * L_1 = ___value0; NullCheck(L_0); bool L_2 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(32 /* System.Boolean System.Collections.ArrayList::Contains(System.Object) */, L_0, L_1); return L_2; } } // System.Void System.ComponentModel.PropertyDescriptorCollection::CopyTo(System.Array,System.Int32) extern "C" void PropertyDescriptorCollection_CopyTo_m3989532182 (PropertyDescriptorCollection_t2982717747 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { { ArrayList_t4277734320 * L_0 = __this->get_properties_1(); RuntimeArray * L_1 = ___array0; int32_t L_2 = ___index1; NullCheck(L_0); VirtActionInvoker2< RuntimeArray *, int32_t >::Invoke(41 /* System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) */, L_0, L_1, L_2); return; } } // System.ComponentModel.PropertyDescriptor System.ComponentModel.PropertyDescriptorCollection::Find(System.String,System.Boolean) extern "C" PropertyDescriptor_t2555988069 * PropertyDescriptorCollection_Find_m2814357737 (PropertyDescriptorCollection_t2982717747 * __this, String_t* ___name0, bool ___ignoreCase1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_Find_m2814357737_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; PropertyDescriptor_t2555988069 * V_1 = NULL; { String_t* L_0 = ___name0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral1001768650, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { V_0 = 0; goto IL_0061; } IL_0018: { ArrayList_t4277734320 * L_2 = __this->get_properties_1(); int32_t L_3 = V_0; NullCheck(L_2); RuntimeObject * L_4 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_2, L_3); V_1 = ((PropertyDescriptor_t2555988069 *)CastclassClass((RuntimeObject*)L_4, PropertyDescriptor_t2555988069_il2cpp_TypeInfo_var)); bool L_5 = ___ignoreCase1; if (!L_5) { goto IL_0049; } } { String_t* L_6 = ___name0; PropertyDescriptor_t2555988069 * L_7 = V_1; NullCheck(L_7); String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(13 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_7); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); int32_t L_9 = String_Compare_m4254563879(NULL /*static, unused*/, L_6, L_8, 5, /*hidden argument*/NULL); if (L_9) { goto IL_0044; } } { PropertyDescriptor_t2555988069 * L_10 = V_1; return L_10; } IL_0044: { goto IL_005d; } IL_0049: { String_t* L_11 = ___name0; PropertyDescriptor_t2555988069 * L_12 = V_1; NullCheck(L_12); String_t* L_13 = VirtFuncInvoker0< String_t* >::Invoke(13 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_12); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); int32_t L_14 = String_Compare_m4254563879(NULL /*static, unused*/, L_11, L_13, 4, /*hidden argument*/NULL); if (L_14) { goto IL_005d; } } { PropertyDescriptor_t2555988069 * L_15 = V_1; return L_15; } IL_005d: { int32_t L_16 = V_0; V_0 = ((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0061: { int32_t L_17 = V_0; ArrayList_t4277734320 * L_18 = __this->get_properties_1(); NullCheck(L_18); int32_t L_19 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_18); if ((((int32_t)L_17) < ((int32_t)L_19))) { goto IL_0018; } } { return (PropertyDescriptor_t2555988069 *)NULL; } } // System.Collections.IEnumerator System.ComponentModel.PropertyDescriptorCollection::GetEnumerator() extern "C" RuntimeObject* PropertyDescriptorCollection_GetEnumerator_m3646401482 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) { { ArrayList_t4277734320 * L_0 = __this->get_properties_1(); NullCheck(L_0); RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0); return L_1; } } // System.Int32 System.ComponentModel.PropertyDescriptorCollection::IndexOf(System.ComponentModel.PropertyDescriptor) extern "C" int32_t PropertyDescriptorCollection_IndexOf_m2085396069 (PropertyDescriptorCollection_t2982717747 * __this, PropertyDescriptor_t2555988069 * ___value0, const RuntimeMethod* method) { { ArrayList_t4277734320 * L_0 = __this->get_properties_1(); PropertyDescriptor_t2555988069 * L_1 = ___value0; NullCheck(L_0); int32_t L_2 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(33 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object) */, L_0, L_1); return L_2; } } // System.Void System.ComponentModel.PropertyDescriptorCollection::Insert(System.Int32,System.ComponentModel.PropertyDescriptor) extern "C" void PropertyDescriptorCollection_Insert_m2348703070 (PropertyDescriptorCollection_t2982717747 * __this, int32_t ___index0, PropertyDescriptor_t2555988069 * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_Insert_m2348703070_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_readOnly_2(); if (!L_0) { goto IL_0011; } } { NotSupportedException_t2060369835 * L_1 = (NotSupportedException_t2060369835 *)il2cpp_codegen_object_new(NotSupportedException_t2060369835_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2970087223(L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { ArrayList_t4277734320 * L_2 = __this->get_properties_1(); int32_t L_3 = ___index0; PropertyDescriptor_t2555988069 * L_4 = ___value1; NullCheck(L_2); VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(36 /* System.Void System.Collections.ArrayList::Insert(System.Int32,System.Object) */, L_2, L_3, L_4); return; } } // System.Void System.ComponentModel.PropertyDescriptorCollection::Remove(System.ComponentModel.PropertyDescriptor) extern "C" void PropertyDescriptorCollection_Remove_m173340434 (PropertyDescriptorCollection_t2982717747 * __this, PropertyDescriptor_t2555988069 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_Remove_m173340434_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_readOnly_2(); if (!L_0) { goto IL_0011; } } { NotSupportedException_t2060369835 * L_1 = (NotSupportedException_t2060369835 *)il2cpp_codegen_object_new(NotSupportedException_t2060369835_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2970087223(L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { ArrayList_t4277734320 * L_2 = __this->get_properties_1(); PropertyDescriptor_t2555988069 * L_3 = ___value0; NullCheck(L_2); VirtActionInvoker1< RuntimeObject * >::Invoke(38 /* System.Void System.Collections.ArrayList::Remove(System.Object) */, L_2, L_3); return; } } // System.Void System.ComponentModel.PropertyDescriptorCollection::RemoveAt(System.Int32) extern "C" void PropertyDescriptorCollection_RemoveAt_m797429759 (PropertyDescriptorCollection_t2982717747 * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_RemoveAt_m797429759_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_readOnly_2(); if (!L_0) { goto IL_0011; } } { NotSupportedException_t2060369835 * L_1 = (NotSupportedException_t2060369835 *)il2cpp_codegen_object_new(NotSupportedException_t2060369835_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2970087223(L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { ArrayList_t4277734320 * L_2 = __this->get_properties_1(); int32_t L_3 = ___index0; NullCheck(L_2); VirtActionInvoker1< int32_t >::Invoke(39 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, L_2, L_3); return; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptorCollection::CloneCollection() extern "C" PropertyDescriptorCollection_t2982717747 * PropertyDescriptorCollection_CloneCollection_m2678864866 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_CloneCollection_m2678864866_MetadataUsageId); s_Il2CppMethodInitialized = true; } PropertyDescriptorCollection_t2982717747 * V_0 = NULL; { PropertyDescriptorCollection_t2982717747 * L_0 = (PropertyDescriptorCollection_t2982717747 *)il2cpp_codegen_object_new(PropertyDescriptorCollection_t2982717747_il2cpp_TypeInfo_var); PropertyDescriptorCollection__ctor_m3178666718(L_0, /*hidden argument*/NULL); V_0 = L_0; PropertyDescriptorCollection_t2982717747 * L_1 = V_0; ArrayList_t4277734320 * L_2 = __this->get_properties_1(); NullCheck(L_2); RuntimeObject * L_3 = VirtFuncInvoker0< RuntimeObject * >::Invoke(49 /* System.Object System.Collections.ArrayList::Clone() */, L_2); NullCheck(L_1); L_1->set_properties_1(((ArrayList_t4277734320 *)CastclassClass((RuntimeObject*)L_3, ArrayList_t4277734320_il2cpp_TypeInfo_var))); PropertyDescriptorCollection_t2982717747 * L_4 = V_0; return L_4; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptorCollection::Sort() extern "C" PropertyDescriptorCollection_t2982717747 * PropertyDescriptorCollection_Sort_m4285723815 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) { PropertyDescriptorCollection_t2982717747 * V_0 = NULL; { PropertyDescriptorCollection_t2982717747 * L_0 = PropertyDescriptorCollection_CloneCollection_m2678864866(__this, /*hidden argument*/NULL); V_0 = L_0; PropertyDescriptorCollection_t2982717747 * L_1 = V_0; NullCheck(L_1); PropertyDescriptorCollection_InternalSort_m1151047326(L_1, (RuntimeObject*)NULL, /*hidden argument*/NULL); PropertyDescriptorCollection_t2982717747 * L_2 = V_0; return L_2; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptorCollection::Sort(System.Collections.IComparer) extern "C" PropertyDescriptorCollection_t2982717747 * PropertyDescriptorCollection_Sort_m2486247606 (PropertyDescriptorCollection_t2982717747 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { PropertyDescriptorCollection_t2982717747 * V_0 = NULL; { PropertyDescriptorCollection_t2982717747 * L_0 = PropertyDescriptorCollection_CloneCollection_m2678864866(__this, /*hidden argument*/NULL); V_0 = L_0; PropertyDescriptorCollection_t2982717747 * L_1 = V_0; RuntimeObject* L_2 = ___comparer0; NullCheck(L_1); PropertyDescriptorCollection_InternalSort_m1151047326(L_1, L_2, /*hidden argument*/NULL); PropertyDescriptorCollection_t2982717747 * L_3 = V_0; return L_3; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptorCollection::Sort(System.String[]) extern "C" PropertyDescriptorCollection_t2982717747 * PropertyDescriptorCollection_Sort_m1330517874 (PropertyDescriptorCollection_t2982717747 * __this, StringU5BU5D_t1187188029* ___order0, const RuntimeMethod* method) { PropertyDescriptorCollection_t2982717747 * V_0 = NULL; { PropertyDescriptorCollection_t2982717747 * L_0 = PropertyDescriptorCollection_CloneCollection_m2678864866(__this, /*hidden argument*/NULL); V_0 = L_0; PropertyDescriptorCollection_t2982717747 * L_1 = V_0; StringU5BU5D_t1187188029* L_2 = ___order0; NullCheck(L_1); PropertyDescriptorCollection_InternalSort_m1985073176(L_1, L_2, /*hidden argument*/NULL); PropertyDescriptorCollection_t2982717747 * L_3 = V_0; return L_3; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptorCollection::Sort(System.String[],System.Collections.IComparer) extern "C" PropertyDescriptorCollection_t2982717747 * PropertyDescriptorCollection_Sort_m1866066683 (PropertyDescriptorCollection_t2982717747 * __this, StringU5BU5D_t1187188029* ___order0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { PropertyDescriptorCollection_t2982717747 * V_0 = NULL; ArrayList_t4277734320 * V_1 = NULL; { PropertyDescriptorCollection_t2982717747 * L_0 = PropertyDescriptorCollection_CloneCollection_m2678864866(__this, /*hidden argument*/NULL); V_0 = L_0; StringU5BU5D_t1187188029* L_1 = ___order0; if (!L_1) { goto IL_0034; } } { PropertyDescriptorCollection_t2982717747 * L_2 = V_0; StringU5BU5D_t1187188029* L_3 = ___order0; NullCheck(L_2); ArrayList_t4277734320 * L_4 = PropertyDescriptorCollection_ExtractItems_m494224890(L_2, L_3, /*hidden argument*/NULL); V_1 = L_4; PropertyDescriptorCollection_t2982717747 * L_5 = V_0; RuntimeObject* L_6 = ___comparer1; NullCheck(L_5); PropertyDescriptorCollection_InternalSort_m1151047326(L_5, L_6, /*hidden argument*/NULL); ArrayList_t4277734320 * L_7 = V_1; PropertyDescriptorCollection_t2982717747 * L_8 = V_0; NullCheck(L_8); ArrayList_t4277734320 * L_9 = L_8->get_properties_1(); NullCheck(L_7); VirtActionInvoker1< RuntimeObject* >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_7, L_9); PropertyDescriptorCollection_t2982717747 * L_10 = V_0; ArrayList_t4277734320 * L_11 = V_1; NullCheck(L_10); L_10->set_properties_1(L_11); goto IL_003b; } IL_0034: { PropertyDescriptorCollection_t2982717747 * L_12 = V_0; RuntimeObject* L_13 = ___comparer1; NullCheck(L_12); PropertyDescriptorCollection_InternalSort_m1151047326(L_12, L_13, /*hidden argument*/NULL); } IL_003b: { PropertyDescriptorCollection_t2982717747 * L_14 = V_0; return L_14; } } // System.Void System.ComponentModel.PropertyDescriptorCollection::InternalSort(System.Collections.IComparer) extern "C" void PropertyDescriptorCollection_InternalSort_m1151047326 (PropertyDescriptorCollection_t2982717747 * __this, RuntimeObject* ___ic0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___ic0; if (L_0) { goto IL_000d; } } { RuntimeObject* L_1 = MemberDescriptor_get_DefaultComparer_m594962505(NULL /*static, unused*/, /*hidden argument*/NULL); ___ic0 = L_1; } IL_000d: { ArrayList_t4277734320 * L_2 = __this->get_properties_1(); RuntimeObject* L_3 = ___ic0; NullCheck(L_2); VirtActionInvoker1< RuntimeObject* >::Invoke(46 /* System.Void System.Collections.ArrayList::Sort(System.Collections.IComparer) */, L_2, L_3); return; } } // System.Void System.ComponentModel.PropertyDescriptorCollection::InternalSort(System.String[]) extern "C" void PropertyDescriptorCollection_InternalSort_m1985073176 (PropertyDescriptorCollection_t2982717747 * __this, StringU5BU5D_t1187188029* ___order0, const RuntimeMethod* method) { ArrayList_t4277734320 * V_0 = NULL; { StringU5BU5D_t1187188029* L_0 = ___order0; if (!L_0) { goto IL_002d; } } { StringU5BU5D_t1187188029* L_1 = ___order0; ArrayList_t4277734320 * L_2 = PropertyDescriptorCollection_ExtractItems_m494224890(__this, L_1, /*hidden argument*/NULL); V_0 = L_2; PropertyDescriptorCollection_InternalSort_m1151047326(__this, (RuntimeObject*)NULL, /*hidden argument*/NULL); ArrayList_t4277734320 * L_3 = V_0; ArrayList_t4277734320 * L_4 = __this->get_properties_1(); NullCheck(L_3); VirtActionInvoker1< RuntimeObject* >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_3, L_4); ArrayList_t4277734320 * L_5 = V_0; __this->set_properties_1(L_5); goto IL_0034; } IL_002d: { PropertyDescriptorCollection_InternalSort_m1151047326(__this, (RuntimeObject*)NULL, /*hidden argument*/NULL); } IL_0034: { return; } } // System.Collections.ArrayList System.ComponentModel.PropertyDescriptorCollection::ExtractItems(System.String[]) extern "C" ArrayList_t4277734320 * PropertyDescriptorCollection_ExtractItems_m494224890 (PropertyDescriptorCollection_t2982717747 * __this, StringU5BU5D_t1187188029* ___names0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_ExtractItems_m494224890_MetadataUsageId); s_Il2CppMethodInitialized = true; } ArrayList_t4277734320 * V_0 = NULL; ObjectU5BU5D_t4199014551* V_1 = NULL; int32_t V_2 = 0; PropertyDescriptor_t2555988069 * V_3 = NULL; int32_t V_4 = 0; RuntimeObject * V_5 = NULL; ObjectU5BU5D_t4199014551* V_6 = NULL; int32_t V_7 = 0; { ArrayList_t4277734320 * L_0 = __this->get_properties_1(); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0); ArrayList_t4277734320 * L_2 = (ArrayList_t4277734320 *)il2cpp_codegen_object_new(ArrayList_t4277734320_il2cpp_TypeInfo_var); ArrayList__ctor_m4276013087(L_2, L_1, /*hidden argument*/NULL); V_0 = L_2; StringU5BU5D_t1187188029* L_3 = ___names0; NullCheck(L_3); V_1 = ((ObjectU5BU5D_t4199014551*)SZArrayNew(ObjectU5BU5D_t4199014551_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))))); V_2 = 0; goto IL_0062; } IL_0021: { ArrayList_t4277734320 * L_4 = __this->get_properties_1(); int32_t L_5 = V_2; NullCheck(L_4); RuntimeObject * L_6 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_4, L_5); V_3 = ((PropertyDescriptor_t2555988069 *)CastclassClass((RuntimeObject*)L_6, PropertyDescriptor_t2555988069_il2cpp_TypeInfo_var)); StringU5BU5D_t1187188029* L_7 = ___names0; PropertyDescriptor_t2555988069 * L_8 = V_3; NullCheck(L_8); String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(13 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_8); int32_t L_10 = Array_IndexOf_TisString_t_m2004360725(NULL /*static, unused*/, L_7, L_9, /*hidden argument*/Array_IndexOf_TisString_t_m2004360725_RuntimeMethod_var); V_4 = L_10; int32_t L_11 = V_4; if ((((int32_t)L_11) == ((int32_t)(-1)))) { goto IL_005e; } } { ObjectU5BU5D_t4199014551* L_12 = V_1; int32_t L_13 = V_4; PropertyDescriptor_t2555988069 * L_14 = V_3; NullCheck(L_12); ArrayElementTypeCheck (L_12, L_14); (L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (RuntimeObject *)L_14); ArrayList_t4277734320 * L_15 = __this->get_properties_1(); int32_t L_16 = V_2; NullCheck(L_15); VirtActionInvoker1< int32_t >::Invoke(39 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, L_15, L_16); int32_t L_17 = V_2; V_2 = ((int32_t)((int32_t)L_17-(int32_t)1)); } IL_005e: { int32_t L_18 = V_2; V_2 = ((int32_t)((int32_t)L_18+(int32_t)1)); } IL_0062: { int32_t L_19 = V_2; ArrayList_t4277734320 * L_20 = __this->get_properties_1(); NullCheck(L_20); int32_t L_21 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_20); if ((((int32_t)L_19) < ((int32_t)L_21))) { goto IL_0021; } } { ObjectU5BU5D_t4199014551* L_22 = V_1; V_6 = L_22; V_7 = 0; goto IL_009b; } IL_007e: { ObjectU5BU5D_t4199014551* L_23 = V_6; int32_t L_24 = V_7; NullCheck(L_23); int32_t L_25 = L_24; RuntimeObject * L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25)); V_5 = L_26; RuntimeObject * L_27 = V_5; if (!L_27) { goto IL_0095; } } { ArrayList_t4277734320 * L_28 = V_0; RuntimeObject * L_29 = V_5; NullCheck(L_28); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_28, L_29); } IL_0095: { int32_t L_30 = V_7; V_7 = ((int32_t)((int32_t)L_30+(int32_t)1)); } IL_009b: { int32_t L_31 = V_7; ObjectU5BU5D_t4199014551* L_32 = V_6; NullCheck(L_32); if ((((int32_t)L_31) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_32)->max_length))))))) { goto IL_007e; } } { ArrayList_t4277734320 * L_33 = V_0; return L_33; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptorCollection::Filter(System.Attribute[]) extern "C" PropertyDescriptorCollection_t2982717747 * PropertyDescriptorCollection_Filter_m1292742525 (PropertyDescriptorCollection_t2982717747 * __this, AttributeU5BU5D_t187261448* ___attributes0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_Filter_m1292742525_MetadataUsageId); s_Il2CppMethodInitialized = true; } ArrayList_t4277734320 * V_0 = NULL; PropertyDescriptor_t2555988069 * V_1 = NULL; RuntimeObject* V_2 = NULL; PropertyDescriptorU5BU5D_t2463291496* V_3 = NULL; RuntimeObject* V_4 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { ArrayList_t4277734320 * L_0 = (ArrayList_t4277734320 *)il2cpp_codegen_object_new(ArrayList_t4277734320_il2cpp_TypeInfo_var); ArrayList__ctor_m3769859358(L_0, /*hidden argument*/NULL); V_0 = L_0; ArrayList_t4277734320 * L_1 = __this->get_properties_1(); NullCheck(L_1); RuntimeObject* L_2 = VirtFuncInvoker0< RuntimeObject* >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_1); V_2 = L_2; } IL_0012: try { // begin try (depth: 1) { goto IL_003c; } IL_0017: { RuntimeObject* L_3 = V_2; NullCheck(L_3); RuntimeObject * L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1868781825_il2cpp_TypeInfo_var, L_3); V_1 = ((PropertyDescriptor_t2555988069 *)CastclassClass((RuntimeObject*)L_4, PropertyDescriptor_t2555988069_il2cpp_TypeInfo_var)); PropertyDescriptor_t2555988069 * L_5 = V_1; NullCheck(L_5); AttributeCollection_t3634739288 * L_6 = VirtFuncInvoker0< AttributeCollection_t3634739288 * >::Invoke(7 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, L_5); AttributeU5BU5D_t187261448* L_7 = ___attributes0; NullCheck(L_6); bool L_8 = AttributeCollection_Contains_m2230923291(L_6, L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_003c; } } IL_0034: { ArrayList_t4277734320 * L_9 = V_0; PropertyDescriptor_t2555988069 * L_10 = V_1; NullCheck(L_9); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_9, L_10); } IL_003c: { RuntimeObject* L_11 = V_2; NullCheck(L_11); bool L_12 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1868781825_il2cpp_TypeInfo_var, L_11); if (L_12) { goto IL_0017; } } IL_0047: { IL2CPP_LEAVE(0x61, FINALLY_004c); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_004c; } FINALLY_004c: { // begin finally (depth: 1) { RuntimeObject* L_13 = V_2; V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_13, IDisposable_t3750220212_il2cpp_TypeInfo_var)); RuntimeObject* L_14 = V_4; if (L_14) { goto IL_0059; } } IL_0058: { IL2CPP_END_FINALLY(76) } IL_0059: { RuntimeObject* L_15 = V_4; NullCheck(L_15); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3750220212_il2cpp_TypeInfo_var, L_15); IL2CPP_END_FINALLY(76) } } // end finally (depth: 1) IL2CPP_CLEANUP(76) { IL2CPP_JUMP_TBL(0x61, IL_0061) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_0061: { ArrayList_t4277734320 * L_16 = V_0; NullCheck(L_16); int32_t L_17 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_16); V_3 = ((PropertyDescriptorU5BU5D_t2463291496*)SZArrayNew(PropertyDescriptorU5BU5D_t2463291496_il2cpp_TypeInfo_var, (uint32_t)L_17)); ArrayList_t4277734320 * L_18 = V_0; PropertyDescriptorU5BU5D_t2463291496* L_19 = V_3; NullCheck(L_18); VirtActionInvoker1< RuntimeArray * >::Invoke(40 /* System.Void System.Collections.ArrayList::CopyTo(System.Array) */, L_18, (RuntimeArray *)(RuntimeArray *)L_19); PropertyDescriptorU5BU5D_t2463291496* L_20 = V_3; PropertyDescriptorCollection_t2982717747 * L_21 = (PropertyDescriptorCollection_t2982717747 *)il2cpp_codegen_object_new(PropertyDescriptorCollection_t2982717747_il2cpp_TypeInfo_var); PropertyDescriptorCollection__ctor_m3850586682(L_21, L_20, (bool)1, /*hidden argument*/NULL); return L_21; } } // System.Int32 System.ComponentModel.PropertyDescriptorCollection::get_Count() extern "C" int32_t PropertyDescriptorCollection_get_Count_m1331030086 (PropertyDescriptorCollection_t2982717747 * __this, const RuntimeMethod* method) { { ArrayList_t4277734320 * L_0 = __this->get_properties_1(); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0); return L_1; } } // System.ComponentModel.PropertyDescriptor System.ComponentModel.PropertyDescriptorCollection::get_Item(System.String) extern "C" PropertyDescriptor_t2555988069 * PropertyDescriptorCollection_get_Item_m3736026381 (PropertyDescriptorCollection_t2982717747 * __this, String_t* ___s0, const RuntimeMethod* method) { { String_t* L_0 = ___s0; PropertyDescriptor_t2555988069 * L_1 = VirtFuncInvoker2< PropertyDescriptor_t2555988069 *, String_t*, bool >::Invoke(32 /* System.ComponentModel.PropertyDescriptor System.ComponentModel.PropertyDescriptorCollection::Find(System.String,System.Boolean) */, __this, L_0, (bool)0); return L_1; } } // System.ComponentModel.PropertyDescriptor System.ComponentModel.PropertyDescriptorCollection::get_Item(System.Int32) extern "C" PropertyDescriptor_t2555988069 * PropertyDescriptorCollection_get_Item_m556665008 (PropertyDescriptorCollection_t2982717747 * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyDescriptorCollection_get_Item_m556665008_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ArrayList_t4277734320 * L_0 = __this->get_properties_1(); int32_t L_1 = ___index0; NullCheck(L_0); RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1); return ((PropertyDescriptor_t2555988069 *)CastclassClass((RuntimeObject*)L_2, PropertyDescriptor_t2555988069_il2cpp_TypeInfo_var)); } } // System.Void System.ComponentModel.ReadOnlyAttribute::.ctor(System.Boolean) extern "C" void ReadOnlyAttribute__ctor_m1220985150 (ReadOnlyAttribute_t1832938840 * __this, bool ___read_only0, const RuntimeMethod* method) { { Attribute__ctor_m3216322730(__this, /*hidden argument*/NULL); bool L_0 = ___read_only0; __this->set_read_only_0(L_0); return; } } // System.Void System.ComponentModel.ReadOnlyAttribute::.cctor() extern "C" void ReadOnlyAttribute__cctor_m245114436 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReadOnlyAttribute__cctor_m245114436_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ReadOnlyAttribute_t1832938840 * L_0 = (ReadOnlyAttribute_t1832938840 *)il2cpp_codegen_object_new(ReadOnlyAttribute_t1832938840_il2cpp_TypeInfo_var); ReadOnlyAttribute__ctor_m1220985150(L_0, (bool)0, /*hidden argument*/NULL); ((ReadOnlyAttribute_t1832938840_StaticFields*)il2cpp_codegen_static_fields_for(ReadOnlyAttribute_t1832938840_il2cpp_TypeInfo_var))->set_No_1(L_0); ReadOnlyAttribute_t1832938840 * L_1 = (ReadOnlyAttribute_t1832938840 *)il2cpp_codegen_object_new(ReadOnlyAttribute_t1832938840_il2cpp_TypeInfo_var); ReadOnlyAttribute__ctor_m1220985150(L_1, (bool)1, /*hidden argument*/NULL); ((ReadOnlyAttribute_t1832938840_StaticFields*)il2cpp_codegen_static_fields_for(ReadOnlyAttribute_t1832938840_il2cpp_TypeInfo_var))->set_Yes_2(L_1); ReadOnlyAttribute_t1832938840 * L_2 = (ReadOnlyAttribute_t1832938840 *)il2cpp_codegen_object_new(ReadOnlyAttribute_t1832938840_il2cpp_TypeInfo_var); ReadOnlyAttribute__ctor_m1220985150(L_2, (bool)0, /*hidden argument*/NULL); ((ReadOnlyAttribute_t1832938840_StaticFields*)il2cpp_codegen_static_fields_for(ReadOnlyAttribute_t1832938840_il2cpp_TypeInfo_var))->set_Default_3(L_2); return; } } // System.Boolean System.ComponentModel.ReadOnlyAttribute::get_IsReadOnly() extern "C" bool ReadOnlyAttribute_get_IsReadOnly_m3734666292 (ReadOnlyAttribute_t1832938840 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_read_only_0(); return L_0; } } // System.Int32 System.ComponentModel.ReadOnlyAttribute::GetHashCode() extern "C" int32_t ReadOnlyAttribute_GetHashCode_m77547619 (ReadOnlyAttribute_t1832938840 * __this, const RuntimeMethod* method) { { bool* L_0 = __this->get_address_of_read_only_0(); int32_t L_1 = Boolean_GetHashCode_m2529840312(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.ComponentModel.ReadOnlyAttribute::Equals(System.Object) extern "C" bool ReadOnlyAttribute_Equals_m3730980055 (ReadOnlyAttribute_t1832938840 * __this, RuntimeObject * ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReadOnlyAttribute_Equals_m3730980055_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { RuntimeObject * L_0 = ___o0; if (((ReadOnlyAttribute_t1832938840 *)IsInstSealed((RuntimeObject*)L_0, ReadOnlyAttribute_t1832938840_il2cpp_TypeInfo_var))) { goto IL_000d; } } { return (bool)0; } IL_000d: { RuntimeObject * L_1 = ___o0; NullCheck(((ReadOnlyAttribute_t1832938840 *)CastclassSealed((RuntimeObject*)L_1, ReadOnlyAttribute_t1832938840_il2cpp_TypeInfo_var))); bool L_2 = ReadOnlyAttribute_get_IsReadOnly_m3734666292(((ReadOnlyAttribute_t1832938840 *)CastclassSealed((RuntimeObject*)L_1, ReadOnlyAttribute_t1832938840_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_0 = L_2; bool L_3 = __this->get_read_only_0(); bool L_4 = Boolean_Equals_m1814344042((&V_0), L_3, /*hidden argument*/NULL); return L_4; } } // System.Boolean System.ComponentModel.ReadOnlyAttribute::IsDefaultAttribute() extern "C" bool ReadOnlyAttribute_IsDefaultAttribute_m2860330304 (ReadOnlyAttribute_t1832938840 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReadOnlyAttribute_IsDefaultAttribute_m2860330304_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ReadOnlyAttribute_t1832938840_il2cpp_TypeInfo_var); ReadOnlyAttribute_t1832938840 * L_0 = ((ReadOnlyAttribute_t1832938840_StaticFields*)il2cpp_codegen_static_fields_for(ReadOnlyAttribute_t1832938840_il2cpp_TypeInfo_var))->get_Default_3(); bool L_1 = ReadOnlyAttribute_Equals_m3730980055(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Void System.ComponentModel.RecommendedAsConfigurableAttribute::.ctor(System.Boolean) extern "C" void RecommendedAsConfigurableAttribute__ctor_m237057204 (RecommendedAsConfigurableAttribute_t2486032475 * __this, bool ___recommendedAsConfigurable0, const RuntimeMethod* method) { { Attribute__ctor_m3216322730(__this, /*hidden argument*/NULL); bool L_0 = ___recommendedAsConfigurable0; __this->set_recommendedAsConfigurable_0(L_0); return; } } // System.Void System.ComponentModel.RecommendedAsConfigurableAttribute::.cctor() extern "C" void RecommendedAsConfigurableAttribute__cctor_m1547614076 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RecommendedAsConfigurableAttribute__cctor_m1547614076_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RecommendedAsConfigurableAttribute_t2486032475 * L_0 = (RecommendedAsConfigurableAttribute_t2486032475 *)il2cpp_codegen_object_new(RecommendedAsConfigurableAttribute_t2486032475_il2cpp_TypeInfo_var); RecommendedAsConfigurableAttribute__ctor_m237057204(L_0, (bool)0, /*hidden argument*/NULL); ((RecommendedAsConfigurableAttribute_t2486032475_StaticFields*)il2cpp_codegen_static_fields_for(RecommendedAsConfigurableAttribute_t2486032475_il2cpp_TypeInfo_var))->set_Default_1(L_0); RecommendedAsConfigurableAttribute_t2486032475 * L_1 = (RecommendedAsConfigurableAttribute_t2486032475 *)il2cpp_codegen_object_new(RecommendedAsConfigurableAttribute_t2486032475_il2cpp_TypeInfo_var); RecommendedAsConfigurableAttribute__ctor_m237057204(L_1, (bool)0, /*hidden argument*/NULL); ((RecommendedAsConfigurableAttribute_t2486032475_StaticFields*)il2cpp_codegen_static_fields_for(RecommendedAsConfigurableAttribute_t2486032475_il2cpp_TypeInfo_var))->set_No_2(L_1); RecommendedAsConfigurableAttribute_t2486032475 * L_2 = (RecommendedAsConfigurableAttribute_t2486032475 *)il2cpp_codegen_object_new(RecommendedAsConfigurableAttribute_t2486032475_il2cpp_TypeInfo_var); RecommendedAsConfigurableAttribute__ctor_m237057204(L_2, (bool)1, /*hidden argument*/NULL); ((RecommendedAsConfigurableAttribute_t2486032475_StaticFields*)il2cpp_codegen_static_fields_for(RecommendedAsConfigurableAttribute_t2486032475_il2cpp_TypeInfo_var))->set_Yes_3(L_2); return; } } // System.Boolean System.ComponentModel.RecommendedAsConfigurableAttribute::get_RecommendedAsConfigurable() extern "C" bool RecommendedAsConfigurableAttribute_get_RecommendedAsConfigurable_m1001760261 (RecommendedAsConfigurableAttribute_t2486032475 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_recommendedAsConfigurable_0(); return L_0; } } // System.Boolean System.ComponentModel.RecommendedAsConfigurableAttribute::Equals(System.Object) extern "C" bool RecommendedAsConfigurableAttribute_Equals_m3914849213 (RecommendedAsConfigurableAttribute_t2486032475 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RecommendedAsConfigurableAttribute_Equals_m3914849213_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; if (((RecommendedAsConfigurableAttribute_t2486032475 *)IsInstClass((RuntimeObject*)L_0, RecommendedAsConfigurableAttribute_t2486032475_il2cpp_TypeInfo_var))) { goto IL_000d; } } { return (bool)0; } IL_000d: { RuntimeObject * L_1 = ___obj0; NullCheck(((RecommendedAsConfigurableAttribute_t2486032475 *)CastclassClass((RuntimeObject*)L_1, RecommendedAsConfigurableAttribute_t2486032475_il2cpp_TypeInfo_var))); bool L_2 = RecommendedAsConfigurableAttribute_get_RecommendedAsConfigurable_m1001760261(((RecommendedAsConfigurableAttribute_t2486032475 *)CastclassClass((RuntimeObject*)L_1, RecommendedAsConfigurableAttribute_t2486032475_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); bool L_3 = __this->get_recommendedAsConfigurable_0(); return (bool)((((int32_t)L_2) == ((int32_t)L_3))? 1 : 0); } } // System.Int32 System.ComponentModel.RecommendedAsConfigurableAttribute::GetHashCode() extern "C" int32_t RecommendedAsConfigurableAttribute_GetHashCode_m4206999915 (RecommendedAsConfigurableAttribute_t2486032475 * __this, const RuntimeMethod* method) { { bool* L_0 = __this->get_address_of_recommendedAsConfigurable_0(); int32_t L_1 = Boolean_GetHashCode_m2529840312(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.ComponentModel.RecommendedAsConfigurableAttribute::IsDefaultAttribute() extern "C" bool RecommendedAsConfigurableAttribute_IsDefaultAttribute_m429313243 (RecommendedAsConfigurableAttribute_t2486032475 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RecommendedAsConfigurableAttribute_IsDefaultAttribute_m429313243_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_recommendedAsConfigurable_0(); IL2CPP_RUNTIME_CLASS_INIT(RecommendedAsConfigurableAttribute_t2486032475_il2cpp_TypeInfo_var); RecommendedAsConfigurableAttribute_t2486032475 * L_1 = ((RecommendedAsConfigurableAttribute_t2486032475_StaticFields*)il2cpp_codegen_static_fields_for(RecommendedAsConfigurableAttribute_t2486032475_il2cpp_TypeInfo_var))->get_Default_1(); NullCheck(L_1); bool L_2 = RecommendedAsConfigurableAttribute_get_RecommendedAsConfigurable_m1001760261(L_1, /*hidden argument*/NULL); return (bool)((((int32_t)L_0) == ((int32_t)L_2))? 1 : 0); } } // System.Void System.ComponentModel.ReferenceConverter::.ctor(System.Type) extern "C" void ReferenceConverter__ctor_m1145468357 (ReferenceConverter_t3578457296 * __this, Type_t * ___type0, const RuntimeMethod* method) { { TypeConverter__ctor_m3014391247(__this, /*hidden argument*/NULL); Type_t * L_0 = ___type0; __this->set_reference_type_0(L_0); return; } } // System.Boolean System.ComponentModel.ReferenceConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type) extern "C" bool ReferenceConverter_CanConvertFrom_m1210783849 (ReferenceConverter_t3578457296 * __this, RuntimeObject* ___context0, Type_t * ___sourceType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReferenceConverter_CanConvertFrom_m1210783849_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___context0; if (!L_0) { goto IL_0018; } } { Type_t * L_1 = ___sourceType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_1) == ((RuntimeObject*)(Type_t *)L_2)))) { goto IL_0018; } } { return (bool)1; } IL_0018: { RuntimeObject* L_3 = ___context0; Type_t * L_4 = ___sourceType1; bool L_5 = TypeConverter_CanConvertFrom_m2108188258(__this, L_3, L_4, /*hidden argument*/NULL); return L_5; } } // System.Object System.ComponentModel.ReferenceConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object) extern "C" RuntimeObject * ReferenceConverter_ConvertFrom_m4224761346 (ReferenceConverter_t3578457296 * __this, RuntimeObject* ___context0, CultureInfo_t270095993 * ___culture1, RuntimeObject * ___value2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReferenceConverter_ConvertFrom_m4224761346_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; RuntimeObject* V_1 = NULL; { RuntimeObject * L_0 = ___value2; if (((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var))) { goto IL_0015; } } { RuntimeObject* L_1 = ___context0; CultureInfo_t270095993 * L_2 = ___culture1; RuntimeObject * L_3 = ___value2; RuntimeObject * L_4 = TypeConverter_ConvertFrom_m3891144487(__this, L_1, L_2, L_3, /*hidden argument*/NULL); return L_4; } IL_0015: { RuntimeObject* L_5 = ___context0; if (!L_5) { goto IL_0080; } } { V_0 = NULL; RuntimeObject* L_6 = ___context0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(IReferenceService_t1989563918_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_6); RuntimeObject * L_8 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4067527398_il2cpp_TypeInfo_var, L_6, L_7); V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_8, IReferenceService_t1989563918_il2cpp_TypeInfo_var)); RuntimeObject* L_9 = V_1; if (!L_9) { goto IL_0046; } } { RuntimeObject* L_10 = V_1; RuntimeObject * L_11 = ___value2; NullCheck(L_10); RuntimeObject * L_12 = InterfaceFuncInvoker1< RuntimeObject *, String_t* >::Invoke(1 /* System.Object System.ComponentModel.Design.IReferenceService::GetReference(System.String) */, IReferenceService_t1989563918_il2cpp_TypeInfo_var, L_10, ((String_t*)CastclassSealed((RuntimeObject*)L_11, String_t_il2cpp_TypeInfo_var))); V_0 = L_12; } IL_0046: { RuntimeObject * L_13 = V_0; if (L_13) { goto IL_007e; } } { RuntimeObject* L_14 = ___context0; NullCheck(L_14); RuntimeObject* L_15 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.IContainer System.ComponentModel.ITypeDescriptorContext::get_Container() */, ITypeDescriptorContext_t4280479393_il2cpp_TypeInfo_var, L_14); if (!L_15) { goto IL_007e; } } { RuntimeObject* L_16 = ___context0; NullCheck(L_16); RuntimeObject* L_17 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.IContainer System.ComponentModel.ITypeDescriptorContext::get_Container() */, ITypeDescriptorContext_t4280479393_il2cpp_TypeInfo_var, L_16); NullCheck(L_17); ComponentCollection_t3558559141 * L_18 = InterfaceFuncInvoker0< ComponentCollection_t3558559141 * >::Invoke(0 /* System.ComponentModel.ComponentCollection System.ComponentModel.IContainer::get_Components() */, IContainer_t3139755115_il2cpp_TypeInfo_var, L_17); if (!L_18) { goto IL_007e; } } { RuntimeObject* L_19 = ___context0; NullCheck(L_19); RuntimeObject* L_20 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.IContainer System.ComponentModel.ITypeDescriptorContext::get_Container() */, ITypeDescriptorContext_t4280479393_il2cpp_TypeInfo_var, L_19); NullCheck(L_20); ComponentCollection_t3558559141 * L_21 = InterfaceFuncInvoker0< ComponentCollection_t3558559141 * >::Invoke(0 /* System.ComponentModel.ComponentCollection System.ComponentModel.IContainer::get_Components() */, IContainer_t3139755115_il2cpp_TypeInfo_var, L_20); RuntimeObject * L_22 = ___value2; NullCheck(L_21); RuntimeObject* L_23 = VirtFuncInvoker1< RuntimeObject*, String_t* >::Invoke(12 /* System.ComponentModel.IComponent System.ComponentModel.ComponentCollection::get_Item(System.String) */, L_21, ((String_t*)CastclassSealed((RuntimeObject*)L_22, String_t_il2cpp_TypeInfo_var))); V_0 = L_23; } IL_007e: { RuntimeObject * L_24 = V_0; return L_24; } IL_0080: { return NULL; } } // System.Object System.ComponentModel.ReferenceConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type) extern "C" RuntimeObject * ReferenceConverter_ConvertTo_m1281719135 (ReferenceConverter_t3578457296 * __this, RuntimeObject* ___context0, CultureInfo_t270095993 * ___culture1, RuntimeObject * ___value2, Type_t * ___destinationType3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReferenceConverter_ConvertTo_m1281719135_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; RuntimeObject* V_1 = NULL; RuntimeObject* V_2 = NULL; { Type_t * L_0 = ___destinationType3; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(Type_t *)L_1))) { goto IL_001d; } } { RuntimeObject* L_2 = ___context0; CultureInfo_t270095993 * L_3 = ___culture1; RuntimeObject * L_4 = ___value2; Type_t * L_5 = ___destinationType3; RuntimeObject * L_6 = TypeConverter_ConvertTo_m4033528233(__this, L_2, L_3, L_4, L_5, /*hidden argument*/NULL); return L_6; } IL_001d: { RuntimeObject * L_7 = ___value2; if (L_7) { goto IL_0029; } } { return _stringLiteral298487288; } IL_0029: { IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_8 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); V_0 = L_8; RuntimeObject* L_9 = ___context0; if (!L_9) { goto IL_00a3; } } { RuntimeObject* L_10 = ___context0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_11 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(IReferenceService_t1989563918_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_10); RuntimeObject * L_12 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4067527398_il2cpp_TypeInfo_var, L_10, L_11); V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_12, IReferenceService_t1989563918_il2cpp_TypeInfo_var)); RuntimeObject* L_13 = V_1; if (!L_13) { goto IL_0059; } } { RuntimeObject* L_14 = V_1; RuntimeObject * L_15 = ___value2; NullCheck(L_14); String_t* L_16 = InterfaceFuncInvoker1< String_t*, RuntimeObject * >::Invoke(0 /* System.String System.ComponentModel.Design.IReferenceService::GetName(System.Object) */, IReferenceService_t1989563918_il2cpp_TypeInfo_var, L_14, L_15); V_0 = L_16; } IL_0059: { String_t* L_17 = V_0; if (!L_17) { goto IL_006a; } } { String_t* L_18 = V_0; NullCheck(L_18); int32_t L_19 = String_get_Length_m2584136399(L_18, /*hidden argument*/NULL); if (L_19) { goto IL_00a3; } } IL_006a: { RuntimeObject * L_20 = ___value2; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_20, IComponent_t63236301_il2cpp_TypeInfo_var))) { goto IL_00a3; } } { RuntimeObject * L_21 = ___value2; V_2 = ((RuntimeObject*)Castclass((RuntimeObject*)L_21, IComponent_t63236301_il2cpp_TypeInfo_var)); RuntimeObject* L_22 = V_2; NullCheck(L_22); RuntimeObject* L_23 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t63236301_il2cpp_TypeInfo_var, L_22); if (!L_23) { goto IL_00a3; } } { RuntimeObject* L_24 = V_2; NullCheck(L_24); RuntimeObject* L_25 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t63236301_il2cpp_TypeInfo_var, L_24); NullCheck(L_25); String_t* L_26 = InterfaceFuncInvoker0< String_t* >::Invoke(3 /* System.String System.ComponentModel.ISite::get_Name() */, ISite_t2490093357_il2cpp_TypeInfo_var, L_25); if (!L_26) { goto IL_00a3; } } { RuntimeObject* L_27 = V_2; NullCheck(L_27); RuntimeObject* L_28 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t63236301_il2cpp_TypeInfo_var, L_27); NullCheck(L_28); String_t* L_29 = InterfaceFuncInvoker0< String_t* >::Invoke(3 /* System.String System.ComponentModel.ISite::get_Name() */, ISite_t2490093357_il2cpp_TypeInfo_var, L_28); V_0 = L_29; } IL_00a3: { String_t* L_30 = V_0; return L_30; } } // System.ComponentModel.TypeConverter/StandardValuesCollection System.ComponentModel.ReferenceConverter::GetStandardValues(System.ComponentModel.ITypeDescriptorContext) extern "C" StandardValuesCollection_t884959189 * ReferenceConverter_GetStandardValues_m3748980514 (ReferenceConverter_t3578457296 * __this, RuntimeObject* ___context0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReferenceConverter_GetStandardValues_m3748980514_MetadataUsageId); s_Il2CppMethodInitialized = true; } ArrayList_t4277734320 * V_0 = NULL; RuntimeObject* V_1 = NULL; RuntimeObject * V_2 = NULL; ObjectU5BU5D_t4199014551* V_3 = NULL; int32_t V_4 = 0; RuntimeObject * V_5 = NULL; RuntimeObject* V_6 = NULL; RuntimeObject* V_7 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { ArrayList_t4277734320 * L_0 = (ArrayList_t4277734320 *)il2cpp_codegen_object_new(ArrayList_t4277734320_il2cpp_TypeInfo_var); ArrayList__ctor_m3769859358(L_0, /*hidden argument*/NULL); V_0 = L_0; RuntimeObject* L_1 = ___context0; if (!L_1) { goto IL_0106; } } { RuntimeObject* L_2 = ___context0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_3 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(IReferenceService_t1989563918_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_2); RuntimeObject * L_4 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4067527398_il2cpp_TypeInfo_var, L_2, L_3); V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_4, IReferenceService_t1989563918_il2cpp_TypeInfo_var)); RuntimeObject* L_5 = V_1; if (!L_5) { goto IL_006c; } } { RuntimeObject* L_6 = V_1; Type_t * L_7 = __this->get_reference_type_0(); NullCheck(L_6); ObjectU5BU5D_t4199014551* L_8 = InterfaceFuncInvoker1< ObjectU5BU5D_t4199014551*, Type_t * >::Invoke(2 /* System.Object[] System.ComponentModel.Design.IReferenceService::GetReferences(System.Type) */, IReferenceService_t1989563918_il2cpp_TypeInfo_var, L_6, L_7); V_3 = L_8; V_4 = 0; goto IL_005d; } IL_003d: { ObjectU5BU5D_t4199014551* L_9 = V_3; int32_t L_10 = V_4; NullCheck(L_9); int32_t L_11 = L_10; RuntimeObject * L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11)); V_2 = L_12; RuntimeObject* L_13 = ___context0; RuntimeObject * L_14 = V_2; bool L_15 = VirtFuncInvoker2< bool, RuntimeObject*, RuntimeObject * >::Invoke(16 /* System.Boolean System.ComponentModel.ReferenceConverter::IsValueAllowed(System.ComponentModel.ITypeDescriptorContext,System.Object) */, __this, L_13, L_14); if (!L_15) { goto IL_0057; } } { ArrayList_t4277734320 * L_16 = V_0; RuntimeObject * L_17 = V_2; NullCheck(L_16); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_16, L_17); } IL_0057: { int32_t L_18 = V_4; V_4 = ((int32_t)((int32_t)L_18+(int32_t)1)); } IL_005d: { int32_t L_19 = V_4; ObjectU5BU5D_t4199014551* L_20 = V_3; NullCheck(L_20); if ((((int32_t)L_19) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_20)->max_length))))))) { goto IL_003d; } } { goto IL_00fe; } IL_006c: { RuntimeObject* L_21 = ___context0; NullCheck(L_21); RuntimeObject* L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.IContainer System.ComponentModel.ITypeDescriptorContext::get_Container() */, ITypeDescriptorContext_t4280479393_il2cpp_TypeInfo_var, L_21); if (!L_22) { goto IL_00fe; } } { RuntimeObject* L_23 = ___context0; NullCheck(L_23); RuntimeObject* L_24 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.IContainer System.ComponentModel.ITypeDescriptorContext::get_Container() */, ITypeDescriptorContext_t4280479393_il2cpp_TypeInfo_var, L_23); NullCheck(L_24); ComponentCollection_t3558559141 * L_25 = InterfaceFuncInvoker0< ComponentCollection_t3558559141 * >::Invoke(0 /* System.ComponentModel.ComponentCollection System.ComponentModel.IContainer::get_Components() */, IContainer_t3139755115_il2cpp_TypeInfo_var, L_24); if (!L_25) { goto IL_00fe; } } { RuntimeObject* L_26 = ___context0; NullCheck(L_26); RuntimeObject* L_27 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.IContainer System.ComponentModel.ITypeDescriptorContext::get_Container() */, ITypeDescriptorContext_t4280479393_il2cpp_TypeInfo_var, L_26); NullCheck(L_27); ComponentCollection_t3558559141 * L_28 = InterfaceFuncInvoker0< ComponentCollection_t3558559141 * >::Invoke(0 /* System.ComponentModel.ComponentCollection System.ComponentModel.IContainer::get_Components() */, IContainer_t3139755115_il2cpp_TypeInfo_var, L_27); NullCheck(L_28); RuntimeObject* L_29 = VirtFuncInvoker0< RuntimeObject* >::Invoke(10 /* System.Collections.IEnumerator System.Collections.ReadOnlyCollectionBase::GetEnumerator() */, L_28); V_6 = L_29; } IL_0099: try { // begin try (depth: 1) { goto IL_00d7; } IL_009e: { RuntimeObject* L_30 = V_6; NullCheck(L_30); RuntimeObject * L_31 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1868781825_il2cpp_TypeInfo_var, L_30); V_5 = L_31; RuntimeObject * L_32 = V_5; if (!L_32) { goto IL_00d7; } } IL_00ae: { RuntimeObject* L_33 = ___context0; RuntimeObject * L_34 = V_5; bool L_35 = VirtFuncInvoker2< bool, RuntimeObject*, RuntimeObject * >::Invoke(16 /* System.Boolean System.ComponentModel.ReferenceConverter::IsValueAllowed(System.ComponentModel.ITypeDescriptorContext,System.Object) */, __this, L_33, L_34); if (!L_35) { goto IL_00d7; } } IL_00bc: { Type_t * L_36 = __this->get_reference_type_0(); RuntimeObject * L_37 = V_5; NullCheck(L_36); bool L_38 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(42 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_36, L_37); if (!L_38) { goto IL_00d7; } } IL_00ce: { ArrayList_t4277734320 * L_39 = V_0; RuntimeObject * L_40 = V_5; NullCheck(L_39); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_39, L_40); } IL_00d7: { RuntimeObject* L_41 = V_6; NullCheck(L_41); bool L_42 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1868781825_il2cpp_TypeInfo_var, L_41); if (L_42) { goto IL_009e; } } IL_00e3: { IL2CPP_LEAVE(0xFE, FINALLY_00e8); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_00e8; } FINALLY_00e8: { // begin finally (depth: 1) { RuntimeObject* L_43 = V_6; V_7 = ((RuntimeObject*)IsInst((RuntimeObject*)L_43, IDisposable_t3750220212_il2cpp_TypeInfo_var)); RuntimeObject* L_44 = V_7; if (L_44) { goto IL_00f6; } } IL_00f5: { IL2CPP_END_FINALLY(232) } IL_00f6: { RuntimeObject* L_45 = V_7; NullCheck(L_45); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3750220212_il2cpp_TypeInfo_var, L_45); IL2CPP_END_FINALLY(232) } } // end finally (depth: 1) IL2CPP_CLEANUP(232) { IL2CPP_JUMP_TBL(0xFE, IL_00fe) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_00fe: { ArrayList_t4277734320 * L_46 = V_0; NullCheck(L_46); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_46, NULL); } IL_0106: { ArrayList_t4277734320 * L_47 = V_0; StandardValuesCollection_t884959189 * L_48 = (StandardValuesCollection_t884959189 *)il2cpp_codegen_object_new(StandardValuesCollection_t884959189_il2cpp_TypeInfo_var); StandardValuesCollection__ctor_m97593915(L_48, L_47, /*hidden argument*/NULL); return L_48; } } // System.Boolean System.ComponentModel.ReferenceConverter::GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext) extern "C" bool ReferenceConverter_GetStandardValuesExclusive_m2616328169 (ReferenceConverter_t3578457296 * __this, RuntimeObject* ___context0, const RuntimeMethod* method) { { return (bool)1; } } // System.Boolean System.ComponentModel.ReferenceConverter::GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext) extern "C" bool ReferenceConverter_GetStandardValuesSupported_m4016456889 (ReferenceConverter_t3578457296 * __this, RuntimeObject* ___context0, const RuntimeMethod* method) { { return (bool)1; } } // System.Boolean System.ComponentModel.ReferenceConverter::IsValueAllowed(System.ComponentModel.ITypeDescriptorContext,System.Object) extern "C" bool ReferenceConverter_IsValueAllowed_m862582551 (ReferenceConverter_t3578457296 * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.ComponentModel.ReflectionEventDescriptor::.ctor(System.Reflection.EventInfo) extern "C" void ReflectionEventDescriptor__ctor_m467625783 (ReflectionEventDescriptor_t4023907121 * __this, EventInfo_t * ___eventInfo0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReflectionEventDescriptor__ctor_m467625783_MetadataUsageId); s_Il2CppMethodInitialized = true; } { EventInfo_t * L_0 = ___eventInfo0; NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_0); EventInfo_t * L_2 = ___eventInfo0; NullCheck(L_2); ObjectU5BU5D_t4199014551* L_3 = VirtFuncInvoker1< ObjectU5BU5D_t4199014551*, bool >::Invoke(12 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Boolean) */, L_2, (bool)1); EventDescriptor__ctor_m1718751552(__this, L_1, ((AttributeU5BU5D_t187261448*)Castclass((RuntimeObject*)L_3, AttributeU5BU5D_t187261448_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); EventInfo_t * L_4 = ___eventInfo0; __this->set__eventInfo_6(L_4); EventInfo_t * L_5 = ___eventInfo0; NullCheck(L_5); Type_t * L_6 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_5); __this->set__componentType_5(L_6); EventInfo_t * L_7 = ___eventInfo0; NullCheck(L_7); Type_t * L_8 = EventInfo_get_EventHandlerType_m2365299964(L_7, /*hidden argument*/NULL); __this->set__eventType_4(L_8); EventInfo_t * L_9 = ___eventInfo0; NullCheck(L_9); MethodInfo_t * L_10 = EventInfo_GetAddMethod_m3339908821(L_9, /*hidden argument*/NULL); __this->set_add_method_7(L_10); EventInfo_t * L_11 = ___eventInfo0; NullCheck(L_11); MethodInfo_t * L_12 = EventInfo_GetRemoveMethod_m4099505678(L_11, /*hidden argument*/NULL); __this->set_remove_method_8(L_12); return; } } // System.Void System.ComponentModel.ReflectionEventDescriptor::.ctor(System.Type,System.ComponentModel.EventDescriptor,System.Attribute[]) extern "C" void ReflectionEventDescriptor__ctor_m1990245723 (ReflectionEventDescriptor_t4023907121 * __this, Type_t * ___componentType0, EventDescriptor_t3701426622 * ___oldEventDescriptor1, AttributeU5BU5D_t187261448* ___attrs2, const RuntimeMethod* method) { EventInfo_t * V_0 = NULL; { EventDescriptor_t3701426622 * L_0 = ___oldEventDescriptor1; AttributeU5BU5D_t187261448* L_1 = ___attrs2; EventDescriptor__ctor_m734671843(__this, L_0, L_1, /*hidden argument*/NULL); Type_t * L_2 = ___componentType0; __this->set__componentType_5(L_2); EventDescriptor_t3701426622 * L_3 = ___oldEventDescriptor1; NullCheck(L_3); Type_t * L_4 = VirtFuncInvoker0< Type_t * >::Invoke(20 /* System.Type System.ComponentModel.EventDescriptor::get_EventType() */, L_3); __this->set__eventType_4(L_4); Type_t * L_5 = ___componentType0; EventDescriptor_t3701426622 * L_6 = ___oldEventDescriptor1; NullCheck(L_6); String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(13 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_6); NullCheck(L_5); EventInfo_t * L_8 = Type_GetEvent_m1771644022(L_5, L_7, /*hidden argument*/NULL); V_0 = L_8; EventInfo_t * L_9 = V_0; NullCheck(L_9); MethodInfo_t * L_10 = EventInfo_GetAddMethod_m3339908821(L_9, /*hidden argument*/NULL); __this->set_add_method_7(L_10); EventInfo_t * L_11 = V_0; NullCheck(L_11); MethodInfo_t * L_12 = EventInfo_GetRemoveMethod_m4099505678(L_11, /*hidden argument*/NULL); __this->set_remove_method_8(L_12); return; } } // System.Void System.ComponentModel.ReflectionEventDescriptor::.ctor(System.Type,System.String,System.Type,System.Attribute[]) extern "C" void ReflectionEventDescriptor__ctor_m481248106 (ReflectionEventDescriptor_t4023907121 * __this, Type_t * ___componentType0, String_t* ___name1, Type_t * ___type2, AttributeU5BU5D_t187261448* ___attrs3, const RuntimeMethod* method) { EventInfo_t * V_0 = NULL; { String_t* L_0 = ___name1; AttributeU5BU5D_t187261448* L_1 = ___attrs3; EventDescriptor__ctor_m1718751552(__this, L_0, L_1, /*hidden argument*/NULL); Type_t * L_2 = ___componentType0; __this->set__componentType_5(L_2); Type_t * L_3 = ___type2; __this->set__eventType_4(L_3); Type_t * L_4 = ___componentType0; String_t* L_5 = ___name1; NullCheck(L_4); EventInfo_t * L_6 = Type_GetEvent_m1771644022(L_4, L_5, /*hidden argument*/NULL); V_0 = L_6; EventInfo_t * L_7 = V_0; NullCheck(L_7); MethodInfo_t * L_8 = EventInfo_GetAddMethod_m3339908821(L_7, /*hidden argument*/NULL); __this->set_add_method_7(L_8); EventInfo_t * L_9 = V_0; NullCheck(L_9); MethodInfo_t * L_10 = EventInfo_GetRemoveMethod_m4099505678(L_9, /*hidden argument*/NULL); __this->set_remove_method_8(L_10); return; } } // System.Reflection.EventInfo System.ComponentModel.ReflectionEventDescriptor::GetEventInfo() extern "C" EventInfo_t * ReflectionEventDescriptor_GetEventInfo_m2686041103 (ReflectionEventDescriptor_t4023907121 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReflectionEventDescriptor_GetEventInfo_m2686041103_MetadataUsageId); s_Il2CppMethodInitialized = true; } { EventInfo_t * L_0 = __this->get__eventInfo_6(); if (L_0) { goto IL_0048; } } { Type_t * L_1 = __this->get__componentType_5(); String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(13 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this); NullCheck(L_1); EventInfo_t * L_3 = Type_GetEvent_m1771644022(L_1, L_2, /*hidden argument*/NULL); __this->set__eventInfo_6(L_3); EventInfo_t * L_4 = __this->get__eventInfo_6(); if (L_4) { goto IL_0048; } } { String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(13 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_6 = String_Concat_m1351243557(NULL /*static, unused*/, _stringLiteral695646351, L_5, _stringLiteral1349820026, /*hidden argument*/NULL); ArgumentException_t1946723077 * L_7 = (ArgumentException_t1946723077 *)il2cpp_codegen_object_new(ArgumentException_t1946723077_il2cpp_TypeInfo_var); ArgumentException__ctor_m509860574(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7); } IL_0048: { EventInfo_t * L_8 = __this->get__eventInfo_6(); return L_8; } } // System.Void System.ComponentModel.ReflectionEventDescriptor::AddEventHandler(System.Object,System.Delegate) extern "C" void ReflectionEventDescriptor_AddEventHandler_m624489800 (ReflectionEventDescriptor_t4023907121 * __this, RuntimeObject * ___component0, Delegate_t2639791074 * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReflectionEventDescriptor_AddEventHandler_m624489800_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MethodInfo_t * L_0 = __this->get_add_method_7(); RuntimeObject * L_1 = ___component0; ObjectU5BU5D_t4199014551* L_2 = ((ObjectU5BU5D_t4199014551*)SZArrayNew(ObjectU5BU5D_t4199014551_il2cpp_TypeInfo_var, (uint32_t)1)); Delegate_t2639791074 * L_3 = ___value1; NullCheck(L_2); ArrayElementTypeCheck (L_2, L_3); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_3); NullCheck(L_0); MethodBase_Invoke_m1864115319(L_0, L_1, L_2, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.ReflectionEventDescriptor::RemoveEventHandler(System.Object,System.Delegate) extern "C" void ReflectionEventDescriptor_RemoveEventHandler_m1795844660 (ReflectionEventDescriptor_t4023907121 * __this, RuntimeObject * ___component0, Delegate_t2639791074 * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReflectionEventDescriptor_RemoveEventHandler_m1795844660_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MethodInfo_t * L_0 = __this->get_remove_method_8(); RuntimeObject * L_1 = ___component0; ObjectU5BU5D_t4199014551* L_2 = ((ObjectU5BU5D_t4199014551*)SZArrayNew(ObjectU5BU5D_t4199014551_il2cpp_TypeInfo_var, (uint32_t)1)); Delegate_t2639791074 * L_3 = ___value1; NullCheck(L_2); ArrayElementTypeCheck (L_2, L_3); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_3); NullCheck(L_0); MethodBase_Invoke_m1864115319(L_0, L_1, L_2, /*hidden argument*/NULL); return; } } // System.Type System.ComponentModel.ReflectionEventDescriptor::get_ComponentType() extern "C" Type_t * ReflectionEventDescriptor_get_ComponentType_m3996865293 (ReflectionEventDescriptor_t4023907121 * __this, const RuntimeMethod* method) { { Type_t * L_0 = __this->get__componentType_5(); return L_0; } } // System.Type System.ComponentModel.ReflectionEventDescriptor::get_EventType() extern "C" Type_t * ReflectionEventDescriptor_get_EventType_m1211501168 (ReflectionEventDescriptor_t4023907121 * __this, const RuntimeMethod* method) { { Type_t * L_0 = __this->get__eventType_4(); return L_0; } } // System.Boolean System.ComponentModel.ReflectionEventDescriptor::get_IsMulticast() extern "C" bool ReflectionEventDescriptor_get_IsMulticast_m1826566 (ReflectionEventDescriptor_t4023907121 * __this, const RuntimeMethod* method) { { EventInfo_t * L_0 = ReflectionEventDescriptor_GetEventInfo_m2686041103(__this, /*hidden argument*/NULL); NullCheck(L_0); bool L_1 = EventInfo_get_IsMulticast_m1261675775(L_0, /*hidden argument*/NULL); return L_1; } } // System.Void System.ComponentModel.ReflectionPropertyDescriptor::.ctor(System.Type,System.ComponentModel.PropertyDescriptor,System.Attribute[]) extern "C" void ReflectionPropertyDescriptor__ctor_m2706362668 (ReflectionPropertyDescriptor_t1079221997 * __this, Type_t * ___componentType0, PropertyDescriptor_t2555988069 * ___oldPropertyDescriptor1, AttributeU5BU5D_t187261448* ___attributes2, const RuntimeMethod* method) { { PropertyDescriptor_t2555988069 * L_0 = ___oldPropertyDescriptor1; AttributeU5BU5D_t187261448* L_1 = ___attributes2; PropertyDescriptor__ctor_m1214378087(__this, L_0, L_1, /*hidden argument*/NULL); Type_t * L_2 = ___componentType0; __this->set__componentType_7(L_2); PropertyDescriptor_t2555988069 * L_3 = ___oldPropertyDescriptor1; NullCheck(L_3); Type_t * L_4 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, L_3); __this->set__propertyType_8(L_4); return; } } // System.Void System.ComponentModel.ReflectionPropertyDescriptor::.ctor(System.Type,System.String,System.Type,System.Attribute[]) extern "C" void ReflectionPropertyDescriptor__ctor_m3691613756 (ReflectionPropertyDescriptor_t1079221997 * __this, Type_t * ___componentType0, String_t* ___name1, Type_t * ___type2, AttributeU5BU5D_t187261448* ___attributes3, const RuntimeMethod* method) { { String_t* L_0 = ___name1; AttributeU5BU5D_t187261448* L_1 = ___attributes3; PropertyDescriptor__ctor_m693998226(__this, L_0, L_1, /*hidden argument*/NULL); Type_t * L_2 = ___componentType0; __this->set__componentType_7(L_2); Type_t * L_3 = ___type2; __this->set__propertyType_8(L_3); return; } } // System.Void System.ComponentModel.ReflectionPropertyDescriptor::.ctor(System.Reflection.PropertyInfo) extern "C" void ReflectionPropertyDescriptor__ctor_m1124124130 (ReflectionPropertyDescriptor_t1079221997 * __this, PropertyInfo_t * ___info0, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = ___info0; NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_0); PropertyDescriptor__ctor_m693998226(__this, L_1, (AttributeU5BU5D_t187261448*)(AttributeU5BU5D_t187261448*)NULL, /*hidden argument*/NULL); PropertyInfo_t * L_2 = ___info0; __this->set__member_6(L_2); PropertyInfo_t * L_3 = __this->get__member_6(); NullCheck(L_3); Type_t * L_4 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_3); __this->set__componentType_7(L_4); PropertyInfo_t * L_5 = ___info0; NullCheck(L_5); Type_t * L_6 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_5); __this->set__propertyType_8(L_6); return; } } // System.Reflection.PropertyInfo System.ComponentModel.ReflectionPropertyDescriptor::GetPropertyInfo() extern "C" PropertyInfo_t * ReflectionPropertyDescriptor_GetPropertyInfo_m3249063637 (ReflectionPropertyDescriptor_t1079221997 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReflectionPropertyDescriptor_GetPropertyInfo_m3249063637_MetadataUsageId); s_Il2CppMethodInitialized = true; } { PropertyInfo_t * L_0 = __this->get__member_6(); if (L_0) { goto IL_0060; } } { Type_t * L_1 = __this->get__componentType_7(); String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(13 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this); Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.ReflectionPropertyDescriptor::get_PropertyType() */, __this); NullCheck(L_1); PropertyInfo_t * L_4 = Type_GetProperty_m1551119415(L_1, L_2, ((int32_t)4148), (Binder_t1054974207 *)NULL, L_3, ((TypeU5BU5D_t89919618*)SZArrayNew(TypeU5BU5D_t89919618_il2cpp_TypeInfo_var, (uint32_t)0)), ((ParameterModifierU5BU5D_t4226445516*)SZArrayNew(ParameterModifierU5BU5D_t4226445516_il2cpp_TypeInfo_var, (uint32_t)0)), /*hidden argument*/NULL); __this->set__member_6(L_4); PropertyInfo_t * L_5 = __this->get__member_6(); if (L_5) { goto IL_0060; } } { String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(13 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_7 = String_Concat_m1351243557(NULL /*static, unused*/, _stringLiteral695646351, L_6, _stringLiteral29245246, /*hidden argument*/NULL); ArgumentException_t1946723077 * L_8 = (ArgumentException_t1946723077 *)il2cpp_codegen_object_new(ArgumentException_t1946723077_il2cpp_TypeInfo_var); ArgumentException__ctor_m509860574(L_8, L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8); } IL_0060: { PropertyInfo_t * L_9 = __this->get__member_6(); return L_9; } } // System.Type System.ComponentModel.ReflectionPropertyDescriptor::get_ComponentType() extern "C" Type_t * ReflectionPropertyDescriptor_get_ComponentType_m2364007786 (ReflectionPropertyDescriptor_t1079221997 * __this, const RuntimeMethod* method) { { Type_t * L_0 = __this->get__componentType_7(); return L_0; } } // System.Boolean System.ComponentModel.ReflectionPropertyDescriptor::get_IsReadOnly() extern "C" bool ReflectionPropertyDescriptor_get_IsReadOnly_m426945808 (ReflectionPropertyDescriptor_t1079221997 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReflectionPropertyDescriptor_get_IsReadOnly_m426945808_MetadataUsageId); s_Il2CppMethodInitialized = true; } ReadOnlyAttribute_t1832938840 * V_0 = NULL; int32_t G_B3_0 = 0; { AttributeCollection_t3634739288 * L_0 = VirtFuncInvoker0< AttributeCollection_t3634739288 * >::Invoke(7 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(ReadOnlyAttribute_t1832938840_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_0); Attribute_t2739832645 * L_2 = VirtFuncInvoker1< Attribute_t2739832645 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_0, L_1); V_0 = ((ReadOnlyAttribute_t1832938840 *)CastclassSealed((RuntimeObject*)L_2, ReadOnlyAttribute_t1832938840_il2cpp_TypeInfo_var)); PropertyInfo_t * L_3 = ReflectionPropertyDescriptor_GetPropertyInfo_m3249063637(__this, /*hidden argument*/NULL); NullCheck(L_3); bool L_4 = VirtFuncInvoker0< bool >::Invoke(16 /* System.Boolean System.Reflection.PropertyInfo::get_CanWrite() */, L_3); if (!L_4) { goto IL_0033; } } { ReadOnlyAttribute_t1832938840 * L_5 = V_0; NullCheck(L_5); bool L_6 = ReadOnlyAttribute_get_IsReadOnly_m3734666292(L_5, /*hidden argument*/NULL); G_B3_0 = ((int32_t)(L_6)); goto IL_0034; } IL_0033: { G_B3_0 = 1; } IL_0034: { return (bool)G_B3_0; } } // System.Type System.ComponentModel.ReflectionPropertyDescriptor::get_PropertyType() extern "C" Type_t * ReflectionPropertyDescriptor_get_PropertyType_m902215184 (ReflectionPropertyDescriptor_t1079221997 * __this, const RuntimeMethod* method) { { Type_t * L_0 = __this->get__propertyType_8(); return L_0; } } // System.Void System.ComponentModel.ReflectionPropertyDescriptor::FillAttributes(System.Collections.IList) extern "C" void ReflectionPropertyDescriptor_FillAttributes_m1004820898 (ReflectionPropertyDescriptor_t1079221997 * __this, RuntimeObject* ___attributeList0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReflectionPropertyDescriptor_FillAttributes_m1004820898_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Type_t * V_1 = NULL; AttributeU5BU5DU5BU5D_t1480584409* V_2 = NULL; PropertyInfo_t * V_3 = NULL; ObjectU5BU5D_t4199014551* V_4 = NULL; AttributeU5BU5D_t187261448* V_5 = NULL; AttributeU5BU5D_t187261448* V_6 = NULL; AttributeU5BU5DU5BU5D_t1480584409* V_7 = NULL; int32_t V_8 = 0; Attribute_t2739832645 * V_9 = NULL; AttributeU5BU5D_t187261448* V_10 = NULL; int32_t V_11 = 0; Attribute_t2739832645 * V_12 = NULL; RuntimeObject* V_13 = NULL; RuntimeObject* V_14 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { RuntimeObject* L_0 = ___attributeList0; PropertyDescriptor_FillAttributes_m2952147874(__this, L_0, /*hidden argument*/NULL); PropertyInfo_t * L_1 = ReflectionPropertyDescriptor_GetPropertyInfo_m3249063637(__this, /*hidden argument*/NULL); NullCheck(L_1); bool L_2 = VirtFuncInvoker0< bool >::Invoke(16 /* System.Boolean System.Reflection.PropertyInfo::get_CanWrite() */, L_1); if (L_2) { goto IL_0023; } } { RuntimeObject* L_3 = ___attributeList0; IL2CPP_RUNTIME_CLASS_INIT(ReadOnlyAttribute_t1832938840_il2cpp_TypeInfo_var); ReadOnlyAttribute_t1832938840 * L_4 = ((ReadOnlyAttribute_t1832938840_StaticFields*)il2cpp_codegen_static_fields_for(ReadOnlyAttribute_t1832938840_il2cpp_TypeInfo_var))->get_Yes_2(); NullCheck(L_3); InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(4 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_t1481205421_il2cpp_TypeInfo_var, L_3, L_4); } IL_0023: { V_0 = 0; Type_t * L_5 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.ComponentModel.ReflectionPropertyDescriptor::get_ComponentType() */, __this); V_1 = L_5; goto IL_003c; } IL_0031: { int32_t L_6 = V_0; V_0 = ((int32_t)((int32_t)L_6+(int32_t)1)); Type_t * L_7 = V_1; NullCheck(L_7); Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.Type::get_BaseType() */, L_7); V_1 = L_8; } IL_003c: { Type_t * L_9 = V_1; if (!L_9) { goto IL_0052; } } { Type_t * L_10 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_11 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(RuntimeObject_0_0_0_var), /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_10) == ((RuntimeObject*)(Type_t *)L_11)))) { goto IL_0031; } } IL_0052: { int32_t L_12 = V_0; V_2 = ((AttributeU5BU5DU5BU5D_t1480584409*)SZArrayNew(AttributeU5BU5DU5BU5D_t1480584409_il2cpp_TypeInfo_var, (uint32_t)L_12)); Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.ComponentModel.ReflectionPropertyDescriptor::get_ComponentType() */, __this); V_1 = L_13; goto IL_00bb; } IL_0065: { Type_t * L_14 = V_1; String_t* L_15 = VirtFuncInvoker0< String_t* >::Invoke(13 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this); Type_t * L_16 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.ReflectionPropertyDescriptor::get_PropertyType() */, __this); NullCheck(L_14); PropertyInfo_t * L_17 = Type_GetProperty_m1551119415(L_14, L_15, ((int32_t)54), (Binder_t1054974207 *)NULL, L_16, ((TypeU5BU5D_t89919618*)SZArrayNew(TypeU5BU5D_t89919618_il2cpp_TypeInfo_var, (uint32_t)0)), ((ParameterModifierU5BU5D_t4226445516*)SZArrayNew(ParameterModifierU5BU5D_t4226445516_il2cpp_TypeInfo_var, (uint32_t)0)), /*hidden argument*/NULL); V_3 = L_17; PropertyInfo_t * L_18 = V_3; if (!L_18) { goto IL_00b4; } } { PropertyInfo_t * L_19 = V_3; NullCheck(L_19); ObjectU5BU5D_t4199014551* L_20 = VirtFuncInvoker1< ObjectU5BU5D_t4199014551*, bool >::Invoke(12 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Boolean) */, L_19, (bool)0); V_4 = L_20; ObjectU5BU5D_t4199014551* L_21 = V_4; NullCheck(L_21); V_5 = ((AttributeU5BU5D_t187261448*)SZArrayNew(AttributeU5BU5D_t187261448_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_21)->max_length)))))); ObjectU5BU5D_t4199014551* L_22 = V_4; AttributeU5BU5D_t187261448* L_23 = V_5; NullCheck((RuntimeArray *)(RuntimeArray *)L_22); Array_CopyTo_m1691627982((RuntimeArray *)(RuntimeArray *)L_22, (RuntimeArray *)(RuntimeArray *)L_23, 0, /*hidden argument*/NULL); AttributeU5BU5DU5BU5D_t1480584409* L_24 = V_2; int32_t L_25 = V_0; int32_t L_26 = ((int32_t)((int32_t)L_25-(int32_t)1)); V_0 = L_26; AttributeU5BU5D_t187261448* L_27 = V_5; NullCheck(L_24); ArrayElementTypeCheck (L_24, L_27); (L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (AttributeU5BU5D_t187261448*)L_27); } IL_00b4: { Type_t * L_28 = V_1; NullCheck(L_28); Type_t * L_29 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.Type::get_BaseType() */, L_28); V_1 = L_29; } IL_00bb: { Type_t * L_30 = V_1; if (!L_30) { goto IL_00d1; } } { Type_t * L_31 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_32 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(RuntimeObject_0_0_0_var), /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_31) == ((RuntimeObject*)(Type_t *)L_32)))) { goto IL_0065; } } IL_00d1: { AttributeU5BU5DU5BU5D_t1480584409* L_33 = V_2; V_7 = L_33; V_8 = 0; goto IL_011d; } IL_00dc: { AttributeU5BU5DU5BU5D_t1480584409* L_34 = V_7; int32_t L_35 = V_8; NullCheck(L_34); int32_t L_36 = L_35; AttributeU5BU5D_t187261448* L_37 = (L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_36)); V_6 = L_37; AttributeU5BU5D_t187261448* L_38 = V_6; if (!L_38) { goto IL_0117; } } { AttributeU5BU5D_t187261448* L_39 = V_6; V_10 = L_39; V_11 = 0; goto IL_010c; } IL_00f6: { AttributeU5BU5D_t187261448* L_40 = V_10; int32_t L_41 = V_11; NullCheck(L_40); int32_t L_42 = L_41; Attribute_t2739832645 * L_43 = (L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_42)); V_9 = L_43; RuntimeObject* L_44 = ___attributeList0; Attribute_t2739832645 * L_45 = V_9; NullCheck(L_44); InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(4 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_t1481205421_il2cpp_TypeInfo_var, L_44, L_45); int32_t L_46 = V_11; V_11 = ((int32_t)((int32_t)L_46+(int32_t)1)); } IL_010c: { int32_t L_47 = V_11; AttributeU5BU5D_t187261448* L_48 = V_10; NullCheck(L_48); if ((((int32_t)L_47) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_48)->max_length))))))) { goto IL_00f6; } } IL_0117: { int32_t L_49 = V_8; V_8 = ((int32_t)((int32_t)L_49+(int32_t)1)); } IL_011d: { int32_t L_50 = V_8; AttributeU5BU5DU5BU5D_t1480584409* L_51 = V_7; NullCheck(L_51); if ((((int32_t)L_50) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_51)->max_length))))))) { goto IL_00dc; } } { Type_t * L_52 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.ReflectionPropertyDescriptor::get_PropertyType() */, __this); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); AttributeCollection_t3634739288 * L_53 = TypeDescriptor_GetAttributes_m3292160618(NULL /*static, unused*/, L_52, /*hidden argument*/NULL); NullCheck(L_53); RuntimeObject* L_54 = AttributeCollection_GetEnumerator_m3871199393(L_53, /*hidden argument*/NULL); V_13 = L_54; } IL_013a: try { // begin try (depth: 1) { goto IL_0156; } IL_013f: { RuntimeObject* L_55 = V_13; NullCheck(L_55); RuntimeObject * L_56 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1868781825_il2cpp_TypeInfo_var, L_55); V_12 = ((Attribute_t2739832645 *)CastclassClass((RuntimeObject*)L_56, Attribute_t2739832645_il2cpp_TypeInfo_var)); RuntimeObject* L_57 = ___attributeList0; Attribute_t2739832645 * L_58 = V_12; NullCheck(L_57); InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(4 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_t1481205421_il2cpp_TypeInfo_var, L_57, L_58); } IL_0156: { RuntimeObject* L_59 = V_13; NullCheck(L_59); bool L_60 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1868781825_il2cpp_TypeInfo_var, L_59); if (L_60) { goto IL_013f; } } IL_0162: { IL2CPP_LEAVE(0x17D, FINALLY_0167); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_0167; } FINALLY_0167: { // begin finally (depth: 1) { RuntimeObject* L_61 = V_13; V_14 = ((RuntimeObject*)IsInst((RuntimeObject*)L_61, IDisposable_t3750220212_il2cpp_TypeInfo_var)); RuntimeObject* L_62 = V_14; if (L_62) { goto IL_0175; } } IL_0174: { IL2CPP_END_FINALLY(359) } IL_0175: { RuntimeObject* L_63 = V_14; NullCheck(L_63); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3750220212_il2cpp_TypeInfo_var, L_63); IL2CPP_END_FINALLY(359) } } // end finally (depth: 1) IL2CPP_CLEANUP(359) { IL2CPP_JUMP_TBL(0x17D, IL_017d) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_017d: { return; } } // System.Object System.ComponentModel.ReflectionPropertyDescriptor::GetValue(System.Object) extern "C" RuntimeObject * ReflectionPropertyDescriptor_GetValue_m746408199 (ReflectionPropertyDescriptor_t1079221997 * __this, RuntimeObject * ___component0, const RuntimeMethod* method) { { Type_t * L_0 = __this->get__componentType_7(); RuntimeObject * L_1 = ___component0; RuntimeObject * L_2 = MemberDescriptor_GetInvokee_m148565012(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL); ___component0 = L_2; ReflectionPropertyDescriptor_InitAccessors_m1784019371(__this, /*hidden argument*/NULL); PropertyInfo_t * L_3 = __this->get_getter_9(); RuntimeObject * L_4 = ___component0; NullCheck(L_3); RuntimeObject * L_5 = VirtFuncInvoker2< RuntimeObject *, RuntimeObject *, ObjectU5BU5D_t4199014551* >::Invoke(24 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, L_3, L_4, (ObjectU5BU5D_t4199014551*)(ObjectU5BU5D_t4199014551*)NULL); return L_5; } } // System.ComponentModel.Design.DesignerTransaction System.ComponentModel.ReflectionPropertyDescriptor::CreateTransaction(System.Object,System.String) extern "C" DesignerTransaction_t3922712621 * ReflectionPropertyDescriptor_CreateTransaction_m3525575033 (ReflectionPropertyDescriptor_t1079221997 * __this, RuntimeObject * ___obj0, String_t* ___description1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReflectionPropertyDescriptor_CreateTransaction_m3525575033_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; DesignerTransaction_t3922712621 * V_2 = NULL; RuntimeObject* V_3 = NULL; { RuntimeObject * L_0 = ___obj0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IComponent_t63236301_il2cpp_TypeInfo_var)); RuntimeObject* L_1 = V_0; if (!L_1) { goto IL_0018; } } { RuntimeObject* L_2 = V_0; NullCheck(L_2); RuntimeObject* L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t63236301_il2cpp_TypeInfo_var, L_2); if (L_3) { goto IL_001a; } } IL_0018: { return (DesignerTransaction_t3922712621 *)NULL; } IL_001a: { RuntimeObject* L_4 = V_0; NullCheck(L_4); RuntimeObject* L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t63236301_il2cpp_TypeInfo_var, L_4); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(IDesignerHost_t1144715669_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_5); RuntimeObject * L_7 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4067527398_il2cpp_TypeInfo_var, L_5, L_6); V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_7, IDesignerHost_t1144715669_il2cpp_TypeInfo_var)); RuntimeObject* L_8 = V_1; if (L_8) { goto IL_003d; } } { return (DesignerTransaction_t3922712621 *)NULL; } IL_003d: { RuntimeObject* L_9 = V_1; String_t* L_10 = ___description1; NullCheck(L_9); DesignerTransaction_t3922712621 * L_11 = InterfaceFuncInvoker1< DesignerTransaction_t3922712621 *, String_t* >::Invoke(0 /* System.ComponentModel.Design.DesignerTransaction System.ComponentModel.Design.IDesignerHost::CreateTransaction(System.String) */, IDesignerHost_t1144715669_il2cpp_TypeInfo_var, L_9, L_10); V_2 = L_11; RuntimeObject* L_12 = V_0; NullCheck(L_12); RuntimeObject* L_13 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t63236301_il2cpp_TypeInfo_var, L_12); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_14 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(IComponentChangeService_t2299312480_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_13); RuntimeObject * L_15 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4067527398_il2cpp_TypeInfo_var, L_13, L_14); V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_15, IComponentChangeService_t2299312480_il2cpp_TypeInfo_var)); RuntimeObject* L_16 = V_3; if (!L_16) { goto IL_006e; } } { RuntimeObject* L_17 = V_3; RuntimeObject* L_18 = V_0; NullCheck(L_17); InterfaceActionInvoker2< RuntimeObject *, MemberDescriptor_t1331681536 * >::Invoke(1 /* System.Void System.ComponentModel.Design.IComponentChangeService::OnComponentChanging(System.Object,System.ComponentModel.MemberDescriptor) */, IComponentChangeService_t2299312480_il2cpp_TypeInfo_var, L_17, L_18, __this); } IL_006e: { DesignerTransaction_t3922712621 * L_19 = V_2; return L_19; } } // System.Void System.ComponentModel.ReflectionPropertyDescriptor::EndTransaction(System.Object,System.ComponentModel.Design.DesignerTransaction,System.Object,System.Object,System.Boolean) extern "C" void ReflectionPropertyDescriptor_EndTransaction_m2347500579 (ReflectionPropertyDescriptor_t1079221997 * __this, RuntimeObject * ___obj0, DesignerTransaction_t3922712621 * ___tran1, RuntimeObject * ___oldValue2, RuntimeObject * ___newValue3, bool ___commit4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReflectionPropertyDescriptor_EndTransaction_m2347500579_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; { DesignerTransaction_t3922712621 * L_0 = ___tran1; if (L_0) { goto IL_0019; } } { RuntimeObject * L_1 = ___obj0; String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(13 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this); PropertyChangedEventArgs_t483343543 * L_3 = (PropertyChangedEventArgs_t483343543 *)il2cpp_codegen_object_new(PropertyChangedEventArgs_t483343543_il2cpp_TypeInfo_var); PropertyChangedEventArgs__ctor_m1946057289(L_3, L_2, /*hidden argument*/NULL); VirtActionInvoker2< RuntimeObject *, EventArgs_t3326158294 * >::Invoke(25 /* System.Void System.ComponentModel.PropertyDescriptor::OnValueChanged(System.Object,System.EventArgs) */, __this, L_1, L_3); return; } IL_0019: { bool L_4 = ___commit4; if (!L_4) { goto IL_0070; } } { RuntimeObject * L_5 = ___obj0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_5, IComponent_t63236301_il2cpp_TypeInfo_var)); RuntimeObject* L_6 = V_0; NullCheck(L_6); RuntimeObject* L_7 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t63236301_il2cpp_TypeInfo_var, L_6); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(IComponentChangeService_t2299312480_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_7); RuntimeObject * L_9 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4067527398_il2cpp_TypeInfo_var, L_7, L_8); V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_9, IComponentChangeService_t2299312480_il2cpp_TypeInfo_var)); RuntimeObject* L_10 = V_1; if (!L_10) { goto IL_0053; } } { RuntimeObject* L_11 = V_1; RuntimeObject* L_12 = V_0; RuntimeObject * L_13 = ___oldValue2; RuntimeObject * L_14 = ___newValue3; NullCheck(L_11); InterfaceActionInvoker4< RuntimeObject *, MemberDescriptor_t1331681536 *, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Void System.ComponentModel.Design.IComponentChangeService::OnComponentChanged(System.Object,System.ComponentModel.MemberDescriptor,System.Object,System.Object) */, IComponentChangeService_t2299312480_il2cpp_TypeInfo_var, L_11, L_12, __this, L_13, L_14); } IL_0053: { DesignerTransaction_t3922712621 * L_15 = ___tran1; NullCheck(L_15); DesignerTransaction_Commit_m2111453529(L_15, /*hidden argument*/NULL); RuntimeObject * L_16 = ___obj0; String_t* L_17 = VirtFuncInvoker0< String_t* >::Invoke(13 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this); PropertyChangedEventArgs_t483343543 * L_18 = (PropertyChangedEventArgs_t483343543 *)il2cpp_codegen_object_new(PropertyChangedEventArgs_t483343543_il2cpp_TypeInfo_var); PropertyChangedEventArgs__ctor_m1946057289(L_18, L_17, /*hidden argument*/NULL); VirtActionInvoker2< RuntimeObject *, EventArgs_t3326158294 * >::Invoke(25 /* System.Void System.ComponentModel.PropertyDescriptor::OnValueChanged(System.Object,System.EventArgs) */, __this, L_16, L_18); goto IL_0076; } IL_0070: { DesignerTransaction_t3922712621 * L_19 = ___tran1; NullCheck(L_19); DesignerTransaction_Cancel_m3943572969(L_19, /*hidden argument*/NULL); } IL_0076: { return; } } // System.Void System.ComponentModel.ReflectionPropertyDescriptor::InitAccessors() extern "C" void ReflectionPropertyDescriptor_InitAccessors_m1784019371 (ReflectionPropertyDescriptor_t1079221997 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReflectionPropertyDescriptor_InitAccessors_m1784019371_MetadataUsageId); s_Il2CppMethodInitialized = true; } PropertyInfo_t * V_0 = NULL; MethodInfo_t * V_1 = NULL; MethodInfo_t * V_2 = NULL; MethodInfo_t * V_3 = NULL; Type_t * V_4 = NULL; MethodInfo_t * G_B15_0 = NULL; { bool L_0 = __this->get_accessors_inited_11(); if (!L_0) { goto IL_000c; } } { return; } IL_000c: { PropertyInfo_t * L_1 = ReflectionPropertyDescriptor_GetPropertyInfo_m3249063637(__this, /*hidden argument*/NULL); V_0 = L_1; PropertyInfo_t * L_2 = V_0; NullCheck(L_2); MethodInfo_t * L_3 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(23 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetSetMethod(System.Boolean) */, L_2, (bool)1); V_1 = L_3; PropertyInfo_t * L_4 = V_0; NullCheck(L_4); MethodInfo_t * L_5 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(20 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod(System.Boolean) */, L_4, (bool)1); V_2 = L_5; MethodInfo_t * L_6 = V_2; if (!L_6) { goto IL_0030; } } { PropertyInfo_t * L_7 = V_0; __this->set_getter_9(L_7); } IL_0030: { MethodInfo_t * L_8 = V_1; if (!L_8) { goto IL_003d; } } { PropertyInfo_t * L_9 = V_0; __this->set_setter_10(L_9); } IL_003d: { MethodInfo_t * L_10 = V_1; if (!L_10) { goto IL_0051; } } { MethodInfo_t * L_11 = V_2; if (!L_11) { goto IL_0051; } } { __this->set_accessors_inited_11((bool)1); return; } IL_0051: { MethodInfo_t * L_12 = V_1; if (L_12) { goto IL_0065; } } { MethodInfo_t * L_13 = V_2; if (L_13) { goto IL_0065; } } { __this->set_accessors_inited_11((bool)1); return; } IL_0065: { MethodInfo_t * L_14 = V_2; if (!L_14) { goto IL_0071; } } { MethodInfo_t * L_15 = V_2; G_B15_0 = L_15; goto IL_0072; } IL_0071: { MethodInfo_t * L_16 = V_1; G_B15_0 = L_16; } IL_0072: { V_3 = G_B15_0; MethodInfo_t * L_17 = V_3; if (!L_17) { goto IL_009a; } } { MethodInfo_t * L_18 = V_3; NullCheck(L_18); bool L_19 = MethodBase_get_IsVirtual_m1405312777(L_18, /*hidden argument*/NULL); if (!L_19) { goto IL_009a; } } { MethodInfo_t * L_20 = V_3; NullCheck(L_20); int32_t L_21 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Reflection.MethodAttributes System.Reflection.MethodBase::get_Attributes() */, L_20); if ((!(((uint32_t)((int32_t)((int32_t)L_21&(int32_t)((int32_t)256)))) == ((uint32_t)((int32_t)256))))) { goto IL_00a2; } } IL_009a: { __this->set_accessors_inited_11((bool)1); return; } IL_00a2: { Type_t * L_22 = __this->get__componentType_7(); NullCheck(L_22); Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.Type::get_BaseType() */, L_22); V_4 = L_23; goto IL_0146; } IL_00b4: { Type_t * L_24 = V_4; String_t* L_25 = VirtFuncInvoker0< String_t* >::Invoke(13 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this); Type_t * L_26 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.ReflectionPropertyDescriptor::get_PropertyType() */, __this); NullCheck(L_24); PropertyInfo_t * L_27 = Type_GetProperty_m1551119415(L_24, L_25, ((int32_t)4148), (Binder_t1054974207 *)NULL, L_26, ((TypeU5BU5D_t89919618*)SZArrayNew(TypeU5BU5D_t89919618_il2cpp_TypeInfo_var, (uint32_t)0)), ((ParameterModifierU5BU5D_t4226445516*)SZArrayNew(ParameterModifierU5BU5D_t4226445516_il2cpp_TypeInfo_var, (uint32_t)0)), /*hidden argument*/NULL); V_0 = L_27; PropertyInfo_t * L_28 = V_0; if (L_28) { goto IL_00e5; } } { goto IL_015e; } IL_00e5: { MethodInfo_t * L_29 = V_1; if (L_29) { goto IL_00f9; } } { PropertyInfo_t * L_30 = V_0; NullCheck(L_30); MethodInfo_t * L_31 = PropertyInfo_GetSetMethod_m1616825401(L_30, /*hidden argument*/NULL); MethodInfo_t * L_32 = L_31; V_3 = L_32; V_1 = L_32; goto IL_0102; } IL_00f9: { PropertyInfo_t * L_33 = V_0; NullCheck(L_33); MethodInfo_t * L_34 = PropertyInfo_GetGetMethod_m2763981415(L_33, /*hidden argument*/NULL); MethodInfo_t * L_35 = L_34; V_3 = L_35; V_2 = L_35; } IL_0102: { MethodInfo_t * L_36 = V_2; if (!L_36) { goto IL_011a; } } { PropertyInfo_t * L_37 = __this->get_getter_9(); if (L_37) { goto IL_011a; } } { PropertyInfo_t * L_38 = V_0; __this->set_getter_9(L_38); } IL_011a: { MethodInfo_t * L_39 = V_1; if (!L_39) { goto IL_0132; } } { PropertyInfo_t * L_40 = __this->get_setter_10(); if (L_40) { goto IL_0132; } } { PropertyInfo_t * L_41 = V_0; __this->set_setter_10(L_41); } IL_0132: { MethodInfo_t * L_42 = V_3; if (!L_42) { goto IL_013d; } } { goto IL_015e; } IL_013d: { Type_t * L_43 = V_4; NullCheck(L_43); Type_t * L_44 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.Type::get_BaseType() */, L_43); V_4 = L_44; } IL_0146: { Type_t * L_45 = V_4; if (!L_45) { goto IL_015e; } } { Type_t * L_46 = V_4; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_47 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(RuntimeObject_0_0_0_var), /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_46) == ((RuntimeObject*)(Type_t *)L_47)))) { goto IL_00b4; } } IL_015e: { __this->set_accessors_inited_11((bool)1); return; } } // System.Void System.ComponentModel.ReflectionPropertyDescriptor::SetValue(System.Object,System.Object) extern "C" void ReflectionPropertyDescriptor_SetValue_m1933222143 (ReflectionPropertyDescriptor_t1079221997 * __this, RuntimeObject * ___component0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReflectionPropertyDescriptor_SetValue_m1933222143_MetadataUsageId); s_Il2CppMethodInitialized = true; } DesignerTransaction_t3922712621 * V_0 = NULL; RuntimeObject * V_1 = NULL; RuntimeObject * V_2 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___component0; String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(13 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_2 = String_Concat_m1351243557(NULL /*static, unused*/, _stringLiteral4185886925, L_1, _stringLiteral930442159, /*hidden argument*/NULL); DesignerTransaction_t3922712621 * L_3 = ReflectionPropertyDescriptor_CreateTransaction_m3525575033(__this, L_0, L_2, /*hidden argument*/NULL); V_0 = L_3; Type_t * L_4 = __this->get__componentType_7(); RuntimeObject * L_5 = ___component0; RuntimeObject * L_6 = MemberDescriptor_GetInvokee_m148565012(NULL /*static, unused*/, L_4, L_5, /*hidden argument*/NULL); V_1 = L_6; RuntimeObject * L_7 = V_1; RuntimeObject * L_8 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(26 /* System.Object System.ComponentModel.ReflectionPropertyDescriptor::GetValue(System.Object) */, __this, L_7); V_2 = L_8; } IL_0032: try { // begin try (depth: 1) ReflectionPropertyDescriptor_InitAccessors_m1784019371(__this, /*hidden argument*/NULL); PropertyInfo_t * L_9 = __this->get_setter_10(); RuntimeObject * L_10 = V_1; RuntimeObject * L_11 = ___value1; NullCheck(L_9); VirtActionInvoker3< RuntimeObject *, RuntimeObject *, ObjectU5BU5D_t4199014551* >::Invoke(26 /* System.Void System.Reflection.PropertyInfo::SetValue(System.Object,System.Object,System.Object[]) */, L_9, L_10, L_11, (ObjectU5BU5D_t4199014551*)(ObjectU5BU5D_t4199014551*)NULL); RuntimeObject * L_12 = ___component0; DesignerTransaction_t3922712621 * L_13 = V_0; RuntimeObject * L_14 = V_2; RuntimeObject * L_15 = ___value1; ReflectionPropertyDescriptor_EndTransaction_m2347500579(__this, L_12, L_13, L_14, L_15, (bool)1, /*hidden argument*/NULL); goto IL_0069; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t2428370182 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0056; throw e; } CATCH_0056: { // begin catch(System.Object) { RuntimeObject * L_16 = ___component0; DesignerTransaction_t3922712621 * L_17 = V_0; RuntimeObject * L_18 = V_2; RuntimeObject * L_19 = ___value1; ReflectionPropertyDescriptor_EndTransaction_m2347500579(__this, L_16, L_17, L_18, L_19, (bool)0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local); } IL_0064: { goto IL_0069; } } // end catch (depth: 1) IL_0069: { return; } } // System.Reflection.MethodInfo System.ComponentModel.ReflectionPropertyDescriptor::FindPropertyMethod(System.Object,System.String) extern "C" MethodInfo_t * ReflectionPropertyDescriptor_FindPropertyMethod_m3729960446 (ReflectionPropertyDescriptor_t1079221997 * __this, RuntimeObject * ___o0, String_t* ___method_name1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReflectionPropertyDescriptor_FindPropertyMethod_m3729960446_MetadataUsageId); s_Il2CppMethodInitialized = true; } MethodInfo_t * V_0 = NULL; String_t* V_1 = NULL; MethodInfo_t * V_2 = NULL; MethodInfoU5BU5D_t2289520024* V_3 = NULL; int32_t V_4 = 0; { V_0 = (MethodInfo_t *)NULL; String_t* L_0 = ___method_name1; String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(13 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_2 = String_Concat_m3881611230(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL); V_1 = L_2; RuntimeObject * L_3 = ___o0; NullCheck(L_3); Type_t * L_4 = Object_GetType_m1134229006(L_3, /*hidden argument*/NULL); NullCheck(L_4); MethodInfoU5BU5D_t2289520024* L_5 = VirtFuncInvoker1< MethodInfoU5BU5D_t2289520024*, int32_t >::Invoke(58 /* System.Reflection.MethodInfo[] System.Type::GetMethods(System.Reflection.BindingFlags) */, L_4, ((int32_t)52)); V_3 = L_5; V_4 = 0; goto IL_0055; } IL_0025: { MethodInfoU5BU5D_t2289520024* L_6 = V_3; int32_t L_7 = V_4; NullCheck(L_6); int32_t L_8 = L_7; MethodInfo_t * L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8)); V_2 = L_9; MethodInfo_t * L_10 = V_2; NullCheck(L_10); String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_10); String_t* L_12 = V_1; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_13 = String_op_Equality_m3571002539(NULL /*static, unused*/, L_11, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_004f; } } { MethodInfo_t * L_14 = V_2; NullCheck(L_14); ParameterInfoU5BU5D_t3157369927* L_15 = VirtFuncInvoker0< ParameterInfoU5BU5D_t3157369927* >::Invoke(14 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_14); NullCheck(L_15); if ((((int32_t)((int32_t)(((RuntimeArray *)L_15)->max_length))))) { goto IL_004f; } } { MethodInfo_t * L_16 = V_2; V_0 = L_16; goto IL_005f; } IL_004f: { int32_t L_17 = V_4; V_4 = ((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0055: { int32_t L_18 = V_4; MethodInfoU5BU5D_t2289520024* L_19 = V_3; NullCheck(L_19); if ((((int32_t)L_18) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_19)->max_length))))))) { goto IL_0025; } } IL_005f: { MethodInfo_t * L_20 = V_0; return L_20; } } // System.Void System.ComponentModel.ReflectionPropertyDescriptor::ResetValue(System.Object) extern "C" void ReflectionPropertyDescriptor_ResetValue_m366546061 (ReflectionPropertyDescriptor_t1079221997 * __this, RuntimeObject * ___component0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReflectionPropertyDescriptor_ResetValue_m366546061_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; DefaultValueAttribute_t1210082725 * V_1 = NULL; DesignerTransaction_t3922712621 * V_2 = NULL; RuntimeObject * V_3 = NULL; MethodInfo_t * V_4 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { Type_t * L_0 = __this->get__componentType_7(); RuntimeObject * L_1 = ___component0; RuntimeObject * L_2 = MemberDescriptor_GetInvokee_m148565012(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; AttributeCollection_t3634739288 * L_3 = VirtFuncInvoker0< AttributeCollection_t3634739288 * >::Invoke(7 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(DefaultValueAttribute_t1210082725_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_3); Attribute_t2739832645 * L_5 = VirtFuncInvoker1< Attribute_t2739832645 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_3, L_4); V_1 = ((DefaultValueAttribute_t1210082725 *)CastclassClass((RuntimeObject*)L_5, DefaultValueAttribute_t1210082725_il2cpp_TypeInfo_var)); DefaultValueAttribute_t1210082725 * L_6 = V_1; if (!L_6) { goto IL_003b; } } { RuntimeObject * L_7 = V_0; DefaultValueAttribute_t1210082725 * L_8 = V_1; NullCheck(L_8); RuntimeObject * L_9 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.ComponentModel.DefaultValueAttribute::get_Value() */, L_8); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(27 /* System.Void System.ComponentModel.ReflectionPropertyDescriptor::SetValue(System.Object,System.Object) */, __this, L_7, L_9); } IL_003b: { RuntimeObject * L_10 = ___component0; String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(13 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_12 = String_Concat_m1351243557(NULL /*static, unused*/, _stringLiteral2626860551, L_11, _stringLiteral930442159, /*hidden argument*/NULL); DesignerTransaction_t3922712621 * L_13 = ReflectionPropertyDescriptor_CreateTransaction_m3525575033(__this, L_10, L_12, /*hidden argument*/NULL); V_2 = L_13; RuntimeObject * L_14 = V_0; RuntimeObject * L_15 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(26 /* System.Object System.ComponentModel.ReflectionPropertyDescriptor::GetValue(System.Object) */, __this, L_14); V_3 = L_15; } IL_0060: try { // begin try (depth: 1) { RuntimeObject * L_16 = V_0; MethodInfo_t * L_17 = ReflectionPropertyDescriptor_FindPropertyMethod_m3729960446(__this, L_16, _stringLiteral3414754624, /*hidden argument*/NULL); V_4 = L_17; MethodInfo_t * L_18 = V_4; if (!L_18) { goto IL_007f; } } IL_0075: { MethodInfo_t * L_19 = V_4; RuntimeObject * L_20 = V_0; NullCheck(L_19); MethodBase_Invoke_m1864115319(L_19, L_20, (ObjectU5BU5D_t4199014551*)(ObjectU5BU5D_t4199014551*)NULL, /*hidden argument*/NULL); } IL_007f: { RuntimeObject * L_21 = ___component0; DesignerTransaction_t3922712621 * L_22 = V_2; RuntimeObject * L_23 = V_3; RuntimeObject * L_24 = V_0; RuntimeObject * L_25 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(26 /* System.Object System.ComponentModel.ReflectionPropertyDescriptor::GetValue(System.Object) */, __this, L_24); ReflectionPropertyDescriptor_EndTransaction_m2347500579(__this, L_21, L_22, L_23, L_25, (bool)1, /*hidden argument*/NULL); goto IL_00ae; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t2428370182 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0095; throw e; } CATCH_0095: { // begin catch(System.Object) { RuntimeObject * L_26 = ___component0; DesignerTransaction_t3922712621 * L_27 = V_2; RuntimeObject * L_28 = V_3; RuntimeObject * L_29 = V_0; RuntimeObject * L_30 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(26 /* System.Object System.ComponentModel.ReflectionPropertyDescriptor::GetValue(System.Object) */, __this, L_29); ReflectionPropertyDescriptor_EndTransaction_m2347500579(__this, L_26, L_27, L_28, L_30, (bool)0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local); } IL_00a9: { goto IL_00ae; } } // end catch (depth: 1) IL_00ae: { return; } } // System.Boolean System.ComponentModel.ReflectionPropertyDescriptor::CanResetValue(System.Object) extern "C" bool ReflectionPropertyDescriptor_CanResetValue_m3326184663 (ReflectionPropertyDescriptor_t1079221997 * __this, RuntimeObject * ___component0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReflectionPropertyDescriptor_CanResetValue_m3326184663_MetadataUsageId); s_Il2CppMethodInitialized = true; } DefaultValueAttribute_t1210082725 * V_0 = NULL; RuntimeObject * V_1 = NULL; MethodInfo_t * V_2 = NULL; { Type_t * L_0 = __this->get__componentType_7(); RuntimeObject * L_1 = ___component0; RuntimeObject * L_2 = MemberDescriptor_GetInvokee_m148565012(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL); ___component0 = L_2; AttributeCollection_t3634739288 * L_3 = VirtFuncInvoker0< AttributeCollection_t3634739288 * >::Invoke(7 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(DefaultValueAttribute_t1210082725_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_3); Attribute_t2739832645 * L_5 = VirtFuncInvoker1< Attribute_t2739832645 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_3, L_4); V_0 = ((DefaultValueAttribute_t1210082725 *)CastclassClass((RuntimeObject*)L_5, DefaultValueAttribute_t1210082725_il2cpp_TypeInfo_var)); DefaultValueAttribute_t1210082725 * L_6 = V_0; if (!L_6) { goto IL_0079; } } { RuntimeObject * L_7 = ___component0; RuntimeObject * L_8 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(26 /* System.Object System.ComponentModel.ReflectionPropertyDescriptor::GetValue(System.Object) */, __this, L_7); V_1 = L_8; DefaultValueAttribute_t1210082725 * L_9 = V_0; NullCheck(L_9); RuntimeObject * L_10 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.ComponentModel.DefaultValueAttribute::get_Value() */, L_9); if (!L_10) { goto IL_0048; } } { RuntimeObject * L_11 = V_1; if (L_11) { goto IL_0069; } } IL_0048: { DefaultValueAttribute_t1210082725 * L_12 = V_0; NullCheck(L_12); RuntimeObject * L_13 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.ComponentModel.DefaultValueAttribute::get_Value() */, L_12); RuntimeObject * L_14 = V_1; if ((((RuntimeObject*)(RuntimeObject *)L_13) == ((RuntimeObject*)(RuntimeObject *)L_14))) { goto IL_0056; } } { return (bool)1; } IL_0056: { DefaultValueAttribute_t1210082725 * L_15 = V_0; NullCheck(L_15); RuntimeObject * L_16 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.ComponentModel.DefaultValueAttribute::get_Value() */, L_15); if (L_16) { goto IL_0069; } } { RuntimeObject * L_17 = V_1; if (L_17) { goto IL_0069; } } { return (bool)0; } IL_0069: { DefaultValueAttribute_t1210082725 * L_18 = V_0; NullCheck(L_18); RuntimeObject * L_19 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.ComponentModel.DefaultValueAttribute::get_Value() */, L_18); RuntimeObject * L_20 = V_1; NullCheck(L_19); bool L_21 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_19, L_20); return (bool)((((int32_t)L_21) == ((int32_t)0))? 1 : 0); } IL_0079: { PropertyInfo_t * L_22 = __this->get__member_6(); NullCheck(L_22); bool L_23 = VirtFuncInvoker0< bool >::Invoke(16 /* System.Boolean System.Reflection.PropertyInfo::get_CanWrite() */, L_22); if (L_23) { goto IL_008b; } } { return (bool)0; } IL_008b: { RuntimeObject * L_24 = ___component0; MethodInfo_t * L_25 = ReflectionPropertyDescriptor_FindPropertyMethod_m3729960446(__this, L_24, _stringLiteral1554458804, /*hidden argument*/NULL); V_2 = L_25; MethodInfo_t * L_26 = V_2; if (!L_26) { goto IL_00ac; } } { MethodInfo_t * L_27 = V_2; RuntimeObject * L_28 = ___component0; NullCheck(L_27); RuntimeObject * L_29 = MethodBase_Invoke_m1864115319(L_27, L_28, (ObjectU5BU5D_t4199014551*)(ObjectU5BU5D_t4199014551*)NULL, /*hidden argument*/NULL); return ((*(bool*)((bool*)UnBox(L_29, Boolean_t3448040118_il2cpp_TypeInfo_var)))); } IL_00ac: { RuntimeObject * L_30 = ___component0; MethodInfo_t * L_31 = ReflectionPropertyDescriptor_FindPropertyMethod_m3729960446(__this, L_30, _stringLiteral971996611, /*hidden argument*/NULL); V_2 = L_31; MethodInfo_t * L_32 = V_2; if (!L_32) { goto IL_00d3; } } { MethodInfo_t * L_33 = V_2; RuntimeObject * L_34 = ___component0; NullCheck(L_33); RuntimeObject * L_35 = MethodBase_Invoke_m1864115319(L_33, L_34, (ObjectU5BU5D_t4199014551*)(ObjectU5BU5D_t4199014551*)NULL, /*hidden argument*/NULL); if (((*(bool*)((bool*)UnBox(L_35, Boolean_t3448040118_il2cpp_TypeInfo_var))))) { goto IL_00d3; } } { return (bool)0; } IL_00d3: { RuntimeObject * L_36 = ___component0; MethodInfo_t * L_37 = ReflectionPropertyDescriptor_FindPropertyMethod_m3729960446(__this, L_36, _stringLiteral3414754624, /*hidden argument*/NULL); V_2 = L_37; MethodInfo_t * L_38 = V_2; return (bool)((((int32_t)((((RuntimeObject*)(MethodInfo_t *)L_38) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.ComponentModel.ReflectionPropertyDescriptor::ShouldSerializeValue(System.Object) extern "C" bool ReflectionPropertyDescriptor_ShouldSerializeValue_m3309342119 (ReflectionPropertyDescriptor_t1079221997 * __this, RuntimeObject * ___component0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ReflectionPropertyDescriptor_ShouldSerializeValue_m3309342119_MetadataUsageId); s_Il2CppMethodInitialized = true; } MethodInfo_t * V_0 = NULL; DefaultValueAttribute_t1210082725 * V_1 = NULL; RuntimeObject * V_2 = NULL; MethodInfo_t * V_3 = NULL; { Type_t * L_0 = __this->get__componentType_7(); RuntimeObject * L_1 = ___component0; RuntimeObject * L_2 = MemberDescriptor_GetInvokee_m148565012(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL); ___component0 = L_2; bool L_3 = VirtFuncInvoker0< bool >::Invoke(20 /* System.Boolean System.ComponentModel.ReflectionPropertyDescriptor::get_IsReadOnly() */, __this); if (!L_3) { goto IL_004b; } } { RuntimeObject * L_4 = ___component0; MethodInfo_t * L_5 = ReflectionPropertyDescriptor_FindPropertyMethod_m3729960446(__this, L_4, _stringLiteral971996611, /*hidden argument*/NULL); V_0 = L_5; MethodInfo_t * L_6 = V_0; if (!L_6) { goto IL_003a; } } { MethodInfo_t * L_7 = V_0; RuntimeObject * L_8 = ___component0; NullCheck(L_7); RuntimeObject * L_9 = MethodBase_Invoke_m1864115319(L_7, L_8, (ObjectU5BU5D_t4199014551*)(ObjectU5BU5D_t4199014551*)NULL, /*hidden argument*/NULL); return ((*(bool*)((bool*)UnBox(L_9, Boolean_t3448040118_il2cpp_TypeInfo_var)))); } IL_003a: { AttributeCollection_t3634739288 * L_10 = VirtFuncInvoker0< AttributeCollection_t3634739288 * >::Invoke(7 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this); IL2CPP_RUNTIME_CLASS_INIT(DesignerSerializationVisibilityAttribute_t3410153364_il2cpp_TypeInfo_var); DesignerSerializationVisibilityAttribute_t3410153364 * L_11 = ((DesignerSerializationVisibilityAttribute_t3410153364_StaticFields*)il2cpp_codegen_static_fields_for(DesignerSerializationVisibilityAttribute_t3410153364_il2cpp_TypeInfo_var))->get_Content_2(); NullCheck(L_10); bool L_12 = AttributeCollection_Contains_m1883420386(L_10, L_11, /*hidden argument*/NULL); return L_12; } IL_004b: { AttributeCollection_t3634739288 * L_13 = VirtFuncInvoker0< AttributeCollection_t3634739288 * >::Invoke(7 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_14 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(DefaultValueAttribute_t1210082725_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_13); Attribute_t2739832645 * L_15 = VirtFuncInvoker1< Attribute_t2739832645 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_13, L_14); V_1 = ((DefaultValueAttribute_t1210082725 *)CastclassClass((RuntimeObject*)L_15, DefaultValueAttribute_t1210082725_il2cpp_TypeInfo_var)); DefaultValueAttribute_t1210082725 * L_16 = V_1; if (!L_16) { goto IL_00a2; } } { RuntimeObject * L_17 = ___component0; RuntimeObject * L_18 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(26 /* System.Object System.ComponentModel.ReflectionPropertyDescriptor::GetValue(System.Object) */, __this, L_17); V_2 = L_18; DefaultValueAttribute_t1210082725 * L_19 = V_1; NullCheck(L_19); RuntimeObject * L_20 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.ComponentModel.DefaultValueAttribute::get_Value() */, L_19); if (!L_20) { goto IL_0085; } } { RuntimeObject * L_21 = V_2; if (L_21) { goto IL_0092; } } IL_0085: { DefaultValueAttribute_t1210082725 * L_22 = V_1; NullCheck(L_22); RuntimeObject * L_23 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.ComponentModel.DefaultValueAttribute::get_Value() */, L_22); RuntimeObject * L_24 = V_2; return (bool)((((int32_t)((((RuntimeObject*)(RuntimeObject *)L_23) == ((RuntimeObject*)(RuntimeObject *)L_24))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0092: { DefaultValueAttribute_t1210082725 * L_25 = V_1; NullCheck(L_25); RuntimeObject * L_26 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.ComponentModel.DefaultValueAttribute::get_Value() */, L_25); RuntimeObject * L_27 = V_2; NullCheck(L_26); bool L_28 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_26, L_27); return (bool)((((int32_t)L_28) == ((int32_t)0))? 1 : 0); } IL_00a2: { RuntimeObject * L_29 = ___component0; MethodInfo_t * L_30 = ReflectionPropertyDescriptor_FindPropertyMethod_m3729960446(__this, L_29, _stringLiteral971996611, /*hidden argument*/NULL); V_3 = L_30; MethodInfo_t * L_31 = V_3; if (!L_31) { goto IL_00c3; } } { MethodInfo_t * L_32 = V_3; RuntimeObject * L_33 = ___component0; NullCheck(L_32); RuntimeObject * L_34 = MethodBase_Invoke_m1864115319(L_32, L_33, (ObjectU5BU5D_t4199014551*)(ObjectU5BU5D_t4199014551*)NULL, /*hidden argument*/NULL); return ((*(bool*)((bool*)UnBox(L_34, Boolean_t3448040118_il2cpp_TypeInfo_var)))); } IL_00c3: { return (bool)1; } } // System.Void System.ComponentModel.RefreshEventArgs::.ctor(System.Object) extern "C" void RefreshEventArgs__ctor_m2983157069 (RefreshEventArgs_t632686523 * __this, RuntimeObject * ___componentChanged0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RefreshEventArgs__ctor_m2983157069_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t3326158294_il2cpp_TypeInfo_var); EventArgs__ctor_m2329401472(__this, /*hidden argument*/NULL); RuntimeObject * L_0 = ___componentChanged0; if (L_0) { goto IL_0017; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral1652782449, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0017: { RuntimeObject * L_2 = ___componentChanged0; __this->set_component_1(L_2); RuntimeObject * L_3 = __this->get_component_1(); NullCheck(L_3); Type_t * L_4 = Object_GetType_m1134229006(L_3, /*hidden argument*/NULL); __this->set_type_2(L_4); return; } } // System.Void System.ComponentModel.RefreshEventArgs::.ctor(System.Type) extern "C" void RefreshEventArgs__ctor_m2829995138 (RefreshEventArgs_t632686523 * __this, Type_t * ___typeChanged0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RefreshEventArgs__ctor_m2829995138_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t3326158294_il2cpp_TypeInfo_var); EventArgs__ctor_m2329401472(__this, /*hidden argument*/NULL); Type_t * L_0 = ___typeChanged0; __this->set_type_2(L_0); return; } } // System.Object System.ComponentModel.RefreshEventArgs::get_ComponentChanged() extern "C" RuntimeObject * RefreshEventArgs_get_ComponentChanged_m961872873 (RefreshEventArgs_t632686523 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_component_1(); return L_0; } } // System.Type System.ComponentModel.RefreshEventArgs::get_TypeChanged() extern "C" Type_t * RefreshEventArgs_get_TypeChanged_m3388842288 (RefreshEventArgs_t632686523 * __this, const RuntimeMethod* method) { { Type_t * L_0 = __this->get_type_2(); return L_0; } } // System.Void System.ComponentModel.RefreshEventHandler::.ctor(System.Object,System.IntPtr) extern "C" void RefreshEventHandler__ctor_m109868824 (RefreshEventHandler_t3510407695 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.ComponentModel.RefreshEventHandler::Invoke(System.ComponentModel.RefreshEventArgs) extern "C" void RefreshEventHandler_Invoke_m1530138922 (RefreshEventHandler_t3510407695 * __this, RefreshEventArgs_t632686523 * ___e0, const RuntimeMethod* method) { if(__this->get_prev_9() != NULL) { RefreshEventHandler_Invoke_m1530138922((RefreshEventHandler_t3510407695 *)__this->get_prev_9(),___e0, method); } il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3())); bool ___methodIsStatic = MethodIsStatic((RuntimeMethod*)(__this->get_method_3())); if (__this->get_m_target_2() != NULL && ___methodIsStatic) { typedef void (*FunctionPointerType) (RuntimeObject *, void* __this, RefreshEventArgs_t632686523 * ___e0, const RuntimeMethod* method); ((FunctionPointerType)__this->get_method_ptr_0())(NULL,__this->get_m_target_2(),___e0,(RuntimeMethod*)(__this->get_method_3())); } else if (__this->get_m_target_2() != NULL || ___methodIsStatic) { typedef void (*FunctionPointerType) (void* __this, RefreshEventArgs_t632686523 * ___e0, const RuntimeMethod* method); ((FunctionPointerType)__this->get_method_ptr_0())(__this->get_m_target_2(),___e0,(RuntimeMethod*)(__this->get_method_3())); } else { typedef void (*FunctionPointerType) (void* __this, const RuntimeMethod* method); ((FunctionPointerType)__this->get_method_ptr_0())(___e0,(RuntimeMethod*)(__this->get_method_3())); } } // System.IAsyncResult System.ComponentModel.RefreshEventHandler::BeginInvoke(System.ComponentModel.RefreshEventArgs,System.AsyncCallback,System.Object) extern "C" RuntimeObject* RefreshEventHandler_BeginInvoke_m497338269 (RefreshEventHandler_t3510407695 * __this, RefreshEventArgs_t632686523 * ___e0, AsyncCallback_t1634113497 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { void *__d_args[2] = {0}; __d_args[0] = ___e0; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Void System.ComponentModel.RefreshEventHandler::EndInvoke(System.IAsyncResult) extern "C" void RefreshEventHandler_EndInvoke_m763348793 (RefreshEventHandler_t3510407695 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } // System.Void System.ComponentModel.RefreshPropertiesAttribute::.ctor(System.ComponentModel.RefreshProperties) extern "C" void RefreshPropertiesAttribute__ctor_m1020623331 (RefreshPropertiesAttribute_t720074670 * __this, int32_t ___refresh0, const RuntimeMethod* method) { { Attribute__ctor_m3216322730(__this, /*hidden argument*/NULL); int32_t L_0 = ___refresh0; __this->set_refresh_0(L_0); return; } } // System.Void System.ComponentModel.RefreshPropertiesAttribute::.cctor() extern "C" void RefreshPropertiesAttribute__cctor_m12753827 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RefreshPropertiesAttribute__cctor_m12753827_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RefreshPropertiesAttribute_t720074670 * L_0 = (RefreshPropertiesAttribute_t720074670 *)il2cpp_codegen_object_new(RefreshPropertiesAttribute_t720074670_il2cpp_TypeInfo_var); RefreshPropertiesAttribute__ctor_m1020623331(L_0, 1, /*hidden argument*/NULL); ((RefreshPropertiesAttribute_t720074670_StaticFields*)il2cpp_codegen_static_fields_for(RefreshPropertiesAttribute_t720074670_il2cpp_TypeInfo_var))->set_All_1(L_0); RefreshPropertiesAttribute_t720074670 * L_1 = (RefreshPropertiesAttribute_t720074670 *)il2cpp_codegen_object_new(RefreshPropertiesAttribute_t720074670_il2cpp_TypeInfo_var); RefreshPropertiesAttribute__ctor_m1020623331(L_1, 0, /*hidden argument*/NULL); ((RefreshPropertiesAttribute_t720074670_StaticFields*)il2cpp_codegen_static_fields_for(RefreshPropertiesAttribute_t720074670_il2cpp_TypeInfo_var))->set_Default_2(L_1); RefreshPropertiesAttribute_t720074670 * L_2 = (RefreshPropertiesAttribute_t720074670 *)il2cpp_codegen_object_new(RefreshPropertiesAttribute_t720074670_il2cpp_TypeInfo_var); RefreshPropertiesAttribute__ctor_m1020623331(L_2, 2, /*hidden argument*/NULL); ((RefreshPropertiesAttribute_t720074670_StaticFields*)il2cpp_codegen_static_fields_for(RefreshPropertiesAttribute_t720074670_il2cpp_TypeInfo_var))->set_Repaint_3(L_2); return; } } // System.ComponentModel.RefreshProperties System.ComponentModel.RefreshPropertiesAttribute::get_RefreshProperties() extern "C" int32_t RefreshPropertiesAttribute_get_RefreshProperties_m3149506310 (RefreshPropertiesAttribute_t720074670 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_refresh_0(); return L_0; } } // System.Boolean System.ComponentModel.RefreshPropertiesAttribute::Equals(System.Object) extern "C" bool RefreshPropertiesAttribute_Equals_m3990079330 (RefreshPropertiesAttribute_t720074670 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RefreshPropertiesAttribute_Equals_m3990079330_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; if (((RefreshPropertiesAttribute_t720074670 *)IsInstSealed((RuntimeObject*)L_0, RefreshPropertiesAttribute_t720074670_il2cpp_TypeInfo_var))) { goto IL_000d; } } { return (bool)0; } IL_000d: { RuntimeObject * L_1 = ___obj0; if ((!(((RuntimeObject*)(RuntimeObject *)L_1) == ((RuntimeObject*)(RefreshPropertiesAttribute_t720074670 *)__this)))) { goto IL_0016; } } { return (bool)1; } IL_0016: { RuntimeObject * L_2 = ___obj0; NullCheck(((RefreshPropertiesAttribute_t720074670 *)CastclassSealed((RuntimeObject*)L_2, RefreshPropertiesAttribute_t720074670_il2cpp_TypeInfo_var))); int32_t L_3 = RefreshPropertiesAttribute_get_RefreshProperties_m3149506310(((RefreshPropertiesAttribute_t720074670 *)CastclassSealed((RuntimeObject*)L_2, RefreshPropertiesAttribute_t720074670_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); int32_t L_4 = __this->get_refresh_0(); return (bool)((((int32_t)L_3) == ((int32_t)L_4))? 1 : 0); } } // System.Int32 System.ComponentModel.RefreshPropertiesAttribute::GetHashCode() extern "C" int32_t RefreshPropertiesAttribute_GetHashCode_m1055128670 (RefreshPropertiesAttribute_t720074670 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RefreshPropertiesAttribute_GetHashCode_m1055128670_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_refresh_0(); int32_t L_1 = L_0; RuntimeObject * L_2 = Box(RefreshProperties_t4103646669_il2cpp_TypeInfo_var, &L_1); NullCheck((Enum_t1784364487 *)L_2); int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Enum::GetHashCode() */, (Enum_t1784364487 *)L_2); return L_3; } } // System.Boolean System.ComponentModel.RefreshPropertiesAttribute::IsDefaultAttribute() extern "C" bool RefreshPropertiesAttribute_IsDefaultAttribute_m471504080 (RefreshPropertiesAttribute_t720074670 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RefreshPropertiesAttribute_IsDefaultAttribute_m471504080_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(RefreshPropertiesAttribute_t720074670_il2cpp_TypeInfo_var); RefreshPropertiesAttribute_t720074670 * L_0 = ((RefreshPropertiesAttribute_t720074670_StaticFields*)il2cpp_codegen_static_fields_for(RefreshPropertiesAttribute_t720074670_il2cpp_TypeInfo_var))->get_Default_2(); return (bool)((((RuntimeObject*)(RefreshPropertiesAttribute_t720074670 *)__this) == ((RuntimeObject*)(RefreshPropertiesAttribute_t720074670 *)L_0))? 1 : 0); } } // System.Void System.ComponentModel.RunWorkerCompletedEventArgs::.ctor(System.Object,System.Exception,System.Boolean) extern "C" void RunWorkerCompletedEventArgs__ctor_m2736828206 (RunWorkerCompletedEventArgs_t2985097864 * __this, RuntimeObject * ___result0, Exception_t2428370182 * ___error1, bool ___cancelled2, const RuntimeMethod* method) { { Exception_t2428370182 * L_0 = ___error1; bool L_1 = ___cancelled2; AsyncCompletedEventArgs__ctor_m2331589897(__this, L_0, L_1, NULL, /*hidden argument*/NULL); RuntimeObject * L_2 = ___result0; __this->set_result_4(L_2); return; } } // System.Object System.ComponentModel.RunWorkerCompletedEventArgs::get_Result() extern "C" RuntimeObject * RunWorkerCompletedEventArgs_get_Result_m1518218028 (RunWorkerCompletedEventArgs_t2985097864 * __this, const RuntimeMethod* method) { { AsyncCompletedEventArgs_RaiseExceptionIfNecessary_m82002463(__this, /*hidden argument*/NULL); RuntimeObject * L_0 = __this->get_result_4(); return L_0; } } // System.Object System.ComponentModel.RunWorkerCompletedEventArgs::get_UserState() extern "C" RuntimeObject * RunWorkerCompletedEventArgs_get_UserState_m180294824 (RunWorkerCompletedEventArgs_t2985097864 * __this, const RuntimeMethod* method) { { return NULL; } } // System.Void System.ComponentModel.RunWorkerCompletedEventHandler::.ctor(System.Object,System.IntPtr) extern "C" void RunWorkerCompletedEventHandler__ctor_m994275869 (RunWorkerCompletedEventHandler_t2405942011 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.ComponentModel.RunWorkerCompletedEventHandler::Invoke(System.Object,System.ComponentModel.RunWorkerCompletedEventArgs) extern "C" void RunWorkerCompletedEventHandler_Invoke_m3234344108 (RunWorkerCompletedEventHandler_t2405942011 * __this, RuntimeObject * ___sender0, RunWorkerCompletedEventArgs_t2985097864 * ___e1, const RuntimeMethod* method) { if(__this->get_prev_9() != NULL) { RunWorkerCompletedEventHandler_Invoke_m3234344108((RunWorkerCompletedEventHandler_t2405942011 *)__this->get_prev_9(),___sender0, ___e1, method); } il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3())); bool ___methodIsStatic = MethodIsStatic((RuntimeMethod*)(__this->get_method_3())); if (__this->get_m_target_2() != NULL && ___methodIsStatic) { typedef void (*FunctionPointerType) (RuntimeObject *, void* __this, RuntimeObject * ___sender0, RunWorkerCompletedEventArgs_t2985097864 * ___e1, const RuntimeMethod* method); ((FunctionPointerType)__this->get_method_ptr_0())(NULL,__this->get_m_target_2(),___sender0, ___e1,(RuntimeMethod*)(__this->get_method_3())); } else if (__this->get_m_target_2() != NULL || ___methodIsStatic) { typedef void (*FunctionPointerType) (void* __this, RuntimeObject * ___sender0, RunWorkerCompletedEventArgs_t2985097864 * ___e1, const RuntimeMethod* method); ((FunctionPointerType)__this->get_method_ptr_0())(__this->get_m_target_2(),___sender0, ___e1,(RuntimeMethod*)(__this->get_method_3())); } else { typedef void (*FunctionPointerType) (void* __this, RunWorkerCompletedEventArgs_t2985097864 * ___e1, const RuntimeMethod* method); ((FunctionPointerType)__this->get_method_ptr_0())(___sender0, ___e1,(RuntimeMethod*)(__this->get_method_3())); } } // System.IAsyncResult System.ComponentModel.RunWorkerCompletedEventHandler::BeginInvoke(System.Object,System.ComponentModel.RunWorkerCompletedEventArgs,System.AsyncCallback,System.Object) extern "C" RuntimeObject* RunWorkerCompletedEventHandler_BeginInvoke_m1268619412 (RunWorkerCompletedEventHandler_t2405942011 * __this, RuntimeObject * ___sender0, RunWorkerCompletedEventArgs_t2985097864 * ___e1, AsyncCallback_t1634113497 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { void *__d_args[3] = {0}; __d_args[0] = ___sender0; __d_args[1] = ___e1; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3); } // System.Void System.ComponentModel.RunWorkerCompletedEventHandler::EndInvoke(System.IAsyncResult) extern "C" void RunWorkerCompletedEventHandler_EndInvoke_m3123713064 (RunWorkerCompletedEventHandler_t2405942011 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } // System.Void System.ComponentModel.SByteConverter::.ctor() extern "C" void SByteConverter__ctor_m2330702641 (SByteConverter_t3452734354 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SByteConverter__ctor_m2330702641_MetadataUsageId); s_Il2CppMethodInitialized = true; } { BaseNumberConverter__ctor_m1174706078(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(SByte_t46020240_0_0_0_var), /*hidden argument*/NULL); ((BaseNumberConverter_t401835300 *)__this)->set_InnerType_0(L_0); return; } } // System.Boolean System.ComponentModel.SByteConverter::get_SupportHex() extern "C" bool SByteConverter_get_SupportHex_m3166383148 (SByteConverter_t3452734354 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.String System.ComponentModel.SByteConverter::ConvertToString(System.Object,System.Globalization.NumberFormatInfo) extern "C" String_t* SByteConverter_ConvertToString_m3253110235 (SByteConverter_t3452734354 * __this, RuntimeObject * ___value0, NumberFormatInfo_t2417595227 * ___format1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SByteConverter_ConvertToString_m3253110235_MetadataUsageId); s_Il2CppMethodInitialized = true; } int8_t V_0 = 0x0; { RuntimeObject * L_0 = ___value0; V_0 = ((*(int8_t*)((int8_t*)UnBox(L_0, SByte_t46020240_il2cpp_TypeInfo_var)))); NumberFormatInfo_t2417595227 * L_1 = ___format1; String_t* L_2 = SByte_ToString_m1883994907((&V_0), _stringLiteral4225065365, L_1, /*hidden argument*/NULL); return L_2; } } // System.Object System.ComponentModel.SByteConverter::ConvertFromString(System.String,System.Globalization.NumberFormatInfo) extern "C" RuntimeObject * SByteConverter_ConvertFromString_m3990870987 (SByteConverter_t3452734354 * __this, String_t* ___value0, NumberFormatInfo_t2417595227 * ___format1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SByteConverter_ConvertFromString_m3990870987_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; NumberFormatInfo_t2417595227 * L_1 = ___format1; int8_t L_2 = SByte_Parse_m1720621564(NULL /*static, unused*/, L_0, 7, L_1, /*hidden argument*/NULL); int8_t L_3 = L_2; RuntimeObject * L_4 = Box(SByte_t46020240_il2cpp_TypeInfo_var, &L_3); return L_4; } } // System.Object System.ComponentModel.SByteConverter::ConvertFromString(System.String,System.Int32) extern "C" RuntimeObject * SByteConverter_ConvertFromString_m995539476 (SByteConverter_t3452734354 * __this, String_t* ___value0, int32_t ___fromBase1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SByteConverter_ConvertFromString_m995539476_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; int32_t L_1 = ___fromBase1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t666583334_il2cpp_TypeInfo_var); int8_t L_2 = Convert_ToSByte_m128393188(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL); int8_t L_3 = L_2; RuntimeObject * L_4 = Box(SByte_t46020240_il2cpp_TypeInfo_var, &L_3); return L_4; } } // System.Void System.ComponentModel.SingleConverter::.ctor() extern "C" void SingleConverter__ctor_m1265787081 (SingleConverter_t842878517 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SingleConverter__ctor_m1265787081_MetadataUsageId); s_Il2CppMethodInitialized = true; } { BaseNumberConverter__ctor_m1174706078(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Single_t318564439_0_0_0_var), /*hidden argument*/NULL); ((BaseNumberConverter_t401835300 *)__this)->set_InnerType_0(L_0); return; } } // System.Boolean System.ComponentModel.SingleConverter::get_SupportHex() extern "C" bool SingleConverter_get_SupportHex_m3590972619 (SingleConverter_t842878517 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.String System.ComponentModel.SingleConverter::ConvertToString(System.Object,System.Globalization.NumberFormatInfo) extern "C" String_t* SingleConverter_ConvertToString_m3288436896 (SingleConverter_t842878517 * __this, RuntimeObject * ___value0, NumberFormatInfo_t2417595227 * ___format1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SingleConverter_ConvertToString_m3288436896_MetadataUsageId); s_Il2CppMethodInitialized = true; } float V_0 = 0.0f; { RuntimeObject * L_0 = ___value0; V_0 = ((*(float*)((float*)UnBox(L_0, Single_t318564439_il2cpp_TypeInfo_var)))); NumberFormatInfo_t2417595227 * L_1 = ___format1; String_t* L_2 = Single_ToString_m354944689((&V_0), _stringLiteral1416419149, L_1, /*hidden argument*/NULL); return L_2; } } // System.Object System.ComponentModel.SingleConverter::ConvertFromString(System.String,System.Globalization.NumberFormatInfo) extern "C" RuntimeObject * SingleConverter_ConvertFromString_m256781876 (SingleConverter_t842878517 * __this, String_t* ___value0, NumberFormatInfo_t2417595227 * ___format1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SingleConverter_ConvertFromString_m256781876_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; NumberFormatInfo_t2417595227 * L_1 = ___format1; float L_2 = Single_Parse_m2824391033(NULL /*static, unused*/, L_0, ((int32_t)167), L_1, /*hidden argument*/NULL); float L_3 = L_2; RuntimeObject * L_4 = Box(Single_t318564439_il2cpp_TypeInfo_var, &L_3); return L_4; } } // System.Void System.ComponentModel.StringConverter::.ctor() extern "C" void StringConverter__ctor_m1108254409 (StringConverter_t482526816 * __this, const RuntimeMethod* method) { { TypeConverter__ctor_m3014391247(__this, /*hidden argument*/NULL); return; } } // System.Boolean System.ComponentModel.StringConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type) extern "C" bool StringConverter_CanConvertFrom_m2069526500 (StringConverter_t482526816 * __this, RuntimeObject* ___context0, Type_t * ___sourceType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StringConverter_CanConvertFrom_m2069526500_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___sourceType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(Type_t *)L_1)))) { goto IL_0012; } } { return (bool)1; } IL_0012: { RuntimeObject* L_2 = ___context0; Type_t * L_3 = ___sourceType1; bool L_4 = TypeConverter_CanConvertFrom_m2108188258(__this, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Object System.ComponentModel.StringConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object) extern "C" RuntimeObject * StringConverter_ConvertFrom_m484211764 (StringConverter_t482526816 * __this, RuntimeObject* ___context0, CultureInfo_t270095993 * ___culture1, RuntimeObject * ___value2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StringConverter_ConvertFrom_m484211764_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value2; if (L_0) { goto IL_000c; } } { IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); return L_1; } IL_000c: { RuntimeObject * L_2 = ___value2; if (!((String_t*)IsInstSealed((RuntimeObject*)L_2, String_t_il2cpp_TypeInfo_var))) { goto IL_001e; } } { RuntimeObject * L_3 = ___value2; return ((String_t*)CastclassSealed((RuntimeObject*)L_3, String_t_il2cpp_TypeInfo_var)); } IL_001e: { RuntimeObject* L_4 = ___context0; CultureInfo_t270095993 * L_5 = ___culture1; RuntimeObject * L_6 = ___value2; RuntimeObject * L_7 = TypeConverter_ConvertFrom_m3891144487(__this, L_4, L_5, L_6, /*hidden argument*/NULL); return L_7; } } // System.Void System.ComponentModel.TimeSpanConverter::.ctor() extern "C" void TimeSpanConverter__ctor_m308760584 (TimeSpanConverter_t1641375511 * __this, const RuntimeMethod* method) { { TypeConverter__ctor_m3014391247(__this, /*hidden argument*/NULL); return; } } // System.Boolean System.ComponentModel.TimeSpanConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type) extern "C" bool TimeSpanConverter_CanConvertFrom_m3905730925 (TimeSpanConverter_t1641375511 * __this, RuntimeObject* ___context0, Type_t * ___sourceType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpanConverter_CanConvertFrom_m3905730925_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___sourceType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(Type_t *)L_1)))) { goto IL_0012; } } { return (bool)1; } IL_0012: { RuntimeObject* L_2 = ___context0; Type_t * L_3 = ___sourceType1; bool L_4 = TypeConverter_CanConvertFrom_m2108188258(__this, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Boolean System.ComponentModel.TimeSpanConverter::CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type) extern "C" bool TimeSpanConverter_CanConvertTo_m2104130398 (TimeSpanConverter_t1641375511 * __this, RuntimeObject* ___context0, Type_t * ___destinationType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpanConverter_CanConvertTo_m2104130398_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(Type_t *)L_1)))) { goto IL_0012; } } { return (bool)1; } IL_0012: { Type_t * L_2 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_3 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(InstanceDescriptor_t156299730_0_0_0_var), /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_2) == ((RuntimeObject*)(Type_t *)L_3)))) { goto IL_0024; } } { return (bool)1; } IL_0024: { RuntimeObject* L_4 = ___context0; Type_t * L_5 = ___destinationType1; bool L_6 = TypeConverter_CanConvertTo_m2935786827(__this, L_4, L_5, /*hidden argument*/NULL); return L_6; } } // System.Object System.ComponentModel.TimeSpanConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object) extern "C" RuntimeObject * TimeSpanConverter_ConvertFrom_m1865129267 (TimeSpanConverter_t1641375511 * __this, RuntimeObject* ___context0, CultureInfo_t270095993 * ___culture1, RuntimeObject * ___value2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpanConverter_ConvertFrom_m1865129267_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; RuntimeObject * V_1 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___value2; NullCheck(L_0); Type_t * L_1 = Object_GetType_m1134229006(L_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_1) == ((RuntimeObject*)(Type_t *)L_2)))) { goto IL_0049; } } { RuntimeObject * L_3 = ___value2; V_0 = ((String_t*)CastclassSealed((RuntimeObject*)L_3, String_t_il2cpp_TypeInfo_var)); } IL_001c: try { // begin try (depth: 1) { String_t* L_4 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t1687785723_il2cpp_TypeInfo_var); TimeSpan_t1687785723 L_5 = TimeSpan_Parse_m3592962379(NULL /*static, unused*/, L_4, /*hidden argument*/NULL); TimeSpan_t1687785723 L_6 = L_5; RuntimeObject * L_7 = Box(TimeSpan_t1687785723_il2cpp_TypeInfo_var, &L_6); V_1 = L_7; goto IL_0053; } IL_002d: { ; // IL_002d: leave IL_0049 } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t2428370182 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0032; throw e; } CATCH_0032: { // begin catch(System.Object) { String_t* L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_9 = String_Concat_m3881611230(NULL /*static, unused*/, L_8, _stringLiteral105496946, /*hidden argument*/NULL); FormatException_t3614201526 * L_10 = (FormatException_t3614201526 *)il2cpp_codegen_object_new(FormatException_t3614201526_il2cpp_TypeInfo_var); FormatException__ctor_m1936902822(L_10, L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_0044: { goto IL_0049; } } // end catch (depth: 1) IL_0049: { RuntimeObject* L_11 = ___context0; CultureInfo_t270095993 * L_12 = ___culture1; RuntimeObject * L_13 = ___value2; RuntimeObject * L_14 = TypeConverter_ConvertFrom_m3891144487(__this, L_11, L_12, L_13, /*hidden argument*/NULL); return L_14; } IL_0053: { RuntimeObject * L_15 = V_1; return L_15; } } // System.Object System.ComponentModel.TimeSpanConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type) extern "C" RuntimeObject * TimeSpanConverter_ConvertTo_m3806968553 (TimeSpanConverter_t1641375511 * __this, RuntimeObject* ___context0, CultureInfo_t270095993 * ___culture1, RuntimeObject * ___value2, Type_t * ___destinationType3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpanConverter_ConvertTo_m3806968553_MetadataUsageId); s_Il2CppMethodInitialized = true; } TimeSpan_t1687785723 V_0; memset(&V_0, 0, sizeof(V_0)); ConstructorInfo_t673747461 * V_1 = NULL; { RuntimeObject * L_0 = ___value2; if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, TimeSpan_t1687785723_il2cpp_TypeInfo_var))) { goto IL_0081; } } { RuntimeObject * L_1 = ___value2; V_0 = ((*(TimeSpan_t1687785723 *)((TimeSpan_t1687785723 *)UnBox(L_1, TimeSpan_t1687785723_il2cpp_TypeInfo_var)))); Type_t * L_2 = ___destinationType3; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_3 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_2) == ((RuntimeObject*)(Type_t *)L_3)))) { goto IL_0031; } } { RuntimeObject * L_4 = ___value2; if (!L_4) { goto IL_0031; } } { String_t* L_5 = TimeSpan_ToString_m3963148588((&V_0), /*hidden argument*/NULL); return L_5; } IL_0031: { Type_t * L_6 = ___destinationType3; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(InstanceDescriptor_t156299730_0_0_0_var), /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_6) == ((RuntimeObject*)(Type_t *)L_7)))) { goto IL_0081; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(TimeSpan_t1687785723_0_0_0_var), /*hidden argument*/NULL); TypeU5BU5D_t89919618* L_9 = ((TypeU5BU5D_t89919618*)SZArrayNew(TypeU5BU5D_t89919618_il2cpp_TypeInfo_var, (uint32_t)1)); Type_t * L_10 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Int64_t2704468446_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_9); ArrayElementTypeCheck (L_9, L_10); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_10); NullCheck(L_8); ConstructorInfo_t673747461 * L_11 = Type_GetConstructor_m2299987216(L_8, L_9, /*hidden argument*/NULL); V_1 = L_11; ConstructorInfo_t673747461 * L_12 = V_1; ObjectU5BU5D_t4199014551* L_13 = ((ObjectU5BU5D_t4199014551*)SZArrayNew(ObjectU5BU5D_t4199014551_il2cpp_TypeInfo_var, (uint32_t)1)); int64_t L_14 = TimeSpan_get_Ticks_m760226460((&V_0), /*hidden argument*/NULL); int64_t L_15 = L_14; RuntimeObject * L_16 = Box(Int64_t2704468446_il2cpp_TypeInfo_var, &L_15); NullCheck(L_13); ArrayElementTypeCheck (L_13, L_16); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_16); InstanceDescriptor_t156299730 * L_17 = (InstanceDescriptor_t156299730 *)il2cpp_codegen_object_new(InstanceDescriptor_t156299730_il2cpp_TypeInfo_var); InstanceDescriptor__ctor_m85546297(L_17, L_12, (RuntimeObject*)(RuntimeObject*)L_13, /*hidden argument*/NULL); return L_17; } IL_0081: { RuntimeObject* L_18 = ___context0; CultureInfo_t270095993 * L_19 = ___culture1; RuntimeObject * L_20 = ___value2; Type_t * L_21 = ___destinationType3; RuntimeObject * L_22 = TypeConverter_ConvertTo_m4033528233(__this, L_18, L_19, L_20, L_21, /*hidden argument*/NULL); return L_22; } } // System.Void System.ComponentModel.ToolboxItemAttribute::.ctor(System.Boolean) extern "C" void ToolboxItemAttribute__ctor_m238509745 (ToolboxItemAttribute_t2314889077 * __this, bool ___defaultType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ToolboxItemAttribute__ctor_m238509745_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Attribute__ctor_m3216322730(__this, /*hidden argument*/NULL); bool L_0 = ___defaultType0; if (!L_0) { goto IL_0017; } } { __this->set_itemTypeName_4(_stringLiteral3844434689); } IL_0017: { return; } } // System.Void System.ComponentModel.ToolboxItemAttribute::.ctor(System.String) extern "C" void ToolboxItemAttribute__ctor_m1620422022 (ToolboxItemAttribute_t2314889077 * __this, String_t* ___toolboxItemName0, const RuntimeMethod* method) { { Attribute__ctor_m3216322730(__this, /*hidden argument*/NULL); String_t* L_0 = ___toolboxItemName0; __this->set_itemTypeName_4(L_0); return; } } // System.Void System.ComponentModel.ToolboxItemAttribute::.ctor(System.Type) extern "C" void ToolboxItemAttribute__ctor_m3292375455 (ToolboxItemAttribute_t2314889077 * __this, Type_t * ___toolboxItemType0, const RuntimeMethod* method) { { Attribute__ctor_m3216322730(__this, /*hidden argument*/NULL); Type_t * L_0 = ___toolboxItemType0; __this->set_itemType_3(L_0); return; } } // System.Void System.ComponentModel.ToolboxItemAttribute::.cctor() extern "C" void ToolboxItemAttribute__cctor_m3745560833 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ToolboxItemAttribute__cctor_m3745560833_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ToolboxItemAttribute_t2314889077 * L_0 = (ToolboxItemAttribute_t2314889077 *)il2cpp_codegen_object_new(ToolboxItemAttribute_t2314889077_il2cpp_TypeInfo_var); ToolboxItemAttribute__ctor_m1620422022(L_0, _stringLiteral3844434689, /*hidden argument*/NULL); ((ToolboxItemAttribute_t2314889077_StaticFields*)il2cpp_codegen_static_fields_for(ToolboxItemAttribute_t2314889077_il2cpp_TypeInfo_var))->set_Default_1(L_0); ToolboxItemAttribute_t2314889077 * L_1 = (ToolboxItemAttribute_t2314889077 *)il2cpp_codegen_object_new(ToolboxItemAttribute_t2314889077_il2cpp_TypeInfo_var); ToolboxItemAttribute__ctor_m238509745(L_1, (bool)0, /*hidden argument*/NULL); ((ToolboxItemAttribute_t2314889077_StaticFields*)il2cpp_codegen_static_fields_for(ToolboxItemAttribute_t2314889077_il2cpp_TypeInfo_var))->set_None_2(L_1); return; } } // System.Type System.ComponentModel.ToolboxItemAttribute::get_ToolboxItemType() extern "C" Type_t * ToolboxItemAttribute_get_ToolboxItemType_m1921205608 (ToolboxItemAttribute_t2314889077 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ToolboxItemAttribute_get_ToolboxItemType_m1921205608_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t2428370182 * V_0 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { Type_t * L_0 = __this->get_itemType_3(); if (L_0) { goto IL_004a; } } { String_t* L_1 = __this->get_itemTypeName_4(); if (!L_1) { goto IL_004a; } } IL_0016: try { // begin try (depth: 1) String_t* L_2 = __this->get_itemTypeName_4(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_3 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_m1876527967, L_2, (bool)1, "System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"); __this->set_itemType_3(L_3); goto IL_004a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t2428370182 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t2428370182_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_002d; throw e; } CATCH_002d: { // begin catch(System.Exception) { V_0 = ((Exception_t2428370182 *)__exception_local); String_t* L_4 = __this->get_itemTypeName_4(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_5 = String_Concat_m3881611230(NULL /*static, unused*/, _stringLiteral3066388512, L_4, /*hidden argument*/NULL); Exception_t2428370182 * L_6 = V_0; ArgumentException_t1946723077 * L_7 = (ArgumentException_t1946723077 *)il2cpp_codegen_object_new(ArgumentException_t1946723077_il2cpp_TypeInfo_var); ArgumentException__ctor_m945005194(L_7, L_5, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7); } IL_0045: { goto IL_004a; } } // end catch (depth: 1) IL_004a: { Type_t * L_8 = __this->get_itemType_3(); return L_8; } } // System.String System.ComponentModel.ToolboxItemAttribute::get_ToolboxItemTypeName() extern "C" String_t* ToolboxItemAttribute_get_ToolboxItemTypeName_m2802998196 (ToolboxItemAttribute_t2314889077 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ToolboxItemAttribute_get_ToolboxItemTypeName_m2802998196_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->get_itemTypeName_4(); if (L_0) { goto IL_002d; } } { Type_t * L_1 = __this->get_itemType_3(); if (L_1) { goto IL_001c; } } { IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); return L_2; } IL_001c: { Type_t * L_3 = __this->get_itemType_3(); NullCheck(L_3); String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(15 /* System.String System.Type::get_AssemblyQualifiedName() */, L_3); __this->set_itemTypeName_4(L_4); } IL_002d: { String_t* L_5 = __this->get_itemTypeName_4(); return L_5; } } // System.Boolean System.ComponentModel.ToolboxItemAttribute::Equals(System.Object) extern "C" bool ToolboxItemAttribute_Equals_m3625837640 (ToolboxItemAttribute_t2314889077 * __this, RuntimeObject * ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ToolboxItemAttribute_Equals_m3625837640_MetadataUsageId); s_Il2CppMethodInitialized = true; } ToolboxItemAttribute_t2314889077 * V_0 = NULL; { RuntimeObject * L_0 = ___o0; V_0 = ((ToolboxItemAttribute_t2314889077 *)IsInstClass((RuntimeObject*)L_0, ToolboxItemAttribute_t2314889077_il2cpp_TypeInfo_var)); ToolboxItemAttribute_t2314889077 * L_1 = V_0; if (L_1) { goto IL_000f; } } { return (bool)0; } IL_000f: { ToolboxItemAttribute_t2314889077 * L_2 = V_0; NullCheck(L_2); String_t* L_3 = ToolboxItemAttribute_get_ToolboxItemTypeName_m2802998196(L_2, /*hidden argument*/NULL); String_t* L_4 = ToolboxItemAttribute_get_ToolboxItemTypeName_m2802998196(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_5 = String_op_Equality_m3571002539(NULL /*static, unused*/, L_3, L_4, /*hidden argument*/NULL); return L_5; } } // System.Int32 System.ComponentModel.ToolboxItemAttribute::GetHashCode() extern "C" int32_t ToolboxItemAttribute_GetHashCode_m2647058327 (ToolboxItemAttribute_t2314889077 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_itemTypeName_4(); if (!L_0) { goto IL_0017; } } { String_t* L_1 = __this->get_itemTypeName_4(); NullCheck(L_1); int32_t L_2 = String_GetHashCode_m3513779644(L_1, /*hidden argument*/NULL); return L_2; } IL_0017: { int32_t L_3 = Attribute_GetHashCode_m1425718791(__this, /*hidden argument*/NULL); return L_3; } } // System.Boolean System.ComponentModel.ToolboxItemAttribute::IsDefaultAttribute() extern "C" bool ToolboxItemAttribute_IsDefaultAttribute_m2441415889 (ToolboxItemAttribute_t2314889077 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ToolboxItemAttribute_IsDefaultAttribute_m2441415889_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ToolboxItemAttribute_t2314889077_il2cpp_TypeInfo_var); ToolboxItemAttribute_t2314889077 * L_0 = ((ToolboxItemAttribute_t2314889077_StaticFields*)il2cpp_codegen_static_fields_for(ToolboxItemAttribute_t2314889077_il2cpp_TypeInfo_var))->get_Default_1(); bool L_1 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.ComponentModel.ToolboxItemAttribute::Equals(System.Object) */, __this, L_0); return L_1; } } // System.Void System.ComponentModel.ToolboxItemFilterAttribute::.ctor(System.String) extern "C" void ToolboxItemFilterAttribute__ctor_m1572053136 (ToolboxItemFilterAttribute_t2268705424 * __this, String_t* ___filterString0, const RuntimeMethod* method) { { Attribute__ctor_m3216322730(__this, /*hidden argument*/NULL); String_t* L_0 = ___filterString0; __this->set_Filter_0(L_0); __this->set_ItemFilterType_1(0); return; } } // System.Void System.ComponentModel.ToolboxItemFilterAttribute::.ctor(System.String,System.ComponentModel.ToolboxItemFilterType) extern "C" void ToolboxItemFilterAttribute__ctor_m1845266197 (ToolboxItemFilterAttribute_t2268705424 * __this, String_t* ___filterString0, int32_t ___filterType1, const RuntimeMethod* method) { { Attribute__ctor_m3216322730(__this, /*hidden argument*/NULL); String_t* L_0 = ___filterString0; __this->set_Filter_0(L_0); int32_t L_1 = ___filterType1; __this->set_ItemFilterType_1(L_1); return; } } // System.String System.ComponentModel.ToolboxItemFilterAttribute::get_FilterString() extern "C" String_t* ToolboxItemFilterAttribute_get_FilterString_m1989123470 (ToolboxItemFilterAttribute_t2268705424 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_Filter_0(); return L_0; } } // System.ComponentModel.ToolboxItemFilterType System.ComponentModel.ToolboxItemFilterAttribute::get_FilterType() extern "C" int32_t ToolboxItemFilterAttribute_get_FilterType_m1363799316 (ToolboxItemFilterAttribute_t2268705424 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_ItemFilterType_1(); return L_0; } } // System.Object System.ComponentModel.ToolboxItemFilterAttribute::get_TypeId() extern "C" RuntimeObject * ToolboxItemFilterAttribute_get_TypeId_m500222411 (ToolboxItemFilterAttribute_t2268705424 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ToolboxItemFilterAttribute_get_TypeId_m500222411_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Attribute_get_TypeId_m684885516(__this, /*hidden argument*/NULL); String_t* L_1 = __this->get_Filter_0(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_2 = String_Concat_m4101136157(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Boolean System.ComponentModel.ToolboxItemFilterAttribute::Equals(System.Object) extern "C" bool ToolboxItemFilterAttribute_Equals_m40696254 (ToolboxItemFilterAttribute_t2268705424 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ToolboxItemFilterAttribute_Equals_m40696254_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B7_0 = 0; { RuntimeObject * L_0 = ___obj0; if (((ToolboxItemFilterAttribute_t2268705424 *)IsInstSealed((RuntimeObject*)L_0, ToolboxItemFilterAttribute_t2268705424_il2cpp_TypeInfo_var))) { goto IL_000d; } } { return (bool)0; } IL_000d: { RuntimeObject * L_1 = ___obj0; if ((!(((RuntimeObject*)(RuntimeObject *)L_1) == ((RuntimeObject*)(ToolboxItemFilterAttribute_t2268705424 *)__this)))) { goto IL_0016; } } { return (bool)1; } IL_0016: { RuntimeObject * L_2 = ___obj0; NullCheck(((ToolboxItemFilterAttribute_t2268705424 *)CastclassSealed((RuntimeObject*)L_2, ToolboxItemFilterAttribute_t2268705424_il2cpp_TypeInfo_var))); String_t* L_3 = ToolboxItemFilterAttribute_get_FilterString_m1989123470(((ToolboxItemFilterAttribute_t2268705424 *)CastclassSealed((RuntimeObject*)L_2, ToolboxItemFilterAttribute_t2268705424_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); String_t* L_4 = __this->get_Filter_0(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_5 = String_op_Equality_m3571002539(NULL /*static, unused*/, L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0046; } } { RuntimeObject * L_6 = ___obj0; NullCheck(((ToolboxItemFilterAttribute_t2268705424 *)CastclassSealed((RuntimeObject*)L_6, ToolboxItemFilterAttribute_t2268705424_il2cpp_TypeInfo_var))); int32_t L_7 = ToolboxItemFilterAttribute_get_FilterType_m1363799316(((ToolboxItemFilterAttribute_t2268705424 *)CastclassSealed((RuntimeObject*)L_6, ToolboxItemFilterAttribute_t2268705424_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); int32_t L_8 = __this->get_ItemFilterType_1(); G_B7_0 = ((((int32_t)L_7) == ((int32_t)L_8))? 1 : 0); goto IL_0047; } IL_0046: { G_B7_0 = 0; } IL_0047: { return (bool)G_B7_0; } } // System.Int32 System.ComponentModel.ToolboxItemFilterAttribute::GetHashCode() extern "C" int32_t ToolboxItemFilterAttribute_GetHashCode_m4246230474 (ToolboxItemFilterAttribute_t2268705424 * __this, const RuntimeMethod* method) { { String_t* L_0 = ToolboxItemFilterAttribute_ToString_m2524325177(__this, /*hidden argument*/NULL); NullCheck(L_0); int32_t L_1 = String_GetHashCode_m3513779644(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.ComponentModel.ToolboxItemFilterAttribute::Match(System.Object) extern "C" bool ToolboxItemFilterAttribute_Match_m1320938957 (ToolboxItemFilterAttribute_t2268705424 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ToolboxItemFilterAttribute_Match_m1320938957_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; if (((ToolboxItemFilterAttribute_t2268705424 *)IsInstSealed((RuntimeObject*)L_0, ToolboxItemFilterAttribute_t2268705424_il2cpp_TypeInfo_var))) { goto IL_000d; } } { return (bool)0; } IL_000d: { RuntimeObject * L_1 = ___obj0; NullCheck(((ToolboxItemFilterAttribute_t2268705424 *)CastclassSealed((RuntimeObject*)L_1, ToolboxItemFilterAttribute_t2268705424_il2cpp_TypeInfo_var))); String_t* L_2 = ToolboxItemFilterAttribute_get_FilterString_m1989123470(((ToolboxItemFilterAttribute_t2268705424 *)CastclassSealed((RuntimeObject*)L_1, ToolboxItemFilterAttribute_t2268705424_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); String_t* L_3 = __this->get_Filter_0(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_4 = String_op_Equality_m3571002539(NULL /*static, unused*/, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.String System.ComponentModel.ToolboxItemFilterAttribute::ToString() extern "C" String_t* ToolboxItemFilterAttribute_ToString_m2524325177 (ToolboxItemFilterAttribute_t2268705424 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ToolboxItemFilterAttribute_ToString_m2524325177_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->get_Filter_0(); int32_t L_1 = __this->get_ItemFilterType_1(); int32_t L_2 = L_1; RuntimeObject * L_3 = Box(ToolboxItemFilterType_t785669417_il2cpp_TypeInfo_var, &L_2); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_4 = String_Format_m659658103(NULL /*static, unused*/, _stringLiteral1560121519, L_0, L_3, /*hidden argument*/NULL); return L_4; } } // System.Void System.ComponentModel.TypeConverter::.ctor() extern "C" void TypeConverter__ctor_m3014391247 (TypeConverter_t3595149642 * __this, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); return; } } // System.Boolean System.ComponentModel.TypeConverter::CanConvertFrom(System.Type) extern "C" bool TypeConverter_CanConvertFrom_m1647243093 (TypeConverter_t3595149642 * __this, Type_t * ___sourceType0, const RuntimeMethod* method) { { Type_t * L_0 = ___sourceType0; bool L_1 = VirtFuncInvoker2< bool, RuntimeObject*, Type_t * >::Invoke(4 /* System.Boolean System.ComponentModel.TypeConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type) */, __this, (RuntimeObject*)NULL, L_0); return L_1; } } // System.Boolean System.ComponentModel.TypeConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type) extern "C" bool TypeConverter_CanConvertFrom_m2108188258 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, Type_t * ___sourceType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeConverter_CanConvertFrom_m2108188258_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___sourceType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(InstanceDescriptor_t156299730_0_0_0_var), /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(Type_t *)L_1)))) { goto IL_0012; } } { return (bool)1; } IL_0012: { return (bool)0; } } // System.Boolean System.ComponentModel.TypeConverter::CanConvertTo(System.Type) extern "C" bool TypeConverter_CanConvertTo_m518103433 (TypeConverter_t3595149642 * __this, Type_t * ___destinationType0, const RuntimeMethod* method) { { Type_t * L_0 = ___destinationType0; bool L_1 = VirtFuncInvoker2< bool, RuntimeObject*, Type_t * >::Invoke(5 /* System.Boolean System.ComponentModel.TypeConverter::CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type) */, __this, (RuntimeObject*)NULL, L_0); return L_1; } } // System.Boolean System.ComponentModel.TypeConverter::CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type) extern "C" bool TypeConverter_CanConvertTo_m2935786827 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, Type_t * ___destinationType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeConverter_CanConvertTo_m2935786827_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); return (bool)((((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(Type_t *)L_1))? 1 : 0); } } // System.Object System.ComponentModel.TypeConverter::ConvertFrom(System.Object) extern "C" RuntimeObject * TypeConverter_ConvertFrom_m1997812589 (TypeConverter_t3595149642 * __this, RuntimeObject * ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeConverter_ConvertFrom_m1997812589_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t270095993_il2cpp_TypeInfo_var); CultureInfo_t270095993 * L_0 = CultureInfo_get_CurrentCulture_m856101117(NULL /*static, unused*/, /*hidden argument*/NULL); RuntimeObject * L_1 = ___o0; RuntimeObject * L_2 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject*, CultureInfo_t270095993 *, RuntimeObject * >::Invoke(6 /* System.Object System.ComponentModel.TypeConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object) */, __this, (RuntimeObject*)NULL, L_0, L_1); return L_2; } } // System.Object System.ComponentModel.TypeConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object) extern "C" RuntimeObject * TypeConverter_ConvertFrom_m3891144487 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, CultureInfo_t270095993 * ___culture1, RuntimeObject * ___value2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeConverter_ConvertFrom_m3891144487_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value2; if (!((InstanceDescriptor_t156299730 *)IsInstSealed((RuntimeObject*)L_0, InstanceDescriptor_t156299730_il2cpp_TypeInfo_var))) { goto IL_0017; } } { RuntimeObject * L_1 = ___value2; NullCheck(((InstanceDescriptor_t156299730 *)CastclassSealed((RuntimeObject*)L_1, InstanceDescriptor_t156299730_il2cpp_TypeInfo_var))); RuntimeObject * L_2 = InstanceDescriptor_Invoke_m2265721018(((InstanceDescriptor_t156299730 *)CastclassSealed((RuntimeObject*)L_1, InstanceDescriptor_t156299730_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_2; } IL_0017: { RuntimeObject * L_3 = ___value2; Exception_t2428370182 * L_4 = TypeConverter_GetConvertFromException_m59689527(__this, L_3, /*hidden argument*/NULL); return L_4; } } // System.Object System.ComponentModel.TypeConverter::ConvertFromInvariantString(System.String) extern "C" RuntimeObject * TypeConverter_ConvertFromInvariantString_m3860474636 (TypeConverter_t3595149642 * __this, String_t* ___text0, const RuntimeMethod* method) { { String_t* L_0 = ___text0; RuntimeObject * L_1 = TypeConverter_ConvertFromInvariantString_m3779203635(__this, (RuntimeObject*)NULL, L_0, /*hidden argument*/NULL); return L_1; } } // System.Object System.ComponentModel.TypeConverter::ConvertFromInvariantString(System.ComponentModel.ITypeDescriptorContext,System.String) extern "C" RuntimeObject * TypeConverter_ConvertFromInvariantString_m3779203635 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, String_t* ___text1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeConverter_ConvertFromInvariantString_m3779203635_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___context0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t270095993_il2cpp_TypeInfo_var); CultureInfo_t270095993 * L_1 = CultureInfo_get_InvariantCulture_m307173330(NULL /*static, unused*/, /*hidden argument*/NULL); String_t* L_2 = ___text1; RuntimeObject * L_3 = TypeConverter_ConvertFromString_m948938740(__this, L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.Object System.ComponentModel.TypeConverter::ConvertFromString(System.String) extern "C" RuntimeObject * TypeConverter_ConvertFromString_m2331440306 (TypeConverter_t3595149642 * __this, String_t* ___text0, const RuntimeMethod* method) { { String_t* L_0 = ___text0; RuntimeObject * L_1 = TypeConverter_ConvertFrom_m1997812589(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Object System.ComponentModel.TypeConverter::ConvertFromString(System.ComponentModel.ITypeDescriptorContext,System.String) extern "C" RuntimeObject * TypeConverter_ConvertFromString_m2519070902 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, String_t* ___text1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeConverter_ConvertFromString_m2519070902_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___context0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t270095993_il2cpp_TypeInfo_var); CultureInfo_t270095993 * L_1 = CultureInfo_get_CurrentCulture_m856101117(NULL /*static, unused*/, /*hidden argument*/NULL); String_t* L_2 = ___text1; RuntimeObject * L_3 = TypeConverter_ConvertFromString_m948938740(__this, L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.Object System.ComponentModel.TypeConverter::ConvertFromString(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.String) extern "C" RuntimeObject * TypeConverter_ConvertFromString_m948938740 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, CultureInfo_t270095993 * ___culture1, String_t* ___text2, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___context0; CultureInfo_t270095993 * L_1 = ___culture1; String_t* L_2 = ___text2; RuntimeObject * L_3 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject*, CultureInfo_t270095993 *, RuntimeObject * >::Invoke(6 /* System.Object System.ComponentModel.TypeConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object) */, __this, L_0, L_1, L_2); return L_3; } } // System.Object System.ComponentModel.TypeConverter::ConvertTo(System.Object,System.Type) extern "C" RuntimeObject * TypeConverter_ConvertTo_m1277737454 (TypeConverter_t3595149642 * __this, RuntimeObject * ___value0, Type_t * ___destinationType1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; Type_t * L_1 = ___destinationType1; RuntimeObject * L_2 = VirtFuncInvoker4< RuntimeObject *, RuntimeObject*, CultureInfo_t270095993 *, RuntimeObject *, Type_t * >::Invoke(7 /* System.Object System.ComponentModel.TypeConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type) */, __this, (RuntimeObject*)NULL, (CultureInfo_t270095993 *)NULL, L_0, L_1); return L_2; } } // System.Object System.ComponentModel.TypeConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type) extern "C" RuntimeObject * TypeConverter_ConvertTo_m4033528233 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, CultureInfo_t270095993 * ___culture1, RuntimeObject * ___value2, Type_t * ___destinationType3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeConverter_ConvertTo_m4033528233_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___destinationType3; if (L_0) { goto IL_0012; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral4203514363, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0012: { Type_t * L_2 = ___destinationType3; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_3 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_2) == ((RuntimeObject*)(Type_t *)L_3)))) { goto IL_0036; } } { RuntimeObject * L_4 = ___value2; if (!L_4) { goto IL_0030; } } { RuntimeObject * L_5 = ___value2; NullCheck(L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_5); return L_6; } IL_0030: { IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_7 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); return L_7; } IL_0036: { RuntimeObject * L_8 = ___value2; Type_t * L_9 = ___destinationType3; Exception_t2428370182 * L_10 = TypeConverter_GetConvertToException_m3795797516(__this, L_8, L_9, /*hidden argument*/NULL); return L_10; } } // System.String System.ComponentModel.TypeConverter::ConvertToInvariantString(System.Object) extern "C" String_t* TypeConverter_ConvertToInvariantString_m4180045713 (TypeConverter_t3595149642 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; String_t* L_1 = TypeConverter_ConvertToInvariantString_m2521499702(__this, (RuntimeObject*)NULL, L_0, /*hidden argument*/NULL); return L_1; } } // System.String System.ComponentModel.TypeConverter::ConvertToInvariantString(System.ComponentModel.ITypeDescriptorContext,System.Object) extern "C" String_t* TypeConverter_ConvertToInvariantString_m2521499702 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeConverter_ConvertToInvariantString_m2521499702_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___context0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t270095993_il2cpp_TypeInfo_var); CultureInfo_t270095993 * L_1 = CultureInfo_get_InvariantCulture_m307173330(NULL /*static, unused*/, /*hidden argument*/NULL); RuntimeObject * L_2 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_3 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); RuntimeObject * L_4 = VirtFuncInvoker4< RuntimeObject *, RuntimeObject*, CultureInfo_t270095993 *, RuntimeObject *, Type_t * >::Invoke(7 /* System.Object System.ComponentModel.TypeConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type) */, __this, L_0, L_1, L_2, L_3); return ((String_t*)CastclassSealed((RuntimeObject*)L_4, String_t_il2cpp_TypeInfo_var)); } } // System.String System.ComponentModel.TypeConverter::ConvertToString(System.Object) extern "C" String_t* TypeConverter_ConvertToString_m1792988817 (TypeConverter_t3595149642 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeConverter_ConvertToString_m1792988817_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t270095993_il2cpp_TypeInfo_var); CultureInfo_t270095993 * L_0 = CultureInfo_get_CurrentCulture_m856101117(NULL /*static, unused*/, /*hidden argument*/NULL); RuntimeObject * L_1 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); RuntimeObject * L_3 = VirtFuncInvoker4< RuntimeObject *, RuntimeObject*, CultureInfo_t270095993 *, RuntimeObject *, Type_t * >::Invoke(7 /* System.Object System.ComponentModel.TypeConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type) */, __this, (RuntimeObject*)NULL, L_0, L_1, L_2); return ((String_t*)CastclassSealed((RuntimeObject*)L_3, String_t_il2cpp_TypeInfo_var)); } } // System.String System.ComponentModel.TypeConverter::ConvertToString(System.ComponentModel.ITypeDescriptorContext,System.Object) extern "C" String_t* TypeConverter_ConvertToString_m2607735342 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeConverter_ConvertToString_m2607735342_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___context0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t270095993_il2cpp_TypeInfo_var); CultureInfo_t270095993 * L_1 = CultureInfo_get_CurrentCulture_m856101117(NULL /*static, unused*/, /*hidden argument*/NULL); RuntimeObject * L_2 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_3 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); RuntimeObject * L_4 = VirtFuncInvoker4< RuntimeObject *, RuntimeObject*, CultureInfo_t270095993 *, RuntimeObject *, Type_t * >::Invoke(7 /* System.Object System.ComponentModel.TypeConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type) */, __this, L_0, L_1, L_2, L_3); return ((String_t*)CastclassSealed((RuntimeObject*)L_4, String_t_il2cpp_TypeInfo_var)); } } // System.String System.ComponentModel.TypeConverter::ConvertToString(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object) extern "C" String_t* TypeConverter_ConvertToString_m1692650974 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, CultureInfo_t270095993 * ___culture1, RuntimeObject * ___value2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeConverter_ConvertToString_m1692650974_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___context0; CultureInfo_t270095993 * L_1 = ___culture1; RuntimeObject * L_2 = ___value2; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_3 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); RuntimeObject * L_4 = VirtFuncInvoker4< RuntimeObject *, RuntimeObject*, CultureInfo_t270095993 *, RuntimeObject *, Type_t * >::Invoke(7 /* System.Object System.ComponentModel.TypeConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type) */, __this, L_0, L_1, L_2, L_3); return ((String_t*)CastclassSealed((RuntimeObject*)L_4, String_t_il2cpp_TypeInfo_var)); } } // System.Exception System.ComponentModel.TypeConverter::GetConvertFromException(System.Object) extern "C" Exception_t2428370182 * TypeConverter_GetConvertFromException_m59689527 (TypeConverter_t3595149642 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeConverter_GetConvertFromException_m59689527_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_0011; } } { V_0 = _stringLiteral4291070997; goto IL_001d; } IL_0011: { RuntimeObject * L_1 = ___value0; NullCheck(L_1); Type_t * L_2 = Object_GetType_m1134229006(L_1, /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_2); V_0 = L_3; } IL_001d: { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t270095993_il2cpp_TypeInfo_var); CultureInfo_t270095993 * L_4 = CultureInfo_get_InvariantCulture_m307173330(NULL /*static, unused*/, /*hidden argument*/NULL); ObjectU5BU5D_t4199014551* L_5 = ((ObjectU5BU5D_t4199014551*)SZArrayNew(ObjectU5BU5D_t4199014551_il2cpp_TypeInfo_var, (uint32_t)2)); Type_t * L_6 = Object_GetType_m1134229006(__this, /*hidden argument*/NULL); NullCheck(L_6); String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_6); NullCheck(L_5); ArrayElementTypeCheck (L_5, L_7); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_7); ObjectU5BU5D_t4199014551* L_8 = L_5; String_t* L_9 = V_0; NullCheck(L_8); ArrayElementTypeCheck (L_8, L_9); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_9); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_10 = String_Format_m3843026812(NULL /*static, unused*/, L_4, _stringLiteral3022502976, L_8, /*hidden argument*/NULL); NotSupportedException_t2060369835 * L_11 = (NotSupportedException_t2060369835 *)il2cpp_codegen_object_new(NotSupportedException_t2060369835_il2cpp_TypeInfo_var); NotSupportedException__ctor_m1363103711(L_11, L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11); } } // System.Exception System.ComponentModel.TypeConverter::GetConvertToException(System.Object,System.Type) extern "C" Exception_t2428370182 * TypeConverter_GetConvertToException_m3795797516 (TypeConverter_t3595149642 * __this, RuntimeObject * ___value0, Type_t * ___destinationType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeConverter_GetConvertToException_m3795797516_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_0011; } } { V_0 = _stringLiteral4291070997; goto IL_001d; } IL_0011: { RuntimeObject * L_1 = ___value0; NullCheck(L_1); Type_t * L_2 = Object_GetType_m1134229006(L_1, /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_2); V_0 = L_3; } IL_001d: { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t270095993_il2cpp_TypeInfo_var); CultureInfo_t270095993 * L_4 = CultureInfo_get_InvariantCulture_m307173330(NULL /*static, unused*/, /*hidden argument*/NULL); ObjectU5BU5D_t4199014551* L_5 = ((ObjectU5BU5D_t4199014551*)SZArrayNew(ObjectU5BU5D_t4199014551_il2cpp_TypeInfo_var, (uint32_t)3)); Type_t * L_6 = Object_GetType_m1134229006(__this, /*hidden argument*/NULL); NullCheck(L_6); String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_6); NullCheck(L_5); ArrayElementTypeCheck (L_5, L_7); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_7); ObjectU5BU5D_t4199014551* L_8 = L_5; String_t* L_9 = V_0; NullCheck(L_8); ArrayElementTypeCheck (L_8, L_9); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_9); ObjectU5BU5D_t4199014551* L_10 = L_8; Type_t * L_11 = ___destinationType1; NullCheck(L_11); String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_11); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_12); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_12); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_13 = String_Format_m3843026812(NULL /*static, unused*/, L_4, _stringLiteral3338297576, L_10, /*hidden argument*/NULL); NotSupportedException_t2060369835 * L_14 = (NotSupportedException_t2060369835 *)il2cpp_codegen_object_new(NotSupportedException_t2060369835_il2cpp_TypeInfo_var); NotSupportedException__ctor_m1363103711(L_14, L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14); } } // System.Object System.ComponentModel.TypeConverter::CreateInstance(System.Collections.IDictionary) extern "C" RuntimeObject * TypeConverter_CreateInstance_m1921853742 (TypeConverter_t3595149642 * __this, RuntimeObject* ___propertyValues0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___propertyValues0; RuntimeObject * L_1 = VirtFuncInvoker2< RuntimeObject *, RuntimeObject*, RuntimeObject* >::Invoke(8 /* System.Object System.ComponentModel.TypeConverter::CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary) */, __this, (RuntimeObject*)NULL, L_0); return L_1; } } // System.Object System.ComponentModel.TypeConverter::CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary) extern "C" RuntimeObject * TypeConverter_CreateInstance_m1198640834 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, RuntimeObject* ___propertyValues1, const RuntimeMethod* method) { { return NULL; } } // System.Boolean System.ComponentModel.TypeConverter::GetCreateInstanceSupported() extern "C" bool TypeConverter_GetCreateInstanceSupported_m2446902703 (TypeConverter_t3595149642 * __this, const RuntimeMethod* method) { { bool L_0 = VirtFuncInvoker1< bool, RuntimeObject* >::Invoke(9 /* System.Boolean System.ComponentModel.TypeConverter::GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext) */, __this, (RuntimeObject*)NULL); return L_0; } } // System.Boolean System.ComponentModel.TypeConverter::GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext) extern "C" bool TypeConverter_GetCreateInstanceSupported_m3052882325 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, const RuntimeMethod* method) { { return (bool)0; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeConverter::GetProperties(System.Object) extern "C" PropertyDescriptorCollection_t2982717747 * TypeConverter_GetProperties_m2287141281 (TypeConverter_t3595149642 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; PropertyDescriptorCollection_t2982717747 * L_1 = TypeConverter_GetProperties_m4083564014(__this, (RuntimeObject*)NULL, L_0, /*hidden argument*/NULL); return L_1; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeConverter::GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object) extern "C" PropertyDescriptorCollection_t2982717747 * TypeConverter_GetProperties_m4083564014 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeConverter_GetProperties_m4083564014_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___context0; RuntimeObject * L_1 = ___value1; AttributeU5BU5D_t187261448* L_2 = ((AttributeU5BU5D_t187261448*)SZArrayNew(AttributeU5BU5D_t187261448_il2cpp_TypeInfo_var, (uint32_t)1)); IL2CPP_RUNTIME_CLASS_INIT(BrowsableAttribute_t3900575337_il2cpp_TypeInfo_var); BrowsableAttribute_t3900575337 * L_3 = ((BrowsableAttribute_t3900575337_StaticFields*)il2cpp_codegen_static_fields_for(BrowsableAttribute_t3900575337_il2cpp_TypeInfo_var))->get_Yes_3(); NullCheck(L_2); ArrayElementTypeCheck (L_2, L_3); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (Attribute_t2739832645 *)L_3); PropertyDescriptorCollection_t2982717747 * L_4 = VirtFuncInvoker3< PropertyDescriptorCollection_t2982717747 *, RuntimeObject*, RuntimeObject *, AttributeU5BU5D_t187261448* >::Invoke(10 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeConverter::GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[]) */, __this, L_0, L_1, L_2); return L_4; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeConverter::GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[]) extern "C" PropertyDescriptorCollection_t2982717747 * TypeConverter_GetProperties_m1252187426 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, AttributeU5BU5D_t187261448* ___attributes2, const RuntimeMethod* method) { { return (PropertyDescriptorCollection_t2982717747 *)NULL; } } // System.Boolean System.ComponentModel.TypeConverter::GetPropertiesSupported() extern "C" bool TypeConverter_GetPropertiesSupported_m350081248 (TypeConverter_t3595149642 * __this, const RuntimeMethod* method) { { bool L_0 = VirtFuncInvoker1< bool, RuntimeObject* >::Invoke(11 /* System.Boolean System.ComponentModel.TypeConverter::GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext) */, __this, (RuntimeObject*)NULL); return L_0; } } // System.Boolean System.ComponentModel.TypeConverter::GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext) extern "C" bool TypeConverter_GetPropertiesSupported_m157989603 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, const RuntimeMethod* method) { { return (bool)0; } } // System.Collections.ICollection System.ComponentModel.TypeConverter::GetStandardValues() extern "C" RuntimeObject* TypeConverter_GetStandardValues_m1890421963 (TypeConverter_t3595149642 * __this, const RuntimeMethod* method) { { StandardValuesCollection_t884959189 * L_0 = VirtFuncInvoker1< StandardValuesCollection_t884959189 *, RuntimeObject* >::Invoke(12 /* System.ComponentModel.TypeConverter/StandardValuesCollection System.ComponentModel.TypeConverter::GetStandardValues(System.ComponentModel.ITypeDescriptorContext) */, __this, (RuntimeObject*)NULL); return L_0; } } // System.ComponentModel.TypeConverter/StandardValuesCollection System.ComponentModel.TypeConverter::GetStandardValues(System.ComponentModel.ITypeDescriptorContext) extern "C" StandardValuesCollection_t884959189 * TypeConverter_GetStandardValues_m276452726 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, const RuntimeMethod* method) { { return (StandardValuesCollection_t884959189 *)NULL; } } // System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesExclusive() extern "C" bool TypeConverter_GetStandardValuesExclusive_m4259239669 (TypeConverter_t3595149642 * __this, const RuntimeMethod* method) { { bool L_0 = VirtFuncInvoker1< bool, RuntimeObject* >::Invoke(13 /* System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext) */, __this, (RuntimeObject*)NULL); return L_0; } } // System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext) extern "C" bool TypeConverter_GetStandardValuesExclusive_m1667578958 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesSupported() extern "C" bool TypeConverter_GetStandardValuesSupported_m3340826313 (TypeConverter_t3595149642 * __this, const RuntimeMethod* method) { { bool L_0 = VirtFuncInvoker1< bool, RuntimeObject* >::Invoke(14 /* System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext) */, __this, (RuntimeObject*)NULL); return L_0; } } // System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext) extern "C" bool TypeConverter_GetStandardValuesSupported_m2802635703 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.ComponentModel.TypeConverter::IsValid(System.Object) extern "C" bool TypeConverter_IsValid_m196885803 (TypeConverter_t3595149642 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; bool L_1 = VirtFuncInvoker2< bool, RuntimeObject*, RuntimeObject * >::Invoke(15 /* System.Boolean System.ComponentModel.TypeConverter::IsValid(System.ComponentModel.ITypeDescriptorContext,System.Object) */, __this, (RuntimeObject*)NULL, L_0); return L_1; } } // System.Boolean System.ComponentModel.TypeConverter::IsValid(System.ComponentModel.ITypeDescriptorContext,System.Object) extern "C" bool TypeConverter_IsValid_m2083459950 (TypeConverter_t3595149642 * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, const RuntimeMethod* method) { { return (bool)1; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeConverter::SortProperties(System.ComponentModel.PropertyDescriptorCollection,System.String[]) extern "C" PropertyDescriptorCollection_t2982717747 * TypeConverter_SortProperties_m3129121953 (TypeConverter_t3595149642 * __this, PropertyDescriptorCollection_t2982717747 * ___props0, StringU5BU5D_t1187188029* ___names1, const RuntimeMethod* method) { { PropertyDescriptorCollection_t2982717747 * L_0 = ___props0; StringU5BU5D_t1187188029* L_1 = ___names1; NullCheck(L_0); VirtFuncInvoker1< PropertyDescriptorCollection_t2982717747 *, StringU5BU5D_t1187188029* >::Invoke(37 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptorCollection::Sort(System.String[]) */, L_0, L_1); PropertyDescriptorCollection_t2982717747 * L_2 = ___props0; return L_2; } } // System.Void System.ComponentModel.TypeConverter/SimplePropertyDescriptor::.ctor(System.Type,System.String,System.Type) extern "C" void SimplePropertyDescriptor__ctor_m2640096086 (SimplePropertyDescriptor_t872937162 * __this, Type_t * ___componentType0, String_t* ___name1, Type_t * ___propertyType2, const RuntimeMethod* method) { { Type_t * L_0 = ___componentType0; String_t* L_1 = ___name1; Type_t * L_2 = ___propertyType2; SimplePropertyDescriptor__ctor_m3402338302(__this, L_0, L_1, L_2, (AttributeU5BU5D_t187261448*)(AttributeU5BU5D_t187261448*)NULL, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.TypeConverter/SimplePropertyDescriptor::.ctor(System.Type,System.String,System.Type,System.Attribute[]) extern "C" void SimplePropertyDescriptor__ctor_m3402338302 (SimplePropertyDescriptor_t872937162 * __this, Type_t * ___componentType0, String_t* ___name1, Type_t * ___propertyType2, AttributeU5BU5D_t187261448* ___attributes3, const RuntimeMethod* method) { { String_t* L_0 = ___name1; AttributeU5BU5D_t187261448* L_1 = ___attributes3; PropertyDescriptor__ctor_m693998226(__this, L_0, L_1, /*hidden argument*/NULL); Type_t * L_2 = ___componentType0; __this->set_componentType_6(L_2); Type_t * L_3 = ___propertyType2; __this->set_propertyType_7(L_3); return; } } // System.Type System.ComponentModel.TypeConverter/SimplePropertyDescriptor::get_ComponentType() extern "C" Type_t * SimplePropertyDescriptor_get_ComponentType_m2254450755 (SimplePropertyDescriptor_t872937162 * __this, const RuntimeMethod* method) { { Type_t * L_0 = __this->get_componentType_6(); return L_0; } } // System.Type System.ComponentModel.TypeConverter/SimplePropertyDescriptor::get_PropertyType() extern "C" Type_t * SimplePropertyDescriptor_get_PropertyType_m2016180693 (SimplePropertyDescriptor_t872937162 * __this, const RuntimeMethod* method) { { Type_t * L_0 = __this->get_propertyType_7(); return L_0; } } // System.Boolean System.ComponentModel.TypeConverter/SimplePropertyDescriptor::get_IsReadOnly() extern "C" bool SimplePropertyDescriptor_get_IsReadOnly_m715712770 (SimplePropertyDescriptor_t872937162 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SimplePropertyDescriptor_get_IsReadOnly_m715712770_MetadataUsageId); s_Il2CppMethodInitialized = true; } { AttributeCollection_t3634739288 * L_0 = VirtFuncInvoker0< AttributeCollection_t3634739288 * >::Invoke(7 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this); IL2CPP_RUNTIME_CLASS_INIT(ReadOnlyAttribute_t1832938840_il2cpp_TypeInfo_var); ReadOnlyAttribute_t1832938840 * L_1 = ((ReadOnlyAttribute_t1832938840_StaticFields*)il2cpp_codegen_static_fields_for(ReadOnlyAttribute_t1832938840_il2cpp_TypeInfo_var))->get_Yes_2(); NullCheck(L_0); bool L_2 = AttributeCollection_Contains_m1883420386(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Boolean System.ComponentModel.TypeConverter/SimplePropertyDescriptor::ShouldSerializeValue(System.Object) extern "C" bool SimplePropertyDescriptor_ShouldSerializeValue_m4272200962 (SimplePropertyDescriptor_t872937162 * __this, RuntimeObject * ___component0, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.ComponentModel.TypeConverter/SimplePropertyDescriptor::CanResetValue(System.Object) extern "C" bool SimplePropertyDescriptor_CanResetValue_m2340119228 (SimplePropertyDescriptor_t872937162 * __this, RuntimeObject * ___component0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SimplePropertyDescriptor_CanResetValue_m2340119228_MetadataUsageId); s_Il2CppMethodInitialized = true; } DefaultValueAttribute_t1210082725 * V_0 = NULL; { AttributeCollection_t3634739288 * L_0 = VirtFuncInvoker0< AttributeCollection_t3634739288 * >::Invoke(7 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(DefaultValueAttribute_t1210082725_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_0); Attribute_t2739832645 * L_2 = VirtFuncInvoker1< Attribute_t2739832645 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_0, L_1); V_0 = ((DefaultValueAttribute_t1210082725 *)CastclassClass((RuntimeObject*)L_2, DefaultValueAttribute_t1210082725_il2cpp_TypeInfo_var)); DefaultValueAttribute_t1210082725 * L_3 = V_0; if (L_3) { goto IL_0023; } } { return (bool)0; } IL_0023: { DefaultValueAttribute_t1210082725 * L_4 = V_0; NullCheck(L_4); RuntimeObject * L_5 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.ComponentModel.DefaultValueAttribute::get_Value() */, L_4); RuntimeObject * L_6 = ___component0; RuntimeObject * L_7 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(26 /* System.Object System.ComponentModel.PropertyDescriptor::GetValue(System.Object) */, __this, L_6); return (bool)((((RuntimeObject*)(RuntimeObject *)L_5) == ((RuntimeObject*)(RuntimeObject *)L_7))? 1 : 0); } } // System.Void System.ComponentModel.TypeConverter/SimplePropertyDescriptor::ResetValue(System.Object) extern "C" void SimplePropertyDescriptor_ResetValue_m3680900444 (SimplePropertyDescriptor_t872937162 * __this, RuntimeObject * ___component0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SimplePropertyDescriptor_ResetValue_m3680900444_MetadataUsageId); s_Il2CppMethodInitialized = true; } DefaultValueAttribute_t1210082725 * V_0 = NULL; { AttributeCollection_t3634739288 * L_0 = VirtFuncInvoker0< AttributeCollection_t3634739288 * >::Invoke(7 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(DefaultValueAttribute_t1210082725_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_0); Attribute_t2739832645 * L_2 = VirtFuncInvoker1< Attribute_t2739832645 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_0, L_1); V_0 = ((DefaultValueAttribute_t1210082725 *)CastclassClass((RuntimeObject*)L_2, DefaultValueAttribute_t1210082725_il2cpp_TypeInfo_var)); DefaultValueAttribute_t1210082725 * L_3 = V_0; if (!L_3) { goto IL_002e; } } { RuntimeObject * L_4 = ___component0; DefaultValueAttribute_t1210082725 * L_5 = V_0; NullCheck(L_5); RuntimeObject * L_6 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.ComponentModel.DefaultValueAttribute::get_Value() */, L_5); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(27 /* System.Void System.ComponentModel.PropertyDescriptor::SetValue(System.Object,System.Object) */, __this, L_4, L_6); } IL_002e: { return; } } // System.Void System.ComponentModel.TypeConverter/StandardValuesCollection::.ctor(System.Collections.ICollection) extern "C" void StandardValuesCollection__ctor_m97593915 (StandardValuesCollection_t884959189 * __this, RuntimeObject* ___values0, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); RuntimeObject* L_0 = ___values0; __this->set_values_0(L_0); return; } } // System.Void System.ComponentModel.TypeConverter/StandardValuesCollection::System.Collections.ICollection.CopyTo(System.Array,System.Int32) extern "C" void StandardValuesCollection_System_Collections_ICollection_CopyTo_m2831235273 (StandardValuesCollection_t884959189 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; int32_t L_1 = ___index1; StandardValuesCollection_CopyTo_m3620071702(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Collections.IEnumerator System.ComponentModel.TypeConverter/StandardValuesCollection::System.Collections.IEnumerable.GetEnumerator() extern "C" RuntimeObject* StandardValuesCollection_System_Collections_IEnumerable_GetEnumerator_m3751327073 (StandardValuesCollection_t884959189 * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = StandardValuesCollection_GetEnumerator_m486923630(__this, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.ComponentModel.TypeConverter/StandardValuesCollection::System.Collections.ICollection.get_IsSynchronized() extern "C" bool StandardValuesCollection_System_Collections_ICollection_get_IsSynchronized_m3809261342 (StandardValuesCollection_t884959189 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.ComponentModel.TypeConverter/StandardValuesCollection::System.Collections.ICollection.get_SyncRoot() extern "C" RuntimeObject * StandardValuesCollection_System_Collections_ICollection_get_SyncRoot_m937282561 (StandardValuesCollection_t884959189 * __this, const RuntimeMethod* method) { { return NULL; } } // System.Int32 System.ComponentModel.TypeConverter/StandardValuesCollection::System.Collections.ICollection.get_Count() extern "C" int32_t StandardValuesCollection_System_Collections_ICollection_get_Count_m1480762640 (StandardValuesCollection_t884959189 * __this, const RuntimeMethod* method) { { int32_t L_0 = StandardValuesCollection_get_Count_m2128744804(__this, /*hidden argument*/NULL); return L_0; } } // System.Void System.ComponentModel.TypeConverter/StandardValuesCollection::CopyTo(System.Array,System.Int32) extern "C" void StandardValuesCollection_CopyTo_m3620071702 (StandardValuesCollection_t884959189 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StandardValuesCollection_CopyTo_m3620071702_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->get_values_0(); RuntimeArray * L_1 = ___array0; int32_t L_2 = ___index1; NullCheck(L_0); InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(3 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_t2597392361_il2cpp_TypeInfo_var, L_0, L_1, L_2); return; } } // System.Collections.IEnumerator System.ComponentModel.TypeConverter/StandardValuesCollection::GetEnumerator() extern "C" RuntimeObject* StandardValuesCollection_GetEnumerator_m486923630 (StandardValuesCollection_t884959189 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StandardValuesCollection_GetEnumerator_m486923630_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->get_values_0(); NullCheck(L_0); RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t2747605254_il2cpp_TypeInfo_var, L_0); return L_1; } } // System.Int32 System.ComponentModel.TypeConverter/StandardValuesCollection::get_Count() extern "C" int32_t StandardValuesCollection_get_Count_m2128744804 (StandardValuesCollection_t884959189 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StandardValuesCollection_get_Count_m2128744804_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->get_values_0(); NullCheck(L_0); int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t2597392361_il2cpp_TypeInfo_var, L_0); return L_1; } } // System.Object System.ComponentModel.TypeConverter/StandardValuesCollection::get_Item(System.Int32) extern "C" RuntimeObject * StandardValuesCollection_get_Item_m776998117 (StandardValuesCollection_t884959189 * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StandardValuesCollection_get_Item_m776998117_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->get_values_0(); int32_t L_1 = ___index0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_0, IList_t1481205421_il2cpp_TypeInfo_var))); RuntimeObject * L_2 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(2 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t1481205421_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_0, IList_t1481205421_il2cpp_TypeInfo_var)), L_1); return L_2; } } // System.Void System.ComponentModel.TypeConverterAttribute::.ctor() extern "C" void TypeConverterAttribute__ctor_m1309396276 (TypeConverterAttribute_t695735035 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeConverterAttribute__ctor_m1309396276_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Attribute__ctor_m3216322730(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); __this->set_converter_type_1(L_0); return; } } // System.Void System.ComponentModel.TypeConverterAttribute::.ctor(System.String) extern "C" void TypeConverterAttribute__ctor_m1197443559 (TypeConverterAttribute_t695735035 * __this, String_t* ___typeName0, const RuntimeMethod* method) { { Attribute__ctor_m3216322730(__this, /*hidden argument*/NULL); String_t* L_0 = ___typeName0; __this->set_converter_type_1(L_0); return; } } // System.Void System.ComponentModel.TypeConverterAttribute::.ctor(System.Type) extern "C" void TypeConverterAttribute__ctor_m3192358073 (TypeConverterAttribute_t695735035 * __this, Type_t * ___type0, const RuntimeMethod* method) { { Attribute__ctor_m3216322730(__this, /*hidden argument*/NULL); Type_t * L_0 = ___type0; NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(15 /* System.String System.Type::get_AssemblyQualifiedName() */, L_0); __this->set_converter_type_1(L_1); return; } } // System.Void System.ComponentModel.TypeConverterAttribute::.cctor() extern "C" void TypeConverterAttribute__cctor_m3799649907 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeConverterAttribute__cctor_m3799649907_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TypeConverterAttribute_t695735035 * L_0 = (TypeConverterAttribute_t695735035 *)il2cpp_codegen_object_new(TypeConverterAttribute_t695735035_il2cpp_TypeInfo_var); TypeConverterAttribute__ctor_m1309396276(L_0, /*hidden argument*/NULL); ((TypeConverterAttribute_t695735035_StaticFields*)il2cpp_codegen_static_fields_for(TypeConverterAttribute_t695735035_il2cpp_TypeInfo_var))->set_Default_0(L_0); return; } } // System.Boolean System.ComponentModel.TypeConverterAttribute::Equals(System.Object) extern "C" bool TypeConverterAttribute_Equals_m1815603453 (TypeConverterAttribute_t695735035 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeConverterAttribute_Equals_m1815603453_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; if (((TypeConverterAttribute_t695735035 *)IsInstSealed((RuntimeObject*)L_0, TypeConverterAttribute_t695735035_il2cpp_TypeInfo_var))) { goto IL_000d; } } { return (bool)0; } IL_000d: { RuntimeObject * L_1 = ___obj0; NullCheck(((TypeConverterAttribute_t695735035 *)CastclassSealed((RuntimeObject*)L_1, TypeConverterAttribute_t695735035_il2cpp_TypeInfo_var))); String_t* L_2 = TypeConverterAttribute_get_ConverterTypeName_m3171634346(((TypeConverterAttribute_t695735035 *)CastclassSealed((RuntimeObject*)L_1, TypeConverterAttribute_t695735035_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); String_t* L_3 = __this->get_converter_type_1(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_4 = String_op_Equality_m3571002539(NULL /*static, unused*/, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Int32 System.ComponentModel.TypeConverterAttribute::GetHashCode() extern "C" int32_t TypeConverterAttribute_GetHashCode_m620505904 (TypeConverterAttribute_t695735035 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_converter_type_1(); NullCheck(L_0); int32_t L_1 = String_GetHashCode_m3513779644(L_0, /*hidden argument*/NULL); return L_1; } } // System.String System.ComponentModel.TypeConverterAttribute::get_ConverterTypeName() extern "C" String_t* TypeConverterAttribute_get_ConverterTypeName_m3171634346 (TypeConverterAttribute_t695735035 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_converter_type_1(); return L_0; } } // System.Void System.ComponentModel.TypeDescriptionProvider::.ctor() extern "C" void TypeDescriptionProvider__ctor_m1179016195 (TypeDescriptionProvider_t4220413402 * __this, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.TypeDescriptionProvider::.ctor(System.ComponentModel.TypeDescriptionProvider) extern "C" void TypeDescriptionProvider__ctor_m4181401345 (TypeDescriptionProvider_t4220413402 * __this, TypeDescriptionProvider_t4220413402 * ___parent0, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); TypeDescriptionProvider_t4220413402 * L_0 = ___parent0; __this->set__parent_1(L_0); return; } } // System.Object System.ComponentModel.TypeDescriptionProvider::CreateInstance(System.IServiceProvider,System.Type,System.Type[],System.Object[]) extern "C" RuntimeObject * TypeDescriptionProvider_CreateInstance_m48832699 (TypeDescriptionProvider_t4220413402 * __this, RuntimeObject* ___provider0, Type_t * ___objectType1, TypeU5BU5D_t89919618* ___argTypes2, ObjectU5BU5D_t4199014551* ___args3, const RuntimeMethod* method) { { TypeDescriptionProvider_t4220413402 * L_0 = __this->get__parent_1(); if (!L_0) { goto IL_001c; } } { TypeDescriptionProvider_t4220413402 * L_1 = __this->get__parent_1(); RuntimeObject* L_2 = ___provider0; Type_t * L_3 = ___objectType1; TypeU5BU5D_t89919618* L_4 = ___argTypes2; ObjectU5BU5D_t4199014551* L_5 = ___args3; NullCheck(L_1); RuntimeObject * L_6 = VirtFuncInvoker4< RuntimeObject *, RuntimeObject*, Type_t *, TypeU5BU5D_t89919618*, ObjectU5BU5D_t4199014551* >::Invoke(4 /* System.Object System.ComponentModel.TypeDescriptionProvider::CreateInstance(System.IServiceProvider,System.Type,System.Type[],System.Object[]) */, L_1, L_2, L_3, L_4, L_5); return L_6; } IL_001c: { Type_t * L_7 = ___objectType1; ObjectU5BU5D_t4199014551* L_8 = ___args3; RuntimeObject * L_9 = Activator_CreateInstance_m1834653757(NULL /*static, unused*/, L_7, L_8, /*hidden argument*/NULL); return L_9; } } // System.Collections.IDictionary System.ComponentModel.TypeDescriptionProvider::GetCache(System.Object) extern "C" RuntimeObject* TypeDescriptionProvider_GetCache_m2663141428 (TypeDescriptionProvider_t4220413402 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method) { { TypeDescriptionProvider_t4220413402 * L_0 = __this->get__parent_1(); if (!L_0) { goto IL_0018; } } { TypeDescriptionProvider_t4220413402 * L_1 = __this->get__parent_1(); RuntimeObject * L_2 = ___instance0; NullCheck(L_1); RuntimeObject* L_3 = VirtFuncInvoker1< RuntimeObject*, RuntimeObject * >::Invoke(5 /* System.Collections.IDictionary System.ComponentModel.TypeDescriptionProvider::GetCache(System.Object) */, L_1, L_2); return L_3; } IL_0018: { return (RuntimeObject*)NULL; } } // System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetExtendedTypeDescriptor(System.Object) extern "C" RuntimeObject* TypeDescriptionProvider_GetExtendedTypeDescriptor_m3202192841 (TypeDescriptionProvider_t4220413402 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptionProvider_GetExtendedTypeDescriptor_m3202192841_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TypeDescriptionProvider_t4220413402 * L_0 = __this->get__parent_1(); if (!L_0) { goto IL_0018; } } { TypeDescriptionProvider_t4220413402 * L_1 = __this->get__parent_1(); RuntimeObject * L_2 = ___instance0; NullCheck(L_1); RuntimeObject* L_3 = VirtFuncInvoker1< RuntimeObject*, RuntimeObject * >::Invoke(6 /* System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetExtendedTypeDescriptor(System.Object) */, L_1, L_2); return L_3; } IL_0018: { EmptyCustomTypeDescriptor_t3398936167 * L_4 = __this->get__emptyCustomTypeDescriptor_0(); if (L_4) { goto IL_002e; } } { EmptyCustomTypeDescriptor_t3398936167 * L_5 = (EmptyCustomTypeDescriptor_t3398936167 *)il2cpp_codegen_object_new(EmptyCustomTypeDescriptor_t3398936167_il2cpp_TypeInfo_var); EmptyCustomTypeDescriptor__ctor_m1551730805(L_5, /*hidden argument*/NULL); __this->set__emptyCustomTypeDescriptor_0(L_5); } IL_002e: { EmptyCustomTypeDescriptor_t3398936167 * L_6 = __this->get__emptyCustomTypeDescriptor_0(); return L_6; } } // System.String System.ComponentModel.TypeDescriptionProvider::GetFullComponentName(System.Object) extern "C" String_t* TypeDescriptionProvider_GetFullComponentName_m1778673754 (TypeDescriptionProvider_t4220413402 * __this, RuntimeObject * ___component0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptionProvider_GetFullComponentName_m1778673754_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TypeDescriptionProvider_t4220413402 * L_0 = __this->get__parent_1(); if (!L_0) { goto IL_0018; } } { TypeDescriptionProvider_t4220413402 * L_1 = __this->get__parent_1(); RuntimeObject * L_2 = ___component0; NullCheck(L_1); String_t* L_3 = VirtFuncInvoker1< String_t*, RuntimeObject * >::Invoke(7 /* System.String System.ComponentModel.TypeDescriptionProvider::GetFullComponentName(System.Object) */, L_1, L_2); return L_3; } IL_0018: { RuntimeObject * L_4 = ___component0; RuntimeObject* L_5 = TypeDescriptionProvider_GetTypeDescriptor_m2092826612(__this, L_4, /*hidden argument*/NULL); NullCheck(L_5); String_t* L_6 = InterfaceFuncInvoker0< String_t* >::Invoke(2 /* System.String System.ComponentModel.ICustomTypeDescriptor::GetComponentName() */, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var, L_5); return L_6; } } // System.Type System.ComponentModel.TypeDescriptionProvider::GetReflectionType(System.Object) extern "C" Type_t * TypeDescriptionProvider_GetReflectionType_m813969675 (TypeDescriptionProvider_t4220413402 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptionProvider_GetReflectionType_m813969675_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___instance0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral2374827162, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { RuntimeObject * L_2 = ___instance0; NullCheck(L_2); Type_t * L_3 = Object_GetType_m1134229006(L_2, /*hidden argument*/NULL); RuntimeObject * L_4 = ___instance0; Type_t * L_5 = VirtFuncInvoker2< Type_t *, Type_t *, RuntimeObject * >::Invoke(8 /* System.Type System.ComponentModel.TypeDescriptionProvider::GetReflectionType(System.Type,System.Object) */, __this, L_3, L_4); return L_5; } } // System.Type System.ComponentModel.TypeDescriptionProvider::GetReflectionType(System.Type) extern "C" Type_t * TypeDescriptionProvider_GetReflectionType_m3080481337 (TypeDescriptionProvider_t4220413402 * __this, Type_t * ___objectType0, const RuntimeMethod* method) { { Type_t * L_0 = ___objectType0; Type_t * L_1 = VirtFuncInvoker2< Type_t *, Type_t *, RuntimeObject * >::Invoke(8 /* System.Type System.ComponentModel.TypeDescriptionProvider::GetReflectionType(System.Type,System.Object) */, __this, L_0, NULL); return L_1; } } // System.Type System.ComponentModel.TypeDescriptionProvider::GetReflectionType(System.Type,System.Object) extern "C" Type_t * TypeDescriptionProvider_GetReflectionType_m1277652757 (TypeDescriptionProvider_t4220413402 * __this, Type_t * ___objectType0, RuntimeObject * ___instance1, const RuntimeMethod* method) { { TypeDescriptionProvider_t4220413402 * L_0 = __this->get__parent_1(); if (!L_0) { goto IL_0019; } } { TypeDescriptionProvider_t4220413402 * L_1 = __this->get__parent_1(); Type_t * L_2 = ___objectType0; RuntimeObject * L_3 = ___instance1; NullCheck(L_1); Type_t * L_4 = VirtFuncInvoker2< Type_t *, Type_t *, RuntimeObject * >::Invoke(8 /* System.Type System.ComponentModel.TypeDescriptionProvider::GetReflectionType(System.Type,System.Object) */, L_1, L_2, L_3); return L_4; } IL_0019: { Type_t * L_5 = ___objectType0; return L_5; } } // System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Object) extern "C" RuntimeObject* TypeDescriptionProvider_GetTypeDescriptor_m2092826612 (TypeDescriptionProvider_t4220413402 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptionProvider_GetTypeDescriptor_m2092826612_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___instance0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral2374827162, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { RuntimeObject * L_2 = ___instance0; NullCheck(L_2); Type_t * L_3 = Object_GetType_m1134229006(L_2, /*hidden argument*/NULL); RuntimeObject * L_4 = ___instance0; RuntimeObject* L_5 = VirtFuncInvoker2< RuntimeObject*, Type_t *, RuntimeObject * >::Invoke(9 /* System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Type,System.Object) */, __this, L_3, L_4); return L_5; } } // System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Type) extern "C" RuntimeObject* TypeDescriptionProvider_GetTypeDescriptor_m3190700641 (TypeDescriptionProvider_t4220413402 * __this, Type_t * ___objectType0, const RuntimeMethod* method) { { Type_t * L_0 = ___objectType0; RuntimeObject* L_1 = VirtFuncInvoker2< RuntimeObject*, Type_t *, RuntimeObject * >::Invoke(9 /* System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Type,System.Object) */, __this, L_0, NULL); return L_1; } } // System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Type,System.Object) extern "C" RuntimeObject* TypeDescriptionProvider_GetTypeDescriptor_m3076123750 (TypeDescriptionProvider_t4220413402 * __this, Type_t * ___objectType0, RuntimeObject * ___instance1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptionProvider_GetTypeDescriptor_m3076123750_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TypeDescriptionProvider_t4220413402 * L_0 = __this->get__parent_1(); if (!L_0) { goto IL_0019; } } { TypeDescriptionProvider_t4220413402 * L_1 = __this->get__parent_1(); Type_t * L_2 = ___objectType0; RuntimeObject * L_3 = ___instance1; NullCheck(L_1); RuntimeObject* L_4 = VirtFuncInvoker2< RuntimeObject*, Type_t *, RuntimeObject * >::Invoke(9 /* System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Type,System.Object) */, L_1, L_2, L_3); return L_4; } IL_0019: { EmptyCustomTypeDescriptor_t3398936167 * L_5 = __this->get__emptyCustomTypeDescriptor_0(); if (L_5) { goto IL_002f; } } { EmptyCustomTypeDescriptor_t3398936167 * L_6 = (EmptyCustomTypeDescriptor_t3398936167 *)il2cpp_codegen_object_new(EmptyCustomTypeDescriptor_t3398936167_il2cpp_TypeInfo_var); EmptyCustomTypeDescriptor__ctor_m1551730805(L_6, /*hidden argument*/NULL); __this->set__emptyCustomTypeDescriptor_0(L_6); } IL_002f: { EmptyCustomTypeDescriptor_t3398936167 * L_7 = __this->get__emptyCustomTypeDescriptor_0(); return L_7; } } // System.Void System.ComponentModel.TypeDescriptionProvider/EmptyCustomTypeDescriptor::.ctor() extern "C" void EmptyCustomTypeDescriptor__ctor_m1551730805 (EmptyCustomTypeDescriptor_t3398936167 * __this, const RuntimeMethod* method) { { CustomTypeDescriptor__ctor_m1414500274(__this, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.TypeDescriptor::.ctor() extern "C" void TypeDescriptor__ctor_m4095820585 (TypeDescriptor_t4022761028 * __this, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.TypeDescriptor::.cctor() extern "C" void TypeDescriptor__cctor_m1737660102 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor__cctor_m1737660102_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m3115879119(L_0, /*hidden argument*/NULL); ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->set_creatingDefaultConverters_0(L_0); Hashtable_t448324601 * L_1 = (Hashtable_t448324601 *)il2cpp_codegen_object_new(Hashtable_t448324601_il2cpp_TypeInfo_var); Hashtable__ctor_m4203419798(L_1, /*hidden argument*/NULL); ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->set_componentTable_3(L_1); Hashtable_t448324601 * L_2 = (Hashtable_t448324601 *)il2cpp_codegen_object_new(Hashtable_t448324601_il2cpp_TypeInfo_var); Hashtable__ctor_m4203419798(L_2, /*hidden argument*/NULL); ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->set_typeTable_4(L_2); RuntimeObject * L_3 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m3115879119(L_3, /*hidden argument*/NULL); ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->set_typeDescriptionProvidersLock_6(L_3); RuntimeObject * L_4 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m3115879119(L_4, /*hidden argument*/NULL); ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->set_componentDescriptionProvidersLock_8(L_4); Dictionary_2_t3039616987 * L_5 = (Dictionary_2_t3039616987 *)il2cpp_codegen_object_new(Dictionary_2_t3039616987_il2cpp_TypeInfo_var); Dictionary_2__ctor_m2978406208(L_5, /*hidden argument*/Dictionary_2__ctor_m2978406208_RuntimeMethod_var); ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->set_typeDescriptionProviders_7(L_5); WeakObjectWrapperComparer_t139211652 * L_6 = (WeakObjectWrapperComparer_t139211652 *)il2cpp_codegen_object_new(WeakObjectWrapperComparer_t139211652_il2cpp_TypeInfo_var); WeakObjectWrapperComparer__ctor_m2787707685(L_6, /*hidden argument*/NULL); Dictionary_2_t1504552994 * L_7 = (Dictionary_2_t1504552994 *)il2cpp_codegen_object_new(Dictionary_2_t1504552994_il2cpp_TypeInfo_var); Dictionary_2__ctor_m3243990460(L_7, L_6, /*hidden argument*/Dictionary_2__ctor_m3243990460_RuntimeMethod_var); ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->set_componentDescriptionProviders_9(L_7); return; } } // System.Void System.ComponentModel.TypeDescriptor::add_Refreshed(System.ComponentModel.RefreshEventHandler) extern "C" void TypeDescriptor_add_Refreshed_m1260447110 (RuntimeObject * __this /* static, unused */, RefreshEventHandler_t3510407695 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_add_Refreshed_m1260447110_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RefreshEventHandler_t3510407695 * L_0 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_Refreshed_11(); RefreshEventHandler_t3510407695 * L_1 = ___value0; Delegate_t2639791074 * L_2 = Delegate_Combine_m3162651421(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL); ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->set_Refreshed_11(((RefreshEventHandler_t3510407695 *)CastclassSealed((RuntimeObject*)L_2, RefreshEventHandler_t3510407695_il2cpp_TypeInfo_var))); return; } } // System.Void System.ComponentModel.TypeDescriptor::remove_Refreshed(System.ComponentModel.RefreshEventHandler) extern "C" void TypeDescriptor_remove_Refreshed_m1327840095 (RuntimeObject * __this /* static, unused */, RefreshEventHandler_t3510407695 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_remove_Refreshed_m1327840095_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RefreshEventHandler_t3510407695 * L_0 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_Refreshed_11(); RefreshEventHandler_t3510407695 * L_1 = ___value0; Delegate_t2639791074 * L_2 = Delegate_Remove_m798364057(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL); ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->set_Refreshed_11(((RefreshEventHandler_t3510407695 *)CastclassSealed((RuntimeObject*)L_2, RefreshEventHandler_t3510407695_il2cpp_TypeInfo_var))); return; } } // System.Type System.ComponentModel.TypeDescriptor::get_ComObjectType() extern "C" Type_t * TypeDescriptor_get_ComObjectType_m1891643124 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_get_ComObjectType_m1891643124_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotImplementedException_t682134635 * L_0 = (NotImplementedException_t682134635 *)il2cpp_codegen_object_new(NotImplementedException_t682134635_il2cpp_TypeInfo_var); NotImplementedException__ctor_m1549985598(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptor::AddAttributes(System.Object,System.Attribute[]) extern "C" TypeDescriptionProvider_t4220413402 * TypeDescriptor_AddAttributes_m358181365 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___instance0, AttributeU5BU5D_t187261448* ___attributes1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_AddAttributes_m358181365_MetadataUsageId); s_Il2CppMethodInitialized = true; } AttributeProvider_t4079053818 * V_0 = NULL; { RuntimeObject * L_0 = ___instance0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral2374827162, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { AttributeU5BU5D_t187261448* L_2 = ___attributes1; if (L_2) { goto IL_0022; } } { ArgumentNullException_t873386607 * L_3 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_3, _stringLiteral4163930351, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_0022: { AttributeU5BU5D_t187261448* L_4 = ___attributes1; RuntimeObject * L_5 = ___instance0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeDescriptionProvider_t4220413402 * L_6 = TypeDescriptor_GetProvider_m476155507(NULL /*static, unused*/, L_5, /*hidden argument*/NULL); AttributeProvider_t4079053818 * L_7 = (AttributeProvider_t4079053818 *)il2cpp_codegen_object_new(AttributeProvider_t4079053818_il2cpp_TypeInfo_var); AttributeProvider__ctor_m1120275715(L_7, L_4, L_6, /*hidden argument*/NULL); V_0 = L_7; AttributeProvider_t4079053818 * L_8 = V_0; RuntimeObject * L_9 = ___instance0; TypeDescriptor_AddProvider_m3867577384(NULL /*static, unused*/, L_8, L_9, /*hidden argument*/NULL); AttributeProvider_t4079053818 * L_10 = V_0; return L_10; } } // System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptor::AddAttributes(System.Type,System.Attribute[]) extern "C" TypeDescriptionProvider_t4220413402 * TypeDescriptor_AddAttributes_m3528096134 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, AttributeU5BU5D_t187261448* ___attributes1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_AddAttributes_m3528096134_MetadataUsageId); s_Il2CppMethodInitialized = true; } AttributeProvider_t4079053818 * V_0 = NULL; { Type_t * L_0 = ___type0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral4074451177, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { AttributeU5BU5D_t187261448* L_2 = ___attributes1; if (L_2) { goto IL_0022; } } { ArgumentNullException_t873386607 * L_3 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_3, _stringLiteral4163930351, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_0022: { AttributeU5BU5D_t187261448* L_4 = ___attributes1; Type_t * L_5 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeDescriptionProvider_t4220413402 * L_6 = TypeDescriptor_GetProvider_m514055783(NULL /*static, unused*/, L_5, /*hidden argument*/NULL); AttributeProvider_t4079053818 * L_7 = (AttributeProvider_t4079053818 *)il2cpp_codegen_object_new(AttributeProvider_t4079053818_il2cpp_TypeInfo_var); AttributeProvider__ctor_m1120275715(L_7, L_4, L_6, /*hidden argument*/NULL); V_0 = L_7; AttributeProvider_t4079053818 * L_8 = V_0; Type_t * L_9 = ___type0; TypeDescriptor_AddProvider_m2406393404(NULL /*static, unused*/, L_8, L_9, /*hidden argument*/NULL); AttributeProvider_t4079053818 * L_10 = V_0; return L_10; } } // System.Void System.ComponentModel.TypeDescriptor::AddProvider(System.ComponentModel.TypeDescriptionProvider,System.Object) extern "C" void TypeDescriptor_AddProvider_m3867577384 (RuntimeObject * __this /* static, unused */, TypeDescriptionProvider_t4220413402 * ___provider0, RuntimeObject * ___instance1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_AddProvider_m3867577384_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; LinkedList_1_t3169462053 * V_1 = NULL; WeakObjectWrapper_t3106754776 * V_2 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TypeDescriptionProvider_t4220413402 * L_0 = ___provider0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral2562382105, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { RuntimeObject * L_2 = ___instance1; if (L_2) { goto IL_0022; } } { ArgumentNullException_t873386607 * L_3 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_3, _stringLiteral2374827162, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_0022: { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RuntimeObject * L_4 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_componentDescriptionProvidersLock_8(); V_0 = L_4; RuntimeObject * L_5 = V_0; Monitor_Enter_m1524383546(NULL /*static, unused*/, L_5, /*hidden argument*/NULL); } IL_002e: try { // begin try (depth: 1) { RuntimeObject * L_6 = ___instance1; WeakObjectWrapper_t3106754776 * L_7 = (WeakObjectWrapper_t3106754776 *)il2cpp_codegen_object_new(WeakObjectWrapper_t3106754776_il2cpp_TypeInfo_var); WeakObjectWrapper__ctor_m3552650423(L_7, L_6, /*hidden argument*/NULL); V_2 = L_7; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Dictionary_2_t1504552994 * L_8 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_componentDescriptionProviders_9(); WeakObjectWrapper_t3106754776 * L_9 = V_2; NullCheck(L_8); bool L_10 = Dictionary_2_TryGetValue_m2172175164(L_8, L_9, (&V_1), /*hidden argument*/Dictionary_2_TryGetValue_m2172175164_RuntimeMethod_var); if (L_10) { goto IL_005e; } } IL_0047: { LinkedList_1_t3169462053 * L_11 = (LinkedList_1_t3169462053 *)il2cpp_codegen_object_new(LinkedList_1_t3169462053_il2cpp_TypeInfo_var); LinkedList_1__ctor_m915351385(L_11, /*hidden argument*/LinkedList_1__ctor_m915351385_RuntimeMethod_var); V_1 = L_11; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Dictionary_2_t1504552994 * L_12 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_componentDescriptionProviders_9(); RuntimeObject * L_13 = ___instance1; WeakObjectWrapper_t3106754776 * L_14 = (WeakObjectWrapper_t3106754776 *)il2cpp_codegen_object_new(WeakObjectWrapper_t3106754776_il2cpp_TypeInfo_var); WeakObjectWrapper__ctor_m3552650423(L_14, L_13, /*hidden argument*/NULL); LinkedList_1_t3169462053 * L_15 = V_1; NullCheck(L_12); Dictionary_2_Add_m3047456897(L_12, L_14, L_15, /*hidden argument*/Dictionary_2_Add_m3047456897_RuntimeMethod_var); } IL_005e: { LinkedList_1_t3169462053 * L_16 = V_1; TypeDescriptionProvider_t4220413402 * L_17 = ___provider0; NullCheck(L_16); LinkedList_1_AddLast_m953928916(L_16, L_17, /*hidden argument*/LinkedList_1_AddLast_m953928916_RuntimeMethod_var); V_2 = (WeakObjectWrapper_t3106754776 *)NULL; RuntimeObject * L_18 = ___instance1; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeDescriptor_Refresh_m2931561063(NULL /*static, unused*/, L_18, /*hidden argument*/NULL); IL2CPP_LEAVE(0x7A, FINALLY_0073); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_0073; } FINALLY_0073: { // begin finally (depth: 1) RuntimeObject * L_19 = V_0; Monitor_Exit_m69827708(NULL /*static, unused*/, L_19, /*hidden argument*/NULL); IL2CPP_END_FINALLY(115) } // end finally (depth: 1) IL2CPP_CLEANUP(115) { IL2CPP_JUMP_TBL(0x7A, IL_007a) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_007a: { return; } } // System.Void System.ComponentModel.TypeDescriptor::AddProvider(System.ComponentModel.TypeDescriptionProvider,System.Type) extern "C" void TypeDescriptor_AddProvider_m2406393404 (RuntimeObject * __this /* static, unused */, TypeDescriptionProvider_t4220413402 * ___provider0, Type_t * ___type1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_AddProvider_m2406393404_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; LinkedList_1_t3169462053 * V_1 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TypeDescriptionProvider_t4220413402 * L_0 = ___provider0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral2562382105, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { Type_t * L_2 = ___type1; if (L_2) { goto IL_0022; } } { ArgumentNullException_t873386607 * L_3 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_3, _stringLiteral4074451177, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_0022: { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RuntimeObject * L_4 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_typeDescriptionProvidersLock_6(); V_0 = L_4; RuntimeObject * L_5 = V_0; Monitor_Enter_m1524383546(NULL /*static, unused*/, L_5, /*hidden argument*/NULL); } IL_002e: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Dictionary_2_t3039616987 * L_6 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_typeDescriptionProviders_7(); Type_t * L_7 = ___type1; NullCheck(L_6); bool L_8 = Dictionary_2_TryGetValue_m3960761973(L_6, L_7, (&V_1), /*hidden argument*/Dictionary_2_TryGetValue_m3960761973_RuntimeMethod_var); if (L_8) { goto IL_0052; } } IL_0040: { LinkedList_1_t3169462053 * L_9 = (LinkedList_1_t3169462053 *)il2cpp_codegen_object_new(LinkedList_1_t3169462053_il2cpp_TypeInfo_var); LinkedList_1__ctor_m915351385(L_9, /*hidden argument*/LinkedList_1__ctor_m915351385_RuntimeMethod_var); V_1 = L_9; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Dictionary_2_t3039616987 * L_10 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_typeDescriptionProviders_7(); Type_t * L_11 = ___type1; LinkedList_1_t3169462053 * L_12 = V_1; NullCheck(L_10); Dictionary_2_Add_m145337118(L_10, L_11, L_12, /*hidden argument*/Dictionary_2_Add_m145337118_RuntimeMethod_var); } IL_0052: { LinkedList_1_t3169462053 * L_13 = V_1; TypeDescriptionProvider_t4220413402 * L_14 = ___provider0; NullCheck(L_13); LinkedList_1_AddLast_m953928916(L_13, L_14, /*hidden argument*/LinkedList_1_AddLast_m953928916_RuntimeMethod_var); Type_t * L_15 = ___type1; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeDescriptor_Refresh_m2947627068(NULL /*static, unused*/, L_15, /*hidden argument*/NULL); IL2CPP_LEAVE(0x6C, FINALLY_0065); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_0065; } FINALLY_0065: { // begin finally (depth: 1) RuntimeObject * L_16 = V_0; Monitor_Exit_m69827708(NULL /*static, unused*/, L_16, /*hidden argument*/NULL); IL2CPP_END_FINALLY(101) } // end finally (depth: 1) IL2CPP_CLEANUP(101) { IL2CPP_JUMP_TBL(0x6C, IL_006c) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_006c: { return; } } // System.Object System.ComponentModel.TypeDescriptor::CreateInstance(System.IServiceProvider,System.Type,System.Type[],System.Object[]) extern "C" RuntimeObject * TypeDescriptor_CreateInstance_m2864588923 (RuntimeObject * __this /* static, unused */, RuntimeObject* ___provider0, Type_t * ___objectType1, TypeU5BU5D_t89919618* ___argTypes2, ObjectU5BU5D_t4199014551* ___args3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_CreateInstance_m2864588923_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; TypeDescriptionProvider_t4220413402 * V_1 = NULL; { Type_t * L_0 = ___objectType1; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral3387383357, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { V_0 = NULL; RuntimeObject* L_2 = ___provider0; if (!L_2) { goto IL_0040; } } { RuntimeObject* L_3 = ___provider0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(TypeDescriptionProvider_t4220413402_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_3); RuntimeObject * L_5 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4067527398_il2cpp_TypeInfo_var, L_3, L_4); V_1 = ((TypeDescriptionProvider_t4220413402 *)IsInstClass((RuntimeObject*)L_5, TypeDescriptionProvider_t4220413402_il2cpp_TypeInfo_var)); TypeDescriptionProvider_t4220413402 * L_6 = V_1; if (!L_6) { goto IL_0040; } } { TypeDescriptionProvider_t4220413402 * L_7 = V_1; RuntimeObject* L_8 = ___provider0; Type_t * L_9 = ___objectType1; TypeU5BU5D_t89919618* L_10 = ___argTypes2; ObjectU5BU5D_t4199014551* L_11 = ___args3; NullCheck(L_7); RuntimeObject * L_12 = VirtFuncInvoker4< RuntimeObject *, RuntimeObject*, Type_t *, TypeU5BU5D_t89919618*, ObjectU5BU5D_t4199014551* >::Invoke(4 /* System.Object System.ComponentModel.TypeDescriptionProvider::CreateInstance(System.IServiceProvider,System.Type,System.Type[],System.Object[]) */, L_7, L_8, L_9, L_10, L_11); V_0 = L_12; } IL_0040: { RuntimeObject * L_13 = V_0; if (L_13) { goto IL_004e; } } { Type_t * L_14 = ___objectType1; ObjectU5BU5D_t4199014551* L_15 = ___args3; RuntimeObject * L_16 = Activator_CreateInstance_m1834653757(NULL /*static, unused*/, L_14, L_15, /*hidden argument*/NULL); V_0 = L_16; } IL_004e: { RuntimeObject * L_17 = V_0; return L_17; } } // System.Void System.ComponentModel.TypeDescriptor::AddEditorTable(System.Type,System.Collections.Hashtable) extern "C" void TypeDescriptor_AddEditorTable_m2820634221 (RuntimeObject * __this /* static, unused */, Type_t * ___editorBaseType0, Hashtable_t448324601 * ___table1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_AddEditorTable_m2820634221_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___editorBaseType0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral3396830644, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Hashtable_t448324601 * L_2 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_editors_5(); if (L_2) { goto IL_0025; } } { Hashtable_t448324601 * L_3 = (Hashtable_t448324601 *)il2cpp_codegen_object_new(Hashtable_t448324601_il2cpp_TypeInfo_var); Hashtable__ctor_m4203419798(L_3, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->set_editors_5(L_3); } IL_0025: { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Hashtable_t448324601 * L_4 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_editors_5(); Type_t * L_5 = ___editorBaseType0; NullCheck(L_4); bool L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(38 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_4, L_5); if (L_6) { goto IL_0041; } } { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Hashtable_t448324601 * L_7 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_editors_5(); Type_t * L_8 = ___editorBaseType0; Hashtable_t448324601 * L_9 = ___table1; NullCheck(L_7); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(31 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_7, L_8, L_9); } IL_0041: { return; } } // System.ComponentModel.Design.IDesigner System.ComponentModel.TypeDescriptor::CreateDesigner(System.ComponentModel.IComponent,System.Type) extern "C" RuntimeObject* TypeDescriptor_CreateDesigner_m3151347092 (RuntimeObject * __this /* static, unused */, RuntimeObject* ___component0, Type_t * ___designerBaseType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_CreateDesigner_m3151347092_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; AttributeCollection_t3634739288 * V_1 = NULL; Attribute_t2739832645 * V_2 = NULL; RuntimeObject* V_3 = NULL; DesignerAttribute_t80198024 * V_4 = NULL; Type_t * V_5 = NULL; RuntimeObject* V_6 = NULL; RuntimeObject* V_7 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { Type_t * L_0 = ___designerBaseType1; NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(15 /* System.String System.Type::get_AssemblyQualifiedName() */, L_0); V_0 = L_1; RuntimeObject* L_2 = ___component0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); AttributeCollection_t3634739288 * L_3 = TypeDescriptor_GetAttributes_m3997682573(NULL /*static, unused*/, L_2, /*hidden argument*/NULL); V_1 = L_3; AttributeCollection_t3634739288 * L_4 = V_1; NullCheck(L_4); RuntimeObject* L_5 = AttributeCollection_GetEnumerator_m3871199393(L_4, /*hidden argument*/NULL); V_3 = L_5; } IL_0015: try { // begin try (depth: 1) { goto IL_0070; } IL_001a: { RuntimeObject* L_6 = V_3; NullCheck(L_6); RuntimeObject * L_7 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1868781825_il2cpp_TypeInfo_var, L_6); V_2 = ((Attribute_t2739832645 *)CastclassClass((RuntimeObject*)L_7, Attribute_t2739832645_il2cpp_TypeInfo_var)); Attribute_t2739832645 * L_8 = V_2; V_4 = ((DesignerAttribute_t80198024 *)IsInstSealed((RuntimeObject*)L_8, DesignerAttribute_t80198024_il2cpp_TypeInfo_var)); DesignerAttribute_t80198024 * L_9 = V_4; if (!L_9) { goto IL_0070; } } IL_0035: { String_t* L_10 = V_0; DesignerAttribute_t80198024 * L_11 = V_4; NullCheck(L_11); String_t* L_12 = DesignerAttribute_get_DesignerBaseTypeName_m2467696068(L_11, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_13 = String_op_Equality_m3571002539(NULL /*static, unused*/, L_10, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0070; } } IL_0047: { RuntimeObject* L_14 = ___component0; DesignerAttribute_t80198024 * L_15 = V_4; NullCheck(L_15); String_t* L_16 = DesignerAttribute_get_DesignerTypeName_m2452529458(L_15, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Type_t * L_17 = TypeDescriptor_GetTypeFromName_m4158908695(NULL /*static, unused*/, L_14, L_16, /*hidden argument*/NULL); V_5 = L_17; Type_t * L_18 = V_5; if (!L_18) { goto IL_0070; } } IL_005d: { Type_t * L_19 = V_5; RuntimeObject * L_20 = Activator_CreateInstance_m3338111582(NULL /*static, unused*/, L_19, /*hidden argument*/NULL); V_6 = ((RuntimeObject*)Castclass((RuntimeObject*)L_20, IDesigner_t2338047289_il2cpp_TypeInfo_var)); IL2CPP_LEAVE(0x97, FINALLY_0080); } IL_0070: { RuntimeObject* L_21 = V_3; NullCheck(L_21); bool L_22 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1868781825_il2cpp_TypeInfo_var, L_21); if (L_22) { goto IL_001a; } } IL_007b: { IL2CPP_LEAVE(0x95, FINALLY_0080); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_0080; } FINALLY_0080: { // begin finally (depth: 1) { RuntimeObject* L_23 = V_3; V_7 = ((RuntimeObject*)IsInst((RuntimeObject*)L_23, IDisposable_t3750220212_il2cpp_TypeInfo_var)); RuntimeObject* L_24 = V_7; if (L_24) { goto IL_008d; } } IL_008c: { IL2CPP_END_FINALLY(128) } IL_008d: { RuntimeObject* L_25 = V_7; NullCheck(L_25); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3750220212_il2cpp_TypeInfo_var, L_25); IL2CPP_END_FINALLY(128) } } // end finally (depth: 1) IL2CPP_CLEANUP(128) { IL2CPP_JUMP_TBL(0x97, IL_0097) IL2CPP_JUMP_TBL(0x95, IL_0095) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_0095: { return (RuntimeObject*)NULL; } IL_0097: { RuntimeObject* L_26 = V_6; return L_26; } } // System.ComponentModel.EventDescriptor System.ComponentModel.TypeDescriptor::CreateEvent(System.Type,System.String,System.Type,System.Attribute[]) extern "C" EventDescriptor_t3701426622 * TypeDescriptor_CreateEvent_m516812875 (RuntimeObject * __this /* static, unused */, Type_t * ___componentType0, String_t* ___name1, Type_t * ___type2, AttributeU5BU5D_t187261448* ___attributes3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_CreateEvent_m516812875_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___componentType0; String_t* L_1 = ___name1; Type_t * L_2 = ___type2; AttributeU5BU5D_t187261448* L_3 = ___attributes3; ReflectionEventDescriptor_t4023907121 * L_4 = (ReflectionEventDescriptor_t4023907121 *)il2cpp_codegen_object_new(ReflectionEventDescriptor_t4023907121_il2cpp_TypeInfo_var); ReflectionEventDescriptor__ctor_m481248106(L_4, L_0, L_1, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.ComponentModel.EventDescriptor System.ComponentModel.TypeDescriptor::CreateEvent(System.Type,System.ComponentModel.EventDescriptor,System.Attribute[]) extern "C" EventDescriptor_t3701426622 * TypeDescriptor_CreateEvent_m1241101844 (RuntimeObject * __this /* static, unused */, Type_t * ___componentType0, EventDescriptor_t3701426622 * ___oldEventDescriptor1, AttributeU5BU5D_t187261448* ___attributes2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_CreateEvent_m1241101844_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___componentType0; EventDescriptor_t3701426622 * L_1 = ___oldEventDescriptor1; AttributeU5BU5D_t187261448* L_2 = ___attributes2; ReflectionEventDescriptor_t4023907121 * L_3 = (ReflectionEventDescriptor_t4023907121 *)il2cpp_codegen_object_new(ReflectionEventDescriptor_t4023907121_il2cpp_TypeInfo_var); ReflectionEventDescriptor__ctor_m1990245723(L_3, L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.ComponentModel.PropertyDescriptor System.ComponentModel.TypeDescriptor::CreateProperty(System.Type,System.String,System.Type,System.Attribute[]) extern "C" PropertyDescriptor_t2555988069 * TypeDescriptor_CreateProperty_m3948974360 (RuntimeObject * __this /* static, unused */, Type_t * ___componentType0, String_t* ___name1, Type_t * ___type2, AttributeU5BU5D_t187261448* ___attributes3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_CreateProperty_m3948974360_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___componentType0; String_t* L_1 = ___name1; Type_t * L_2 = ___type2; AttributeU5BU5D_t187261448* L_3 = ___attributes3; ReflectionPropertyDescriptor_t1079221997 * L_4 = (ReflectionPropertyDescriptor_t1079221997 *)il2cpp_codegen_object_new(ReflectionPropertyDescriptor_t1079221997_il2cpp_TypeInfo_var); ReflectionPropertyDescriptor__ctor_m3691613756(L_4, L_0, L_1, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.ComponentModel.PropertyDescriptor System.ComponentModel.TypeDescriptor::CreateProperty(System.Type,System.ComponentModel.PropertyDescriptor,System.Attribute[]) extern "C" PropertyDescriptor_t2555988069 * TypeDescriptor_CreateProperty_m820674424 (RuntimeObject * __this /* static, unused */, Type_t * ___componentType0, PropertyDescriptor_t2555988069 * ___oldPropertyDescriptor1, AttributeU5BU5D_t187261448* ___attributes2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_CreateProperty_m820674424_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___componentType0; PropertyDescriptor_t2555988069 * L_1 = ___oldPropertyDescriptor1; AttributeU5BU5D_t187261448* L_2 = ___attributes2; ReflectionPropertyDescriptor_t1079221997 * L_3 = (ReflectionPropertyDescriptor_t1079221997 *)il2cpp_codegen_object_new(ReflectionPropertyDescriptor_t1079221997_il2cpp_TypeInfo_var); ReflectionPropertyDescriptor__ctor_m2706362668(L_3, L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.ComponentModel.AttributeCollection System.ComponentModel.TypeDescriptor::GetAttributes(System.Type) extern "C" AttributeCollection_t3634739288 * TypeDescriptor_GetAttributes_m3292160618 (RuntimeObject * __this /* static, unused */, Type_t * ___componentType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetAttributes_m3292160618_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___componentType0; if (L_0) { goto IL_000c; } } { IL2CPP_RUNTIME_CLASS_INIT(AttributeCollection_t3634739288_il2cpp_TypeInfo_var); AttributeCollection_t3634739288 * L_1 = ((AttributeCollection_t3634739288_StaticFields*)il2cpp_codegen_static_fields_for(AttributeCollection_t3634739288_il2cpp_TypeInfo_var))->get_Empty_1(); return L_1; } IL_000c: { Type_t * L_2 = ___componentType0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeInfo_t2535999846 * L_3 = TypeDescriptor_GetTypeInfo_m1821580626(NULL /*static, unused*/, L_2, /*hidden argument*/NULL); NullCheck(L_3); AttributeCollection_t3634739288 * L_4 = VirtFuncInvoker0< AttributeCollection_t3634739288 * >::Invoke(4 /* System.ComponentModel.AttributeCollection System.ComponentModel.TypeInfo::GetAttributes() */, L_3); return L_4; } } // System.ComponentModel.AttributeCollection System.ComponentModel.TypeDescriptor::GetAttributes(System.Object) extern "C" AttributeCollection_t3634739288 * TypeDescriptor_GetAttributes_m3997682573 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetAttributes_m3997682573_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___component0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); AttributeCollection_t3634739288 * L_1 = TypeDescriptor_GetAttributes_m2157745829(NULL /*static, unused*/, L_0, (bool)0, /*hidden argument*/NULL); return L_1; } } // System.ComponentModel.AttributeCollection System.ComponentModel.TypeDescriptor::GetAttributes(System.Object,System.Boolean) extern "C" AttributeCollection_t3634739288 * TypeDescriptor_GetAttributes_m2157745829 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetAttributes_m2157745829_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { RuntimeObject * L_0 = ___component0; if (L_0) { goto IL_000c; } } { IL2CPP_RUNTIME_CLASS_INIT(AttributeCollection_t3634739288_il2cpp_TypeInfo_var); AttributeCollection_t3634739288 * L_1 = ((AttributeCollection_t3634739288_StaticFields*)il2cpp_codegen_static_fields_for(AttributeCollection_t3634739288_il2cpp_TypeInfo_var))->get_Empty_1(); return L_1; } IL_000c: { bool L_2 = ___noCustomTypeDesc1; if (L_2) { goto IL_0029; } } { RuntimeObject * L_3 = ___component0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_3, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))) { goto IL_0029; } } { RuntimeObject * L_4 = ___component0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_4, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))); AttributeCollection_t3634739288 * L_5 = InterfaceFuncInvoker0< AttributeCollection_t3634739288 * >::Invoke(0 /* System.ComponentModel.AttributeCollection System.ComponentModel.ICustomTypeDescriptor::GetAttributes() */, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_4, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))); return L_5; } IL_0029: { RuntimeObject * L_6 = ___component0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_6, IComponent_t63236301_il2cpp_TypeInfo_var)); RuntimeObject* L_7 = V_0; if (!L_7) { goto IL_004d; } } { RuntimeObject* L_8 = V_0; NullCheck(L_8); RuntimeObject* L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t63236301_il2cpp_TypeInfo_var, L_8); if (!L_9) { goto IL_004d; } } { RuntimeObject* L_10 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); ComponentInfo_t3532183224 * L_11 = TypeDescriptor_GetComponentInfo_m1529259269(NULL /*static, unused*/, L_10, /*hidden argument*/NULL); NullCheck(L_11); AttributeCollection_t3634739288 * L_12 = VirtFuncInvoker0< AttributeCollection_t3634739288 * >::Invoke(4 /* System.ComponentModel.AttributeCollection System.ComponentModel.ComponentInfo::GetAttributes() */, L_11); return L_12; } IL_004d: { RuntimeObject * L_13 = ___component0; NullCheck(L_13); Type_t * L_14 = Object_GetType_m1134229006(L_13, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeInfo_t2535999846 * L_15 = TypeDescriptor_GetTypeInfo_m1821580626(NULL /*static, unused*/, L_14, /*hidden argument*/NULL); NullCheck(L_15); AttributeCollection_t3634739288 * L_16 = VirtFuncInvoker0< AttributeCollection_t3634739288 * >::Invoke(4 /* System.ComponentModel.AttributeCollection System.ComponentModel.TypeInfo::GetAttributes() */, L_15); return L_16; } } // System.String System.ComponentModel.TypeDescriptor::GetClassName(System.Object) extern "C" String_t* TypeDescriptor_GetClassName_m2115386293 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetClassName_m2115386293_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___component0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); String_t* L_1 = TypeDescriptor_GetClassName_m1796385024(NULL /*static, unused*/, L_0, (bool)0, /*hidden argument*/NULL); return L_1; } } // System.String System.ComponentModel.TypeDescriptor::GetClassName(System.Object,System.Boolean) extern "C" String_t* TypeDescriptor_GetClassName_m1796385024 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetClassName_m1796385024_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { RuntimeObject * L_0 = ___component0; if (L_0) { goto IL_0016; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1329052997(L_1, _stringLiteral340364817, _stringLiteral837429277, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0016: { bool L_2 = ___noCustomTypeDesc1; if (L_2) { goto IL_0059; } } { RuntimeObject * L_3 = ___component0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_3, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))) { goto IL_0059; } } { RuntimeObject * L_4 = ___component0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_4, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))); String_t* L_5 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String System.ComponentModel.ICustomTypeDescriptor::GetClassName() */, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_4, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))); V_0 = L_5; String_t* L_6 = V_0; if (L_6) { goto IL_0045; } } { RuntimeObject * L_7 = ___component0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_7, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))); String_t* L_8 = InterfaceFuncInvoker0< String_t* >::Invoke(2 /* System.String System.ComponentModel.ICustomTypeDescriptor::GetComponentName() */, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_7, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))); V_0 = L_8; } IL_0045: { String_t* L_9 = V_0; if (L_9) { goto IL_0057; } } { RuntimeObject * L_10 = ___component0; NullCheck(L_10); Type_t * L_11 = Object_GetType_m1134229006(L_10, /*hidden argument*/NULL); NullCheck(L_11); String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_11); V_0 = L_12; } IL_0057: { String_t* L_13 = V_0; return L_13; } IL_0059: { RuntimeObject * L_14 = ___component0; NullCheck(L_14); Type_t * L_15 = Object_GetType_m1134229006(L_14, /*hidden argument*/NULL); NullCheck(L_15); String_t* L_16 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_15); return L_16; } } // System.String System.ComponentModel.TypeDescriptor::GetComponentName(System.Object) extern "C" String_t* TypeDescriptor_GetComponentName_m779859611 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetComponentName_m779859611_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___component0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); String_t* L_1 = TypeDescriptor_GetComponentName_m1710822790(NULL /*static, unused*/, L_0, (bool)0, /*hidden argument*/NULL); return L_1; } } // System.String System.ComponentModel.TypeDescriptor::GetComponentName(System.Object,System.Boolean) extern "C" String_t* TypeDescriptor_GetComponentName_m1710822790 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetComponentName_m1710822790_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { RuntimeObject * L_0 = ___component0; if (L_0) { goto IL_0016; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1329052997(L_1, _stringLiteral340364817, _stringLiteral837429277, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0016: { bool L_2 = ___noCustomTypeDesc1; if (L_2) { goto IL_0033; } } { RuntimeObject * L_3 = ___component0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_3, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))) { goto IL_0033; } } { RuntimeObject * L_4 = ___component0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_4, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))); String_t* L_5 = InterfaceFuncInvoker0< String_t* >::Invoke(2 /* System.String System.ComponentModel.ICustomTypeDescriptor::GetComponentName() */, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_4, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))); return L_5; } IL_0033: { RuntimeObject * L_6 = ___component0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_6, IComponent_t63236301_il2cpp_TypeInfo_var)); RuntimeObject* L_7 = V_0; if (!L_7) { goto IL_0057; } } { RuntimeObject* L_8 = V_0; NullCheck(L_8); RuntimeObject* L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t63236301_il2cpp_TypeInfo_var, L_8); if (!L_9) { goto IL_0057; } } { RuntimeObject* L_10 = V_0; NullCheck(L_10); RuntimeObject* L_11 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t63236301_il2cpp_TypeInfo_var, L_10); NullCheck(L_11); String_t* L_12 = InterfaceFuncInvoker0< String_t* >::Invoke(3 /* System.String System.ComponentModel.ISite::get_Name() */, ISite_t2490093357_il2cpp_TypeInfo_var, L_11); return L_12; } IL_0057: { return (String_t*)NULL; } } // System.String System.ComponentModel.TypeDescriptor::GetFullComponentName(System.Object) extern "C" String_t* TypeDescriptor_GetFullComponentName_m51660660 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetFullComponentName_m51660660_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotImplementedException_t682134635 * L_0 = (NotImplementedException_t682134635 *)il2cpp_codegen_object_new(NotImplementedException_t682134635_il2cpp_TypeInfo_var); NotImplementedException__ctor_m1549985598(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.String System.ComponentModel.TypeDescriptor::GetClassName(System.Type) extern "C" String_t* TypeDescriptor_GetClassName_m1496028753 (RuntimeObject * __this /* static, unused */, Type_t * ___componentType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetClassName_m1496028753_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotImplementedException_t682134635 * L_0 = (NotImplementedException_t682134635 *)il2cpp_codegen_object_new(NotImplementedException_t682134635_il2cpp_TypeInfo_var); NotImplementedException__ctor_m1549985598(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.ComponentModel.TypeConverter System.ComponentModel.TypeDescriptor::GetConverter(System.Object) extern "C" TypeConverter_t3595149642 * TypeDescriptor_GetConverter_m1283158768 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetConverter_m1283158768_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___component0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeConverter_t3595149642 * L_1 = TypeDescriptor_GetConverter_m78243983(NULL /*static, unused*/, L_0, (bool)0, /*hidden argument*/NULL); return L_1; } } // System.ComponentModel.TypeConverter System.ComponentModel.TypeDescriptor::GetConverter(System.Object,System.Boolean) extern "C" TypeConverter_t3595149642 * TypeDescriptor_GetConverter_m78243983 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetConverter_m78243983_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; AttributeCollection_t3634739288 * V_1 = NULL; TypeConverterAttribute_t695735035 * V_2 = NULL; ConstructorInfo_t673747461 * V_3 = NULL; { RuntimeObject * L_0 = ___component0; if (L_0) { goto IL_0016; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1329052997(L_1, _stringLiteral340364817, _stringLiteral837429277, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0016: { bool L_2 = ___noCustomTypeDesc1; if (L_2) { goto IL_0033; } } { RuntimeObject * L_3 = ___component0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_3, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))) { goto IL_0033; } } { RuntimeObject * L_4 = ___component0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_4, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))); TypeConverter_t3595149642 * L_5 = InterfaceFuncInvoker0< TypeConverter_t3595149642 * >::Invoke(3 /* System.ComponentModel.TypeConverter System.ComponentModel.ICustomTypeDescriptor::GetConverter() */, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_4, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))); return L_5; } IL_0033: { V_0 = (Type_t *)NULL; RuntimeObject * L_6 = ___component0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); AttributeCollection_t3634739288 * L_7 = TypeDescriptor_GetAttributes_m2157745829(NULL /*static, unused*/, L_6, (bool)0, /*hidden argument*/NULL); V_1 = L_7; AttributeCollection_t3634739288 * L_8 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(TypeConverterAttribute_t695735035_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_8); Attribute_t2739832645 * L_10 = VirtFuncInvoker1< Attribute_t2739832645 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_8, L_9); V_2 = ((TypeConverterAttribute_t695735035 *)CastclassSealed((RuntimeObject*)L_10, TypeConverterAttribute_t695735035_il2cpp_TypeInfo_var)); TypeConverterAttribute_t695735035 * L_11 = V_2; if (!L_11) { goto IL_007c; } } { TypeConverterAttribute_t695735035 * L_12 = V_2; NullCheck(L_12); String_t* L_13 = TypeConverterAttribute_get_ConverterTypeName_m3171634346(L_12, /*hidden argument*/NULL); NullCheck(L_13); int32_t L_14 = String_get_Length_m2584136399(L_13, /*hidden argument*/NULL); if ((((int32_t)L_14) <= ((int32_t)0))) { goto IL_007c; } } { RuntimeObject * L_15 = ___component0; TypeConverterAttribute_t695735035 * L_16 = V_2; NullCheck(L_16); String_t* L_17 = TypeConverterAttribute_get_ConverterTypeName_m3171634346(L_16, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Type_t * L_18 = TypeDescriptor_GetTypeFromName_m4158908695(NULL /*static, unused*/, ((RuntimeObject*)IsInst((RuntimeObject*)L_15, IComponent_t63236301_il2cpp_TypeInfo_var)), L_17, /*hidden argument*/NULL); V_0 = L_18; } IL_007c: { Type_t * L_19 = V_0; if (L_19) { goto IL_008e; } } { RuntimeObject * L_20 = ___component0; NullCheck(L_20); Type_t * L_21 = Object_GetType_m1134229006(L_20, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Type_t * L_22 = TypeDescriptor_FindDefaultConverterType_m2157367584(NULL /*static, unused*/, L_21, /*hidden argument*/NULL); V_0 = L_22; } IL_008e: { Type_t * L_23 = V_0; if (!L_23) { goto IL_00db; } } { Type_t * L_24 = V_0; TypeU5BU5D_t89919618* L_25 = ((TypeU5BU5D_t89919618*)SZArrayNew(TypeU5BU5D_t89919618_il2cpp_TypeInfo_var, (uint32_t)1)); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_26 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Type_t_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_25); ArrayElementTypeCheck (L_25, L_26); (L_25)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_26); NullCheck(L_24); ConstructorInfo_t673747461 * L_27 = Type_GetConstructor_m2299987216(L_24, L_25, /*hidden argument*/NULL); V_3 = L_27; ConstructorInfo_t673747461 * L_28 = V_3; if (!L_28) { goto IL_00cf; } } { ConstructorInfo_t673747461 * L_29 = V_3; ObjectU5BU5D_t4199014551* L_30 = ((ObjectU5BU5D_t4199014551*)SZArrayNew(ObjectU5BU5D_t4199014551_il2cpp_TypeInfo_var, (uint32_t)1)); RuntimeObject * L_31 = ___component0; NullCheck(L_31); Type_t * L_32 = Object_GetType_m1134229006(L_31, /*hidden argument*/NULL); NullCheck(L_30); ArrayElementTypeCheck (L_30, L_32); (L_30)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_32); NullCheck(L_29); RuntimeObject * L_33 = ConstructorInfo_Invoke_m3520953233(L_29, L_30, /*hidden argument*/NULL); return ((TypeConverter_t3595149642 *)CastclassClass((RuntimeObject*)L_33, TypeConverter_t3595149642_il2cpp_TypeInfo_var)); } IL_00cf: { Type_t * L_34 = V_0; RuntimeObject * L_35 = Activator_CreateInstance_m3338111582(NULL /*static, unused*/, L_34, /*hidden argument*/NULL); return ((TypeConverter_t3595149642 *)CastclassClass((RuntimeObject*)L_35, TypeConverter_t3595149642_il2cpp_TypeInfo_var)); } IL_00db: { return (TypeConverter_t3595149642 *)NULL; } } // System.Collections.ArrayList System.ComponentModel.TypeDescriptor::get_DefaultConverters() extern "C" ArrayList_t4277734320 * TypeDescriptor_get_DefaultConverters_m1945021735 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_get_DefaultConverters_m1945021735_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; ArrayList_t4277734320 * V_1 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RuntimeObject * L_0 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_creatingDefaultConverters_0(); V_0 = L_0; RuntimeObject * L_1 = V_0; Monitor_Enter_m1524383546(NULL /*static, unused*/, L_1, /*hidden argument*/NULL); } IL_000c: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); ArrayList_t4277734320 * L_2 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); if (!L_2) { goto IL_0021; } } IL_0016: { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); ArrayList_t4277734320 * L_3 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); V_1 = L_3; IL2CPP_LEAVE(0x3C3, FINALLY_03b6); } IL_0021: { ArrayList_t4277734320 * L_4 = (ArrayList_t4277734320 *)il2cpp_codegen_object_new(ArrayList_t4277734320_il2cpp_TypeInfo_var); ArrayList__ctor_m3769859358(L_4, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->set_defaultConverters_1(L_4); ArrayList_t4277734320 * L_5 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Boolean_t3448040118_0_0_0_var), /*hidden argument*/NULL); Type_t * L_7 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(BooleanConverter_t1589643146_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_8; memset(&L_8, 0, sizeof(L_8)); DictionaryEntry__ctor_m1917443737((&L_8), L_6, L_7, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_9 = L_8; RuntimeObject * L_10 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_9); NullCheck(L_5); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_5, L_10); ArrayList_t4277734320 * L_11 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); Type_t * L_12 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Byte_t2425511462_0_0_0_var), /*hidden argument*/NULL); Type_t * L_13 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(ByteConverter_t3629744255_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_14; memset(&L_14, 0, sizeof(L_14)); DictionaryEntry__ctor_m1917443737((&L_14), L_12, L_13, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_15 = L_14; RuntimeObject * L_16 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_15); NullCheck(L_11); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_11, L_16); ArrayList_t4277734320 * L_17 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); Type_t * L_18 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(SByte_t46020240_0_0_0_var), /*hidden argument*/NULL); Type_t * L_19 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(SByteConverter_t3452734354_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_20; memset(&L_20, 0, sizeof(L_20)); DictionaryEntry__ctor_m1917443737((&L_20), L_18, L_19, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_21 = L_20; RuntimeObject * L_22 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_21); NullCheck(L_17); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_17, L_22); ArrayList_t4277734320 * L_23 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); Type_t * L_24 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); Type_t * L_25 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(StringConverter_t482526816_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_26; memset(&L_26, 0, sizeof(L_26)); DictionaryEntry__ctor_m1917443737((&L_26), L_24, L_25, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_27 = L_26; RuntimeObject * L_28 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_27); NullCheck(L_23); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_23, L_28); ArrayList_t4277734320 * L_29 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); Type_t * L_30 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Char_t1260920102_0_0_0_var), /*hidden argument*/NULL); Type_t * L_31 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(CharConverter_t2080589917_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_32; memset(&L_32, 0, sizeof(L_32)); DictionaryEntry__ctor_m1917443737((&L_32), L_30, L_31, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_33 = L_32; RuntimeObject * L_34 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_33); NullCheck(L_29); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_29, L_34); ArrayList_t4277734320 * L_35 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); Type_t * L_36 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Int16_t2500022264_0_0_0_var), /*hidden argument*/NULL); Type_t * L_37 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Int16Converter_t3165289742_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_38; memset(&L_38, 0, sizeof(L_38)); DictionaryEntry__ctor_m1917443737((&L_38), L_36, L_37, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_39 = L_38; RuntimeObject * L_40 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_39); NullCheck(L_35); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_35, L_40); ArrayList_t4277734320 * L_41 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); Type_t * L_42 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Int32_t1085330725_0_0_0_var), /*hidden argument*/NULL); Type_t * L_43 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Int32Converter_t3654231985_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_44; memset(&L_44, 0, sizeof(L_44)); DictionaryEntry__ctor_m1917443737((&L_44), L_42, L_43, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_45 = L_44; RuntimeObject * L_46 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_45); NullCheck(L_41); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_41, L_46); ArrayList_t4277734320 * L_47 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); Type_t * L_48 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Int64_t2704468446_0_0_0_var), /*hidden argument*/NULL); Type_t * L_49 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Int64Converter_t3057944203_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_50; memset(&L_50, 0, sizeof(L_50)); DictionaryEntry__ctor_m1917443737((&L_50), L_48, L_49, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_51 = L_50; RuntimeObject * L_52 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_51); NullCheck(L_47); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_47, L_52); ArrayList_t4277734320 * L_53 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); Type_t * L_54 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(UInt16_t3519387236_0_0_0_var), /*hidden argument*/NULL); Type_t * L_55 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(UInt16Converter_t3562571258_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_56; memset(&L_56, 0, sizeof(L_56)); DictionaryEntry__ctor_m1917443737((&L_56), L_54, L_55, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_57 = L_56; RuntimeObject * L_58 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_57); NullCheck(L_53); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_53, L_58); ArrayList_t4277734320 * L_59 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); Type_t * L_60 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(UInt32_t346688532_0_0_0_var), /*hidden argument*/NULL); Type_t * L_61 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(UInt32Converter_t3695056532_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_62; memset(&L_62, 0, sizeof(L_62)); DictionaryEntry__ctor_m1917443737((&L_62), L_60, L_61, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_63 = L_62; RuntimeObject * L_64 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_63); NullCheck(L_59); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_59, L_64); ArrayList_t4277734320 * L_65 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); Type_t * L_66 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(UInt64_t2584094171_0_0_0_var), /*hidden argument*/NULL); Type_t * L_67 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(UInt64Converter_t3750379122_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_68; memset(&L_68, 0, sizeof(L_68)); DictionaryEntry__ctor_m1917443737((&L_68), L_66, L_67, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_69 = L_68; RuntimeObject * L_70 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_69); NullCheck(L_65); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_65, L_70); ArrayList_t4277734320 * L_71 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); Type_t * L_72 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Single_t318564439_0_0_0_var), /*hidden argument*/NULL); Type_t * L_73 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(SingleConverter_t842878517_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_74; memset(&L_74, 0, sizeof(L_74)); DictionaryEntry__ctor_m1917443737((&L_74), L_72, L_73, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_75 = L_74; RuntimeObject * L_76 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_75); NullCheck(L_71); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_71, L_76); ArrayList_t4277734320 * L_77 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); Type_t * L_78 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Double_t3048689888_0_0_0_var), /*hidden argument*/NULL); Type_t * L_79 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(DoubleConverter_t735592635_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_80; memset(&L_80, 0, sizeof(L_80)); DictionaryEntry__ctor_m1917443737((&L_80), L_78, L_79, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_81 = L_80; RuntimeObject * L_82 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_81); NullCheck(L_77); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_77, L_82); ArrayList_t4277734320 * L_83 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); Type_t * L_84 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Decimal_t1000909151_0_0_0_var), /*hidden argument*/NULL); Type_t * L_85 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(DecimalConverter_t1921806678_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_86; memset(&L_86, 0, sizeof(L_86)); DictionaryEntry__ctor_m1917443737((&L_86), L_84, L_85, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_87 = L_86; RuntimeObject * L_88 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_87); NullCheck(L_83); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_83, L_88); ArrayList_t4277734320 * L_89 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); Type_t * L_90 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Void_t326905757_0_0_0_var), /*hidden argument*/NULL); Type_t * L_91 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(TypeConverter_t3595149642_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_92; memset(&L_92, 0, sizeof(L_92)); DictionaryEntry__ctor_m1917443737((&L_92), L_90, L_91, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_93 = L_92; RuntimeObject * L_94 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_93); NullCheck(L_89); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_89, L_94); ArrayList_t4277734320 * L_95 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); Type_t * L_96 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(RuntimeArray_0_0_0_var), /*hidden argument*/NULL); Type_t * L_97 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(ArrayConverter_t4083728908_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_98; memset(&L_98, 0, sizeof(L_98)); DictionaryEntry__ctor_m1917443737((&L_98), L_96, L_97, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_99 = L_98; RuntimeObject * L_100 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_99); NullCheck(L_95); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_95, L_100); ArrayList_t4277734320 * L_101 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); Type_t * L_102 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(CultureInfo_t270095993_0_0_0_var), /*hidden argument*/NULL); Type_t * L_103 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(CultureInfoConverter_t1607822239_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_104; memset(&L_104, 0, sizeof(L_104)); DictionaryEntry__ctor_m1917443737((&L_104), L_102, L_103, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_105 = L_104; RuntimeObject * L_106 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_105); NullCheck(L_101); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_101, L_106); ArrayList_t4277734320 * L_107 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); Type_t * L_108 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(DateTime_t718238015_0_0_0_var), /*hidden argument*/NULL); Type_t * L_109 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(DateTimeConverter_t164509474_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_110; memset(&L_110, 0, sizeof(L_110)); DictionaryEntry__ctor_m1917443737((&L_110), L_108, L_109, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_111 = L_110; RuntimeObject * L_112 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_111); NullCheck(L_107); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_107, L_112); ArrayList_t4277734320 * L_113 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); Type_t * L_114 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Guid_t_0_0_0_var), /*hidden argument*/NULL); Type_t * L_115 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(GuidConverter_t194305912_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_116; memset(&L_116, 0, sizeof(L_116)); DictionaryEntry__ctor_m1917443737((&L_116), L_114, L_115, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_117 = L_116; RuntimeObject * L_118 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_117); NullCheck(L_113); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_113, L_118); ArrayList_t4277734320 * L_119 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); Type_t * L_120 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(TimeSpan_t1687785723_0_0_0_var), /*hidden argument*/NULL); Type_t * L_121 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(TimeSpanConverter_t1641375511_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_122; memset(&L_122, 0, sizeof(L_122)); DictionaryEntry__ctor_m1917443737((&L_122), L_120, L_121, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_123 = L_122; RuntimeObject * L_124 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_123); NullCheck(L_119); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_119, L_124); ArrayList_t4277734320 * L_125 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); Type_t * L_126 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(ICollection_t2597392361_0_0_0_var), /*hidden argument*/NULL); Type_t * L_127 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(CollectionConverter_t2779503739_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_128; memset(&L_128, 0, sizeof(L_128)); DictionaryEntry__ctor_m1917443737((&L_128), L_126, L_127, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_129 = L_128; RuntimeObject * L_130 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_129); NullCheck(L_125); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_125, L_130); ArrayList_t4277734320 * L_131 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); Type_t * L_132 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Enum_t1784364487_0_0_0_var), /*hidden argument*/NULL); Type_t * L_133 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(EnumConverter_t1922667499_0_0_0_var), /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_134; memset(&L_134, 0, sizeof(L_134)); DictionaryEntry__ctor_m1917443737((&L_134), L_132, L_133, /*hidden argument*/NULL); DictionaryEntry_t1848963796 L_135 = L_134; RuntimeObject * L_136 = Box(DictionaryEntry_t1848963796_il2cpp_TypeInfo_var, &L_135); NullCheck(L_131); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_131, L_136); IL2CPP_LEAVE(0x3BD, FINALLY_03b6); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_03b6; } FINALLY_03b6: { // begin finally (depth: 1) RuntimeObject * L_137 = V_0; Monitor_Exit_m69827708(NULL /*static, unused*/, L_137, /*hidden argument*/NULL); IL2CPP_END_FINALLY(950) } // end finally (depth: 1) IL2CPP_CLEANUP(950) { IL2CPP_JUMP_TBL(0x3C3, IL_03c3) IL2CPP_JUMP_TBL(0x3BD, IL_03bd) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_03bd: { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); ArrayList_t4277734320 * L_138 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_defaultConverters_1(); return L_138; } IL_03c3: { ArrayList_t4277734320 * L_139 = V_1; return L_139; } } // System.ComponentModel.TypeConverter System.ComponentModel.TypeDescriptor::GetConverter(System.Type) extern "C" TypeConverter_t3595149642 * TypeDescriptor_GetConverter_m1561978434 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetConverter_m1561978434_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; AttributeCollection_t3634739288 * V_1 = NULL; TypeConverterAttribute_t695735035 * V_2 = NULL; ConstructorInfo_t673747461 * V_3 = NULL; { Type_t * L_0 = ___type0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral4074451177, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { V_0 = (Type_t *)NULL; Type_t * L_2 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); AttributeCollection_t3634739288 * L_3 = TypeDescriptor_GetAttributes_m3292160618(NULL /*static, unused*/, L_2, /*hidden argument*/NULL); V_1 = L_3; AttributeCollection_t3634739288 * L_4 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(TypeConverterAttribute_t695735035_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_4); Attribute_t2739832645 * L_6 = VirtFuncInvoker1< Attribute_t2739832645 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_4, L_5); V_2 = ((TypeConverterAttribute_t695735035 *)CastclassSealed((RuntimeObject*)L_6, TypeConverterAttribute_t695735035_il2cpp_TypeInfo_var)); TypeConverterAttribute_t695735035 * L_7 = V_2; if (!L_7) { goto IL_0054; } } { TypeConverterAttribute_t695735035 * L_8 = V_2; NullCheck(L_8); String_t* L_9 = TypeConverterAttribute_get_ConverterTypeName_m3171634346(L_8, /*hidden argument*/NULL); NullCheck(L_9); int32_t L_10 = String_get_Length_m2584136399(L_9, /*hidden argument*/NULL); if ((((int32_t)L_10) <= ((int32_t)0))) { goto IL_0054; } } { TypeConverterAttribute_t695735035 * L_11 = V_2; NullCheck(L_11); String_t* L_12 = TypeConverterAttribute_get_ConverterTypeName_m3171634346(L_11, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Type_t * L_13 = TypeDescriptor_GetTypeFromName_m4158908695(NULL /*static, unused*/, (RuntimeObject*)NULL, L_12, /*hidden argument*/NULL); V_0 = L_13; } IL_0054: { Type_t * L_14 = V_0; if (L_14) { goto IL_0061; } } { Type_t * L_15 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Type_t * L_16 = TypeDescriptor_FindDefaultConverterType_m2157367584(NULL /*static, unused*/, L_15, /*hidden argument*/NULL); V_0 = L_16; } IL_0061: { Type_t * L_17 = V_0; if (!L_17) { goto IL_00a9; } } { Type_t * L_18 = V_0; TypeU5BU5D_t89919618* L_19 = ((TypeU5BU5D_t89919618*)SZArrayNew(TypeU5BU5D_t89919618_il2cpp_TypeInfo_var, (uint32_t)1)); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_20 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Type_t_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_19); ArrayElementTypeCheck (L_19, L_20); (L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_20); NullCheck(L_18); ConstructorInfo_t673747461 * L_21 = Type_GetConstructor_m2299987216(L_18, L_19, /*hidden argument*/NULL); V_3 = L_21; ConstructorInfo_t673747461 * L_22 = V_3; if (!L_22) { goto IL_009d; } } { ConstructorInfo_t673747461 * L_23 = V_3; ObjectU5BU5D_t4199014551* L_24 = ((ObjectU5BU5D_t4199014551*)SZArrayNew(ObjectU5BU5D_t4199014551_il2cpp_TypeInfo_var, (uint32_t)1)); Type_t * L_25 = ___type0; NullCheck(L_24); ArrayElementTypeCheck (L_24, L_25); (L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_25); NullCheck(L_23); RuntimeObject * L_26 = ConstructorInfo_Invoke_m3520953233(L_23, L_24, /*hidden argument*/NULL); return ((TypeConverter_t3595149642 *)CastclassClass((RuntimeObject*)L_26, TypeConverter_t3595149642_il2cpp_TypeInfo_var)); } IL_009d: { Type_t * L_27 = V_0; RuntimeObject * L_28 = Activator_CreateInstance_m3338111582(NULL /*static, unused*/, L_27, /*hidden argument*/NULL); return ((TypeConverter_t3595149642 *)CastclassClass((RuntimeObject*)L_28, TypeConverter_t3595149642_il2cpp_TypeInfo_var)); } IL_00a9: { return (TypeConverter_t3595149642 *)NULL; } } // System.Type System.ComponentModel.TypeDescriptor::FindDefaultConverterType(System.Type) extern "C" Type_t * TypeDescriptor_FindDefaultConverterType_m2157367584 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_FindDefaultConverterType_m2157367584_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; DictionaryEntry_t1848963796 V_1; memset(&V_1, 0, sizeof(V_1)); RuntimeObject* V_2 = NULL; Type_t * V_3 = NULL; DictionaryEntry_t1848963796 V_4; memset(&V_4, 0, sizeof(V_4)); RuntimeObject* V_5 = NULL; Type_t * V_6 = NULL; Type_t * V_7 = NULL; RuntimeObject* V_8 = NULL; RuntimeObject* V_9 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { V_0 = (Type_t *)NULL; Type_t * L_0 = ___type0; if (!L_0) { goto IL_0099; } } { Type_t * L_1 = ___type0; NullCheck(L_1); bool L_2 = VirtFuncInvoker0< bool >::Invoke(85 /* System.Boolean System.Type::get_IsGenericType() */, L_1); if (!L_2) { goto IL_0033; } } { Type_t * L_3 = ___type0; NullCheck(L_3); Type_t * L_4 = VirtFuncInvoker0< Type_t * >::Invoke(84 /* System.Type System.Type::GetGenericTypeDefinition() */, L_3); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Nullable_1_t10106617_0_0_0_var), /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_4) == ((RuntimeObject*)(Type_t *)L_5)))) { goto IL_0033; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(NullableConverter_t3128690719_0_0_0_var), /*hidden argument*/NULL); return L_6; } IL_0033: { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); ArrayList_t4277734320 * L_7 = TypeDescriptor_get_DefaultConverters_m1945021735(NULL /*static, unused*/, /*hidden argument*/NULL); NullCheck(L_7); RuntimeObject* L_8 = VirtFuncInvoker0< RuntimeObject* >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_7); V_2 = L_8; } IL_003e: try { // begin try (depth: 1) { goto IL_0074; } IL_0043: { RuntimeObject* L_9 = V_2; NullCheck(L_9); RuntimeObject * L_10 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1868781825_il2cpp_TypeInfo_var, L_9); V_1 = ((*(DictionaryEntry_t1848963796 *)((DictionaryEntry_t1848963796 *)UnBox(L_10, DictionaryEntry_t1848963796_il2cpp_TypeInfo_var)))); RuntimeObject * L_11 = DictionaryEntry_get_Key_m1016518513((&V_1), /*hidden argument*/NULL); Type_t * L_12 = ___type0; if ((!(((RuntimeObject*)(Type_t *)((Type_t *)CastclassClass((RuntimeObject*)L_11, Type_t_il2cpp_TypeInfo_var))) == ((RuntimeObject*)(Type_t *)L_12)))) { goto IL_0074; } } IL_0061: { RuntimeObject * L_13 = DictionaryEntry_get_Value_m958923286((&V_1), /*hidden argument*/NULL); V_7 = ((Type_t *)CastclassClass((RuntimeObject*)L_13, Type_t_il2cpp_TypeInfo_var)); IL2CPP_LEAVE(0x164, FINALLY_0084); } IL_0074: { RuntimeObject* L_14 = V_2; NullCheck(L_14); bool L_15 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1868781825_il2cpp_TypeInfo_var, L_14); if (L_15) { goto IL_0043; } } IL_007f: { IL2CPP_LEAVE(0x99, FINALLY_0084); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_0084; } FINALLY_0084: { // begin finally (depth: 1) { RuntimeObject* L_16 = V_2; V_8 = ((RuntimeObject*)IsInst((RuntimeObject*)L_16, IDisposable_t3750220212_il2cpp_TypeInfo_var)); RuntimeObject* L_17 = V_8; if (L_17) { goto IL_0091; } } IL_0090: { IL2CPP_END_FINALLY(132) } IL_0091: { RuntimeObject* L_18 = V_8; NullCheck(L_18); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3750220212_il2cpp_TypeInfo_var, L_18); IL2CPP_END_FINALLY(132) } } // end finally (depth: 1) IL2CPP_CLEANUP(132) { IL2CPP_JUMP_TBL(0x164, IL_0164) IL2CPP_JUMP_TBL(0x99, IL_0099) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_0099: { Type_t * L_19 = ___type0; V_3 = L_19; goto IL_011a; } IL_00a0: { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); ArrayList_t4277734320 * L_20 = TypeDescriptor_get_DefaultConverters_m1945021735(NULL /*static, unused*/, /*hidden argument*/NULL); NullCheck(L_20); RuntimeObject* L_21 = VirtFuncInvoker0< RuntimeObject* >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_20); V_5 = L_21; } IL_00ac: try { // begin try (depth: 1) { goto IL_00ec; } IL_00b1: { RuntimeObject* L_22 = V_5; NullCheck(L_22); RuntimeObject * L_23 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1868781825_il2cpp_TypeInfo_var, L_22); V_4 = ((*(DictionaryEntry_t1848963796 *)((DictionaryEntry_t1848963796 *)UnBox(L_23, DictionaryEntry_t1848963796_il2cpp_TypeInfo_var)))); RuntimeObject * L_24 = DictionaryEntry_get_Key_m1016518513((&V_4), /*hidden argument*/NULL); V_6 = ((Type_t *)CastclassClass((RuntimeObject*)L_24, Type_t_il2cpp_TypeInfo_var)); Type_t * L_25 = V_6; Type_t * L_26 = V_3; NullCheck(L_25); bool L_27 = VirtFuncInvoker1< bool, Type_t * >::Invoke(41 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_25, L_26); if (!L_27) { goto IL_00ec; } } IL_00da: { RuntimeObject * L_28 = DictionaryEntry_get_Value_m958923286((&V_4), /*hidden argument*/NULL); V_0 = ((Type_t *)CastclassClass((RuntimeObject*)L_28, Type_t_il2cpp_TypeInfo_var)); goto IL_00f8; } IL_00ec: { RuntimeObject* L_29 = V_5; NullCheck(L_29); bool L_30 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1868781825_il2cpp_TypeInfo_var, L_29); if (L_30) { goto IL_00b1; } } IL_00f8: { IL2CPP_LEAVE(0x113, FINALLY_00fd); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_00fd; } FINALLY_00fd: { // begin finally (depth: 1) { RuntimeObject* L_31 = V_5; V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_31, IDisposable_t3750220212_il2cpp_TypeInfo_var)); RuntimeObject* L_32 = V_9; if (L_32) { goto IL_010b; } } IL_010a: { IL2CPP_END_FINALLY(253) } IL_010b: { RuntimeObject* L_33 = V_9; NullCheck(L_33); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3750220212_il2cpp_TypeInfo_var, L_33); IL2CPP_END_FINALLY(253) } } // end finally (depth: 1) IL2CPP_CLEANUP(253) { IL2CPP_JUMP_TBL(0x113, IL_0113) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_0113: { Type_t * L_34 = V_3; NullCheck(L_34); Type_t * L_35 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.Type::get_BaseType() */, L_34); V_3 = L_35; } IL_011a: { Type_t * L_36 = V_3; if (!L_36) { goto IL_0130; } } { Type_t * L_37 = V_3; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_38 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(RuntimeObject_0_0_0_var), /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_37) == ((RuntimeObject*)(Type_t *)L_38)))) { goto IL_00a0; } } IL_0130: { Type_t * L_39 = V_0; if (L_39) { goto IL_0162; } } { Type_t * L_40 = ___type0; if (!L_40) { goto IL_0157; } } { Type_t * L_41 = ___type0; NullCheck(L_41); bool L_42 = Type_get_IsInterface_m1173714483(L_41, /*hidden argument*/NULL); if (!L_42) { goto IL_0157; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_43 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(ReferenceConverter_t3578457296_0_0_0_var), /*hidden argument*/NULL); V_0 = L_43; goto IL_0162; } IL_0157: { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(TypeConverter_t3595149642_0_0_0_var), /*hidden argument*/NULL); V_0 = L_44; } IL_0162: { Type_t * L_45 = V_0; return L_45; } IL_0164: { Type_t * L_46 = V_7; return L_46; } } // System.ComponentModel.EventDescriptor System.ComponentModel.TypeDescriptor::GetDefaultEvent(System.Type) extern "C" EventDescriptor_t3701426622 * TypeDescriptor_GetDefaultEvent_m1294039619 (RuntimeObject * __this /* static, unused */, Type_t * ___componentType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetDefaultEvent_m1294039619_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___componentType0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeInfo_t2535999846 * L_1 = TypeDescriptor_GetTypeInfo_m1821580626(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); NullCheck(L_1); EventDescriptor_t3701426622 * L_2 = Info_GetDefaultEvent_m2713044848(L_1, /*hidden argument*/NULL); return L_2; } } // System.ComponentModel.EventDescriptor System.ComponentModel.TypeDescriptor::GetDefaultEvent(System.Object) extern "C" EventDescriptor_t3701426622 * TypeDescriptor_GetDefaultEvent_m4236178999 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetDefaultEvent_m4236178999_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___component0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); EventDescriptor_t3701426622 * L_1 = TypeDescriptor_GetDefaultEvent_m1399767514(NULL /*static, unused*/, L_0, (bool)0, /*hidden argument*/NULL); return L_1; } } // System.ComponentModel.EventDescriptor System.ComponentModel.TypeDescriptor::GetDefaultEvent(System.Object,System.Boolean) extern "C" EventDescriptor_t3701426622 * TypeDescriptor_GetDefaultEvent_m1399767514 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetDefaultEvent_m1399767514_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { bool L_0 = ___noCustomTypeDesc1; if (L_0) { goto IL_001d; } } { RuntimeObject * L_1 = ___component0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_1, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))) { goto IL_001d; } } { RuntimeObject * L_2 = ___component0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_2, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))); EventDescriptor_t3701426622 * L_3 = InterfaceFuncInvoker0< EventDescriptor_t3701426622 * >::Invoke(4 /* System.ComponentModel.EventDescriptor System.ComponentModel.ICustomTypeDescriptor::GetDefaultEvent() */, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_2, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))); return L_3; } IL_001d: { RuntimeObject * L_4 = ___component0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_4, IComponent_t63236301_il2cpp_TypeInfo_var)); RuntimeObject* L_5 = V_0; if (!L_5) { goto IL_0041; } } { RuntimeObject* L_6 = V_0; NullCheck(L_6); RuntimeObject* L_7 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t63236301_il2cpp_TypeInfo_var, L_6); if (!L_7) { goto IL_0041; } } { RuntimeObject* L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); ComponentInfo_t3532183224 * L_9 = TypeDescriptor_GetComponentInfo_m1529259269(NULL /*static, unused*/, L_8, /*hidden argument*/NULL); NullCheck(L_9); EventDescriptor_t3701426622 * L_10 = Info_GetDefaultEvent_m2713044848(L_9, /*hidden argument*/NULL); return L_10; } IL_0041: { RuntimeObject * L_11 = ___component0; NullCheck(L_11); Type_t * L_12 = Object_GetType_m1134229006(L_11, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeInfo_t2535999846 * L_13 = TypeDescriptor_GetTypeInfo_m1821580626(NULL /*static, unused*/, L_12, /*hidden argument*/NULL); NullCheck(L_13); EventDescriptor_t3701426622 * L_14 = Info_GetDefaultEvent_m2713044848(L_13, /*hidden argument*/NULL); return L_14; } } // System.ComponentModel.PropertyDescriptor System.ComponentModel.TypeDescriptor::GetDefaultProperty(System.Type) extern "C" PropertyDescriptor_t2555988069 * TypeDescriptor_GetDefaultProperty_m753850378 (RuntimeObject * __this /* static, unused */, Type_t * ___componentType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetDefaultProperty_m753850378_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___componentType0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeInfo_t2535999846 * L_1 = TypeDescriptor_GetTypeInfo_m1821580626(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); NullCheck(L_1); PropertyDescriptor_t2555988069 * L_2 = Info_GetDefaultProperty_m402073838(L_1, /*hidden argument*/NULL); return L_2; } } // System.ComponentModel.PropertyDescriptor System.ComponentModel.TypeDescriptor::GetDefaultProperty(System.Object) extern "C" PropertyDescriptor_t2555988069 * TypeDescriptor_GetDefaultProperty_m330125221 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetDefaultProperty_m330125221_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___component0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); PropertyDescriptor_t2555988069 * L_1 = TypeDescriptor_GetDefaultProperty_m1361939177(NULL /*static, unused*/, L_0, (bool)0, /*hidden argument*/NULL); return L_1; } } // System.ComponentModel.PropertyDescriptor System.ComponentModel.TypeDescriptor::GetDefaultProperty(System.Object,System.Boolean) extern "C" PropertyDescriptor_t2555988069 * TypeDescriptor_GetDefaultProperty_m1361939177 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetDefaultProperty_m1361939177_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { bool L_0 = ___noCustomTypeDesc1; if (L_0) { goto IL_001d; } } { RuntimeObject * L_1 = ___component0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_1, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))) { goto IL_001d; } } { RuntimeObject * L_2 = ___component0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_2, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))); PropertyDescriptor_t2555988069 * L_3 = InterfaceFuncInvoker0< PropertyDescriptor_t2555988069 * >::Invoke(5 /* System.ComponentModel.PropertyDescriptor System.ComponentModel.ICustomTypeDescriptor::GetDefaultProperty() */, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_2, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))); return L_3; } IL_001d: { RuntimeObject * L_4 = ___component0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_4, IComponent_t63236301_il2cpp_TypeInfo_var)); RuntimeObject* L_5 = V_0; if (!L_5) { goto IL_0041; } } { RuntimeObject* L_6 = V_0; NullCheck(L_6); RuntimeObject* L_7 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t63236301_il2cpp_TypeInfo_var, L_6); if (!L_7) { goto IL_0041; } } { RuntimeObject* L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); ComponentInfo_t3532183224 * L_9 = TypeDescriptor_GetComponentInfo_m1529259269(NULL /*static, unused*/, L_8, /*hidden argument*/NULL); NullCheck(L_9); PropertyDescriptor_t2555988069 * L_10 = Info_GetDefaultProperty_m402073838(L_9, /*hidden argument*/NULL); return L_10; } IL_0041: { RuntimeObject * L_11 = ___component0; NullCheck(L_11); Type_t * L_12 = Object_GetType_m1134229006(L_11, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeInfo_t2535999846 * L_13 = TypeDescriptor_GetTypeInfo_m1821580626(NULL /*static, unused*/, L_12, /*hidden argument*/NULL); NullCheck(L_13); PropertyDescriptor_t2555988069 * L_14 = Info_GetDefaultProperty_m402073838(L_13, /*hidden argument*/NULL); return L_14; } } // System.Object System.ComponentModel.TypeDescriptor::CreateEditor(System.Type,System.Type) extern "C" RuntimeObject * TypeDescriptor_CreateEditor_m2228326398 (RuntimeObject * __this /* static, unused */, Type_t * ___t0, Type_t * ___componentType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_CreateEditor_m2228326398_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { Type_t * L_0 = ___t0; if (L_0) { goto IL_0008; } } { return NULL; } IL_0008: try { // begin try (depth: 1) { Type_t * L_1 = ___t0; RuntimeObject * L_2 = Activator_CreateInstance_m3338111582(NULL /*static, unused*/, L_1, /*hidden argument*/NULL); V_0 = L_2; goto IL_0042; } IL_0014: { ; // IL_0014: leave IL_001f } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t2428370182 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0019; throw e; } CATCH_0019: { // begin catch(System.Object) goto IL_001f; } // end catch (depth: 1) IL_001f: try { // begin try (depth: 1) { Type_t * L_3 = ___t0; ObjectU5BU5D_t4199014551* L_4 = ((ObjectU5BU5D_t4199014551*)SZArrayNew(ObjectU5BU5D_t4199014551_il2cpp_TypeInfo_var, (uint32_t)1)); Type_t * L_5 = ___componentType1; NullCheck(L_4); ArrayElementTypeCheck (L_4, L_5); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5); RuntimeObject * L_6 = Activator_CreateInstance_m1834653757(NULL /*static, unused*/, L_3, L_4, /*hidden argument*/NULL); V_0 = L_6; goto IL_0042; } IL_0035: { ; // IL_0035: leave IL_0040 } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t2428370182 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_003a; throw e; } CATCH_003a: { // begin catch(System.Object) goto IL_0040; } // end catch (depth: 1) IL_0040: { return NULL; } IL_0042: { RuntimeObject * L_7 = V_0; return L_7; } } // System.Object System.ComponentModel.TypeDescriptor::FindEditorInTable(System.Type,System.Type,System.Collections.Hashtable) extern "C" RuntimeObject * TypeDescriptor_FindEditorInTable_m103077439 (RuntimeObject * __this /* static, unused */, Type_t * ___componentType0, Type_t * ___editorBaseType1, Hashtable_t448324601 * ___table2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_FindEditorInTable_m103077439_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; Type_t * V_2 = NULL; Type_t * V_3 = NULL; TypeU5BU5D_t89919618* V_4 = NULL; int32_t V_5 = 0; { V_0 = NULL; V_1 = NULL; Type_t * L_0 = ___componentType0; if (!L_0) { goto IL_0016; } } { Type_t * L_1 = ___editorBaseType1; if (!L_1) { goto IL_0016; } } { Hashtable_t448324601 * L_2 = ___table2; if (L_2) { goto IL_0018; } } IL_0016: { return NULL; } IL_0018: { Type_t * L_3 = ___componentType0; V_2 = L_3; goto IL_0039; } IL_001f: { Hashtable_t448324601 * L_4 = ___table2; Type_t * L_5 = V_2; NullCheck(L_4); RuntimeObject * L_6 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_4, L_5); V_0 = L_6; RuntimeObject * L_7 = V_0; if (!L_7) { goto IL_0032; } } { goto IL_003f; } IL_0032: { Type_t * L_8 = V_2; NullCheck(L_8); Type_t * L_9 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.Type::get_BaseType() */, L_8); V_2 = L_9; } IL_0039: { Type_t * L_10 = V_2; if (L_10) { goto IL_001f; } } IL_003f: { RuntimeObject * L_11 = V_0; if (L_11) { goto IL_007f; } } { Type_t * L_12 = ___componentType0; NullCheck(L_12); TypeU5BU5D_t89919618* L_13 = VirtFuncInvoker0< TypeU5BU5D_t89919618* >::Invoke(40 /* System.Type[] System.Type::GetInterfaces() */, L_12); V_4 = L_13; V_5 = 0; goto IL_0074; } IL_0055: { TypeU5BU5D_t89919618* L_14 = V_4; int32_t L_15 = V_5; 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; Hashtable_t448324601 * L_18 = ___table2; Type_t * L_19 = V_3; NullCheck(L_18); RuntimeObject * L_20 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_18, L_19); V_0 = L_20; RuntimeObject * L_21 = V_0; if (!L_21) { goto IL_006e; } } { goto IL_007f; } IL_006e: { int32_t L_22 = V_5; V_5 = ((int32_t)((int32_t)L_22+(int32_t)1)); } IL_0074: { int32_t L_23 = V_5; TypeU5BU5D_t89919618* L_24 = V_4; NullCheck(L_24); if ((((int32_t)L_23) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_24)->max_length))))))) { goto IL_0055; } } IL_007f: { RuntimeObject * L_25 = V_0; if (L_25) { goto IL_0087; } } { return NULL; } IL_0087: { RuntimeObject * L_26 = V_0; if (!((String_t*)IsInstSealed((RuntimeObject*)L_26, String_t_il2cpp_TypeInfo_var))) { goto IL_00a9; } } { RuntimeObject * L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_m3930427402, ((String_t*)CastclassSealed((RuntimeObject*)L_27, String_t_il2cpp_TypeInfo_var)), "System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"); Type_t * L_29 = ___componentType0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RuntimeObject * L_30 = TypeDescriptor_CreateEditor_m2228326398(NULL /*static, unused*/, L_28, L_29, /*hidden argument*/NULL); V_1 = L_30; goto IL_00d9; } IL_00a9: { RuntimeObject * L_31 = V_0; if (!((Type_t *)IsInstClass((RuntimeObject*)L_31, Type_t_il2cpp_TypeInfo_var))) { goto IL_00c6; } } { RuntimeObject * L_32 = V_0; Type_t * L_33 = ___componentType0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RuntimeObject * L_34 = TypeDescriptor_CreateEditor_m2228326398(NULL /*static, unused*/, ((Type_t *)CastclassClass((RuntimeObject*)L_32, Type_t_il2cpp_TypeInfo_var)), L_33, /*hidden argument*/NULL); V_1 = L_34; goto IL_00d9; } IL_00c6: { RuntimeObject * L_35 = V_0; NullCheck(L_35); Type_t * L_36 = Object_GetType_m1134229006(L_35, /*hidden argument*/NULL); Type_t * L_37 = ___editorBaseType1; NullCheck(L_36); bool L_38 = VirtFuncInvoker1< bool, Type_t * >::Invoke(39 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_36, L_37); if (!L_38) { goto IL_00d9; } } { RuntimeObject * L_39 = V_0; V_1 = L_39; } IL_00d9: { RuntimeObject * L_40 = V_1; if (!L_40) { goto IL_00e7; } } { Hashtable_t448324601 * L_41 = ___table2; Type_t * L_42 = ___componentType0; RuntimeObject * L_43 = V_1; NullCheck(L_41); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(31 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_41, L_42, L_43); } IL_00e7: { RuntimeObject * L_44 = V_1; return L_44; } } // System.Object System.ComponentModel.TypeDescriptor::GetEditor(System.Type,System.Type) extern "C" RuntimeObject * TypeDescriptor_GetEditor_m2456209240 (RuntimeObject * __this /* static, unused */, Type_t * ___componentType0, Type_t * ___editorBaseType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetEditor_m2456209240_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; RuntimeObject * V_1 = NULL; ObjectU5BU5D_t4199014551* V_2 = NULL; EditorAttribute_t3439099620 * V_3 = NULL; ObjectU5BU5D_t4199014551* V_4 = NULL; int32_t V_5 = 0; { V_0 = (Type_t *)NULL; V_1 = NULL; Type_t * L_0 = ___componentType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(EditorAttribute_t3439099620_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_0); ObjectU5BU5D_t4199014551* L_2 = VirtFuncInvoker2< ObjectU5BU5D_t4199014551*, Type_t *, bool >::Invoke(13 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_0, L_1, (bool)1); V_2 = L_2; ObjectU5BU5D_t4199014551* L_3 = V_2; if (!L_3) { goto IL_006f; } } { ObjectU5BU5D_t4199014551* L_4 = V_2; NullCheck(L_4); if (!(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))) { goto IL_006f; } } { ObjectU5BU5D_t4199014551* L_5 = V_2; V_4 = L_5; V_5 = 0; goto IL_0064; } IL_002f: { ObjectU5BU5D_t4199014551* L_6 = V_4; int32_t L_7 = V_5; NullCheck(L_6); int32_t L_8 = L_7; RuntimeObject * L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8)); V_3 = ((EditorAttribute_t3439099620 *)CastclassSealed((RuntimeObject*)L_9, EditorAttribute_t3439099620_il2cpp_TypeInfo_var)); EditorAttribute_t3439099620 * L_10 = V_3; NullCheck(L_10); String_t* L_11 = EditorAttribute_get_EditorTypeName_m3243196888(L_10, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Type_t * L_12 = TypeDescriptor_GetTypeFromName_m4158908695(NULL /*static, unused*/, (RuntimeObject*)NULL, L_11, /*hidden argument*/NULL); V_0 = L_12; Type_t * L_13 = V_0; if (!L_13) { goto IL_005e; } } { Type_t * L_14 = V_0; Type_t * L_15 = ___editorBaseType1; NullCheck(L_14); bool L_16 = VirtFuncInvoker1< bool, Type_t * >::Invoke(39 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_14, L_15); if (!L_16) { goto IL_005e; } } { goto IL_006f; } IL_005e: { int32_t L_17 = V_5; V_5 = ((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0064: { int32_t L_18 = V_5; ObjectU5BU5D_t4199014551* L_19 = V_4; NullCheck(L_19); if ((((int32_t)L_18) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_19)->max_length))))))) { goto IL_002f; } } IL_006f: { Type_t * L_20 = V_0; if (!L_20) { goto IL_007d; } } { Type_t * L_21 = V_0; Type_t * L_22 = ___componentType0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RuntimeObject * L_23 = TypeDescriptor_CreateEditor_m2228326398(NULL /*static, unused*/, L_21, L_22, /*hidden argument*/NULL); V_1 = L_23; } IL_007d: { Type_t * L_24 = V_0; if (!L_24) { goto IL_0089; } } { RuntimeObject * L_25 = V_1; if (L_25) { goto IL_00b6; } } IL_0089: { Type_t * L_26 = ___editorBaseType1; NullCheck(L_26); RuntimeTypeHandle_t1916376386 L_27 = VirtFuncInvoker0< RuntimeTypeHandle_t1916376386 >::Invoke(35 /* System.RuntimeTypeHandle System.Type::get_TypeHandle() */, L_26); RuntimeHelpers_RunClassConstructor_m328126940(NULL /*static, unused*/, L_27, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Hashtable_t448324601 * L_28 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_editors_5(); if (!L_28) { goto IL_00b6; } } { Type_t * L_29 = ___componentType0; Type_t * L_30 = ___editorBaseType1; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Hashtable_t448324601 * L_31 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_editors_5(); Type_t * L_32 = ___editorBaseType1; NullCheck(L_31); RuntimeObject * L_33 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_31, L_32); RuntimeObject * L_34 = TypeDescriptor_FindEditorInTable_m103077439(NULL /*static, unused*/, L_29, L_30, ((Hashtable_t448324601 *)IsInstClass((RuntimeObject*)L_33, Hashtable_t448324601_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_1 = L_34; } IL_00b6: { RuntimeObject * L_35 = V_1; return L_35; } } // System.Object System.ComponentModel.TypeDescriptor::GetEditor(System.Object,System.Type) extern "C" RuntimeObject * TypeDescriptor_GetEditor_m120062206 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, Type_t * ___editorBaseType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetEditor_m120062206_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___component0; Type_t * L_1 = ___editorBaseType1; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RuntimeObject * L_2 = TypeDescriptor_GetEditor_m1547543191(NULL /*static, unused*/, L_0, L_1, (bool)0, /*hidden argument*/NULL); return L_2; } } // System.Object System.ComponentModel.TypeDescriptor::GetEditor(System.Object,System.Type,System.Boolean) extern "C" RuntimeObject * TypeDescriptor_GetEditor_m1547543191 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, Type_t * ___editorBaseType1, bool ___noCustomTypeDesc2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetEditor_m1547543191_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t4199014551* V_0 = NULL; String_t* V_1 = NULL; EditorAttribute_t3439099620 * V_2 = NULL; ObjectU5BU5D_t4199014551* V_3 = NULL; int32_t V_4 = 0; Type_t * V_5 = NULL; { RuntimeObject * L_0 = ___component0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral340364817, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { Type_t * L_2 = ___editorBaseType1; if (L_2) { goto IL_0022; } } { ArgumentNullException_t873386607 * L_3 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_3, _stringLiteral3396830644, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_0022: { bool L_4 = ___noCustomTypeDesc2; if (L_4) { goto IL_0040; } } { RuntimeObject * L_5 = ___component0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_5, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))) { goto IL_0040; } } { RuntimeObject * L_6 = ___component0; Type_t * L_7 = ___editorBaseType1; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_6, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))); RuntimeObject * L_8 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(6 /* System.Object System.ComponentModel.ICustomTypeDescriptor::GetEditor(System.Type) */, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_6, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var)), L_7); return L_8; } IL_0040: { RuntimeObject * L_9 = ___component0; NullCheck(L_9); Type_t * L_10 = Object_GetType_m1134229006(L_9, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_11 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(EditorAttribute_t3439099620_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_10); ObjectU5BU5D_t4199014551* L_12 = VirtFuncInvoker2< ObjectU5BU5D_t4199014551*, Type_t *, bool >::Invoke(13 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_10, L_11, (bool)1); V_0 = L_12; ObjectU5BU5D_t4199014551* L_13 = V_0; NullCheck(L_13); if ((((int32_t)((int32_t)(((RuntimeArray *)L_13)->max_length))))) { goto IL_0061; } } { return NULL; } IL_0061: { Type_t * L_14 = ___editorBaseType1; NullCheck(L_14); String_t* L_15 = VirtFuncInvoker0< String_t* >::Invoke(15 /* System.String System.Type::get_AssemblyQualifiedName() */, L_14); V_1 = L_15; ObjectU5BU5D_t4199014551* L_16 = V_0; V_3 = L_16; V_4 = 0; goto IL_00a9; } IL_0072: { ObjectU5BU5D_t4199014551* L_17 = V_3; int32_t L_18 = V_4; NullCheck(L_17); int32_t L_19 = L_18; RuntimeObject * L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19)); V_2 = ((EditorAttribute_t3439099620 *)CastclassSealed((RuntimeObject*)L_20, EditorAttribute_t3439099620_il2cpp_TypeInfo_var)); EditorAttribute_t3439099620 * L_21 = V_2; NullCheck(L_21); String_t* L_22 = EditorAttribute_get_EditorBaseTypeName_m3190369308(L_21, /*hidden argument*/NULL); String_t* L_23 = V_1; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_24 = String_op_Equality_m3571002539(NULL /*static, unused*/, L_22, L_23, /*hidden argument*/NULL); if (!L_24) { goto IL_00a3; } } { EditorAttribute_t3439099620 * L_25 = V_2; NullCheck(L_25); String_t* L_26 = EditorAttribute_get_EditorTypeName_m3243196888(L_25, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_27 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_m1876527967, L_26, (bool)1, "System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"); V_5 = L_27; Type_t * L_28 = V_5; RuntimeObject * L_29 = Activator_CreateInstance_m3338111582(NULL /*static, unused*/, L_28, /*hidden argument*/NULL); return L_29; } IL_00a3: { int32_t L_30 = V_4; V_4 = ((int32_t)((int32_t)L_30+(int32_t)1)); } IL_00a9: { int32_t L_31 = V_4; ObjectU5BU5D_t4199014551* L_32 = V_3; NullCheck(L_32); if ((((int32_t)L_31) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_32)->max_length))))))) { goto IL_0072; } } { return NULL; } } // System.ComponentModel.EventDescriptorCollection System.ComponentModel.TypeDescriptor::GetEvents(System.Object) extern "C" EventDescriptorCollection_t3861329784 * TypeDescriptor_GetEvents_m3249818461 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetEvents_m3249818461_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___component0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); EventDescriptorCollection_t3861329784 * L_1 = TypeDescriptor_GetEvents_m189377188(NULL /*static, unused*/, L_0, (bool)0, /*hidden argument*/NULL); return L_1; } } // System.ComponentModel.EventDescriptorCollection System.ComponentModel.TypeDescriptor::GetEvents(System.Type) extern "C" EventDescriptorCollection_t3861329784 * TypeDescriptor_GetEvents_m1680772231 (RuntimeObject * __this /* static, unused */, Type_t * ___componentType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetEvents_m1680772231_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___componentType0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); EventDescriptorCollection_t3861329784 * L_1 = TypeDescriptor_GetEvents_m3586592604(NULL /*static, unused*/, L_0, (AttributeU5BU5D_t187261448*)(AttributeU5BU5D_t187261448*)NULL, /*hidden argument*/NULL); return L_1; } } // System.ComponentModel.EventDescriptorCollection System.ComponentModel.TypeDescriptor::GetEvents(System.Object,System.Attribute[]) extern "C" EventDescriptorCollection_t3861329784 * TypeDescriptor_GetEvents_m3560964309 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, AttributeU5BU5D_t187261448* ___attributes1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetEvents_m3560964309_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___component0; AttributeU5BU5D_t187261448* L_1 = ___attributes1; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); EventDescriptorCollection_t3861329784 * L_2 = TypeDescriptor_GetEvents_m2388143899(NULL /*static, unused*/, L_0, L_1, (bool)0, /*hidden argument*/NULL); return L_2; } } // System.ComponentModel.EventDescriptorCollection System.ComponentModel.TypeDescriptor::GetEvents(System.Object,System.Boolean) extern "C" EventDescriptorCollection_t3861329784 * TypeDescriptor_GetEvents_m189377188 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetEvents_m189377188_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { bool L_0 = ___noCustomTypeDesc1; if (L_0) { goto IL_001d; } } { RuntimeObject * L_1 = ___component0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_1, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))) { goto IL_001d; } } { RuntimeObject * L_2 = ___component0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_2, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))); EventDescriptorCollection_t3861329784 * L_3 = InterfaceFuncInvoker0< EventDescriptorCollection_t3861329784 * >::Invoke(7 /* System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor::GetEvents() */, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_2, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))); return L_3; } IL_001d: { RuntimeObject * L_4 = ___component0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_4, IComponent_t63236301_il2cpp_TypeInfo_var)); RuntimeObject* L_5 = V_0; if (!L_5) { goto IL_0041; } } { RuntimeObject* L_6 = V_0; NullCheck(L_6); RuntimeObject* L_7 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t63236301_il2cpp_TypeInfo_var, L_6); if (!L_7) { goto IL_0041; } } { RuntimeObject* L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); ComponentInfo_t3532183224 * L_9 = TypeDescriptor_GetComponentInfo_m1529259269(NULL /*static, unused*/, L_8, /*hidden argument*/NULL); NullCheck(L_9); EventDescriptorCollection_t3861329784 * L_10 = VirtFuncInvoker0< EventDescriptorCollection_t3861329784 * >::Invoke(5 /* System.ComponentModel.EventDescriptorCollection System.ComponentModel.ComponentInfo::GetEvents() */, L_9); return L_10; } IL_0041: { RuntimeObject * L_11 = ___component0; NullCheck(L_11); Type_t * L_12 = Object_GetType_m1134229006(L_11, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeInfo_t2535999846 * L_13 = TypeDescriptor_GetTypeInfo_m1821580626(NULL /*static, unused*/, L_12, /*hidden argument*/NULL); NullCheck(L_13); EventDescriptorCollection_t3861329784 * L_14 = VirtFuncInvoker0< EventDescriptorCollection_t3861329784 * >::Invoke(5 /* System.ComponentModel.EventDescriptorCollection System.ComponentModel.TypeInfo::GetEvents() */, L_13); return L_14; } } // System.ComponentModel.EventDescriptorCollection System.ComponentModel.TypeDescriptor::GetEvents(System.Type,System.Attribute[]) extern "C" EventDescriptorCollection_t3861329784 * TypeDescriptor_GetEvents_m3586592604 (RuntimeObject * __this /* static, unused */, Type_t * ___componentType0, AttributeU5BU5D_t187261448* ___attributes1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetEvents_m3586592604_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___componentType0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeInfo_t2535999846 * L_1 = TypeDescriptor_GetTypeInfo_m1821580626(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); AttributeU5BU5D_t187261448* L_2 = ___attributes1; NullCheck(L_1); EventDescriptorCollection_t3861329784 * L_3 = Info_GetEvents_m779782179(L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.ComponentModel.EventDescriptorCollection System.ComponentModel.TypeDescriptor::GetEvents(System.Object,System.Attribute[],System.Boolean) extern "C" EventDescriptorCollection_t3861329784 * TypeDescriptor_GetEvents_m2388143899 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, AttributeU5BU5D_t187261448* ___attributes1, bool ___noCustomTypeDesc2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetEvents_m2388143899_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { bool L_0 = ___noCustomTypeDesc2; if (L_0) { goto IL_001e; } } { RuntimeObject * L_1 = ___component0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_1, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))) { goto IL_001e; } } { RuntimeObject * L_2 = ___component0; AttributeU5BU5D_t187261448* L_3 = ___attributes1; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_2, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))); EventDescriptorCollection_t3861329784 * L_4 = InterfaceFuncInvoker1< EventDescriptorCollection_t3861329784 *, AttributeU5BU5D_t187261448* >::Invoke(8 /* System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor::GetEvents(System.Attribute[]) */, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_2, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var)), L_3); return L_4; } IL_001e: { RuntimeObject * L_5 = ___component0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_5, IComponent_t63236301_il2cpp_TypeInfo_var)); RuntimeObject* L_6 = V_0; if (!L_6) { goto IL_0043; } } { RuntimeObject* L_7 = V_0; NullCheck(L_7); RuntimeObject* L_8 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t63236301_il2cpp_TypeInfo_var, L_7); if (!L_8) { goto IL_0043; } } { RuntimeObject* L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); ComponentInfo_t3532183224 * L_10 = TypeDescriptor_GetComponentInfo_m1529259269(NULL /*static, unused*/, L_9, /*hidden argument*/NULL); AttributeU5BU5D_t187261448* L_11 = ___attributes1; NullCheck(L_10); EventDescriptorCollection_t3861329784 * L_12 = Info_GetEvents_m779782179(L_10, L_11, /*hidden argument*/NULL); return L_12; } IL_0043: { RuntimeObject * L_13 = ___component0; NullCheck(L_13); Type_t * L_14 = Object_GetType_m1134229006(L_13, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeInfo_t2535999846 * L_15 = TypeDescriptor_GetTypeInfo_m1821580626(NULL /*static, unused*/, L_14, /*hidden argument*/NULL); AttributeU5BU5D_t187261448* L_16 = ___attributes1; NullCheck(L_15); EventDescriptorCollection_t3861329784 * L_17 = Info_GetEvents_m779782179(L_15, L_16, /*hidden argument*/NULL); return L_17; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Object) extern "C" PropertyDescriptorCollection_t2982717747 * TypeDescriptor_GetProperties_m3855632957 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetProperties_m3855632957_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___component0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); PropertyDescriptorCollection_t2982717747 * L_1 = TypeDescriptor_GetProperties_m4060776569(NULL /*static, unused*/, L_0, (bool)0, /*hidden argument*/NULL); return L_1; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Type) extern "C" PropertyDescriptorCollection_t2982717747 * TypeDescriptor_GetProperties_m2295733264 (RuntimeObject * __this /* static, unused */, Type_t * ___componentType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetProperties_m2295733264_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___componentType0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); PropertyDescriptorCollection_t2982717747 * L_1 = TypeDescriptor_GetProperties_m3032014321(NULL /*static, unused*/, L_0, (AttributeU5BU5D_t187261448*)(AttributeU5BU5D_t187261448*)NULL, /*hidden argument*/NULL); return L_1; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Object,System.Attribute[]) extern "C" PropertyDescriptorCollection_t2982717747 * TypeDescriptor_GetProperties_m2849812490 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, AttributeU5BU5D_t187261448* ___attributes1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetProperties_m2849812490_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___component0; AttributeU5BU5D_t187261448* L_1 = ___attributes1; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); PropertyDescriptorCollection_t2982717747 * L_2 = TypeDescriptor_GetProperties_m2048219527(NULL /*static, unused*/, L_0, L_1, (bool)0, /*hidden argument*/NULL); return L_2; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Object,System.Attribute[],System.Boolean) extern "C" PropertyDescriptorCollection_t2982717747 * TypeDescriptor_GetProperties_m2048219527 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, AttributeU5BU5D_t187261448* ___attributes1, bool ___noCustomTypeDesc2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetProperties_m2048219527_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { RuntimeObject * L_0 = ___component0; if (L_0) { goto IL_000c; } } { IL2CPP_RUNTIME_CLASS_INIT(PropertyDescriptorCollection_t2982717747_il2cpp_TypeInfo_var); PropertyDescriptorCollection_t2982717747 * L_1 = ((PropertyDescriptorCollection_t2982717747_StaticFields*)il2cpp_codegen_static_fields_for(PropertyDescriptorCollection_t2982717747_il2cpp_TypeInfo_var))->get_Empty_0(); return L_1; } IL_000c: { bool L_2 = ___noCustomTypeDesc2; if (L_2) { goto IL_002a; } } { RuntimeObject * L_3 = ___component0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_3, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))) { goto IL_002a; } } { RuntimeObject * L_4 = ___component0; AttributeU5BU5D_t187261448* L_5 = ___attributes1; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_4, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))); PropertyDescriptorCollection_t2982717747 * L_6 = InterfaceFuncInvoker1< PropertyDescriptorCollection_t2982717747 *, AttributeU5BU5D_t187261448* >::Invoke(10 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor::GetProperties(System.Attribute[]) */, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_4, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var)), L_5); return L_6; } IL_002a: { RuntimeObject * L_7 = ___component0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_7, IComponent_t63236301_il2cpp_TypeInfo_var)); RuntimeObject* L_8 = V_0; if (!L_8) { goto IL_004f; } } { RuntimeObject* L_9 = V_0; NullCheck(L_9); RuntimeObject* L_10 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t63236301_il2cpp_TypeInfo_var, L_9); if (!L_10) { goto IL_004f; } } { RuntimeObject* L_11 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); ComponentInfo_t3532183224 * L_12 = TypeDescriptor_GetComponentInfo_m1529259269(NULL /*static, unused*/, L_11, /*hidden argument*/NULL); AttributeU5BU5D_t187261448* L_13 = ___attributes1; NullCheck(L_12); PropertyDescriptorCollection_t2982717747 * L_14 = Info_GetProperties_m3122816418(L_12, L_13, /*hidden argument*/NULL); return L_14; } IL_004f: { RuntimeObject * L_15 = ___component0; NullCheck(L_15); Type_t * L_16 = Object_GetType_m1134229006(L_15, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeInfo_t2535999846 * L_17 = TypeDescriptor_GetTypeInfo_m1821580626(NULL /*static, unused*/, L_16, /*hidden argument*/NULL); AttributeU5BU5D_t187261448* L_18 = ___attributes1; NullCheck(L_17); PropertyDescriptorCollection_t2982717747 * L_19 = Info_GetProperties_m3122816418(L_17, L_18, /*hidden argument*/NULL); return L_19; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Object,System.Boolean) extern "C" PropertyDescriptorCollection_t2982717747 * TypeDescriptor_GetProperties_m4060776569 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, bool ___noCustomTypeDesc1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetProperties_m4060776569_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { RuntimeObject * L_0 = ___component0; if (L_0) { goto IL_000c; } } { IL2CPP_RUNTIME_CLASS_INIT(PropertyDescriptorCollection_t2982717747_il2cpp_TypeInfo_var); PropertyDescriptorCollection_t2982717747 * L_1 = ((PropertyDescriptorCollection_t2982717747_StaticFields*)il2cpp_codegen_static_fields_for(PropertyDescriptorCollection_t2982717747_il2cpp_TypeInfo_var))->get_Empty_0(); return L_1; } IL_000c: { bool L_2 = ___noCustomTypeDesc1; if (L_2) { goto IL_0029; } } { RuntimeObject * L_3 = ___component0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_3, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))) { goto IL_0029; } } { RuntimeObject * L_4 = ___component0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_4, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))); PropertyDescriptorCollection_t2982717747 * L_5 = InterfaceFuncInvoker0< PropertyDescriptorCollection_t2982717747 * >::Invoke(9 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor::GetProperties() */, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_4, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var))); return L_5; } IL_0029: { RuntimeObject * L_6 = ___component0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_6, IComponent_t63236301_il2cpp_TypeInfo_var)); RuntimeObject* L_7 = V_0; if (!L_7) { goto IL_004d; } } { RuntimeObject* L_8 = V_0; NullCheck(L_8); RuntimeObject* L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t63236301_il2cpp_TypeInfo_var, L_8); if (!L_9) { goto IL_004d; } } { RuntimeObject* L_10 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); ComponentInfo_t3532183224 * L_11 = TypeDescriptor_GetComponentInfo_m1529259269(NULL /*static, unused*/, L_10, /*hidden argument*/NULL); NullCheck(L_11); PropertyDescriptorCollection_t2982717747 * L_12 = VirtFuncInvoker0< PropertyDescriptorCollection_t2982717747 * >::Invoke(6 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ComponentInfo::GetProperties() */, L_11); return L_12; } IL_004d: { RuntimeObject * L_13 = ___component0; NullCheck(L_13); Type_t * L_14 = Object_GetType_m1134229006(L_13, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeInfo_t2535999846 * L_15 = TypeDescriptor_GetTypeInfo_m1821580626(NULL /*static, unused*/, L_14, /*hidden argument*/NULL); NullCheck(L_15); PropertyDescriptorCollection_t2982717747 * L_16 = VirtFuncInvoker0< PropertyDescriptorCollection_t2982717747 * >::Invoke(6 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeInfo::GetProperties() */, L_15); return L_16; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Type,System.Attribute[]) extern "C" PropertyDescriptorCollection_t2982717747 * TypeDescriptor_GetProperties_m3032014321 (RuntimeObject * __this /* static, unused */, Type_t * ___componentType0, AttributeU5BU5D_t187261448* ___attributes1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetProperties_m3032014321_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___componentType0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeInfo_t2535999846 * L_1 = TypeDescriptor_GetTypeInfo_m1821580626(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); AttributeU5BU5D_t187261448* L_2 = ___attributes1; NullCheck(L_1); PropertyDescriptorCollection_t2982717747 * L_3 = Info_GetProperties_m3122816418(L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptor::GetProvider(System.Object) extern "C" TypeDescriptionProvider_t4220413402 * TypeDescriptor_GetProvider_m476155507 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___instance0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetProvider_m476155507_MetadataUsageId); s_Il2CppMethodInitialized = true; } TypeDescriptionProvider_t4220413402 * V_0 = NULL; RuntimeObject * V_1 = NULL; LinkedList_1_t3169462053 * V_2 = NULL; WeakObjectWrapper_t3106754776 * V_3 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___instance0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral2374827162, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { V_0 = (TypeDescriptionProvider_t4220413402 *)NULL; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RuntimeObject * L_2 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_componentDescriptionProvidersLock_8(); V_1 = L_2; RuntimeObject * L_3 = V_1; Monitor_Enter_m1524383546(NULL /*static, unused*/, L_3, /*hidden argument*/NULL); } IL_001f: try { // begin try (depth: 1) { RuntimeObject * L_4 = ___instance0; WeakObjectWrapper_t3106754776 * L_5 = (WeakObjectWrapper_t3106754776 *)il2cpp_codegen_object_new(WeakObjectWrapper_t3106754776_il2cpp_TypeInfo_var); WeakObjectWrapper__ctor_m3552650423(L_5, L_4, /*hidden argument*/NULL); V_3 = L_5; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Dictionary_2_t1504552994 * L_6 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_componentDescriptionProviders_9(); WeakObjectWrapper_t3106754776 * L_7 = V_3; NullCheck(L_6); bool L_8 = Dictionary_2_TryGetValue_m2172175164(L_6, L_7, (&V_2), /*hidden argument*/Dictionary_2_TryGetValue_m2172175164_RuntimeMethod_var); if (!L_8) { goto IL_0050; } } IL_0038: { LinkedList_1_t3169462053 * L_9 = V_2; NullCheck(L_9); int32_t L_10 = LinkedList_1_get_Count_m2665033812(L_9, /*hidden argument*/LinkedList_1_get_Count_m2665033812_RuntimeMethod_var); if ((((int32_t)L_10) <= ((int32_t)0))) { goto IL_0050; } } IL_0044: { LinkedList_1_t3169462053 * L_11 = V_2; NullCheck(L_11); LinkedListNode_1_t1908715458 * L_12 = LinkedList_1_get_Last_m1918679422(L_11, /*hidden argument*/LinkedList_1_get_Last_m1918679422_RuntimeMethod_var); NullCheck(L_12); TypeDescriptionProvider_t4220413402 * L_13 = LinkedListNode_1_get_Value_m167305195(L_12, /*hidden argument*/LinkedListNode_1_get_Value_m167305195_RuntimeMethod_var); V_0 = L_13; } IL_0050: { V_3 = (WeakObjectWrapper_t3106754776 *)NULL; IL2CPP_LEAVE(0x5E, FINALLY_0057); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_0057; } FINALLY_0057: { // begin finally (depth: 1) RuntimeObject * L_14 = V_1; Monitor_Exit_m69827708(NULL /*static, unused*/, L_14, /*hidden argument*/NULL); IL2CPP_END_FINALLY(87) } // end finally (depth: 1) IL2CPP_CLEANUP(87) { IL2CPP_JUMP_TBL(0x5E, IL_005e) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_005e: { TypeDescriptionProvider_t4220413402 * L_15 = V_0; if (L_15) { goto IL_0070; } } { RuntimeObject * L_16 = ___instance0; NullCheck(L_16); Type_t * L_17 = Object_GetType_m1134229006(L_16, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeDescriptionProvider_t4220413402 * L_18 = TypeDescriptor_GetProvider_m514055783(NULL /*static, unused*/, L_17, /*hidden argument*/NULL); V_0 = L_18; } IL_0070: { TypeDescriptionProvider_t4220413402 * L_19 = V_0; if (L_19) { goto IL_007c; } } { DefaultTypeDescriptionProvider_t2206660091 * L_20 = (DefaultTypeDescriptionProvider_t2206660091 *)il2cpp_codegen_object_new(DefaultTypeDescriptionProvider_t2206660091_il2cpp_TypeInfo_var); DefaultTypeDescriptionProvider__ctor_m30009566(L_20, /*hidden argument*/NULL); return L_20; } IL_007c: { TypeDescriptionProvider_t4220413402 * L_21 = V_0; WrappedTypeDescriptionProvider_t340192907 * L_22 = (WrappedTypeDescriptionProvider_t340192907 *)il2cpp_codegen_object_new(WrappedTypeDescriptionProvider_t340192907_il2cpp_TypeInfo_var); WrappedTypeDescriptionProvider__ctor_m2033595495(L_22, L_21, /*hidden argument*/NULL); return L_22; } } // System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptor::GetProvider(System.Type) extern "C" TypeDescriptionProvider_t4220413402 * TypeDescriptor_GetProvider_m514055783 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetProvider_m514055783_MetadataUsageId); s_Il2CppMethodInitialized = true; } TypeDescriptionProvider_t4220413402 * V_0 = NULL; RuntimeObject * V_1 = NULL; LinkedList_1_t3169462053 * V_2 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { Type_t * L_0 = ___type0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral4074451177, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { V_0 = (TypeDescriptionProvider_t4220413402 *)NULL; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RuntimeObject * L_2 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_typeDescriptionProvidersLock_6(); V_1 = L_2; RuntimeObject * L_3 = V_1; Monitor_Enter_m1524383546(NULL /*static, unused*/, L_3, /*hidden argument*/NULL); } IL_001f: try { // begin try (depth: 1) { goto IL_0039; } IL_0024: { V_2 = (LinkedList_1_t3169462053 *)NULL; Type_t * L_4 = ___type0; NullCheck(L_4); Type_t * L_5 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.Type::get_BaseType() */, L_4); ___type0 = L_5; Type_t * L_6 = ___type0; if (L_6) { goto IL_0039; } } IL_0034: { goto IL_004b; } IL_0039: { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Dictionary_2_t3039616987 * L_7 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_typeDescriptionProviders_7(); Type_t * L_8 = ___type0; NullCheck(L_7); bool L_9 = Dictionary_2_TryGetValue_m3960761973(L_7, L_8, (&V_2), /*hidden argument*/Dictionary_2_TryGetValue_m3960761973_RuntimeMethod_var); if (!L_9) { goto IL_0024; } } IL_004b: { LinkedList_1_t3169462053 * L_10 = V_2; if (!L_10) { goto IL_0069; } } IL_0051: { LinkedList_1_t3169462053 * L_11 = V_2; NullCheck(L_11); int32_t L_12 = LinkedList_1_get_Count_m2665033812(L_11, /*hidden argument*/LinkedList_1_get_Count_m2665033812_RuntimeMethod_var); if ((((int32_t)L_12) <= ((int32_t)0))) { goto IL_0069; } } IL_005d: { LinkedList_1_t3169462053 * L_13 = V_2; NullCheck(L_13); LinkedListNode_1_t1908715458 * L_14 = LinkedList_1_get_Last_m1918679422(L_13, /*hidden argument*/LinkedList_1_get_Last_m1918679422_RuntimeMethod_var); NullCheck(L_14); TypeDescriptionProvider_t4220413402 * L_15 = LinkedListNode_1_get_Value_m167305195(L_14, /*hidden argument*/LinkedListNode_1_get_Value_m167305195_RuntimeMethod_var); V_0 = L_15; } IL_0069: { IL2CPP_LEAVE(0x75, FINALLY_006e); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_006e; } FINALLY_006e: { // begin finally (depth: 1) RuntimeObject * L_16 = V_1; Monitor_Exit_m69827708(NULL /*static, unused*/, L_16, /*hidden argument*/NULL); IL2CPP_END_FINALLY(110) } // end finally (depth: 1) IL2CPP_CLEANUP(110) { IL2CPP_JUMP_TBL(0x75, IL_0075) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_0075: { TypeDescriptionProvider_t4220413402 * L_17 = V_0; if (L_17) { goto IL_0081; } } { DefaultTypeDescriptionProvider_t2206660091 * L_18 = (DefaultTypeDescriptionProvider_t2206660091 *)il2cpp_codegen_object_new(DefaultTypeDescriptionProvider_t2206660091_il2cpp_TypeInfo_var); DefaultTypeDescriptionProvider__ctor_m30009566(L_18, /*hidden argument*/NULL); return L_18; } IL_0081: { TypeDescriptionProvider_t4220413402 * L_19 = V_0; WrappedTypeDescriptionProvider_t340192907 * L_20 = (WrappedTypeDescriptionProvider_t340192907 *)il2cpp_codegen_object_new(WrappedTypeDescriptionProvider_t340192907_il2cpp_TypeInfo_var); WrappedTypeDescriptionProvider__ctor_m2033595495(L_20, L_19, /*hidden argument*/NULL); return L_20; } } // System.Type System.ComponentModel.TypeDescriptor::GetReflectionType(System.Object) extern "C" Type_t * TypeDescriptor_GetReflectionType_m3117699804 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___instance0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetReflectionType_m3117699804_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___instance0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral2374827162, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { RuntimeObject * L_2 = ___instance0; NullCheck(L_2); Type_t * L_3 = Object_GetType_m1134229006(L_2, /*hidden argument*/NULL); return L_3; } } // System.Type System.ComponentModel.TypeDescriptor::GetReflectionType(System.Type) extern "C" Type_t * TypeDescriptor_GetReflectionType_m1140319855 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetReflectionType_m1140319855_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___type0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral4074451177, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { Type_t * L_2 = ___type0; return L_2; } } // System.Void System.ComponentModel.TypeDescriptor::CreateAssociation(System.Object,System.Object) extern "C" void TypeDescriptor_CreateAssociation_m919081041 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___primary0, RuntimeObject * ___secondary1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_CreateAssociation_m919081041_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotImplementedException_t682134635 * L_0 = (NotImplementedException_t682134635 *)il2cpp_codegen_object_new(NotImplementedException_t682134635_il2cpp_TypeInfo_var); NotImplementedException__ctor_m1549985598(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Object System.ComponentModel.TypeDescriptor::GetAssociation(System.Type,System.Object) extern "C" RuntimeObject * TypeDescriptor_GetAssociation_m280838571 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, RuntimeObject * ___primary1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetAssociation_m280838571_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotImplementedException_t682134635 * L_0 = (NotImplementedException_t682134635 *)il2cpp_codegen_object_new(NotImplementedException_t682134635_il2cpp_TypeInfo_var); NotImplementedException__ctor_m1549985598(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.ComponentModel.TypeDescriptor::RemoveAssociation(System.Object,System.Object) extern "C" void TypeDescriptor_RemoveAssociation_m3630827682 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___primary0, RuntimeObject * ___secondary1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_RemoveAssociation_m3630827682_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotImplementedException_t682134635 * L_0 = (NotImplementedException_t682134635 *)il2cpp_codegen_object_new(NotImplementedException_t682134635_il2cpp_TypeInfo_var); NotImplementedException__ctor_m1549985598(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.ComponentModel.TypeDescriptor::RemoveAssociations(System.Object) extern "C" void TypeDescriptor_RemoveAssociations_m1713977069 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___primary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_RemoveAssociations_m1713977069_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotImplementedException_t682134635 * L_0 = (NotImplementedException_t682134635 *)il2cpp_codegen_object_new(NotImplementedException_t682134635_il2cpp_TypeInfo_var); NotImplementedException__ctor_m1549985598(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.ComponentModel.TypeDescriptor::RemoveProvider(System.ComponentModel.TypeDescriptionProvider,System.Object) extern "C" void TypeDescriptor_RemoveProvider_m881091021 (RuntimeObject * __this /* static, unused */, TypeDescriptionProvider_t4220413402 * ___provider0, RuntimeObject * ___instance1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_RemoveProvider_m881091021_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; LinkedList_1_t3169462053 * V_1 = NULL; WeakObjectWrapper_t3106754776 * V_2 = NULL; RefreshEventHandler_t3510407695 * V_3 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TypeDescriptionProvider_t4220413402 * L_0 = ___provider0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral2562382105, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { RuntimeObject * L_2 = ___instance1; if (L_2) { goto IL_0022; } } { ArgumentNullException_t873386607 * L_3 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_3, _stringLiteral2374827162, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_0022: { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RuntimeObject * L_4 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_componentDescriptionProvidersLock_8(); V_0 = L_4; RuntimeObject * L_5 = V_0; Monitor_Enter_m1524383546(NULL /*static, unused*/, L_5, /*hidden argument*/NULL); } IL_002e: try { // begin try (depth: 1) { RuntimeObject * L_6 = ___instance1; WeakObjectWrapper_t3106754776 * L_7 = (WeakObjectWrapper_t3106754776 *)il2cpp_codegen_object_new(WeakObjectWrapper_t3106754776_il2cpp_TypeInfo_var); WeakObjectWrapper__ctor_m3552650423(L_7, L_6, /*hidden argument*/NULL); V_2 = L_7; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Dictionary_2_t1504552994 * L_8 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_componentDescriptionProviders_9(); WeakObjectWrapper_t3106754776 * L_9 = V_2; NullCheck(L_8); bool L_10 = Dictionary_2_TryGetValue_m2172175164(L_8, L_9, (&V_1), /*hidden argument*/Dictionary_2_TryGetValue_m2172175164_RuntimeMethod_var); if (!L_10) { goto IL_005a; } } IL_0047: { LinkedList_1_t3169462053 * L_11 = V_1; NullCheck(L_11); int32_t L_12 = LinkedList_1_get_Count_m2665033812(L_11, /*hidden argument*/LinkedList_1_get_Count_m2665033812_RuntimeMethod_var); if ((((int32_t)L_12) <= ((int32_t)0))) { goto IL_005a; } } IL_0053: { TypeDescriptionProvider_t4220413402 * L_13 = ___provider0; LinkedList_1_t3169462053 * L_14 = V_1; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeDescriptor_RemoveProvider_m736963711(NULL /*static, unused*/, L_13, L_14, /*hidden argument*/NULL); } IL_005a: { V_2 = (WeakObjectWrapper_t3106754776 *)NULL; IL2CPP_LEAVE(0x68, FINALLY_0061); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_0061; } FINALLY_0061: { // begin finally (depth: 1) RuntimeObject * L_15 = V_0; Monitor_Exit_m69827708(NULL /*static, unused*/, L_15, /*hidden argument*/NULL); IL2CPP_END_FINALLY(97) } // end finally (depth: 1) IL2CPP_CLEANUP(97) { IL2CPP_JUMP_TBL(0x68, IL_0068) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_0068: { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RefreshEventHandler_t3510407695 * L_16 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_Refreshed_11(); V_3 = L_16; RefreshEventHandler_t3510407695 * L_17 = V_3; if (!L_17) { goto IL_0080; } } { RefreshEventHandler_t3510407695 * L_18 = V_3; RuntimeObject * L_19 = ___instance1; RefreshEventArgs_t632686523 * L_20 = (RefreshEventArgs_t632686523 *)il2cpp_codegen_object_new(RefreshEventArgs_t632686523_il2cpp_TypeInfo_var); RefreshEventArgs__ctor_m2983157069(L_20, L_19, /*hidden argument*/NULL); NullCheck(L_18); RefreshEventHandler_Invoke_m1530138922(L_18, L_20, /*hidden argument*/NULL); } IL_0080: { return; } } // System.Void System.ComponentModel.TypeDescriptor::RemoveProvider(System.ComponentModel.TypeDescriptionProvider,System.Type) extern "C" void TypeDescriptor_RemoveProvider_m1301904550 (RuntimeObject * __this /* static, unused */, TypeDescriptionProvider_t4220413402 * ___provider0, Type_t * ___type1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_RemoveProvider_m1301904550_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; LinkedList_1_t3169462053 * V_1 = NULL; RefreshEventHandler_t3510407695 * V_2 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TypeDescriptionProvider_t4220413402 * L_0 = ___provider0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral2562382105, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { Type_t * L_2 = ___type1; if (L_2) { goto IL_0022; } } { ArgumentNullException_t873386607 * L_3 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_3, _stringLiteral4074451177, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_0022: { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RuntimeObject * L_4 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_typeDescriptionProvidersLock_6(); V_0 = L_4; RuntimeObject * L_5 = V_0; Monitor_Enter_m1524383546(NULL /*static, unused*/, L_5, /*hidden argument*/NULL); } IL_002e: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Dictionary_2_t3039616987 * L_6 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_typeDescriptionProviders_7(); Type_t * L_7 = ___type1; NullCheck(L_6); bool L_8 = Dictionary_2_TryGetValue_m3960761973(L_6, L_7, (&V_1), /*hidden argument*/Dictionary_2_TryGetValue_m3960761973_RuntimeMethod_var); if (!L_8) { goto IL_0053; } } IL_0040: { LinkedList_1_t3169462053 * L_9 = V_1; NullCheck(L_9); int32_t L_10 = LinkedList_1_get_Count_m2665033812(L_9, /*hidden argument*/LinkedList_1_get_Count_m2665033812_RuntimeMethod_var); if ((((int32_t)L_10) <= ((int32_t)0))) { goto IL_0053; } } IL_004c: { TypeDescriptionProvider_t4220413402 * L_11 = ___provider0; LinkedList_1_t3169462053 * L_12 = V_1; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeDescriptor_RemoveProvider_m736963711(NULL /*static, unused*/, L_11, L_12, /*hidden argument*/NULL); } IL_0053: { IL2CPP_LEAVE(0x5F, FINALLY_0058); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_0058; } FINALLY_0058: { // begin finally (depth: 1) RuntimeObject * L_13 = V_0; Monitor_Exit_m69827708(NULL /*static, unused*/, L_13, /*hidden argument*/NULL); IL2CPP_END_FINALLY(88) } // end finally (depth: 1) IL2CPP_CLEANUP(88) { IL2CPP_JUMP_TBL(0x5F, IL_005f) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_005f: { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RefreshEventHandler_t3510407695 * L_14 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_Refreshed_11(); V_2 = L_14; RefreshEventHandler_t3510407695 * L_15 = V_2; if (!L_15) { goto IL_0077; } } { RefreshEventHandler_t3510407695 * L_16 = V_2; Type_t * L_17 = ___type1; RefreshEventArgs_t632686523 * L_18 = (RefreshEventArgs_t632686523 *)il2cpp_codegen_object_new(RefreshEventArgs_t632686523_il2cpp_TypeInfo_var); RefreshEventArgs__ctor_m2829995138(L_18, L_17, /*hidden argument*/NULL); NullCheck(L_16); RefreshEventHandler_Invoke_m1530138922(L_16, L_18, /*hidden argument*/NULL); } IL_0077: { return; } } // System.Void System.ComponentModel.TypeDescriptor::RemoveProvider(System.ComponentModel.TypeDescriptionProvider,System.Collections.Generic.LinkedList`1<System.ComponentModel.TypeDescriptionProvider>) extern "C" void TypeDescriptor_RemoveProvider_m736963711 (RuntimeObject * __this /* static, unused */, TypeDescriptionProvider_t4220413402 * ___provider0, LinkedList_1_t3169462053 * ___plist1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_RemoveProvider_m736963711_MetadataUsageId); s_Il2CppMethodInitialized = true; } LinkedListNode_1_t1908715458 * V_0 = NULL; LinkedListNode_1_t1908715458 * V_1 = NULL; TypeDescriptionProvider_t4220413402 * V_2 = NULL; { LinkedList_1_t3169462053 * L_0 = ___plist1; NullCheck(L_0); LinkedListNode_1_t1908715458 * L_1 = LinkedList_1_get_Last_m1918679422(L_0, /*hidden argument*/LinkedList_1_get_Last_m1918679422_RuntimeMethod_var); V_0 = L_1; LinkedList_1_t3169462053 * L_2 = ___plist1; NullCheck(L_2); LinkedListNode_1_t1908715458 * L_3 = LinkedList_1_get_First_m2295245609(L_2, /*hidden argument*/LinkedList_1_get_First_m2295245609_RuntimeMethod_var); V_1 = L_3; } IL_000e: { LinkedListNode_1_t1908715458 * L_4 = V_0; NullCheck(L_4); TypeDescriptionProvider_t4220413402 * L_5 = LinkedListNode_1_get_Value_m167305195(L_4, /*hidden argument*/LinkedListNode_1_get_Value_m167305195_RuntimeMethod_var); V_2 = L_5; TypeDescriptionProvider_t4220413402 * L_6 = V_2; TypeDescriptionProvider_t4220413402 * L_7 = ___provider0; if ((!(((RuntimeObject*)(TypeDescriptionProvider_t4220413402 *)L_6) == ((RuntimeObject*)(TypeDescriptionProvider_t4220413402 *)L_7)))) { goto IL_0028; } } { LinkedList_1_t3169462053 * L_8 = ___plist1; LinkedListNode_1_t1908715458 * L_9 = V_0; NullCheck(L_8); LinkedList_1_Remove_m2525782714(L_8, L_9, /*hidden argument*/LinkedList_1_Remove_m2525782714_RuntimeMethod_var); goto IL_0040; } IL_0028: { LinkedListNode_1_t1908715458 * L_10 = V_0; LinkedListNode_1_t1908715458 * L_11 = V_1; if ((!(((RuntimeObject*)(LinkedListNode_1_t1908715458 *)L_10) == ((RuntimeObject*)(LinkedListNode_1_t1908715458 *)L_11)))) { goto IL_0034; } } { goto IL_0040; } IL_0034: { LinkedListNode_1_t1908715458 * L_12 = V_0; NullCheck(L_12); LinkedListNode_1_t1908715458 * L_13 = LinkedListNode_1_get_Previous_m2628299079(L_12, /*hidden argument*/LinkedListNode_1_get_Previous_m2628299079_RuntimeMethod_var); V_0 = L_13; goto IL_000e; } IL_0040: { return; } } // System.Void System.ComponentModel.TypeDescriptor::SortDescriptorArray(System.Collections.IList) extern "C" void TypeDescriptor_SortDescriptorArray_m1802374424 (RuntimeObject * __this /* static, unused */, RuntimeObject* ___infos0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_SortDescriptorArray_m1802374424_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringU5BU5D_t1187188029* V_0 = NULL; ObjectU5BU5D_t4199014551* V_1 = NULL; int32_t V_2 = 0; RuntimeObject * V_3 = NULL; ObjectU5BU5D_t4199014551* V_4 = NULL; int32_t V_5 = 0; { RuntimeObject* L_0 = ___infos0; NullCheck(L_0); int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t2597392361_il2cpp_TypeInfo_var, L_0); V_0 = ((StringU5BU5D_t1187188029*)SZArrayNew(StringU5BU5D_t1187188029_il2cpp_TypeInfo_var, (uint32_t)L_1)); RuntimeObject* L_2 = ___infos0; NullCheck(L_2); int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t2597392361_il2cpp_TypeInfo_var, L_2); V_1 = ((ObjectU5BU5D_t4199014551*)SZArrayNew(ObjectU5BU5D_t4199014551_il2cpp_TypeInfo_var, (uint32_t)L_3)); V_2 = 0; goto IL_0041; } IL_001f: { StringU5BU5D_t1187188029* L_4 = V_0; int32_t L_5 = V_2; RuntimeObject* L_6 = ___infos0; int32_t L_7 = V_2; NullCheck(L_6); RuntimeObject * L_8 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(2 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t1481205421_il2cpp_TypeInfo_var, L_6, L_7); NullCheck(((MemberDescriptor_t1331681536 *)CastclassClass((RuntimeObject*)L_8, MemberDescriptor_t1331681536_il2cpp_TypeInfo_var))); String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(13 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, ((MemberDescriptor_t1331681536 *)CastclassClass((RuntimeObject*)L_8, MemberDescriptor_t1331681536_il2cpp_TypeInfo_var))); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_9); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (String_t*)L_9); ObjectU5BU5D_t4199014551* L_10 = V_1; int32_t L_11 = V_2; RuntimeObject* L_12 = ___infos0; int32_t L_13 = V_2; NullCheck(L_12); RuntimeObject * L_14 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(2 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t1481205421_il2cpp_TypeInfo_var, L_12, L_13); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_14); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (RuntimeObject *)L_14); int32_t L_15 = V_2; V_2 = ((int32_t)((int32_t)L_15+(int32_t)1)); } IL_0041: { int32_t L_16 = V_2; StringU5BU5D_t1187188029* 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_001f; } } { StringU5BU5D_t1187188029* L_18 = V_0; ObjectU5BU5D_t4199014551* L_19 = V_1; Array_Sort_TisString_t_TisRuntimeObject_m1572220042(NULL /*static, unused*/, L_18, L_19, /*hidden argument*/Array_Sort_TisString_t_TisRuntimeObject_m1572220042_RuntimeMethod_var); RuntimeObject* L_20 = ___infos0; NullCheck(L_20); InterfaceActionInvoker0::Invoke(5 /* System.Void System.Collections.IList::Clear() */, IList_t1481205421_il2cpp_TypeInfo_var, L_20); ObjectU5BU5D_t4199014551* L_21 = V_1; V_4 = L_21; V_5 = 0; goto IL_0076; } IL_0062: { ObjectU5BU5D_t4199014551* L_22 = V_4; int32_t L_23 = V_5; NullCheck(L_22); int32_t L_24 = L_23; RuntimeObject * L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24)); V_3 = L_25; RuntimeObject* L_26 = ___infos0; RuntimeObject * L_27 = V_3; NullCheck(L_26); InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(4 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_t1481205421_il2cpp_TypeInfo_var, L_26, L_27); int32_t L_28 = V_5; V_5 = ((int32_t)((int32_t)L_28+(int32_t)1)); } IL_0076: { int32_t L_29 = V_5; ObjectU5BU5D_t4199014551* L_30 = V_4; NullCheck(L_30); if ((((int32_t)L_29) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_30)->max_length))))))) { goto IL_0062; } } { return; } } // System.ComponentModel.IComNativeDescriptorHandler System.ComponentModel.TypeDescriptor::get_ComNativeDescriptorHandler() extern "C" RuntimeObject* TypeDescriptor_get_ComNativeDescriptorHandler_m3554474020 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_get_ComNativeDescriptorHandler_m3554474020_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_descriptorHandler_2(); return L_0; } } // System.Void System.ComponentModel.TypeDescriptor::set_ComNativeDescriptorHandler(System.ComponentModel.IComNativeDescriptorHandler) extern "C" void TypeDescriptor_set_ComNativeDescriptorHandler_m2078836892 (RuntimeObject * __this /* static, unused */, RuntimeObject* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_set_ComNativeDescriptorHandler_m2078836892_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->set_descriptorHandler_2(L_0); return; } } // System.Void System.ComponentModel.TypeDescriptor::Refresh(System.Reflection.Assembly) extern "C" void TypeDescriptor_Refresh_m3876033953 (RuntimeObject * __this /* static, unused */, Assembly_t2742862503 * ___assembly0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_Refresh_m3876033953_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; TypeU5BU5D_t89919618* V_1 = NULL; int32_t V_2 = 0; { Assembly_t2742862503 * L_0 = ___assembly0; NullCheck(L_0); TypeU5BU5D_t89919618* L_1 = VirtFuncInvoker0< TypeU5BU5D_t89919618* >::Invoke(12 /* System.Type[] System.Reflection.Assembly::GetTypes() */, L_0); V_1 = L_1; V_2 = 0; goto IL_001c; } IL_000e: { TypeU5BU5D_t89919618* L_2 = V_1; int32_t L_3 = V_2; NullCheck(L_2); int32_t L_4 = L_3; Type_t * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); V_0 = L_5; Type_t * L_6 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeDescriptor_Refresh_m2947627068(NULL /*static, unused*/, L_6, /*hidden argument*/NULL); int32_t L_7 = V_2; V_2 = ((int32_t)((int32_t)L_7+(int32_t)1)); } IL_001c: { int32_t L_8 = V_2; TypeU5BU5D_t89919618* L_9 = V_1; NullCheck(L_9); if ((((int32_t)L_8) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length))))))) { goto IL_000e; } } { return; } } // System.Void System.ComponentModel.TypeDescriptor::Refresh(System.Reflection.Module) extern "C" void TypeDescriptor_Refresh_m1293552710 (RuntimeObject * __this /* static, unused */, Module_t364935609 * ___module0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_Refresh_m1293552710_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; TypeU5BU5D_t89919618* V_1 = NULL; int32_t V_2 = 0; { Module_t364935609 * L_0 = ___module0; NullCheck(L_0); TypeU5BU5D_t89919618* L_1 = VirtFuncInvoker0< TypeU5BU5D_t89919618* >::Invoke(11 /* System.Type[] System.Reflection.Module::GetTypes() */, L_0); V_1 = L_1; V_2 = 0; goto IL_001c; } IL_000e: { TypeU5BU5D_t89919618* L_2 = V_1; int32_t L_3 = V_2; NullCheck(L_2); int32_t L_4 = L_3; Type_t * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); V_0 = L_5; Type_t * L_6 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeDescriptor_Refresh_m2947627068(NULL /*static, unused*/, L_6, /*hidden argument*/NULL); int32_t L_7 = V_2; V_2 = ((int32_t)((int32_t)L_7+(int32_t)1)); } IL_001c: { int32_t L_8 = V_2; TypeU5BU5D_t89919618* L_9 = V_1; NullCheck(L_9); if ((((int32_t)L_8) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length))))))) { goto IL_000e; } } { return; } } // System.Void System.ComponentModel.TypeDescriptor::Refresh(System.Object) extern "C" void TypeDescriptor_Refresh_m2931561063 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___component0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_Refresh_m2931561063_MetadataUsageId); s_Il2CppMethodInitialized = true; } Hashtable_t448324601 * V_0 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Hashtable_t448324601 * L_0 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_componentTable_3(); V_0 = L_0; Hashtable_t448324601 * L_1 = V_0; Monitor_Enter_m1524383546(NULL /*static, unused*/, L_1, /*hidden argument*/NULL); } IL_000c: try { // begin try (depth: 1) IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Hashtable_t448324601 * L_2 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_componentTable_3(); RuntimeObject * L_3 = ___component0; NullCheck(L_2); VirtActionInvoker1< RuntimeObject * >::Invoke(37 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_2, L_3); IL2CPP_LEAVE(0x23, FINALLY_001c); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_001c; } FINALLY_001c: { // begin finally (depth: 1) Hashtable_t448324601 * L_4 = V_0; Monitor_Exit_m69827708(NULL /*static, unused*/, L_4, /*hidden argument*/NULL); IL2CPP_END_FINALLY(28) } // end finally (depth: 1) IL2CPP_CLEANUP(28) { IL2CPP_JUMP_TBL(0x23, IL_0023) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_0023: { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RefreshEventHandler_t3510407695 * L_5 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_Refreshed_11(); if (!L_5) { goto IL_003d; } } { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RefreshEventHandler_t3510407695 * L_6 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_Refreshed_11(); RuntimeObject * L_7 = ___component0; RefreshEventArgs_t632686523 * L_8 = (RefreshEventArgs_t632686523 *)il2cpp_codegen_object_new(RefreshEventArgs_t632686523_il2cpp_TypeInfo_var); RefreshEventArgs__ctor_m2983157069(L_8, L_7, /*hidden argument*/NULL); NullCheck(L_6); RefreshEventHandler_Invoke_m1530138922(L_6, L_8, /*hidden argument*/NULL); } IL_003d: { return; } } // System.Void System.ComponentModel.TypeDescriptor::Refresh(System.Type) extern "C" void TypeDescriptor_Refresh_m2947627068 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_Refresh_m2947627068_MetadataUsageId); s_Il2CppMethodInitialized = true; } Hashtable_t448324601 * V_0 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Hashtable_t448324601 * L_0 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_typeTable_4(); V_0 = L_0; Hashtable_t448324601 * L_1 = V_0; Monitor_Enter_m1524383546(NULL /*static, unused*/, L_1, /*hidden argument*/NULL); } IL_000c: try { // begin try (depth: 1) IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Hashtable_t448324601 * L_2 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_typeTable_4(); Type_t * L_3 = ___type0; NullCheck(L_2); VirtActionInvoker1< RuntimeObject * >::Invoke(37 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_2, L_3); IL2CPP_LEAVE(0x23, FINALLY_001c); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_001c; } FINALLY_001c: { // begin finally (depth: 1) Hashtable_t448324601 * L_4 = V_0; Monitor_Exit_m69827708(NULL /*static, unused*/, L_4, /*hidden argument*/NULL); IL2CPP_END_FINALLY(28) } // end finally (depth: 1) IL2CPP_CLEANUP(28) { IL2CPP_JUMP_TBL(0x23, IL_0023) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_0023: { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RefreshEventHandler_t3510407695 * L_5 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_Refreshed_11(); if (!L_5) { goto IL_003d; } } { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); RefreshEventHandler_t3510407695 * L_6 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_Refreshed_11(); Type_t * L_7 = ___type0; RefreshEventArgs_t632686523 * L_8 = (RefreshEventArgs_t632686523 *)il2cpp_codegen_object_new(RefreshEventArgs_t632686523_il2cpp_TypeInfo_var); RefreshEventArgs__ctor_m2829995138(L_8, L_7, /*hidden argument*/NULL); NullCheck(L_6); RefreshEventHandler_Invoke_m1530138922(L_6, L_8, /*hidden argument*/NULL); } IL_003d: { return; } } // System.Void System.ComponentModel.TypeDescriptor::OnComponentDisposed(System.Object,System.EventArgs) extern "C" void TypeDescriptor_OnComponentDisposed_m2067203398 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___sender0, EventArgs_t3326158294 * ___args1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_OnComponentDisposed_m2067203398_MetadataUsageId); s_Il2CppMethodInitialized = true; } Hashtable_t448324601 * V_0 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Hashtable_t448324601 * L_0 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_componentTable_3(); V_0 = L_0; Hashtable_t448324601 * L_1 = V_0; Monitor_Enter_m1524383546(NULL /*static, unused*/, L_1, /*hidden argument*/NULL); } IL_000c: try { // begin try (depth: 1) IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Hashtable_t448324601 * L_2 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_componentTable_3(); RuntimeObject * L_3 = ___sender0; NullCheck(L_2); VirtActionInvoker1< RuntimeObject * >::Invoke(37 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_2, L_3); IL2CPP_LEAVE(0x23, FINALLY_001c); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_001c; } FINALLY_001c: { // begin finally (depth: 1) Hashtable_t448324601 * L_4 = V_0; Monitor_Exit_m69827708(NULL /*static, unused*/, L_4, /*hidden argument*/NULL); IL2CPP_END_FINALLY(28) } // end finally (depth: 1) IL2CPP_CLEANUP(28) { IL2CPP_JUMP_TBL(0x23, IL_0023) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_0023: { return; } } // System.ComponentModel.ComponentInfo System.ComponentModel.TypeDescriptor::GetComponentInfo(System.ComponentModel.IComponent) extern "C" ComponentInfo_t3532183224 * TypeDescriptor_GetComponentInfo_m1529259269 (RuntimeObject * __this /* static, unused */, RuntimeObject* ___com0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetComponentInfo_m1529259269_MetadataUsageId); s_Il2CppMethodInitialized = true; } Hashtable_t448324601 * V_0 = NULL; ComponentInfo_t3532183224 * V_1 = NULL; ComponentInfo_t3532183224 * V_2 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Hashtable_t448324601 * L_0 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_componentTable_3(); V_0 = L_0; Hashtable_t448324601 * L_1 = V_0; Monitor_Enter_m1524383546(NULL /*static, unused*/, L_1, /*hidden argument*/NULL); } IL_000c: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Hashtable_t448324601 * L_2 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_componentTable_3(); RuntimeObject* L_3 = ___com0; NullCheck(L_2); RuntimeObject * L_4 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_2, L_3); V_1 = ((ComponentInfo_t3532183224 *)CastclassClass((RuntimeObject*)L_4, ComponentInfo_t3532183224_il2cpp_TypeInfo_var)); ComponentInfo_t3532183224 * L_5 = V_1; if (L_5) { goto IL_005c; } } IL_0023: { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); EventHandler_t1223794391 * L_6 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_onDispose_10(); if (L_6) { goto IL_003e; } } IL_002d: { intptr_t L_7 = (intptr_t)TypeDescriptor_OnComponentDisposed_m2067203398_RuntimeMethod_var; EventHandler_t1223794391 * L_8 = (EventHandler_t1223794391 *)il2cpp_codegen_object_new(EventHandler_t1223794391_il2cpp_TypeInfo_var); EventHandler__ctor_m1374350660(L_8, NULL, L_7, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->set_onDispose_10(L_8); } IL_003e: { RuntimeObject* L_9 = ___com0; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); EventHandler_t1223794391 * L_10 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_onDispose_10(); NullCheck(L_9); InterfaceActionInvoker1< EventHandler_t1223794391 * >::Invoke(0 /* System.Void System.ComponentModel.IComponent::add_Disposed(System.EventHandler) */, IComponent_t63236301_il2cpp_TypeInfo_var, L_9, L_10); RuntimeObject* L_11 = ___com0; ComponentInfo_t3532183224 * L_12 = (ComponentInfo_t3532183224 *)il2cpp_codegen_object_new(ComponentInfo_t3532183224_il2cpp_TypeInfo_var); ComponentInfo__ctor_m1873793124(L_12, L_11, /*hidden argument*/NULL); V_1 = L_12; Hashtable_t448324601 * L_13 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_componentTable_3(); RuntimeObject* L_14 = ___com0; ComponentInfo_t3532183224 * L_15 = V_1; NullCheck(L_13); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(31 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_13, L_14, L_15); } IL_005c: { ComponentInfo_t3532183224 * L_16 = V_1; V_2 = L_16; IL2CPP_LEAVE(0x6F, FINALLY_0068); } IL_0063: { ; // IL_0063: leave IL_006f } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_0068; } FINALLY_0068: { // begin finally (depth: 1) Hashtable_t448324601 * L_17 = V_0; Monitor_Exit_m69827708(NULL /*static, unused*/, L_17, /*hidden argument*/NULL); IL2CPP_END_FINALLY(104) } // end finally (depth: 1) IL2CPP_CLEANUP(104) { IL2CPP_JUMP_TBL(0x6F, IL_006f) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_006f: { ComponentInfo_t3532183224 * L_18 = V_2; return L_18; } } // System.ComponentModel.TypeInfo System.ComponentModel.TypeDescriptor::GetTypeInfo(System.Type) extern "C" TypeInfo_t2535999846 * TypeDescriptor_GetTypeInfo_m1821580626 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetTypeInfo_m1821580626_MetadataUsageId); s_Il2CppMethodInitialized = true; } Hashtable_t448324601 * V_0 = NULL; TypeInfo_t2535999846 * V_1 = NULL; TypeInfo_t2535999846 * V_2 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Hashtable_t448324601 * L_0 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_typeTable_4(); V_0 = L_0; Hashtable_t448324601 * L_1 = V_0; Monitor_Enter_m1524383546(NULL /*static, unused*/, L_1, /*hidden argument*/NULL); } IL_000c: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Hashtable_t448324601 * L_2 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_typeTable_4(); Type_t * L_3 = ___type0; NullCheck(L_2); RuntimeObject * L_4 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_2, L_3); V_1 = ((TypeInfo_t2535999846 *)CastclassClass((RuntimeObject*)L_4, TypeInfo_t2535999846_il2cpp_TypeInfo_var)); TypeInfo_t2535999846 * L_5 = V_1; if (L_5) { goto IL_0036; } } IL_0023: { Type_t * L_6 = ___type0; TypeInfo_t2535999846 * L_7 = (TypeInfo_t2535999846 *)il2cpp_codegen_object_new(TypeInfo_t2535999846_il2cpp_TypeInfo_var); TypeInfo__ctor_m2845478269(L_7, L_6, /*hidden argument*/NULL); V_1 = L_7; IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); Hashtable_t448324601 * L_8 = ((TypeDescriptor_t4022761028_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var))->get_typeTable_4(); Type_t * L_9 = ___type0; TypeInfo_t2535999846 * L_10 = V_1; NullCheck(L_8); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(31 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_8, L_9, L_10); } IL_0036: { TypeInfo_t2535999846 * L_11 = V_1; V_2 = L_11; IL2CPP_LEAVE(0x49, FINALLY_0042); } IL_003d: { ; // IL_003d: leave IL_0049 } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_0042; } FINALLY_0042: { // begin finally (depth: 1) Hashtable_t448324601 * L_12 = V_0; Monitor_Exit_m69827708(NULL /*static, unused*/, L_12, /*hidden argument*/NULL); IL2CPP_END_FINALLY(66) } // end finally (depth: 1) IL2CPP_CLEANUP(66) { IL2CPP_JUMP_TBL(0x49, IL_0049) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_0049: { TypeInfo_t2535999846 * L_13 = V_2; return L_13; } } // System.Type System.ComponentModel.TypeDescriptor::GetTypeFromName(System.ComponentModel.IComponent,System.String) extern "C" Type_t * TypeDescriptor_GetTypeFromName_m4158908695 (RuntimeObject * __this /* static, unused */, RuntimeObject* ___component0, String_t* ___typeName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeDescriptor_GetTypeFromName_m4158908695_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; RuntimeObject* V_1 = NULL; { V_0 = (Type_t *)NULL; RuntimeObject* L_0 = ___component0; if (!L_0) { goto IL_003c; } } { RuntimeObject* L_1 = ___component0; NullCheck(L_1); RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t63236301_il2cpp_TypeInfo_var, L_1); if (!L_2) { goto IL_003c; } } { RuntimeObject* L_3 = ___component0; NullCheck(L_3); RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t63236301_il2cpp_TypeInfo_var, L_3); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(ITypeResolutionService_t884935283_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_4); RuntimeObject * L_6 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4067527398_il2cpp_TypeInfo_var, L_4, L_5); V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_6, ITypeResolutionService_t884935283_il2cpp_TypeInfo_var)); RuntimeObject* L_7 = V_1; if (!L_7) { goto IL_003c; } } { RuntimeObject* L_8 = V_1; String_t* L_9 = ___typeName1; NullCheck(L_8); Type_t * L_10 = InterfaceFuncInvoker1< Type_t *, String_t* >::Invoke(0 /* System.Type System.ComponentModel.Design.ITypeResolutionService::GetType(System.String) */, ITypeResolutionService_t884935283_il2cpp_TypeInfo_var, L_8, L_9); V_0 = L_10; } IL_003c: { Type_t * L_11 = V_0; if (L_11) { goto IL_0049; } } { String_t* L_12 = ___typeName1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_13 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_m3930427402, L_12, "System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"); V_0 = L_13; } IL_0049: { Type_t * L_14 = V_0; return L_14; } } // System.Void System.ComponentModel.TypeDescriptor/AttributeProvider::.ctor(System.Attribute[],System.ComponentModel.TypeDescriptionProvider) extern "C" void AttributeProvider__ctor_m1120275715 (AttributeProvider_t4079053818 * __this, AttributeU5BU5D_t187261448* ___attributes0, TypeDescriptionProvider_t4220413402 * ___parent1, const RuntimeMethod* method) { { TypeDescriptionProvider_t4220413402 * L_0 = ___parent1; TypeDescriptionProvider__ctor_m4181401345(__this, L_0, /*hidden argument*/NULL); AttributeU5BU5D_t187261448* L_1 = ___attributes0; __this->set_attributes_2(L_1); return; } } // System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptor/AttributeProvider::GetTypeDescriptor(System.Type,System.Object) extern "C" RuntimeObject* AttributeProvider_GetTypeDescriptor_m2305897530 (AttributeProvider_t4079053818 * __this, Type_t * ___type0, RuntimeObject * ___instance1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AttributeProvider_GetTypeDescriptor_m2305897530_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___type0; RuntimeObject * L_1 = ___instance1; RuntimeObject* L_2 = TypeDescriptionProvider_GetTypeDescriptor_m3076123750(__this, L_0, L_1, /*hidden argument*/NULL); AttributeU5BU5D_t187261448* L_3 = __this->get_attributes_2(); AttributeTypeDescriptor_t1580723392 * L_4 = (AttributeTypeDescriptor_t1580723392 *)il2cpp_codegen_object_new(AttributeTypeDescriptor_t1580723392_il2cpp_TypeInfo_var); AttributeTypeDescriptor__ctor_m1639046417(L_4, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Void System.ComponentModel.TypeDescriptor/AttributeProvider/AttributeTypeDescriptor::.ctor(System.ComponentModel.ICustomTypeDescriptor,System.Attribute[]) extern "C" void AttributeTypeDescriptor__ctor_m1639046417 (AttributeTypeDescriptor_t1580723392 * __this, RuntimeObject* ___parent0, AttributeU5BU5D_t187261448* ___attributes1, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___parent0; CustomTypeDescriptor__ctor_m416000688(__this, L_0, /*hidden argument*/NULL); AttributeU5BU5D_t187261448* L_1 = ___attributes1; __this->set_attributes_1(L_1); return; } } // System.ComponentModel.AttributeCollection System.ComponentModel.TypeDescriptor/AttributeProvider/AttributeTypeDescriptor::GetAttributes() extern "C" AttributeCollection_t3634739288 * AttributeTypeDescriptor_GetAttributes_m3403524333 (AttributeTypeDescriptor_t1580723392 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AttributeTypeDescriptor_GetAttributes_m3403524333_MetadataUsageId); s_Il2CppMethodInitialized = true; } AttributeCollection_t3634739288 * V_0 = NULL; { AttributeCollection_t3634739288 * L_0 = CustomTypeDescriptor_GetAttributes_m1616513161(__this, /*hidden argument*/NULL); V_0 = L_0; AttributeCollection_t3634739288 * L_1 = V_0; if (!L_1) { goto IL_0026; } } { AttributeCollection_t3634739288 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = AttributeCollection_get_Count_m3209680082(L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) <= ((int32_t)0))) { goto IL_0026; } } { AttributeCollection_t3634739288 * L_4 = V_0; AttributeU5BU5D_t187261448* L_5 = __this->get_attributes_1(); IL2CPP_RUNTIME_CLASS_INIT(AttributeCollection_t3634739288_il2cpp_TypeInfo_var); AttributeCollection_t3634739288 * L_6 = AttributeCollection_FromExisting_m2649688489(NULL /*static, unused*/, L_4, L_5, /*hidden argument*/NULL); return L_6; } IL_0026: { AttributeU5BU5D_t187261448* L_7 = __this->get_attributes_1(); AttributeCollection_t3634739288 * L_8 = (AttributeCollection_t3634739288 *)il2cpp_codegen_object_new(AttributeCollection_t3634739288_il2cpp_TypeInfo_var); AttributeCollection__ctor_m1505974831(L_8, L_7, /*hidden argument*/NULL); return L_8; } } // System.Void System.ComponentModel.TypeDescriptor/DefaultTypeDescriptionProvider::.ctor() extern "C" void DefaultTypeDescriptionProvider__ctor_m30009566 (DefaultTypeDescriptionProvider_t2206660091 * __this, const RuntimeMethod* method) { { TypeDescriptionProvider__ctor_m1179016195(__this, /*hidden argument*/NULL); return; } } // System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptor/DefaultTypeDescriptionProvider::GetExtendedTypeDescriptor(System.Object) extern "C" RuntimeObject* DefaultTypeDescriptionProvider_GetExtendedTypeDescriptor_m2355966551 (DefaultTypeDescriptionProvider_t2206660091 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultTypeDescriptionProvider_GetExtendedTypeDescriptor_m2355966551_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___instance0; DefaultTypeDescriptor_t772231057 * L_1 = (DefaultTypeDescriptor_t772231057 *)il2cpp_codegen_object_new(DefaultTypeDescriptor_t772231057_il2cpp_TypeInfo_var); DefaultTypeDescriptor__ctor_m3086738070(L_1, __this, (Type_t *)NULL, L_0, /*hidden argument*/NULL); return L_1; } } // System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptor/DefaultTypeDescriptionProvider::GetTypeDescriptor(System.Type,System.Object) extern "C" RuntimeObject* DefaultTypeDescriptionProvider_GetTypeDescriptor_m3479117381 (DefaultTypeDescriptionProvider_t2206660091 * __this, Type_t * ___objectType0, RuntimeObject * ___instance1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultTypeDescriptionProvider_GetTypeDescriptor_m3479117381_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___objectType0; RuntimeObject * L_1 = ___instance1; DefaultTypeDescriptor_t772231057 * L_2 = (DefaultTypeDescriptor_t772231057 *)il2cpp_codegen_object_new(DefaultTypeDescriptor_t772231057_il2cpp_TypeInfo_var); DefaultTypeDescriptor__ctor_m3086738070(L_2, __this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Void System.ComponentModel.TypeDescriptor/DefaultTypeDescriptor::.ctor(System.ComponentModel.TypeDescriptionProvider,System.Type,System.Object) extern "C" void DefaultTypeDescriptor__ctor_m3086738070 (DefaultTypeDescriptor_t772231057 * __this, TypeDescriptionProvider_t4220413402 * ___owner0, Type_t * ___objectType1, RuntimeObject * ___instance2, const RuntimeMethod* method) { { CustomTypeDescriptor__ctor_m1414500274(__this, /*hidden argument*/NULL); TypeDescriptionProvider_t4220413402 * L_0 = ___owner0; __this->set_owner_1(L_0); Type_t * L_1 = ___objectType1; __this->set_objectType_2(L_1); RuntimeObject * L_2 = ___instance2; __this->set_instance_3(L_2); return; } } // System.ComponentModel.AttributeCollection System.ComponentModel.TypeDescriptor/DefaultTypeDescriptor::GetAttributes() extern "C" AttributeCollection_t3634739288 * DefaultTypeDescriptor_GetAttributes_m2071944542 (DefaultTypeDescriptor_t772231057 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultTypeDescriptor_GetAttributes_m2071944542_MetadataUsageId); s_Il2CppMethodInitialized = true; } WrappedTypeDescriptionProvider_t340192907 * V_0 = NULL; { TypeDescriptionProvider_t4220413402 * L_0 = __this->get_owner_1(); V_0 = ((WrappedTypeDescriptionProvider_t340192907 *)IsInstSealed((RuntimeObject*)L_0, WrappedTypeDescriptionProvider_t340192907_il2cpp_TypeInfo_var)); WrappedTypeDescriptionProvider_t340192907 * L_1 = V_0; if (!L_1) { goto IL_002f; } } { WrappedTypeDescriptionProvider_t340192907 * L_2 = V_0; NullCheck(L_2); TypeDescriptionProvider_t4220413402 * L_3 = WrappedTypeDescriptionProvider_get_Wrapped_m2592708047(L_2, /*hidden argument*/NULL); Type_t * L_4 = __this->get_objectType_2(); RuntimeObject * L_5 = __this->get_instance_3(); NullCheck(L_3); RuntimeObject* L_6 = VirtFuncInvoker2< RuntimeObject*, Type_t *, RuntimeObject * >::Invoke(9 /* System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Type,System.Object) */, L_3, L_4, L_5); NullCheck(L_6); AttributeCollection_t3634739288 * L_7 = InterfaceFuncInvoker0< AttributeCollection_t3634739288 * >::Invoke(0 /* System.ComponentModel.AttributeCollection System.ComponentModel.ICustomTypeDescriptor::GetAttributes() */, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var, L_6); return L_7; } IL_002f: { RuntimeObject * L_8 = __this->get_instance_3(); if (!L_8) { goto IL_0047; } } { RuntimeObject * L_9 = __this->get_instance_3(); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); AttributeCollection_t3634739288 * L_10 = TypeDescriptor_GetAttributes_m2157745829(NULL /*static, unused*/, L_9, (bool)0, /*hidden argument*/NULL); return L_10; } IL_0047: { Type_t * L_11 = __this->get_objectType_2(); if (!L_11) { goto IL_0063; } } { Type_t * L_12 = __this->get_objectType_2(); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeInfo_t2535999846 * L_13 = TypeDescriptor_GetTypeInfo_m1821580626(NULL /*static, unused*/, L_12, /*hidden argument*/NULL); NullCheck(L_13); AttributeCollection_t3634739288 * L_14 = VirtFuncInvoker0< AttributeCollection_t3634739288 * >::Invoke(4 /* System.ComponentModel.AttributeCollection System.ComponentModel.TypeInfo::GetAttributes() */, L_13); return L_14; } IL_0063: { AttributeCollection_t3634739288 * L_15 = CustomTypeDescriptor_GetAttributes_m1616513161(__this, /*hidden argument*/NULL); return L_15; } } // System.String System.ComponentModel.TypeDescriptor/DefaultTypeDescriptor::GetClassName() extern "C" String_t* DefaultTypeDescriptor_GetClassName_m1439595607 (DefaultTypeDescriptor_t772231057 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultTypeDescriptor_GetClassName_m1439595607_MetadataUsageId); s_Il2CppMethodInitialized = true; } WrappedTypeDescriptionProvider_t340192907 * V_0 = NULL; { TypeDescriptionProvider_t4220413402 * L_0 = __this->get_owner_1(); V_0 = ((WrappedTypeDescriptionProvider_t340192907 *)IsInstSealed((RuntimeObject*)L_0, WrappedTypeDescriptionProvider_t340192907_il2cpp_TypeInfo_var)); WrappedTypeDescriptionProvider_t340192907 * L_1 = V_0; if (!L_1) { goto IL_002f; } } { WrappedTypeDescriptionProvider_t340192907 * L_2 = V_0; NullCheck(L_2); TypeDescriptionProvider_t4220413402 * L_3 = WrappedTypeDescriptionProvider_get_Wrapped_m2592708047(L_2, /*hidden argument*/NULL); Type_t * L_4 = __this->get_objectType_2(); RuntimeObject * L_5 = __this->get_instance_3(); NullCheck(L_3); RuntimeObject* L_6 = VirtFuncInvoker2< RuntimeObject*, Type_t *, RuntimeObject * >::Invoke(9 /* System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Type,System.Object) */, L_3, L_4, L_5); NullCheck(L_6); String_t* L_7 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String System.ComponentModel.ICustomTypeDescriptor::GetClassName() */, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var, L_6); return L_7; } IL_002f: { String_t* L_8 = CustomTypeDescriptor_GetClassName_m2861940726(__this, /*hidden argument*/NULL); return L_8; } } // System.ComponentModel.PropertyDescriptor System.ComponentModel.TypeDescriptor/DefaultTypeDescriptor::GetDefaultProperty() extern "C" PropertyDescriptor_t2555988069 * DefaultTypeDescriptor_GetDefaultProperty_m340132773 (DefaultTypeDescriptor_t772231057 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultTypeDescriptor_GetDefaultProperty_m340132773_MetadataUsageId); s_Il2CppMethodInitialized = true; } WrappedTypeDescriptionProvider_t340192907 * V_0 = NULL; PropertyDescriptor_t2555988069 * V_1 = NULL; { TypeDescriptionProvider_t4220413402 * L_0 = __this->get_owner_1(); V_0 = ((WrappedTypeDescriptionProvider_t340192907 *)IsInstSealed((RuntimeObject*)L_0, WrappedTypeDescriptionProvider_t340192907_il2cpp_TypeInfo_var)); WrappedTypeDescriptionProvider_t340192907 * L_1 = V_0; if (!L_1) { goto IL_002f; } } { WrappedTypeDescriptionProvider_t340192907 * L_2 = V_0; NullCheck(L_2); TypeDescriptionProvider_t4220413402 * L_3 = WrappedTypeDescriptionProvider_get_Wrapped_m2592708047(L_2, /*hidden argument*/NULL); Type_t * L_4 = __this->get_objectType_2(); RuntimeObject * L_5 = __this->get_instance_3(); NullCheck(L_3); RuntimeObject* L_6 = VirtFuncInvoker2< RuntimeObject*, Type_t *, RuntimeObject * >::Invoke(9 /* System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Type,System.Object) */, L_3, L_4, L_5); NullCheck(L_6); PropertyDescriptor_t2555988069 * L_7 = InterfaceFuncInvoker0< PropertyDescriptor_t2555988069 * >::Invoke(5 /* System.ComponentModel.PropertyDescriptor System.ComponentModel.ICustomTypeDescriptor::GetDefaultProperty() */, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var, L_6); return L_7; } IL_002f: { Type_t * L_8 = __this->get_objectType_2(); if (!L_8) { goto IL_0050; } } { Type_t * L_9 = __this->get_objectType_2(); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeInfo_t2535999846 * L_10 = TypeDescriptor_GetTypeInfo_m1821580626(NULL /*static, unused*/, L_9, /*hidden argument*/NULL); NullCheck(L_10); PropertyDescriptor_t2555988069 * L_11 = Info_GetDefaultProperty_m402073838(L_10, /*hidden argument*/NULL); V_1 = L_11; goto IL_007d; } IL_0050: { RuntimeObject * L_12 = __this->get_instance_3(); if (!L_12) { goto IL_0076; } } { RuntimeObject * L_13 = __this->get_instance_3(); NullCheck(L_13); Type_t * L_14 = Object_GetType_m1134229006(L_13, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeInfo_t2535999846 * L_15 = TypeDescriptor_GetTypeInfo_m1821580626(NULL /*static, unused*/, L_14, /*hidden argument*/NULL); NullCheck(L_15); PropertyDescriptor_t2555988069 * L_16 = Info_GetDefaultProperty_m402073838(L_15, /*hidden argument*/NULL); V_1 = L_16; goto IL_007d; } IL_0076: { PropertyDescriptor_t2555988069 * L_17 = CustomTypeDescriptor_GetDefaultProperty_m764382202(__this, /*hidden argument*/NULL); V_1 = L_17; } IL_007d: { PropertyDescriptor_t2555988069 * L_18 = V_1; return L_18; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor/DefaultTypeDescriptor::GetProperties() extern "C" PropertyDescriptorCollection_t2982717747 * DefaultTypeDescriptor_GetProperties_m2276003766 (DefaultTypeDescriptor_t772231057 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultTypeDescriptor_GetProperties_m2276003766_MetadataUsageId); s_Il2CppMethodInitialized = true; } WrappedTypeDescriptionProvider_t340192907 * V_0 = NULL; { TypeDescriptionProvider_t4220413402 * L_0 = __this->get_owner_1(); V_0 = ((WrappedTypeDescriptionProvider_t340192907 *)IsInstSealed((RuntimeObject*)L_0, WrappedTypeDescriptionProvider_t340192907_il2cpp_TypeInfo_var)); WrappedTypeDescriptionProvider_t340192907 * L_1 = V_0; if (!L_1) { goto IL_002f; } } { WrappedTypeDescriptionProvider_t340192907 * L_2 = V_0; NullCheck(L_2); TypeDescriptionProvider_t4220413402 * L_3 = WrappedTypeDescriptionProvider_get_Wrapped_m2592708047(L_2, /*hidden argument*/NULL); Type_t * L_4 = __this->get_objectType_2(); RuntimeObject * L_5 = __this->get_instance_3(); NullCheck(L_3); RuntimeObject* L_6 = VirtFuncInvoker2< RuntimeObject*, Type_t *, RuntimeObject * >::Invoke(9 /* System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Type,System.Object) */, L_3, L_4, L_5); NullCheck(L_6); PropertyDescriptorCollection_t2982717747 * L_7 = InterfaceFuncInvoker0< PropertyDescriptorCollection_t2982717747 * >::Invoke(9 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor::GetProperties() */, ICustomTypeDescriptor_t1470219817_il2cpp_TypeInfo_var, L_6); return L_7; } IL_002f: { RuntimeObject * L_8 = __this->get_instance_3(); if (!L_8) { goto IL_0048; } } { RuntimeObject * L_9 = __this->get_instance_3(); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); PropertyDescriptorCollection_t2982717747 * L_10 = TypeDescriptor_GetProperties_m2048219527(NULL /*static, unused*/, L_9, (AttributeU5BU5D_t187261448*)(AttributeU5BU5D_t187261448*)NULL, (bool)0, /*hidden argument*/NULL); return L_10; } IL_0048: { Type_t * L_11 = __this->get_objectType_2(); if (!L_11) { goto IL_0065; } } { Type_t * L_12 = __this->get_objectType_2(); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t4022761028_il2cpp_TypeInfo_var); TypeInfo_t2535999846 * L_13 = TypeDescriptor_GetTypeInfo_m1821580626(NULL /*static, unused*/, L_12, /*hidden argument*/NULL); NullCheck(L_13); PropertyDescriptorCollection_t2982717747 * L_14 = Info_GetProperties_m3122816418(L_13, (AttributeU5BU5D_t187261448*)(AttributeU5BU5D_t187261448*)NULL, /*hidden argument*/NULL); return L_14; } IL_0065: { PropertyDescriptorCollection_t2982717747 * L_15 = CustomTypeDescriptor_GetProperties_m4097309576(__this, /*hidden argument*/NULL); return L_15; } } // System.Void System.ComponentModel.TypeDescriptor/WrappedTypeDescriptionProvider::.ctor(System.ComponentModel.TypeDescriptionProvider) extern "C" void WrappedTypeDescriptionProvider__ctor_m2033595495 (WrappedTypeDescriptionProvider_t340192907 * __this, TypeDescriptionProvider_t4220413402 * ___wrapped0, const RuntimeMethod* method) { { TypeDescriptionProvider__ctor_m1179016195(__this, /*hidden argument*/NULL); TypeDescriptionProvider_t4220413402 * L_0 = ___wrapped0; WrappedTypeDescriptionProvider_set_Wrapped_m2908134787(__this, L_0, /*hidden argument*/NULL); return; } } // System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptor/WrappedTypeDescriptionProvider::get_Wrapped() extern "C" TypeDescriptionProvider_t4220413402 * WrappedTypeDescriptionProvider_get_Wrapped_m2592708047 (WrappedTypeDescriptionProvider_t340192907 * __this, const RuntimeMethod* method) { { TypeDescriptionProvider_t4220413402 * L_0 = __this->get_U3CWrappedU3Ek__BackingField_2(); return L_0; } } // System.Void System.ComponentModel.TypeDescriptor/WrappedTypeDescriptionProvider::set_Wrapped(System.ComponentModel.TypeDescriptionProvider) extern "C" void WrappedTypeDescriptionProvider_set_Wrapped_m2908134787 (WrappedTypeDescriptionProvider_t340192907 * __this, TypeDescriptionProvider_t4220413402 * ___value0, const RuntimeMethod* method) { { TypeDescriptionProvider_t4220413402 * L_0 = ___value0; __this->set_U3CWrappedU3Ek__BackingField_2(L_0); return; } } // System.Object System.ComponentModel.TypeDescriptor/WrappedTypeDescriptionProvider::CreateInstance(System.IServiceProvider,System.Type,System.Type[],System.Object[]) extern "C" RuntimeObject * WrappedTypeDescriptionProvider_CreateInstance_m984939621 (WrappedTypeDescriptionProvider_t340192907 * __this, RuntimeObject* ___provider0, Type_t * ___objectType1, TypeU5BU5D_t89919618* ___argTypes2, ObjectU5BU5D_t4199014551* ___args3, const RuntimeMethod* method) { TypeDescriptionProvider_t4220413402 * V_0 = NULL; { TypeDescriptionProvider_t4220413402 * L_0 = WrappedTypeDescriptionProvider_get_Wrapped_m2592708047(__this, /*hidden argument*/NULL); V_0 = L_0; TypeDescriptionProvider_t4220413402 * L_1 = V_0; if (L_1) { goto IL_0019; } } { RuntimeObject* L_2 = ___provider0; Type_t * L_3 = ___objectType1; TypeU5BU5D_t89919618* L_4 = ___argTypes2; ObjectU5BU5D_t4199014551* L_5 = ___args3; RuntimeObject * L_6 = TypeDescriptionProvider_CreateInstance_m48832699(__this, L_2, L_3, L_4, L_5, /*hidden argument*/NULL); return L_6; } IL_0019: { TypeDescriptionProvider_t4220413402 * L_7 = V_0; RuntimeObject* L_8 = ___provider0; Type_t * L_9 = ___objectType1; TypeU5BU5D_t89919618* L_10 = ___argTypes2; ObjectU5BU5D_t4199014551* L_11 = ___args3; NullCheck(L_7); RuntimeObject * L_12 = VirtFuncInvoker4< RuntimeObject *, RuntimeObject*, Type_t *, TypeU5BU5D_t89919618*, ObjectU5BU5D_t4199014551* >::Invoke(4 /* System.Object System.ComponentModel.TypeDescriptionProvider::CreateInstance(System.IServiceProvider,System.Type,System.Type[],System.Object[]) */, L_7, L_8, L_9, L_10, L_11); return L_12; } } // System.Collections.IDictionary System.ComponentModel.TypeDescriptor/WrappedTypeDescriptionProvider::GetCache(System.Object) extern "C" RuntimeObject* WrappedTypeDescriptionProvider_GetCache_m1804840960 (WrappedTypeDescriptionProvider_t340192907 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method) { TypeDescriptionProvider_t4220413402 * V_0 = NULL; { TypeDescriptionProvider_t4220413402 * L_0 = WrappedTypeDescriptionProvider_get_Wrapped_m2592708047(__this, /*hidden argument*/NULL); V_0 = L_0; TypeDescriptionProvider_t4220413402 * L_1 = V_0; if (L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___instance0; RuntimeObject* L_3 = TypeDescriptionProvider_GetCache_m2663141428(__this, L_2, /*hidden argument*/NULL); return L_3; } IL_0015: { TypeDescriptionProvider_t4220413402 * L_4 = V_0; RuntimeObject * L_5 = ___instance0; NullCheck(L_4); RuntimeObject* L_6 = VirtFuncInvoker1< RuntimeObject*, RuntimeObject * >::Invoke(5 /* System.Collections.IDictionary System.ComponentModel.TypeDescriptionProvider::GetCache(System.Object) */, L_4, L_5); return L_6; } } // System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptor/WrappedTypeDescriptionProvider::GetExtendedTypeDescriptor(System.Object) extern "C" RuntimeObject* WrappedTypeDescriptionProvider_GetExtendedTypeDescriptor_m221147950 (WrappedTypeDescriptionProvider_t340192907 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WrappedTypeDescriptionProvider_GetExtendedTypeDescriptor_m221147950_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___instance0; DefaultTypeDescriptor_t772231057 * L_1 = (DefaultTypeDescriptor_t772231057 *)il2cpp_codegen_object_new(DefaultTypeDescriptor_t772231057_il2cpp_TypeInfo_var); DefaultTypeDescriptor__ctor_m3086738070(L_1, __this, (Type_t *)NULL, L_0, /*hidden argument*/NULL); return L_1; } } // System.String System.ComponentModel.TypeDescriptor/WrappedTypeDescriptionProvider::GetFullComponentName(System.Object) extern "C" String_t* WrappedTypeDescriptionProvider_GetFullComponentName_m4179813088 (WrappedTypeDescriptionProvider_t340192907 * __this, RuntimeObject * ___component0, const RuntimeMethod* method) { TypeDescriptionProvider_t4220413402 * V_0 = NULL; { TypeDescriptionProvider_t4220413402 * L_0 = WrappedTypeDescriptionProvider_get_Wrapped_m2592708047(__this, /*hidden argument*/NULL); V_0 = L_0; TypeDescriptionProvider_t4220413402 * L_1 = V_0; if (L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___component0; String_t* L_3 = TypeDescriptionProvider_GetFullComponentName_m1778673754(__this, L_2, /*hidden argument*/NULL); return L_3; } IL_0015: { TypeDescriptionProvider_t4220413402 * L_4 = V_0; RuntimeObject * L_5 = ___component0; NullCheck(L_4); String_t* L_6 = VirtFuncInvoker1< String_t*, RuntimeObject * >::Invoke(7 /* System.String System.ComponentModel.TypeDescriptionProvider::GetFullComponentName(System.Object) */, L_4, L_5); return L_6; } } // System.Type System.ComponentModel.TypeDescriptor/WrappedTypeDescriptionProvider::GetReflectionType(System.Type,System.Object) extern "C" Type_t * WrappedTypeDescriptionProvider_GetReflectionType_m2608195000 (WrappedTypeDescriptionProvider_t340192907 * __this, Type_t * ___type0, RuntimeObject * ___instance1, const RuntimeMethod* method) { TypeDescriptionProvider_t4220413402 * V_0 = NULL; { TypeDescriptionProvider_t4220413402 * L_0 = WrappedTypeDescriptionProvider_get_Wrapped_m2592708047(__this, /*hidden argument*/NULL); V_0 = L_0; TypeDescriptionProvider_t4220413402 * L_1 = V_0; if (L_1) { goto IL_0016; } } { Type_t * L_2 = ___type0; RuntimeObject * L_3 = ___instance1; Type_t * L_4 = TypeDescriptionProvider_GetReflectionType_m1277652757(__this, L_2, L_3, /*hidden argument*/NULL); return L_4; } IL_0016: { TypeDescriptionProvider_t4220413402 * L_5 = V_0; Type_t * L_6 = ___type0; RuntimeObject * L_7 = ___instance1; NullCheck(L_5); Type_t * L_8 = VirtFuncInvoker2< Type_t *, Type_t *, RuntimeObject * >::Invoke(8 /* System.Type System.ComponentModel.TypeDescriptionProvider::GetReflectionType(System.Type,System.Object) */, L_5, L_6, L_7); return L_8; } } // System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptor/WrappedTypeDescriptionProvider::GetTypeDescriptor(System.Type,System.Object) extern "C" RuntimeObject* WrappedTypeDescriptionProvider_GetTypeDescriptor_m856238628 (WrappedTypeDescriptionProvider_t340192907 * __this, Type_t * ___objectType0, RuntimeObject * ___instance1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WrappedTypeDescriptionProvider_GetTypeDescriptor_m856238628_MetadataUsageId); s_Il2CppMethodInitialized = true; } TypeDescriptionProvider_t4220413402 * V_0 = NULL; { TypeDescriptionProvider_t4220413402 * L_0 = WrappedTypeDescriptionProvider_get_Wrapped_m2592708047(__this, /*hidden argument*/NULL); V_0 = L_0; TypeDescriptionProvider_t4220413402 * L_1 = V_0; if (L_1) { goto IL_0016; } } { Type_t * L_2 = ___objectType0; RuntimeObject * L_3 = ___instance1; DefaultTypeDescriptor_t772231057 * L_4 = (DefaultTypeDescriptor_t772231057 *)il2cpp_codegen_object_new(DefaultTypeDescriptor_t772231057_il2cpp_TypeInfo_var); DefaultTypeDescriptor__ctor_m3086738070(L_4, __this, L_2, L_3, /*hidden argument*/NULL); return L_4; } IL_0016: { TypeDescriptionProvider_t4220413402 * L_5 = V_0; Type_t * L_6 = ___objectType0; RuntimeObject * L_7 = ___instance1; NullCheck(L_5); RuntimeObject* L_8 = VirtFuncInvoker2< RuntimeObject*, Type_t *, RuntimeObject * >::Invoke(9 /* System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Type,System.Object) */, L_5, L_6, L_7); return L_8; } } // System.Void System.ComponentModel.TypeInfo::.ctor(System.Type) extern "C" void TypeInfo__ctor_m2845478269 (TypeInfo_t2535999846 * __this, Type_t * ___t0, const RuntimeMethod* method) { { Type_t * L_0 = ___t0; Info__ctor_m2848147448(__this, L_0, /*hidden argument*/NULL); return; } } // System.ComponentModel.AttributeCollection System.ComponentModel.TypeInfo::GetAttributes() extern "C" AttributeCollection_t3634739288 * TypeInfo_GetAttributes_m758837319 (TypeInfo_t2535999846 * __this, const RuntimeMethod* method) { { AttributeCollection_t3634739288 * L_0 = Info_GetAttributes_m4073515494(__this, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_0; } } // System.ComponentModel.EventDescriptorCollection System.ComponentModel.TypeInfo::GetEvents() extern "C" EventDescriptorCollection_t3861329784 * TypeInfo_GetEvents_m3818104159 (TypeInfo_t2535999846 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeInfo_GetEvents_m3818104159_MetadataUsageId); s_Il2CppMethodInitialized = true; } EventInfoU5BU5D_t4034732639* V_0 = NULL; EventDescriptorU5BU5D_t1417302411* V_1 = NULL; int32_t V_2 = 0; { EventDescriptorCollection_t3861329784 * L_0 = __this->get__events_6(); if (!L_0) { goto IL_0012; } } { EventDescriptorCollection_t3861329784 * L_1 = __this->get__events_6(); return L_1; } IL_0012: { Type_t * L_2 = Info_get_InfoType_m2206070527(__this, /*hidden argument*/NULL); NullCheck(L_2); EventInfoU5BU5D_t4034732639* L_3 = VirtFuncInvoker0< EventInfoU5BU5D_t4034732639* >::Invoke(47 /* System.Reflection.EventInfo[] System.Type::GetEvents() */, L_2); V_0 = L_3; EventInfoU5BU5D_t4034732639* L_4 = V_0; NullCheck(L_4); V_1 = ((EventDescriptorU5BU5D_t1417302411*)SZArrayNew(EventDescriptorU5BU5D_t1417302411_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length)))))); V_2 = 0; goto IL_003d; } IL_002e: { EventDescriptorU5BU5D_t1417302411* L_5 = V_1; int32_t L_6 = V_2; EventInfoU5BU5D_t4034732639* L_7 = V_0; int32_t L_8 = V_2; NullCheck(L_7); int32_t L_9 = L_8; EventInfo_t * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); ReflectionEventDescriptor_t4023907121 * L_11 = (ReflectionEventDescriptor_t4023907121 *)il2cpp_codegen_object_new(ReflectionEventDescriptor_t4023907121_il2cpp_TypeInfo_var); ReflectionEventDescriptor__ctor_m467625783(L_11, L_10, /*hidden argument*/NULL); NullCheck(L_5); ArrayElementTypeCheck (L_5, L_11); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (EventDescriptor_t3701426622 *)L_11); int32_t L_12 = V_2; V_2 = ((int32_t)((int32_t)L_12+(int32_t)1)); } IL_003d: { int32_t L_13 = V_2; EventInfoU5BU5D_t4034732639* L_14 = V_0; NullCheck(L_14); if ((((int32_t)L_13) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))))) { goto IL_002e; } } { EventDescriptorU5BU5D_t1417302411* L_15 = V_1; EventDescriptorCollection_t3861329784 * L_16 = (EventDescriptorCollection_t3861329784 *)il2cpp_codegen_object_new(EventDescriptorCollection_t3861329784_il2cpp_TypeInfo_var); EventDescriptorCollection__ctor_m1869792367(L_16, L_15, /*hidden argument*/NULL); __this->set__events_6(L_16); EventDescriptorCollection_t3861329784 * L_17 = __this->get__events_6(); return L_17; } } // System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeInfo::GetProperties() extern "C" PropertyDescriptorCollection_t2982717747 * TypeInfo_GetProperties_m3931154491 (TypeInfo_t2535999846 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeInfo_GetProperties_m3931154491_MetadataUsageId); s_Il2CppMethodInitialized = true; } Hashtable_t448324601 * V_0 = NULL; ArrayList_t4277734320 * V_1 = NULL; Type_t * V_2 = NULL; PropertyInfoU5BU5D_t411061045* V_3 = NULL; PropertyInfo_t * V_4 = NULL; PropertyInfoU5BU5D_t411061045* V_5 = NULL; int32_t V_6 = 0; { PropertyDescriptorCollection_t2982717747 * L_0 = __this->get__properties_7(); if (!L_0) { goto IL_0012; } } { PropertyDescriptorCollection_t2982717747 * L_1 = __this->get__properties_7(); return L_1; } IL_0012: { Hashtable_t448324601 * L_2 = (Hashtable_t448324601 *)il2cpp_codegen_object_new(Hashtable_t448324601_il2cpp_TypeInfo_var); Hashtable__ctor_m4203419798(L_2, /*hidden argument*/NULL); V_0 = L_2; ArrayList_t4277734320 * L_3 = (ArrayList_t4277734320 *)il2cpp_codegen_object_new(ArrayList_t4277734320_il2cpp_TypeInfo_var); ArrayList__ctor_m3769859358(L_3, /*hidden argument*/NULL); V_1 = L_3; Type_t * L_4 = Info_get_InfoType_m2206070527(__this, /*hidden argument*/NULL); V_2 = L_4; goto IL_00a5; } IL_002a: { Type_t * L_5 = V_2; NullCheck(L_5); PropertyInfoU5BU5D_t411061045* L_6 = VirtFuncInvoker1< PropertyInfoU5BU5D_t411061045*, int32_t >::Invoke(59 /* System.Reflection.PropertyInfo[] System.Type::GetProperties(System.Reflection.BindingFlags) */, L_5, ((int32_t)22)); V_3 = L_6; PropertyInfoU5BU5D_t411061045* L_7 = V_3; V_5 = L_7; V_6 = 0; goto IL_0093; } IL_003e: { PropertyInfoU5BU5D_t411061045* L_8 = V_5; int32_t L_9 = V_6; NullCheck(L_8); int32_t L_10 = L_9; PropertyInfo_t * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_4 = L_11; PropertyInfo_t * L_12 = V_4; NullCheck(L_12); ParameterInfoU5BU5D_t3157369927* L_13 = VirtFuncInvoker0< ParameterInfoU5BU5D_t3157369927* >::Invoke(21 /* System.Reflection.ParameterInfo[] System.Reflection.PropertyInfo::GetIndexParameters() */, L_12); NullCheck(L_13); if ((((int32_t)((int32_t)(((RuntimeArray *)L_13)->max_length))))) { goto IL_008d; } } { PropertyInfo_t * L_14 = V_4; NullCheck(L_14); bool L_15 = VirtFuncInvoker0< bool >::Invoke(15 /* System.Boolean System.Reflection.PropertyInfo::get_CanRead() */, L_14); if (!L_15) { goto IL_008d; } } { Hashtable_t448324601 * L_16 = V_0; PropertyInfo_t * L_17 = V_4; NullCheck(L_17); String_t* L_18 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_17); NullCheck(L_16); bool L_19 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(38 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_16, L_18); if (L_19) { goto IL_008d; } } { ArrayList_t4277734320 * L_20 = V_1; PropertyInfo_t * L_21 = V_4; ReflectionPropertyDescriptor_t1079221997 * L_22 = (ReflectionPropertyDescriptor_t1079221997 *)il2cpp_codegen_object_new(ReflectionPropertyDescriptor_t1079221997_il2cpp_TypeInfo_var); ReflectionPropertyDescriptor__ctor_m1124124130(L_22, L_21, /*hidden argument*/NULL); NullCheck(L_20); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_20, L_22); Hashtable_t448324601 * L_23 = V_0; PropertyInfo_t * L_24 = V_4; NullCheck(L_24); String_t* L_25 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_24); NullCheck(L_23); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_23, L_25, NULL); } IL_008d: { int32_t L_26 = V_6; V_6 = ((int32_t)((int32_t)L_26+(int32_t)1)); } IL_0093: { int32_t L_27 = V_6; PropertyInfoU5BU5D_t411061045* L_28 = V_5; NullCheck(L_28); if ((((int32_t)L_27) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_28)->max_length))))))) { goto IL_003e; } } { Type_t * L_29 = V_2; NullCheck(L_29); Type_t * L_30 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.Type::get_BaseType() */, L_29); V_2 = L_30; } IL_00a5: { Type_t * L_31 = V_2; if (!L_31) { goto IL_00bb; } } { Type_t * L_32 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_33 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(RuntimeObject_0_0_0_var), /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_32) == ((RuntimeObject*)(Type_t *)L_33)))) { goto IL_002a; } } IL_00bb: { ArrayList_t4277734320 * L_34 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_35 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(PropertyDescriptor_t2555988069_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_34); RuntimeArray * L_36 = VirtFuncInvoker1< RuntimeArray *, Type_t * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_34, L_35); PropertyDescriptorCollection_t2982717747 * L_37 = (PropertyDescriptorCollection_t2982717747 *)il2cpp_codegen_object_new(PropertyDescriptorCollection_t2982717747_il2cpp_TypeInfo_var); PropertyDescriptorCollection__ctor_m3850586682(L_37, ((PropertyDescriptorU5BU5D_t2463291496*)Castclass((RuntimeObject*)L_36, PropertyDescriptorU5BU5D_t2463291496_il2cpp_TypeInfo_var)), (bool)1, /*hidden argument*/NULL); __this->set__properties_7(L_37); PropertyDescriptorCollection_t2982717747 * L_38 = __this->get__properties_7(); return L_38; } } // System.Void System.ComponentModel.TypeListConverter::.ctor(System.Type[]) extern "C" void TypeListConverter__ctor_m3090181409 (TypeListConverter_t2803081238 * __this, TypeU5BU5D_t89919618* ___types0, const RuntimeMethod* method) { { TypeConverter__ctor_m3014391247(__this, /*hidden argument*/NULL); TypeU5BU5D_t89919618* L_0 = ___types0; __this->set_types_0(L_0); return; } } // System.Boolean System.ComponentModel.TypeListConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type) extern "C" bool TypeListConverter_CanConvertFrom_m632547698 (TypeListConverter_t2803081238 * __this, RuntimeObject* ___context0, Type_t * ___sourceType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeListConverter_CanConvertFrom_m632547698_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___sourceType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(Type_t *)L_1)))) { goto IL_0012; } } { return (bool)1; } IL_0012: { RuntimeObject* L_2 = ___context0; Type_t * L_3 = ___sourceType1; bool L_4 = TypeConverter_CanConvertFrom_m2108188258(__this, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Boolean System.ComponentModel.TypeListConverter::CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type) extern "C" bool TypeListConverter_CanConvertTo_m255010591 (TypeListConverter_t2803081238 * __this, RuntimeObject* ___context0, Type_t * ___destinationType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeListConverter_CanConvertTo_m255010591_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(Type_t *)L_1)))) { goto IL_0012; } } { return (bool)1; } IL_0012: { RuntimeObject* L_2 = ___context0; Type_t * L_3 = ___destinationType1; bool L_4 = TypeConverter_CanConvertTo_m2935786827(__this, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Object System.ComponentModel.TypeListConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object) extern "C" RuntimeObject * TypeListConverter_ConvertFrom_m1719914382 (TypeListConverter_t2803081238 * __this, RuntimeObject* ___context0, CultureInfo_t270095993 * ___culture1, RuntimeObject * ___value2, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___context0; CultureInfo_t270095993 * L_1 = ___culture1; RuntimeObject * L_2 = ___value2; RuntimeObject * L_3 = TypeConverter_ConvertFrom_m3891144487(__this, L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.Object System.ComponentModel.TypeListConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type) extern "C" RuntimeObject * TypeListConverter_ConvertTo_m388121268 (TypeListConverter_t2803081238 * __this, RuntimeObject* ___context0, CultureInfo_t270095993 * ___culture1, RuntimeObject * ___value2, Type_t * ___destinationType3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeListConverter_ConvertTo_m388121268_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___destinationType3; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(Type_t *)L_1)))) { goto IL_0038; } } { RuntimeObject * L_2 = ___value2; if (!L_2) { goto IL_0038; } } { RuntimeObject * L_3 = ___value2; NullCheck(L_3); Type_t * L_4 = Object_GetType_m1134229006(L_3, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Type_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_4) == ((RuntimeObject*)(Type_t *)L_5)))) { goto IL_0038; } } { RuntimeObject * L_6 = ___value2; NullCheck(((Type_t *)CastclassClass((RuntimeObject*)L_6, Type_t_il2cpp_TypeInfo_var))); String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, ((Type_t *)CastclassClass((RuntimeObject*)L_6, Type_t_il2cpp_TypeInfo_var))); return L_7; } IL_0038: { InvalidCastException_t3691826219 * L_8 = (InvalidCastException_t3691826219 *)il2cpp_codegen_object_new(InvalidCastException_t3691826219_il2cpp_TypeInfo_var); InvalidCastException__ctor_m483127764(L_8, _stringLiteral3819604108, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8); } } // System.ComponentModel.TypeConverter/StandardValuesCollection System.ComponentModel.TypeListConverter::GetStandardValues(System.ComponentModel.ITypeDescriptorContext) extern "C" StandardValuesCollection_t884959189 * TypeListConverter_GetStandardValues_m3528946246 (TypeListConverter_t2803081238 * __this, RuntimeObject* ___context0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeListConverter_GetStandardValues_m3528946246_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TypeU5BU5D_t89919618* L_0 = __this->get_types_0(); StandardValuesCollection_t884959189 * L_1 = (StandardValuesCollection_t884959189 *)il2cpp_codegen_object_new(StandardValuesCollection_t884959189_il2cpp_TypeInfo_var); StandardValuesCollection__ctor_m97593915(L_1, (RuntimeObject*)(RuntimeObject*)L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.ComponentModel.TypeListConverter::GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext) extern "C" bool TypeListConverter_GetStandardValuesExclusive_m3929707481 (TypeListConverter_t2803081238 * __this, RuntimeObject* ___context0, const RuntimeMethod* method) { { return (bool)1; } } // System.Boolean System.ComponentModel.TypeListConverter::GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext) extern "C" bool TypeListConverter_GetStandardValuesSupported_m280341633 (TypeListConverter_t2803081238 * __this, RuntimeObject* ___context0, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.ComponentModel.UInt16Converter::.ctor() extern "C" void UInt16Converter__ctor_m1925749699 (UInt16Converter_t3562571258 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt16Converter__ctor_m1925749699_MetadataUsageId); s_Il2CppMethodInitialized = true; } { BaseNumberConverter__ctor_m1174706078(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(UInt16_t3519387236_0_0_0_var), /*hidden argument*/NULL); ((BaseNumberConverter_t401835300 *)__this)->set_InnerType_0(L_0); return; } } // System.Boolean System.ComponentModel.UInt16Converter::get_SupportHex() extern "C" bool UInt16Converter_get_SupportHex_m1250616522 (UInt16Converter_t3562571258 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.String System.ComponentModel.UInt16Converter::ConvertToString(System.Object,System.Globalization.NumberFormatInfo) extern "C" String_t* UInt16Converter_ConvertToString_m3025103605 (UInt16Converter_t3562571258 * __this, RuntimeObject * ___value0, NumberFormatInfo_t2417595227 * ___format1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt16Converter_ConvertToString_m3025103605_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint16_t V_0 = 0; { RuntimeObject * L_0 = ___value0; V_0 = ((*(uint16_t*)((uint16_t*)UnBox(L_0, UInt16_t3519387236_il2cpp_TypeInfo_var)))); NumberFormatInfo_t2417595227 * L_1 = ___format1; String_t* L_2 = UInt16_ToString_m2258635989((&V_0), _stringLiteral4225065365, L_1, /*hidden argument*/NULL); return L_2; } } // System.Object System.ComponentModel.UInt16Converter::ConvertFromString(System.String,System.Globalization.NumberFormatInfo) extern "C" RuntimeObject * UInt16Converter_ConvertFromString_m2611186121 (UInt16Converter_t3562571258 * __this, String_t* ___value0, NumberFormatInfo_t2417595227 * ___format1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt16Converter_ConvertFromString_m2611186121_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; NumberFormatInfo_t2417595227 * L_1 = ___format1; uint16_t L_2 = UInt16_Parse_m625648077(NULL /*static, unused*/, L_0, 7, L_1, /*hidden argument*/NULL); uint16_t L_3 = L_2; RuntimeObject * L_4 = Box(UInt16_t3519387236_il2cpp_TypeInfo_var, &L_3); return L_4; } } // System.Object System.ComponentModel.UInt16Converter::ConvertFromString(System.String,System.Int32) extern "C" RuntimeObject * UInt16Converter_ConvertFromString_m1635339137 (UInt16Converter_t3562571258 * __this, String_t* ___value0, int32_t ___fromBase1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt16Converter_ConvertFromString_m1635339137_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; int32_t L_1 = ___fromBase1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t666583334_il2cpp_TypeInfo_var); uint16_t L_2 = Convert_ToUInt16_m332483425(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL); uint16_t L_3 = L_2; RuntimeObject * L_4 = Box(UInt16_t3519387236_il2cpp_TypeInfo_var, &L_3); return L_4; } } // System.Void System.ComponentModel.UInt32Converter::.ctor() extern "C" void UInt32Converter__ctor_m3512414988 (UInt32Converter_t3695056532 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt32Converter__ctor_m3512414988_MetadataUsageId); s_Il2CppMethodInitialized = true; } { BaseNumberConverter__ctor_m1174706078(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(UInt32_t346688532_0_0_0_var), /*hidden argument*/NULL); ((BaseNumberConverter_t401835300 *)__this)->set_InnerType_0(L_0); return; } } // System.Boolean System.ComponentModel.UInt32Converter::get_SupportHex() extern "C" bool UInt32Converter_get_SupportHex_m3424890535 (UInt32Converter_t3695056532 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.String System.ComponentModel.UInt32Converter::ConvertToString(System.Object,System.Globalization.NumberFormatInfo) extern "C" String_t* UInt32Converter_ConvertToString_m3749103007 (UInt32Converter_t3695056532 * __this, RuntimeObject * ___value0, NumberFormatInfo_t2417595227 * ___format1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt32Converter_ConvertToString_m3749103007_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint32_t V_0 = 0; { RuntimeObject * L_0 = ___value0; V_0 = ((*(uint32_t*)((uint32_t*)UnBox(L_0, UInt32_t346688532_il2cpp_TypeInfo_var)))); NumberFormatInfo_t2417595227 * L_1 = ___format1; String_t* L_2 = UInt32_ToString_m1960414428((&V_0), _stringLiteral4225065365, L_1, /*hidden argument*/NULL); return L_2; } } // System.Object System.ComponentModel.UInt32Converter::ConvertFromString(System.String,System.Globalization.NumberFormatInfo) extern "C" RuntimeObject * UInt32Converter_ConvertFromString_m4141490942 (UInt32Converter_t3695056532 * __this, String_t* ___value0, NumberFormatInfo_t2417595227 * ___format1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt32Converter_ConvertFromString_m4141490942_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; NumberFormatInfo_t2417595227 * L_1 = ___format1; uint32_t L_2 = UInt32_Parse_m348622122(NULL /*static, unused*/, L_0, 7, L_1, /*hidden argument*/NULL); uint32_t L_3 = L_2; RuntimeObject * L_4 = Box(UInt32_t346688532_il2cpp_TypeInfo_var, &L_3); return L_4; } } // System.Object System.ComponentModel.UInt32Converter::ConvertFromString(System.String,System.Int32) extern "C" RuntimeObject * UInt32Converter_ConvertFromString_m1533873073 (UInt32Converter_t3695056532 * __this, String_t* ___value0, int32_t ___fromBase1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt32Converter_ConvertFromString_m1533873073_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; int32_t L_1 = ___fromBase1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t666583334_il2cpp_TypeInfo_var); uint32_t L_2 = Convert_ToUInt32_m1312165592(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL); uint32_t L_3 = L_2; RuntimeObject * L_4 = Box(UInt32_t346688532_il2cpp_TypeInfo_var, &L_3); return L_4; } } // System.Void System.ComponentModel.UInt64Converter::.ctor() extern "C" void UInt64Converter__ctor_m2807917793 (UInt64Converter_t3750379122 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt64Converter__ctor_m2807917793_MetadataUsageId); s_Il2CppMethodInitialized = true; } { BaseNumberConverter__ctor_m1174706078(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(UInt64_t2584094171_0_0_0_var), /*hidden argument*/NULL); ((BaseNumberConverter_t401835300 *)__this)->set_InnerType_0(L_0); return; } } // System.Boolean System.ComponentModel.UInt64Converter::get_SupportHex() extern "C" bool UInt64Converter_get_SupportHex_m1349589072 (UInt64Converter_t3750379122 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.String System.ComponentModel.UInt64Converter::ConvertToString(System.Object,System.Globalization.NumberFormatInfo) extern "C" String_t* UInt64Converter_ConvertToString_m1609957671 (UInt64Converter_t3750379122 * __this, RuntimeObject * ___value0, NumberFormatInfo_t2417595227 * ___format1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt64Converter_ConvertToString_m1609957671_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint64_t V_0 = 0; { RuntimeObject * L_0 = ___value0; V_0 = ((*(uint64_t*)((uint64_t*)UnBox(L_0, UInt64_t2584094171_il2cpp_TypeInfo_var)))); NumberFormatInfo_t2417595227 * L_1 = ___format1; String_t* L_2 = UInt64_ToString_m293009761((&V_0), _stringLiteral4225065365, L_1, /*hidden argument*/NULL); return L_2; } } // System.Object System.ComponentModel.UInt64Converter::ConvertFromString(System.String,System.Globalization.NumberFormatInfo) extern "C" RuntimeObject * UInt64Converter_ConvertFromString_m1309883064 (UInt64Converter_t3750379122 * __this, String_t* ___value0, NumberFormatInfo_t2417595227 * ___format1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt64Converter_ConvertFromString_m1309883064_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; NumberFormatInfo_t2417595227 * L_1 = ___format1; uint64_t L_2 = UInt64_Parse_m2335355093(NULL /*static, unused*/, L_0, 7, L_1, /*hidden argument*/NULL); uint64_t L_3 = L_2; RuntimeObject * L_4 = Box(UInt64_t2584094171_il2cpp_TypeInfo_var, &L_3); return L_4; } } // System.Object System.ComponentModel.UInt64Converter::ConvertFromString(System.String,System.Int32) extern "C" RuntimeObject * UInt64Converter_ConvertFromString_m2430593319 (UInt64Converter_t3750379122 * __this, String_t* ___value0, int32_t ___fromBase1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt64Converter_ConvertFromString_m2430593319_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; int32_t L_1 = ___fromBase1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t666583334_il2cpp_TypeInfo_var); uint64_t L_2 = Convert_ToUInt64_m3939729637(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL); uint64_t L_3 = L_2; RuntimeObject * L_4 = Box(UInt64_t2584094171_il2cpp_TypeInfo_var, &L_3); return L_4; } } // System.Void System.ComponentModel.WeakObjectWrapper::.ctor(System.Object) extern "C" void WeakObjectWrapper__ctor_m3552650423 (WeakObjectWrapper_t3106754776 * __this, RuntimeObject * ___target0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WeakObjectWrapper__ctor_m3552650423_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); RuntimeObject * L_0 = ___target0; NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0); WeakObjectWrapper_set_TargetHashCode_m3849672419(__this, L_1, /*hidden argument*/NULL); RuntimeObject * L_2 = ___target0; WeakReference_t2192111202 * L_3 = (WeakReference_t2192111202 *)il2cpp_codegen_object_new(WeakReference_t2192111202_il2cpp_TypeInfo_var); WeakReference__ctor_m155627274(L_3, L_2, /*hidden argument*/NULL); WeakObjectWrapper_set_Weak_m94142163(__this, L_3, /*hidden argument*/NULL); return; } } // System.Int32 System.ComponentModel.WeakObjectWrapper::get_TargetHashCode() extern "C" int32_t WeakObjectWrapper_get_TargetHashCode_m3445918633 (WeakObjectWrapper_t3106754776 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_U3CTargetHashCodeU3Ek__BackingField_0(); return L_0; } } // System.Void System.ComponentModel.WeakObjectWrapper::set_TargetHashCode(System.Int32) extern "C" void WeakObjectWrapper_set_TargetHashCode_m3849672419 (WeakObjectWrapper_t3106754776 * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_U3CTargetHashCodeU3Ek__BackingField_0(L_0); return; } } // System.WeakReference System.ComponentModel.WeakObjectWrapper::get_Weak() extern "C" WeakReference_t2192111202 * WeakObjectWrapper_get_Weak_m1135905172 (WeakObjectWrapper_t3106754776 * __this, const RuntimeMethod* method) { { WeakReference_t2192111202 * L_0 = __this->get_U3CWeakU3Ek__BackingField_1(); return L_0; } } // System.Void System.ComponentModel.WeakObjectWrapper::set_Weak(System.WeakReference) extern "C" void WeakObjectWrapper_set_Weak_m94142163 (WeakObjectWrapper_t3106754776 * __this, WeakReference_t2192111202 * ___value0, const RuntimeMethod* method) { { WeakReference_t2192111202 * L_0 = ___value0; __this->set_U3CWeakU3Ek__BackingField_1(L_0); return; } } // System.Void System.ComponentModel.WeakObjectWrapperComparer::.ctor() extern "C" void WeakObjectWrapperComparer__ctor_m2787707685 (WeakObjectWrapperComparer_t139211652 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WeakObjectWrapperComparer__ctor_m2787707685_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EqualityComparer_1_t3900351378_il2cpp_TypeInfo_var); EqualityComparer_1__ctor_m3443408297(__this, /*hidden argument*/EqualityComparer_1__ctor_m3443408297_RuntimeMethod_var); return; } } // System.Boolean System.ComponentModel.WeakObjectWrapperComparer::Equals(System.ComponentModel.WeakObjectWrapper,System.ComponentModel.WeakObjectWrapper) extern "C" bool WeakObjectWrapperComparer_Equals_m2452089333 (WeakObjectWrapperComparer_t139211652 * __this, WeakObjectWrapper_t3106754776 * ___x0, WeakObjectWrapper_t3106754776 * ___y1, const RuntimeMethod* method) { WeakReference_t2192111202 * V_0 = NULL; WeakReference_t2192111202 * V_1 = NULL; { WeakObjectWrapper_t3106754776 * L_0 = ___x0; if (L_0) { goto IL_000e; } } { WeakObjectWrapper_t3106754776 * L_1 = ___y1; if (L_1) { goto IL_000e; } } { return (bool)0; } IL_000e: { WeakObjectWrapper_t3106754776 * L_2 = ___x0; if (!L_2) { goto IL_001a; } } { WeakObjectWrapper_t3106754776 * L_3 = ___y1; if (L_3) { goto IL_001c; } } IL_001a: { return (bool)0; } IL_001c: { WeakObjectWrapper_t3106754776 * L_4 = ___x0; NullCheck(L_4); WeakReference_t2192111202 * L_5 = WeakObjectWrapper_get_Weak_m1135905172(L_4, /*hidden argument*/NULL); V_0 = L_5; WeakObjectWrapper_t3106754776 * L_6 = ___y1; NullCheck(L_6); WeakReference_t2192111202 * L_7 = WeakObjectWrapper_get_Weak_m1135905172(L_6, /*hidden argument*/NULL); V_1 = L_7; WeakReference_t2192111202 * L_8 = V_0; NullCheck(L_8); bool L_9 = VirtFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.WeakReference::get_IsAlive() */, L_8); if (L_9) { goto IL_0042; } } { WeakReference_t2192111202 * L_10 = V_1; NullCheck(L_10); bool L_11 = VirtFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.WeakReference::get_IsAlive() */, L_10); if (L_11) { goto IL_0042; } } { return (bool)0; } IL_0042: { WeakReference_t2192111202 * L_12 = V_0; NullCheck(L_12); RuntimeObject * L_13 = VirtFuncInvoker0< RuntimeObject * >::Invoke(6 /* System.Object System.WeakReference::get_Target() */, L_12); WeakReference_t2192111202 * L_14 = V_1; NullCheck(L_14); RuntimeObject * L_15 = VirtFuncInvoker0< RuntimeObject * >::Invoke(6 /* System.Object System.WeakReference::get_Target() */, L_14); return (bool)((((RuntimeObject*)(RuntimeObject *)L_13) == ((RuntimeObject*)(RuntimeObject *)L_15))? 1 : 0); } } // System.Int32 System.ComponentModel.WeakObjectWrapperComparer::GetHashCode(System.ComponentModel.WeakObjectWrapper) extern "C" int32_t WeakObjectWrapperComparer_GetHashCode_m3344821726 (WeakObjectWrapperComparer_t139211652 * __this, WeakObjectWrapper_t3106754776 * ___obj0, const RuntimeMethod* method) { { WeakObjectWrapper_t3106754776 * L_0 = ___obj0; if (L_0) { goto IL_0008; } } { return 0; } IL_0008: { WeakObjectWrapper_t3106754776 * L_1 = ___obj0; NullCheck(L_1); int32_t L_2 = WeakObjectWrapper_get_TargetHashCode_m3445918633(L_1, /*hidden argument*/NULL); return L_2; } } // System.Void System.ComponentModel.Win32Exception::.ctor() extern "C" void Win32Exception__ctor_m56483155 (Win32Exception_t789722284 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Win32Exception__ctor_m56483155_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Marshal_t2100713808_il2cpp_TypeInfo_var); int32_t L_0 = Marshal_GetLastWin32Error_m3562032077(NULL /*static, unused*/, /*hidden argument*/NULL); String_t* L_1 = Win32Exception_W32ErrorMessage_m3526061089(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); ExternalException__ctor_m4118943283(__this, L_1, /*hidden argument*/NULL); int32_t L_2 = Marshal_GetLastWin32Error_m3562032077(NULL /*static, unused*/, /*hidden argument*/NULL); __this->set_native_error_code_11(L_2); return; } } // System.Void System.ComponentModel.Win32Exception::.ctor(System.Int32) extern "C" void Win32Exception__ctor_m10977592 (Win32Exception_t789722284 * __this, int32_t ___error0, const RuntimeMethod* method) { { int32_t L_0 = ___error0; String_t* L_1 = Win32Exception_W32ErrorMessage_m3526061089(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); ExternalException__ctor_m4118943283(__this, L_1, /*hidden argument*/NULL); int32_t L_2 = ___error0; __this->set_native_error_code_11(L_2); return; } } // System.Void System.ComponentModel.Win32Exception::.ctor(System.Int32,System.String) extern "C" void Win32Exception__ctor_m1703036844 (Win32Exception_t789722284 * __this, int32_t ___error0, String_t* ___message1, const RuntimeMethod* method) { { String_t* L_0 = ___message1; ExternalException__ctor_m4118943283(__this, L_0, /*hidden argument*/NULL); int32_t L_1 = ___error0; __this->set_native_error_code_11(L_1); return; } } // System.Void System.ComponentModel.Win32Exception::.ctor(System.String) extern "C" void Win32Exception__ctor_m1075292849 (Win32Exception_t789722284 * __this, String_t* ___message0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Win32Exception__ctor_m1075292849_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___message0; ExternalException__ctor_m4118943283(__this, L_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Marshal_t2100713808_il2cpp_TypeInfo_var); int32_t L_1 = Marshal_GetLastWin32Error_m3562032077(NULL /*static, unused*/, /*hidden argument*/NULL); __this->set_native_error_code_11(L_1); return; } } // System.Void System.ComponentModel.Win32Exception::.ctor(System.String,System.Exception) extern "C" void Win32Exception__ctor_m1346106023 (Win32Exception_t789722284 * __this, String_t* ___message0, Exception_t2428370182 * ___innerException1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Win32Exception__ctor_m1346106023_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___message0; Exception_t2428370182 * L_1 = ___innerException1; ExternalException__ctor_m2378692208(__this, L_0, L_1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Marshal_t2100713808_il2cpp_TypeInfo_var); int32_t L_2 = Marshal_GetLastWin32Error_m3562032077(NULL /*static, unused*/, /*hidden argument*/NULL); __this->set_native_error_code_11(L_2); return; } } // System.Void System.ComponentModel.Win32Exception::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void Win32Exception__ctor_m1389307655 (Win32Exception_t789722284 * __this, SerializationInfo_t2260044969 * ___info0, StreamingContext_t3610716448 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Win32Exception__ctor_m1389307655_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SerializationInfo_t2260044969 * L_0 = ___info0; StreamingContext_t3610716448 L_1 = ___context1; ExternalException__ctor_m512094069(__this, L_0, L_1, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_2 = ___info0; NullCheck(L_2); int32_t L_3 = SerializationInfo_GetInt32_m877527589(L_2, _stringLiteral2357758668, /*hidden argument*/NULL); __this->set_native_error_code_11(L_3); return; } } // System.Int32 System.ComponentModel.Win32Exception::get_NativeErrorCode() extern "C" int32_t Win32Exception_get_NativeErrorCode_m1748228136 (Win32Exception_t789722284 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_native_error_code_11(); return L_0; } } // System.Void System.ComponentModel.Win32Exception::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void Win32Exception_GetObjectData_m1797727771 (Win32Exception_t789722284 * __this, SerializationInfo_t2260044969 * ___info0, StreamingContext_t3610716448 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Win32Exception_GetObjectData_m1797727771_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SerializationInfo_t2260044969 * L_0 = ___info0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral3067937798, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { SerializationInfo_t2260044969 * L_2 = ___info0; int32_t L_3 = __this->get_native_error_code_11(); NullCheck(L_2); SerializationInfo_AddValue_m2171140450(L_2, _stringLiteral2357758668, L_3, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_4 = ___info0; StreamingContext_t3610716448 L_5 = ___context1; Exception_GetObjectData_m1633779873(__this, L_4, L_5, /*hidden argument*/NULL); return; } } // System.String System.ComponentModel.Win32Exception::W32ErrorMessage(System.Int32) extern "C" String_t* Win32Exception_W32ErrorMessage_m3526061089 (RuntimeObject * __this /* static, unused */, int32_t ___error_code0, const RuntimeMethod* method) { typedef String_t* (*Win32Exception_W32ErrorMessage_m3526061089_ftn) (int32_t); using namespace il2cpp::icalls; return ((Win32Exception_W32ErrorMessage_m3526061089_ftn)System::System::ComponentModel::Win32Exception::W32ErrorMessage) (___error_code0); } // System.Void System.DefaultUriParser::.ctor() extern "C" void DefaultUriParser__ctor_m1685176556 (DefaultUriParser_t3234589343 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultUriParser__ctor_m1685176556_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(UriParser_t812050460_il2cpp_TypeInfo_var); UriParser__ctor_m3702954886(__this, /*hidden argument*/NULL); return; } } // System.Void System.DefaultUriParser::.ctor(System.String) extern "C" void DefaultUriParser__ctor_m3335238549 (DefaultUriParser_t3234589343 * __this, String_t* ___scheme0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultUriParser__ctor_m3335238549_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(UriParser_t812050460_il2cpp_TypeInfo_var); UriParser__ctor_m3702954886(__this, /*hidden argument*/NULL); String_t* L_0 = ___scheme0; ((UriParser_t812050460 *)__this)->set_scheme_name_2(L_0); return; } } // System.Void System.Diagnostics.Debug::WriteLine(System.String) extern "C" void Debug_WriteLine_m3261821298 (RuntimeObject * __this /* static, unused */, String_t* ___message0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Debug_WriteLine_m3261821298_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___message0; IL2CPP_RUNTIME_CLASS_INIT(Console_t2004602029_il2cpp_TypeInfo_var); Console_WriteLine_m1160833560(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Stopwatch::.ctor() extern "C" void Stopwatch__ctor_m2208932059 (Stopwatch_t2576777071 * __this, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Stopwatch::.cctor() extern "C" void Stopwatch__cctor_m2629391018 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stopwatch__cctor_m2629391018_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ((Stopwatch_t2576777071_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_t2576777071_il2cpp_TypeInfo_var))->set_Frequency_0((((int64_t)((int64_t)((int32_t)10000000))))); ((Stopwatch_t2576777071_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_t2576777071_il2cpp_TypeInfo_var))->set_IsHighResolution_1((bool)1); return; } } // System.Int64 System.Diagnostics.Stopwatch::GetTimestamp() extern "C" int64_t Stopwatch_GetTimestamp_m1064852326 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { typedef int64_t (*Stopwatch_GetTimestamp_m1064852326_ftn) (); using namespace il2cpp::icalls; return ((Stopwatch_GetTimestamp_m1064852326_ftn)System::System::Diagnostics::Stopwatch::GetTimestamp) (); } // System.TimeSpan System.Diagnostics.Stopwatch::get_Elapsed() extern "C" TimeSpan_t1687785723 Stopwatch_get_Elapsed_m3817606815 (Stopwatch_t2576777071 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stopwatch_get_Elapsed_m3817606815_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Stopwatch_t2576777071_il2cpp_TypeInfo_var); bool L_0 = ((Stopwatch_t2576777071_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_t2576777071_il2cpp_TypeInfo_var))->get_IsHighResolution_1(); if (!L_0) { goto IL_0023; } } { int64_t L_1 = Stopwatch_get_ElapsedTicks_m386717968(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Stopwatch_t2576777071_il2cpp_TypeInfo_var); int64_t L_2 = ((Stopwatch_t2576777071_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_t2576777071_il2cpp_TypeInfo_var))->get_Frequency_0(); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t1687785723_il2cpp_TypeInfo_var); TimeSpan_t1687785723 L_3 = TimeSpan_FromTicks_m1667776122(NULL /*static, unused*/, ((int64_t)((int64_t)L_1/(int64_t)((int64_t)((int64_t)L_2/(int64_t)(((int64_t)((int64_t)((int32_t)10000000)))))))), /*hidden argument*/NULL); return L_3; } IL_0023: { int64_t L_4 = Stopwatch_get_ElapsedTicks_m386717968(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t1687785723_il2cpp_TypeInfo_var); TimeSpan_t1687785723 L_5 = TimeSpan_FromTicks_m1667776122(NULL /*static, unused*/, L_4, /*hidden argument*/NULL); return L_5; } } // System.Int64 System.Diagnostics.Stopwatch::get_ElapsedMilliseconds() extern "C" int64_t Stopwatch_get_ElapsedMilliseconds_m2695790364 (Stopwatch_t2576777071 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stopwatch_get_ElapsedMilliseconds_m2695790364_MetadataUsageId); s_Il2CppMethodInitialized = true; } TimeSpan_t1687785723 V_0; memset(&V_0, 0, sizeof(V_0)); { IL2CPP_RUNTIME_CLASS_INIT(Stopwatch_t2576777071_il2cpp_TypeInfo_var); bool L_0 = ((Stopwatch_t2576777071_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_t2576777071_il2cpp_TypeInfo_var))->get_IsHighResolution_1(); if (!L_0) { goto IL_001e; } } { int64_t L_1 = Stopwatch_get_ElapsedTicks_m386717968(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Stopwatch_t2576777071_il2cpp_TypeInfo_var); int64_t L_2 = ((Stopwatch_t2576777071_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_t2576777071_il2cpp_TypeInfo_var))->get_Frequency_0(); return ((int64_t)((int64_t)L_1/(int64_t)((int64_t)((int64_t)L_2/(int64_t)(((int64_t)((int64_t)((int32_t)1000)))))))); } IL_001e: { TimeSpan_t1687785723 L_3 = Stopwatch_get_Elapsed_m3817606815(__this, /*hidden argument*/NULL); V_0 = L_3; double L_4 = TimeSpan_get_TotalMilliseconds_m3785175732((&V_0), /*hidden argument*/NULL); if (L_4 > (double)(std::numeric_limits<int64_t>::max())) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception()); return (((int64_t)((int64_t)L_4))); } } // System.Int64 System.Diagnostics.Stopwatch::get_ElapsedTicks() extern "C" int64_t Stopwatch_get_ElapsedTicks_m386717968 (Stopwatch_t2576777071 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stopwatch_get_ElapsedTicks_m386717968_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t G_B3_0 = 0; { bool L_0 = __this->get_is_running_4(); if (!L_0) { goto IL_0023; } } { IL2CPP_RUNTIME_CLASS_INIT(Stopwatch_t2576777071_il2cpp_TypeInfo_var); int64_t L_1 = Stopwatch_GetTimestamp_m1064852326(NULL /*static, unused*/, /*hidden argument*/NULL); int64_t L_2 = __this->get_started_3(); int64_t L_3 = __this->get_elapsed_2(); G_B3_0 = ((int64_t)((int64_t)((int64_t)((int64_t)L_1-(int64_t)L_2))+(int64_t)L_3)); goto IL_0029; } IL_0023: { int64_t L_4 = __this->get_elapsed_2(); G_B3_0 = L_4; } IL_0029: { return G_B3_0; } } // System.Boolean System.Diagnostics.Stopwatch::get_IsRunning() extern "C" bool Stopwatch_get_IsRunning_m2687960028 (Stopwatch_t2576777071 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_is_running_4(); return L_0; } } // System.Void System.Diagnostics.Stopwatch::Reset() extern "C" void Stopwatch_Reset_m3495891616 (Stopwatch_t2576777071 * __this, const RuntimeMethod* method) { { __this->set_elapsed_2((((int64_t)((int64_t)0)))); __this->set_is_running_4((bool)0); return; } } // System.Void System.Diagnostics.Stopwatch::Start() extern "C" void Stopwatch_Start_m778980960 (Stopwatch_t2576777071 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stopwatch_Start_m778980960_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_is_running_4(); if (!L_0) { goto IL_000c; } } { return; } IL_000c: { IL2CPP_RUNTIME_CLASS_INIT(Stopwatch_t2576777071_il2cpp_TypeInfo_var); int64_t L_1 = Stopwatch_GetTimestamp_m1064852326(NULL /*static, unused*/, /*hidden argument*/NULL); __this->set_started_3(L_1); __this->set_is_running_4((bool)1); return; } } // System.Void System.Diagnostics.Stopwatch::Stop() extern "C" void Stopwatch_Stop_m2065977028 (Stopwatch_t2576777071 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stopwatch_Stop_m2065977028_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_is_running_4(); if (L_0) { goto IL_000c; } } { return; } IL_000c: { int64_t L_1 = __this->get_elapsed_2(); IL2CPP_RUNTIME_CLASS_INIT(Stopwatch_t2576777071_il2cpp_TypeInfo_var); int64_t L_2 = Stopwatch_GetTimestamp_m1064852326(NULL /*static, unused*/, /*hidden argument*/NULL); int64_t L_3 = __this->get_started_3(); __this->set_elapsed_2(((int64_t)((int64_t)L_1+(int64_t)((int64_t)((int64_t)L_2-(int64_t)L_3))))); __this->set_is_running_4((bool)0); return; } } // System.Void System.MonoNotSupportedAttribute::.ctor(System.String) extern "C" void MonoNotSupportedAttribute__ctor_m693372685 (MonoNotSupportedAttribute_t572674597 * __this, String_t* ___comment0, const RuntimeMethod* method) { { String_t* L_0 = ___comment0; MonoTODOAttribute__ctor_m3723609312(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.MonoTODOAttribute::.ctor() extern "C" void MonoTODOAttribute__ctor_m1890305401 (MonoTODOAttribute_t952110849 * __this, const RuntimeMethod* method) { { Attribute__ctor_m3216322730(__this, /*hidden argument*/NULL); return; } } // System.Void System.MonoTODOAttribute::.ctor(System.String) extern "C" void MonoTODOAttribute__ctor_m3723609312 (MonoTODOAttribute_t952110849 * __this, String_t* ___comment0, const RuntimeMethod* method) { { Attribute__ctor_m3216322730(__this, /*hidden argument*/NULL); String_t* L_0 = ___comment0; __this->set_comment_0(L_0); return; } } // System.Void System.Net.Configuration.Dummy::.ctor() extern "C" void Dummy__ctor_m934312983 (Dummy_t10600413 * __this, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); return; } } // System.Void System.Net.DefaultCertificatePolicy::.ctor() extern "C" void DefaultCertificatePolicy__ctor_m1698267278 (DefaultCertificatePolicy_t1503698831 * __this, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); return; } } // System.Boolean System.Net.DefaultCertificatePolicy::CheckValidationResult(System.Net.ServicePoint,System.Security.Cryptography.X509Certificates.X509Certificate,System.Net.WebRequest,System.Int32) extern "C" bool DefaultCertificatePolicy_CheckValidationResult_m24245227 (DefaultCertificatePolicy_t1503698831 * __this, ServicePoint_t236056219 * ___point0, X509Certificate_t1566844445 * ___certificate1, WebRequest_t294146427 * ___request2, int32_t ___certificateProblem3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultCertificatePolicy_CheckValidationResult_m24245227_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); RemoteCertificateValidationCallback_t1272219315 * L_0 = ServicePointManager_get_ServerCertificateValidationCallback_m4196527332(NULL /*static, unused*/, /*hidden argument*/NULL); if (!L_0) { goto IL_000c; } } { return (bool)1; } IL_000c: { int32_t L_1 = ___certificateProblem3; V_0 = L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) == ((int32_t)((int32_t)-2146762495)))) { goto IL_0025; } } { int32_t L_3 = V_0; if (!L_3) { goto IL_0025; } } { goto IL_0027; } IL_0025: { return (bool)1; } IL_0027: { return (bool)0; } } // System.Void System.Net.Dns::.cctor() extern "C" void Dns__cctor_m3546732851 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dns__cctor_m3546732851_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); Socket_CheckProtocolSupport_m1096119766(NULL /*static, unused*/, /*hidden argument*/NULL); return; } } // System.Boolean System.Net.Dns::GetHostByName_internal(System.String,System.String&,System.String[]&,System.String[]&) extern "C" bool Dns_GetHostByName_internal_m260542805 (RuntimeObject * __this /* static, unused */, String_t* ___host0, String_t** ___h_name1, StringU5BU5D_t1187188029** ___h_aliases2, StringU5BU5D_t1187188029** ___h_addr_list3, const RuntimeMethod* method) { typedef bool (*Dns_GetHostByName_internal_m260542805_ftn) (String_t*, String_t**, StringU5BU5D_t1187188029**, StringU5BU5D_t1187188029**); using namespace il2cpp::icalls; return ((Dns_GetHostByName_internal_m260542805_ftn)System::System::Net::Dns::GetHostByName) (___host0, ___h_name1, ___h_aliases2, ___h_addr_list3); } // System.Boolean System.Net.Dns::GetHostByAddr_internal(System.String,System.String&,System.String[]&,System.String[]&) extern "C" bool Dns_GetHostByAddr_internal_m2873596872 (RuntimeObject * __this /* static, unused */, String_t* ___addr0, String_t** ___h_name1, StringU5BU5D_t1187188029** ___h_aliases2, StringU5BU5D_t1187188029** ___h_addr_list3, const RuntimeMethod* method) { typedef bool (*Dns_GetHostByAddr_internal_m2873596872_ftn) (String_t*, String_t**, StringU5BU5D_t1187188029**, StringU5BU5D_t1187188029**); using namespace il2cpp::icalls; return ((Dns_GetHostByAddr_internal_m2873596872_ftn)System::System::Net::Dns::GetHostByAddr) (___addr0, ___h_name1, ___h_aliases2, ___h_addr_list3); } // System.Net.IPHostEntry System.Net.Dns::hostent_to_IPHostEntry(System.String,System.String[],System.String[]) extern "C" IPHostEntry_t1585536838 * Dns_hostent_to_IPHostEntry_m550634719 (RuntimeObject * __this /* static, unused */, String_t* ___h_name0, StringU5BU5D_t1187188029* ___h_aliases1, StringU5BU5D_t1187188029* ___h_addrlist2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dns_hostent_to_IPHostEntry_m550634719_MetadataUsageId); s_Il2CppMethodInitialized = true; } IPHostEntry_t1585536838 * V_0 = NULL; ArrayList_t4277734320 * V_1 = NULL; int32_t V_2 = 0; IPAddress_t2830710878 * V_3 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { IPHostEntry_t1585536838 * L_0 = (IPHostEntry_t1585536838 *)il2cpp_codegen_object_new(IPHostEntry_t1585536838_il2cpp_TypeInfo_var); IPHostEntry__ctor_m4274864846(L_0, /*hidden argument*/NULL); V_0 = L_0; ArrayList_t4277734320 * L_1 = (ArrayList_t4277734320 *)il2cpp_codegen_object_new(ArrayList_t4277734320_il2cpp_TypeInfo_var); ArrayList__ctor_m3769859358(L_1, /*hidden argument*/NULL); V_1 = L_1; IPHostEntry_t1585536838 * L_2 = V_0; String_t* L_3 = ___h_name0; NullCheck(L_2); IPHostEntry_set_HostName_m450026793(L_2, L_3, /*hidden argument*/NULL); IPHostEntry_t1585536838 * L_4 = V_0; StringU5BU5D_t1187188029* L_5 = ___h_aliases1; NullCheck(L_4); IPHostEntry_set_Aliases_m116993255(L_4, L_5, /*hidden argument*/NULL); V_2 = 0; goto IL_006e; } IL_0021: try { // begin try (depth: 1) { StringU5BU5D_t1187188029* L_6 = ___h_addrlist2; int32_t L_7 = V_2; NullCheck(L_6); int32_t L_8 = L_7; String_t* L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8)); IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); IPAddress_t2830710878 * L_10 = IPAddress_Parse_m3708738621(NULL /*static, unused*/, L_9, /*hidden argument*/NULL); V_3 = L_10; IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); bool L_11 = Socket_get_SupportsIPv6_m4254163272(NULL /*static, unused*/, /*hidden argument*/NULL); if (!L_11) { goto IL_0041; } } IL_0034: { IPAddress_t2830710878 * L_12 = V_3; NullCheck(L_12); int32_t L_13 = IPAddress_get_AddressFamily_m3128376784(L_12, /*hidden argument*/NULL); if ((((int32_t)L_13) == ((int32_t)((int32_t)23)))) { goto IL_0057; } } IL_0041: { IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); bool L_14 = Socket_get_SupportsIPv4_m804629203(NULL /*static, unused*/, /*hidden argument*/NULL); if (!L_14) { goto IL_005f; } } IL_004b: { IPAddress_t2830710878 * L_15 = V_3; NullCheck(L_15); int32_t L_16 = IPAddress_get_AddressFamily_m3128376784(L_15, /*hidden argument*/NULL); if ((!(((uint32_t)L_16) == ((uint32_t)2)))) { goto IL_005f; } } IL_0057: { ArrayList_t4277734320 * L_17 = V_1; IPAddress_t2830710878 * L_18 = V_3; NullCheck(L_17); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_17, L_18); } IL_005f: { goto IL_006a; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t2428370182 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArgumentNullException_t873386607_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0064; throw e; } CATCH_0064: { // begin catch(System.ArgumentNullException) goto IL_006a; } // end catch (depth: 1) IL_006a: { int32_t L_19 = V_2; V_2 = ((int32_t)((int32_t)L_19+(int32_t)1)); } IL_006e: { int32_t L_20 = V_2; StringU5BU5D_t1187188029* L_21 = ___h_addrlist2; NullCheck(L_21); if ((((int32_t)L_20) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_21)->max_length))))))) { goto IL_0021; } } { ArrayList_t4277734320 * L_22 = V_1; NullCheck(L_22); int32_t L_23 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_22); if (L_23) { goto IL_008d; } } { SocketException_t2171012343 * L_24 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m1010342242(L_24, ((int32_t)11001), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24); } IL_008d: { IPHostEntry_t1585536838 * L_25 = V_0; ArrayList_t4277734320 * L_26 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_27 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(IPAddress_t2830710878_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_26); RuntimeArray * L_28 = VirtFuncInvoker1< RuntimeArray *, Type_t * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_26, L_27); NullCheck(L_25); IPHostEntry_set_AddressList_m2174166557(L_25, ((IPAddressU5BU5D_t3756700779*)IsInst((RuntimeObject*)L_28, IPAddressU5BU5D_t3756700779_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); IPHostEntry_t1585536838 * L_29 = V_0; return L_29; } } // System.Net.IPHostEntry System.Net.Dns::GetHostByAddressFromString(System.String,System.Boolean) extern "C" IPHostEntry_t1585536838 * Dns_GetHostByAddressFromString_m1589502680 (RuntimeObject * __this /* static, unused */, String_t* ___address0, bool ___parse1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dns_GetHostByAddressFromString_m1589502680_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; StringU5BU5D_t1187188029* V_1 = NULL; StringU5BU5D_t1187188029* V_2 = NULL; bool V_3 = false; { String_t* L_0 = ___address0; NullCheck(L_0); bool L_1 = String_Equals_m3676969663(L_0, _stringLiteral4123440306, /*hidden argument*/NULL); if (!L_1) { goto IL_001a; } } { ___address0 = _stringLiteral136145558; ___parse1 = (bool)0; } IL_001a: { bool L_2 = ___parse1; if (!L_2) { goto IL_0027; } } { String_t* L_3 = ___address0; IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); IPAddress_Parse_m3708738621(NULL /*static, unused*/, L_3, /*hidden argument*/NULL); } IL_0027: { String_t* L_4 = ___address0; IL2CPP_RUNTIME_CLASS_INIT(Dns_t1916110264_il2cpp_TypeInfo_var); bool L_5 = Dns_GetHostByAddr_internal_m2873596872(NULL /*static, unused*/, L_4, (&V_0), (&V_1), (&V_2), /*hidden argument*/NULL); V_3 = L_5; bool L_6 = V_3; if (L_6) { goto IL_0045; } } { SocketException_t2171012343 * L_7 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m1010342242(L_7, ((int32_t)11001), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7); } IL_0045: { String_t* L_8 = V_0; StringU5BU5D_t1187188029* L_9 = V_1; StringU5BU5D_t1187188029* L_10 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Dns_t1916110264_il2cpp_TypeInfo_var); IPHostEntry_t1585536838 * L_11 = Dns_hostent_to_IPHostEntry_m550634719(NULL /*static, unused*/, L_8, L_9, L_10, /*hidden argument*/NULL); return L_11; } } // System.Net.IPHostEntry System.Net.Dns::GetHostEntry(System.String) extern "C" IPHostEntry_t1585536838 * Dns_GetHostEntry_m1144250075 (RuntimeObject * __this /* static, unused */, String_t* ___hostNameOrAddress0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dns_GetHostEntry_m1144250075_MetadataUsageId); s_Il2CppMethodInitialized = true; } IPAddress_t2830710878 * V_0 = NULL; { String_t* L_0 = ___hostNameOrAddress0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral1821701796, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { String_t* L_2 = ___hostNameOrAddress0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_3 = String_op_Equality_m3571002539(NULL /*static, unused*/, L_2, _stringLiteral4123440306, /*hidden argument*/NULL); if (L_3) { goto IL_0031; } } { String_t* L_4 = ___hostNameOrAddress0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_5 = String_op_Equality_m3571002539(NULL /*static, unused*/, L_4, _stringLiteral2205257458, /*hidden argument*/NULL); if (!L_5) { goto IL_0041; } } IL_0031: { ArgumentException_t1946723077 * L_6 = (ArgumentException_t1946723077 *)il2cpp_codegen_object_new(ArgumentException_t1946723077_il2cpp_TypeInfo_var); ArgumentException__ctor_m2999873659(L_6, _stringLiteral3888714694, _stringLiteral1821701796, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6); } IL_0041: { String_t* L_7 = ___hostNameOrAddress0; NullCheck(L_7); int32_t L_8 = String_get_Length_m2584136399(L_7, /*hidden argument*/NULL); if ((((int32_t)L_8) <= ((int32_t)0))) { goto IL_0061; } } { String_t* L_9 = ___hostNameOrAddress0; IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); bool L_10 = IPAddress_TryParse_m442898607(NULL /*static, unused*/, L_9, (&V_0), /*hidden argument*/NULL); if (!L_10) { goto IL_0061; } } { IPAddress_t2830710878 * L_11 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Dns_t1916110264_il2cpp_TypeInfo_var); IPHostEntry_t1585536838 * L_12 = Dns_GetHostEntry_m1682641189(NULL /*static, unused*/, L_11, /*hidden argument*/NULL); return L_12; } IL_0061: { String_t* L_13 = ___hostNameOrAddress0; IL2CPP_RUNTIME_CLASS_INIT(Dns_t1916110264_il2cpp_TypeInfo_var); IPHostEntry_t1585536838 * L_14 = Dns_GetHostByName_m978575555(NULL /*static, unused*/, L_13, /*hidden argument*/NULL); return L_14; } } // System.Net.IPHostEntry System.Net.Dns::GetHostEntry(System.Net.IPAddress) extern "C" IPHostEntry_t1585536838 * Dns_GetHostEntry_m1682641189 (RuntimeObject * __this /* static, unused */, IPAddress_t2830710878 * ___address0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dns_GetHostEntry_m1682641189_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IPAddress_t2830710878 * L_0 = ___address0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral3055831234, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { IPAddress_t2830710878 * L_2 = ___address0; NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Net.IPAddress::ToString() */, L_2); IL2CPP_RUNTIME_CLASS_INIT(Dns_t1916110264_il2cpp_TypeInfo_var); IPHostEntry_t1585536838 * L_4 = Dns_GetHostByAddressFromString_m1589502680(NULL /*static, unused*/, L_3, (bool)0, /*hidden argument*/NULL); return L_4; } } // System.Net.IPAddress[] System.Net.Dns::GetHostAddresses(System.String) extern "C" IPAddressU5BU5D_t3756700779* Dns_GetHostAddresses_m2939178862 (RuntimeObject * __this /* static, unused */, String_t* ___hostNameOrAddress0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dns_GetHostAddresses_m2939178862_MetadataUsageId); s_Il2CppMethodInitialized = true; } IPAddress_t2830710878 * V_0 = NULL; { String_t* L_0 = ___hostNameOrAddress0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral1821701796, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { String_t* L_2 = ___hostNameOrAddress0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_3 = String_op_Equality_m3571002539(NULL /*static, unused*/, L_2, _stringLiteral4123440306, /*hidden argument*/NULL); if (L_3) { goto IL_0031; } } { String_t* L_4 = ___hostNameOrAddress0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_5 = String_op_Equality_m3571002539(NULL /*static, unused*/, L_4, _stringLiteral2205257458, /*hidden argument*/NULL); if (!L_5) { goto IL_0041; } } IL_0031: { ArgumentException_t1946723077 * L_6 = (ArgumentException_t1946723077 *)il2cpp_codegen_object_new(ArgumentException_t1946723077_il2cpp_TypeInfo_var); ArgumentException__ctor_m2999873659(L_6, _stringLiteral3888714694, _stringLiteral1821701796, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6); } IL_0041: { String_t* L_7 = ___hostNameOrAddress0; NullCheck(L_7); int32_t L_8 = String_get_Length_m2584136399(L_7, /*hidden argument*/NULL); if ((((int32_t)L_8) <= ((int32_t)0))) { goto IL_0065; } } { String_t* L_9 = ___hostNameOrAddress0; IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); bool L_10 = IPAddress_TryParse_m442898607(NULL /*static, unused*/, L_9, (&V_0), /*hidden argument*/NULL); if (!L_10) { goto IL_0065; } } { IPAddressU5BU5D_t3756700779* L_11 = ((IPAddressU5BU5D_t3756700779*)SZArrayNew(IPAddressU5BU5D_t3756700779_il2cpp_TypeInfo_var, (uint32_t)1)); IPAddress_t2830710878 * L_12 = V_0; NullCheck(L_11); ArrayElementTypeCheck (L_11, L_12); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (IPAddress_t2830710878 *)L_12); return L_11; } IL_0065: { String_t* L_13 = ___hostNameOrAddress0; IL2CPP_RUNTIME_CLASS_INIT(Dns_t1916110264_il2cpp_TypeInfo_var); IPHostEntry_t1585536838 * L_14 = Dns_GetHostEntry_m1144250075(NULL /*static, unused*/, L_13, /*hidden argument*/NULL); NullCheck(L_14); IPAddressU5BU5D_t3756700779* L_15 = IPHostEntry_get_AddressList_m2069605532(L_14, /*hidden argument*/NULL); return L_15; } } // System.Net.IPHostEntry System.Net.Dns::GetHostByName(System.String) extern "C" IPHostEntry_t1585536838 * Dns_GetHostByName_m978575555 (RuntimeObject * __this /* static, unused */, String_t* ___hostName0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dns_GetHostByName_m978575555_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; StringU5BU5D_t1187188029* V_1 = NULL; StringU5BU5D_t1187188029* V_2 = NULL; bool V_3 = false; { String_t* L_0 = ___hostName0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral3079115443, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { String_t* L_2 = ___hostName0; IL2CPP_RUNTIME_CLASS_INIT(Dns_t1916110264_il2cpp_TypeInfo_var); bool L_3 = Dns_GetHostByName_internal_m260542805(NULL /*static, unused*/, L_2, (&V_0), (&V_1), (&V_2), /*hidden argument*/NULL); V_3 = L_3; bool L_4 = V_3; if (L_4) { goto IL_002f; } } { SocketException_t2171012343 * L_5 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m1010342242(L_5, ((int32_t)11001), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5); } IL_002f: { String_t* L_6 = V_0; StringU5BU5D_t1187188029* L_7 = V_1; StringU5BU5D_t1187188029* L_8 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Dns_t1916110264_il2cpp_TypeInfo_var); IPHostEntry_t1585536838 * L_9 = Dns_hostent_to_IPHostEntry_m550634719(NULL /*static, unused*/, L_6, L_7, L_8, /*hidden argument*/NULL); return L_9; } } // System.Void System.Net.EndPoint::.ctor() extern "C" void EndPoint__ctor_m3636779127 (EndPoint_t268181662 * __this, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); return; } } // System.Net.Sockets.AddressFamily System.Net.EndPoint::get_AddressFamily() extern "C" int32_t EndPoint_get_AddressFamily_m1790810153 (EndPoint_t268181662 * __this, const RuntimeMethod* method) { { Exception_t2428370182 * L_0 = EndPoint_NotImplemented_m3815175566(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Net.EndPoint System.Net.EndPoint::Create(System.Net.SocketAddress) extern "C" EndPoint_t268181662 * EndPoint_Create_m3117462138 (EndPoint_t268181662 * __this, SocketAddress_t1723199846 * ___address0, const RuntimeMethod* method) { { Exception_t2428370182 * L_0 = EndPoint_NotImplemented_m3815175566(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Net.SocketAddress System.Net.EndPoint::Serialize() extern "C" SocketAddress_t1723199846 * EndPoint_Serialize_m1229490969 (EndPoint_t268181662 * __this, const RuntimeMethod* method) { { Exception_t2428370182 * L_0 = EndPoint_NotImplemented_m3815175566(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Exception System.Net.EndPoint::NotImplemented() extern "C" Exception_t2428370182 * EndPoint_NotImplemented_m3815175566 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EndPoint_NotImplemented_m3815175566_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotImplementedException_t682134635 * L_0 = (NotImplementedException_t682134635 *)il2cpp_codegen_object_new(NotImplementedException_t682134635_il2cpp_TypeInfo_var); NotImplementedException__ctor_m1549985598(L_0, /*hidden argument*/NULL); return L_0; } } // System.Void System.Net.FileWebRequest::.ctor(System.Uri) extern "C" void FileWebRequest__ctor_m275703078 (FileWebRequest_t734527143 * __this, Uri_t3882940875 * ___uri0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FileWebRequest__ctor_m275703078_MetadataUsageId); s_Il2CppMethodInitialized = true; } { __this->set_fileAccess_10(1); __this->set_method_11(_stringLiteral2509137387); __this->set_timeout_14(((int32_t)100000)); IL2CPP_RUNTIME_CLASS_INIT(WebRequest_t294146427_il2cpp_TypeInfo_var); WebRequest__ctor_m1143597694(__this, /*hidden argument*/NULL); Uri_t3882940875 * L_0 = ___uri0; __this->set_uri_6(L_0); WebHeaderCollection_t3555365273 * L_1 = (WebHeaderCollection_t3555365273 *)il2cpp_codegen_object_new(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var); WebHeaderCollection__ctor_m1604616055(L_1, /*hidden argument*/NULL); __this->set_webHeaders_7(L_1); return; } } // System.Void System.Net.FileWebRequest::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void FileWebRequest__ctor_m1490254012 (FileWebRequest_t734527143 * __this, SerializationInfo_t2260044969 * ___serializationInfo0, StreamingContext_t3610716448 ___streamingContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FileWebRequest__ctor_m1490254012_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationInfo_t2260044969 * V_0 = NULL; { __this->set_fileAccess_10(1); __this->set_method_11(_stringLiteral2509137387); __this->set_timeout_14(((int32_t)100000)); IL2CPP_RUNTIME_CLASS_INIT(WebRequest_t294146427_il2cpp_TypeInfo_var); WebRequest__ctor_m1143597694(__this, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_0 = ___serializationInfo0; V_0 = L_0; SerializationInfo_t2260044969 * L_1 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(WebHeaderCollection_t3555365273_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_1); RuntimeObject * L_3 = SerializationInfo_GetValue_m376336523(L_1, _stringLiteral839936504, L_2, /*hidden argument*/NULL); __this->set_webHeaders_7(((WebHeaderCollection_t3555365273 *)CastclassClass((RuntimeObject*)L_3, WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))); SerializationInfo_t2260044969 * L_4 = V_0; Type_t * L_5 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(IWebProxy_t2986465618_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_4); RuntimeObject * L_6 = SerializationInfo_GetValue_m376336523(L_4, _stringLiteral190309782, L_5, /*hidden argument*/NULL); __this->set_proxy_12(((RuntimeObject*)Castclass((RuntimeObject*)L_6, IWebProxy_t2986465618_il2cpp_TypeInfo_var))); SerializationInfo_t2260044969 * L_7 = V_0; Type_t * L_8 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Uri_t3882940875_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_7); RuntimeObject * L_9 = SerializationInfo_GetValue_m376336523(L_7, _stringLiteral2612727421, L_8, /*hidden argument*/NULL); __this->set_uri_6(((Uri_t3882940875 *)CastclassClass((RuntimeObject*)L_9, Uri_t3882940875_il2cpp_TypeInfo_var))); SerializationInfo_t2260044969 * L_10 = V_0; NullCheck(L_10); String_t* L_11 = SerializationInfo_GetString_m2297443841(L_10, _stringLiteral2736546672, /*hidden argument*/NULL); __this->set_connectionGroup_8(L_11); SerializationInfo_t2260044969 * L_12 = V_0; NullCheck(L_12); String_t* L_13 = SerializationInfo_GetString_m2297443841(L_12, _stringLiteral2723246392, /*hidden argument*/NULL); __this->set_method_11(L_13); SerializationInfo_t2260044969 * L_14 = V_0; NullCheck(L_14); int64_t L_15 = SerializationInfo_GetInt64_m3494402209(L_14, _stringLiteral2897867309, /*hidden argument*/NULL); __this->set_contentLength_9(L_15); SerializationInfo_t2260044969 * L_16 = V_0; NullCheck(L_16); int32_t L_17 = SerializationInfo_GetInt32_m877527589(L_16, _stringLiteral3674026459, /*hidden argument*/NULL); __this->set_timeout_14(L_17); SerializationInfo_t2260044969 * L_18 = V_0; Type_t * L_19 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(FileAccess_t1449903724_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_18); RuntimeObject * L_20 = SerializationInfo_GetValue_m376336523(L_18, _stringLiteral3896524367, L_19, /*hidden argument*/NULL); __this->set_fileAccess_10(((*(int32_t*)((int32_t*)UnBox(L_20, Int32_t1085330725_il2cpp_TypeInfo_var))))); SerializationInfo_t2260044969 * L_21 = V_0; NullCheck(L_21); bool L_22 = SerializationInfo_GetBoolean_m706624525(L_21, _stringLiteral3809982414, /*hidden argument*/NULL); __this->set_preAuthenticate_13(L_22); return; } } // System.Void System.Net.FileWebRequest::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void FileWebRequest_System_Runtime_Serialization_ISerializable_GetObjectData_m845326887 (FileWebRequest_t734527143 * __this, SerializationInfo_t2260044969 * ___serializationInfo0, StreamingContext_t3610716448 ___streamingContext1, const RuntimeMethod* method) { { SerializationInfo_t2260044969 * L_0 = ___serializationInfo0; StreamingContext_t3610716448 L_1 = ___streamingContext1; VirtActionInvoker2< SerializationInfo_t2260044969 *, StreamingContext_t3610716448 >::Invoke(7 /* System.Void System.Net.FileWebRequest::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, __this, L_0, L_1); return; } } // System.Void System.Net.FileWebRequest::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void FileWebRequest_GetObjectData_m1566584744 (FileWebRequest_t734527143 * __this, SerializationInfo_t2260044969 * ___serializationInfo0, StreamingContext_t3610716448 ___streamingContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FileWebRequest_GetObjectData_m1566584744_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationInfo_t2260044969 * V_0 = NULL; { SerializationInfo_t2260044969 * L_0 = ___serializationInfo0; V_0 = L_0; SerializationInfo_t2260044969 * L_1 = V_0; WebHeaderCollection_t3555365273 * L_2 = __this->get_webHeaders_7(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_3 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(WebHeaderCollection_t3555365273_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_1); SerializationInfo_AddValue_m1233434328(L_1, _stringLiteral839936504, L_2, L_3, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_4 = V_0; RuntimeObject* L_5 = __this->get_proxy_12(); Type_t * L_6 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(IWebProxy_t2986465618_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_4); SerializationInfo_AddValue_m1233434328(L_4, _stringLiteral190309782, L_5, L_6, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_7 = V_0; Uri_t3882940875 * L_8 = __this->get_uri_6(); Type_t * L_9 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Uri_t3882940875_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_7); SerializationInfo_AddValue_m1233434328(L_7, _stringLiteral2612727421, L_8, L_9, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_10 = V_0; String_t* L_11 = __this->get_connectionGroup_8(); NullCheck(L_10); SerializationInfo_AddValue_m3743344052(L_10, _stringLiteral2736546672, L_11, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_12 = V_0; String_t* L_13 = __this->get_method_11(); NullCheck(L_12); SerializationInfo_AddValue_m3743344052(L_12, _stringLiteral2723246392, L_13, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_14 = V_0; int64_t L_15 = __this->get_contentLength_9(); NullCheck(L_14); SerializationInfo_AddValue_m618654658(L_14, _stringLiteral2897867309, L_15, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_16 = V_0; int32_t L_17 = __this->get_timeout_14(); NullCheck(L_16); SerializationInfo_AddValue_m2171140450(L_16, _stringLiteral3674026459, L_17, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_18 = V_0; int32_t L_19 = __this->get_fileAccess_10(); int32_t L_20 = L_19; RuntimeObject * L_21 = Box(FileAccess_t1449903724_il2cpp_TypeInfo_var, &L_20); NullCheck(L_18); SerializationInfo_AddValue_m3743344052(L_18, _stringLiteral3896524367, L_21, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_22 = V_0; NullCheck(L_22); SerializationInfo_AddValue_m3100423471(L_22, _stringLiteral3809982414, (bool)0, /*hidden argument*/NULL); return; } } // System.Void System.Net.FileWebRequestCreator::.ctor() extern "C" void FileWebRequestCreator__ctor_m3137106243 (FileWebRequestCreator_t2184176962 * __this, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); return; } } // System.Net.WebRequest System.Net.FileWebRequestCreator::Create(System.Uri) extern "C" WebRequest_t294146427 * FileWebRequestCreator_Create_m3341862148 (FileWebRequestCreator_t2184176962 * __this, Uri_t3882940875 * ___uri0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FileWebRequestCreator_Create_m3341862148_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Uri_t3882940875 * L_0 = ___uri0; FileWebRequest_t734527143 * L_1 = (FileWebRequest_t734527143 *)il2cpp_codegen_object_new(FileWebRequest_t734527143_il2cpp_TypeInfo_var); FileWebRequest__ctor_m275703078(L_1, L_0, /*hidden argument*/NULL); return L_1; } } // System.Void System.Net.FtpRequestCreator::.ctor() extern "C" void FtpRequestCreator__ctor_m962690251 (FtpRequestCreator_t2676413055 * __this, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); return; } } // System.Net.WebRequest System.Net.FtpRequestCreator::Create(System.Uri) extern "C" WebRequest_t294146427 * FtpRequestCreator_Create_m3639297538 (FtpRequestCreator_t2676413055 * __this, Uri_t3882940875 * ___uri0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FtpRequestCreator_Create_m3639297538_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Uri_t3882940875 * L_0 = ___uri0; FtpWebRequest_t2481454041 * L_1 = (FtpWebRequest_t2481454041 *)il2cpp_codegen_object_new(FtpWebRequest_t2481454041_il2cpp_TypeInfo_var); FtpWebRequest__ctor_m3034724643(L_1, L_0, /*hidden argument*/NULL); return L_1; } } // System.Void System.Net.FtpWebRequest::.ctor(System.Uri) extern "C" void FtpWebRequest__ctor_m3034724643 (FtpWebRequest_t2481454041 * __this, Uri_t3882940875 * ___uri0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FtpWebRequest__ctor_m3034724643_MetadataUsageId); s_Il2CppMethodInitialized = true; } FtpWebRequest_t2481454041 * G_B2_0 = NULL; FtpWebRequest_t2481454041 * G_B1_0 = NULL; { __this->set_timeout_8(((int32_t)100000)); __this->set_rwTimeout_9(((int32_t)300000)); __this->set_binary_10((bool)1); __this->set_usePassive_11((bool)1); __this->set_method_12(_stringLiteral3619313060); RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m3115879119(L_0, /*hidden argument*/NULL); __this->set_locker_13(L_0); IL2CPP_RUNTIME_CLASS_INIT(FtpWebRequest_t2481454041_il2cpp_TypeInfo_var); RemoteCertificateValidationCallback_t1272219315 * L_1 = ((FtpWebRequest_t2481454041_StaticFields*)il2cpp_codegen_static_fields_for(FtpWebRequest_t2481454041_il2cpp_TypeInfo_var))->get_U3CU3Ef__amU24cache1C_16(); G_B1_0 = __this; if (L_1) { G_B2_0 = __this; goto IL_0053; } } { intptr_t L_2 = (intptr_t)FtpWebRequest_U3CcallbackU3Em__B_m1337392969_RuntimeMethod_var; RemoteCertificateValidationCallback_t1272219315 * L_3 = (RemoteCertificateValidationCallback_t1272219315 *)il2cpp_codegen_object_new(RemoteCertificateValidationCallback_t1272219315_il2cpp_TypeInfo_var); RemoteCertificateValidationCallback__ctor_m3584509631(L_3, NULL, L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(FtpWebRequest_t2481454041_il2cpp_TypeInfo_var); ((FtpWebRequest_t2481454041_StaticFields*)il2cpp_codegen_static_fields_for(FtpWebRequest_t2481454041_il2cpp_TypeInfo_var))->set_U3CU3Ef__amU24cache1C_16(L_3); G_B2_0 = G_B1_0; } IL_0053: { IL2CPP_RUNTIME_CLASS_INIT(FtpWebRequest_t2481454041_il2cpp_TypeInfo_var); RemoteCertificateValidationCallback_t1272219315 * L_4 = ((FtpWebRequest_t2481454041_StaticFields*)il2cpp_codegen_static_fields_for(FtpWebRequest_t2481454041_il2cpp_TypeInfo_var))->get_U3CU3Ef__amU24cache1C_16(); NullCheck(G_B2_0); G_B2_0->set_callback_15(L_4); IL2CPP_RUNTIME_CLASS_INIT(WebRequest_t294146427_il2cpp_TypeInfo_var); WebRequest__ctor_m1143597694(__this, /*hidden argument*/NULL); Uri_t3882940875 * L_5 = ___uri0; __this->set_requestUri_6(L_5); RuntimeObject* L_6 = GlobalProxySelection_get_Select_m121130108(NULL /*static, unused*/, /*hidden argument*/NULL); __this->set_proxy_7(L_6); return; } } // System.Void System.Net.FtpWebRequest::.cctor() extern "C" void FtpWebRequest__cctor_m3947729622 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FtpWebRequest__cctor_m3947729622_MetadataUsageId); s_Il2CppMethodInitialized = true; } { StringU5BU5D_t1187188029* L_0 = ((StringU5BU5D_t1187188029*)SZArrayNew(StringU5BU5D_t1187188029_il2cpp_TypeInfo_var, (uint32_t)((int32_t)13))); NullCheck(L_0); ArrayElementTypeCheck (L_0, _stringLiteral2348935864); (L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral2348935864); StringU5BU5D_t1187188029* L_1 = L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteral4112288356); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral4112288356); StringU5BU5D_t1187188029* L_2 = L_1; NullCheck(L_2); ArrayElementTypeCheck (L_2, _stringLiteral1946845219); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral1946845219); StringU5BU5D_t1187188029* L_3 = L_2; NullCheck(L_3); ArrayElementTypeCheck (L_3, _stringLiteral1595961858); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral1595961858); StringU5BU5D_t1187188029* L_4 = L_3; NullCheck(L_4); ArrayElementTypeCheck (L_4, _stringLiteral3031896939); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral3031896939); StringU5BU5D_t1187188029* L_5 = L_4; NullCheck(L_5); ArrayElementTypeCheck (L_5, _stringLiteral1757262481); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral1757262481); StringU5BU5D_t1187188029* L_6 = L_5; NullCheck(L_6); ArrayElementTypeCheck (L_6, _stringLiteral1883019485); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral1883019485); StringU5BU5D_t1187188029* L_7 = L_6; NullCheck(L_7); ArrayElementTypeCheck (L_7, _stringLiteral2233690061); (L_7)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteral2233690061); StringU5BU5D_t1187188029* L_8 = L_7; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral3619313060); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteral3619313060); StringU5BU5D_t1187188029* L_9 = L_8; NullCheck(L_9); ArrayElementTypeCheck (L_9, _stringLiteral3448455629); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)_stringLiteral3448455629); StringU5BU5D_t1187188029* L_10 = L_9; NullCheck(L_10); ArrayElementTypeCheck (L_10, _stringLiteral2543280923); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (String_t*)_stringLiteral2543280923); StringU5BU5D_t1187188029* L_11 = L_10; NullCheck(L_11); ArrayElementTypeCheck (L_11, _stringLiteral4046258818); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (String_t*)_stringLiteral4046258818); StringU5BU5D_t1187188029* L_12 = L_11; NullCheck(L_12); ArrayElementTypeCheck (L_12, _stringLiteral1949377983); (L_12)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (String_t*)_stringLiteral1949377983); ((FtpWebRequest_t2481454041_StaticFields*)il2cpp_codegen_static_fields_for(FtpWebRequest_t2481454041_il2cpp_TypeInfo_var))->set_supportedCommands_14(L_12); return; } } // System.Boolean System.Net.FtpWebRequest::<callback>m__B(System.Object,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Net.Security.SslPolicyErrors) extern "C" bool FtpWebRequest_U3CcallbackU3Em__B_m1337392969 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___sender0, X509Certificate_t1566844445 * ___certificate1, X509Chain_t2226602000 * ___chain2, int32_t ___sslPolicyErrors3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FtpWebRequest_U3CcallbackU3Em__B_m1337392969_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); RemoteCertificateValidationCallback_t1272219315 * L_0 = ServicePointManager_get_ServerCertificateValidationCallback_m4196527332(NULL /*static, unused*/, /*hidden argument*/NULL); if (!L_0) { goto IL_0019; } } { IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); RemoteCertificateValidationCallback_t1272219315 * L_1 = ServicePointManager_get_ServerCertificateValidationCallback_m4196527332(NULL /*static, unused*/, /*hidden argument*/NULL); RuntimeObject * L_2 = ___sender0; X509Certificate_t1566844445 * L_3 = ___certificate1; X509Chain_t2226602000 * L_4 = ___chain2; int32_t L_5 = ___sslPolicyErrors3; NullCheck(L_1); bool L_6 = RemoteCertificateValidationCallback_Invoke_m3002754149(L_1, L_2, L_3, L_4, L_5, /*hidden argument*/NULL); return L_6; } IL_0019: { int32_t L_7 = ___sslPolicyErrors3; if (!L_7) { goto IL_0035; } } { int32_t L_8 = ___sslPolicyErrors3; int32_t L_9 = L_8; RuntimeObject * L_10 = Box(SslPolicyErrors_t2196644362_il2cpp_TypeInfo_var, &L_9); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_11 = String_Concat_m4101136157(NULL /*static, unused*/, _stringLiteral1332291575, L_10, /*hidden argument*/NULL); InvalidOperationException_t94637358 * L_12 = (InvalidOperationException_t94637358 *)il2cpp_codegen_object_new(InvalidOperationException_t94637358_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1166481370(L_12, L_11, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12); } IL_0035: { return (bool)1; } } // System.Net.IWebProxy System.Net.GlobalProxySelection::get_Select() extern "C" RuntimeObject* GlobalProxySelection_get_Select_m121130108 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GlobalProxySelection_get_Select_m121130108_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(WebRequest_t294146427_il2cpp_TypeInfo_var); RuntimeObject* L_0 = WebRequest_get_DefaultWebProxy_m1954888778(NULL /*static, unused*/, /*hidden argument*/NULL); return L_0; } } // System.Void System.Net.HttpRequestCreator::.ctor() extern "C" void HttpRequestCreator__ctor_m3641191177 (HttpRequestCreator_t852478564 * __this, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); return; } } // System.Net.WebRequest System.Net.HttpRequestCreator::Create(System.Uri) extern "C" WebRequest_t294146427 * HttpRequestCreator_Create_m1359982715 (HttpRequestCreator_t852478564 * __this, Uri_t3882940875 * ___uri0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (HttpRequestCreator_Create_m1359982715_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Uri_t3882940875 * L_0 = ___uri0; HttpWebRequest_t546590891 * L_1 = (HttpWebRequest_t546590891 *)il2cpp_codegen_object_new(HttpWebRequest_t546590891_il2cpp_TypeInfo_var); HttpWebRequest__ctor_m3249692819(L_1, L_0, /*hidden argument*/NULL); return L_1; } } // System.Void System.Net.HttpVersion::.cctor() extern "C" void HttpVersion__cctor_m2444029544 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (HttpVersion__cctor_m2444029544_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Version_t269959680 * L_0 = (Version_t269959680 *)il2cpp_codegen_object_new(Version_t269959680_il2cpp_TypeInfo_var); Version__ctor_m729134856(L_0, 1, 0, /*hidden argument*/NULL); ((HttpVersion_t1323918900_StaticFields*)il2cpp_codegen_static_fields_for(HttpVersion_t1323918900_il2cpp_TypeInfo_var))->set_Version10_0(L_0); Version_t269959680 * L_1 = (Version_t269959680 *)il2cpp_codegen_object_new(Version_t269959680_il2cpp_TypeInfo_var); Version__ctor_m729134856(L_1, 1, 1, /*hidden argument*/NULL); ((HttpVersion_t1323918900_StaticFields*)il2cpp_codegen_static_fields_for(HttpVersion_t1323918900_il2cpp_TypeInfo_var))->set_Version11_1(L_1); return; } } // System.Void System.Net.HttpWebRequest::.ctor(System.Uri) extern "C" void HttpWebRequest__ctor_m3249692819 (HttpWebRequest_t546590891 * __this, Uri_t3882940875 * ___uri0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (HttpWebRequest__ctor_m3249692819_MetadataUsageId); s_Il2CppMethodInitialized = true; } { __this->set_allowAutoRedirect_9((bool)1); __this->set_allowBuffering_10((bool)1); __this->set_contentLength_13((((int64_t)((int64_t)(-1))))); WebHeaderCollection_t3555365273 * L_0 = (WebHeaderCollection_t3555365273 *)il2cpp_codegen_object_new(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var); WebHeaderCollection__ctor_m1317962248(L_0, (bool)1, /*hidden argument*/NULL); __this->set_webHeaders_14(L_0); __this->set_keepAlive_15((bool)1); __this->set_maxAutoRedirect_16(((int32_t)50)); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); __this->set_mediaType_17(L_1); __this->set_method_18(_stringLiteral2509137387); __this->set_initialMethod_19(_stringLiteral2509137387); __this->set_pipelined_20((bool)1); IL2CPP_RUNTIME_CLASS_INIT(HttpVersion_t1323918900_il2cpp_TypeInfo_var); Version_t269959680 * L_2 = ((HttpVersion_t1323918900_StaticFields*)il2cpp_codegen_static_fields_for(HttpVersion_t1323918900_il2cpp_TypeInfo_var))->get_Version11_1(); __this->set_version_21(L_2); __this->set_timeout_25(((int32_t)100000)); RuntimeObject * L_3 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m3115879119(L_3, /*hidden argument*/NULL); __this->set_locker_27(L_3); __this->set_readWriteTimeout_29(((int32_t)300000)); IL2CPP_RUNTIME_CLASS_INIT(WebRequest_t294146427_il2cpp_TypeInfo_var); WebRequest__ctor_m1143597694(__this, /*hidden argument*/NULL); Uri_t3882940875 * L_4 = ___uri0; __this->set_requestUri_6(L_4); Uri_t3882940875 * L_5 = ___uri0; __this->set_actualUri_7(L_5); RuntimeObject* L_6 = GlobalProxySelection_get_Select_m121130108(NULL /*static, unused*/, /*hidden argument*/NULL); __this->set_proxy_22(L_6); return; } } // System.Void System.Net.HttpWebRequest::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void HttpWebRequest__ctor_m691814463 (HttpWebRequest_t546590891 * __this, SerializationInfo_t2260044969 * ___serializationInfo0, StreamingContext_t3610716448 ___streamingContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (HttpWebRequest__ctor_m691814463_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationInfo_t2260044969 * V_0 = NULL; { __this->set_allowAutoRedirect_9((bool)1); __this->set_allowBuffering_10((bool)1); __this->set_contentLength_13((((int64_t)((int64_t)(-1))))); WebHeaderCollection_t3555365273 * L_0 = (WebHeaderCollection_t3555365273 *)il2cpp_codegen_object_new(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var); WebHeaderCollection__ctor_m1317962248(L_0, (bool)1, /*hidden argument*/NULL); __this->set_webHeaders_14(L_0); __this->set_keepAlive_15((bool)1); __this->set_maxAutoRedirect_16(((int32_t)50)); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); __this->set_mediaType_17(L_1); __this->set_method_18(_stringLiteral2509137387); __this->set_initialMethod_19(_stringLiteral2509137387); __this->set_pipelined_20((bool)1); IL2CPP_RUNTIME_CLASS_INIT(HttpVersion_t1323918900_il2cpp_TypeInfo_var); Version_t269959680 * L_2 = ((HttpVersion_t1323918900_StaticFields*)il2cpp_codegen_static_fields_for(HttpVersion_t1323918900_il2cpp_TypeInfo_var))->get_Version11_1(); __this->set_version_21(L_2); __this->set_timeout_25(((int32_t)100000)); RuntimeObject * L_3 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m3115879119(L_3, /*hidden argument*/NULL); __this->set_locker_27(L_3); __this->set_readWriteTimeout_29(((int32_t)300000)); IL2CPP_RUNTIME_CLASS_INIT(WebRequest_t294146427_il2cpp_TypeInfo_var); WebRequest__ctor_m1143597694(__this, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_4 = ___serializationInfo0; V_0 = L_4; SerializationInfo_t2260044969 * L_5 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Uri_t3882940875_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_5); RuntimeObject * L_7 = SerializationInfo_GetValue_m376336523(L_5, _stringLiteral835297980, L_6, /*hidden argument*/NULL); __this->set_requestUri_6(((Uri_t3882940875 *)CastclassClass((RuntimeObject*)L_7, Uri_t3882940875_il2cpp_TypeInfo_var))); SerializationInfo_t2260044969 * L_8 = V_0; Type_t * L_9 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Uri_t3882940875_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_8); RuntimeObject * L_10 = SerializationInfo_GetValue_m376336523(L_8, _stringLiteral2080548866, L_9, /*hidden argument*/NULL); __this->set_actualUri_7(((Uri_t3882940875 *)CastclassClass((RuntimeObject*)L_10, Uri_t3882940875_il2cpp_TypeInfo_var))); SerializationInfo_t2260044969 * L_11 = V_0; NullCheck(L_11); bool L_12 = SerializationInfo_GetBoolean_m706624525(L_11, _stringLiteral479993712, /*hidden argument*/NULL); __this->set_allowAutoRedirect_9(L_12); SerializationInfo_t2260044969 * L_13 = V_0; NullCheck(L_13); bool L_14 = SerializationInfo_GetBoolean_m706624525(L_13, _stringLiteral2265734715, /*hidden argument*/NULL); __this->set_allowBuffering_10(L_14); SerializationInfo_t2260044969 * L_15 = V_0; Type_t * L_16 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(X509CertificateCollection_t3808695127_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_15); RuntimeObject * L_17 = SerializationInfo_GetValue_m376336523(L_15, _stringLiteral2620571223, L_16, /*hidden argument*/NULL); __this->set_certificates_11(((X509CertificateCollection_t3808695127 *)CastclassClass((RuntimeObject*)L_17, X509CertificateCollection_t3808695127_il2cpp_TypeInfo_var))); SerializationInfo_t2260044969 * L_18 = V_0; NullCheck(L_18); String_t* L_19 = SerializationInfo_GetString_m2297443841(L_18, _stringLiteral3106254525, /*hidden argument*/NULL); __this->set_connectionGroup_12(L_19); SerializationInfo_t2260044969 * L_20 = V_0; NullCheck(L_20); int64_t L_21 = SerializationInfo_GetInt64_m3494402209(L_20, _stringLiteral2897867309, /*hidden argument*/NULL); __this->set_contentLength_13(L_21); SerializationInfo_t2260044969 * L_22 = V_0; Type_t * L_23 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(WebHeaderCollection_t3555365273_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_22); RuntimeObject * L_24 = SerializationInfo_GetValue_m376336523(L_22, _stringLiteral3303761322, L_23, /*hidden argument*/NULL); __this->set_webHeaders_14(((WebHeaderCollection_t3555365273 *)CastclassClass((RuntimeObject*)L_24, WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))); SerializationInfo_t2260044969 * L_25 = V_0; NullCheck(L_25); bool L_26 = SerializationInfo_GetBoolean_m706624525(L_25, _stringLiteral3758605544, /*hidden argument*/NULL); __this->set_keepAlive_15(L_26); SerializationInfo_t2260044969 * L_27 = V_0; NullCheck(L_27); int32_t L_28 = SerializationInfo_GetInt32_m877527589(L_27, _stringLiteral1458798883, /*hidden argument*/NULL); __this->set_maxAutoRedirect_16(L_28); SerializationInfo_t2260044969 * L_29 = V_0; NullCheck(L_29); String_t* L_30 = SerializationInfo_GetString_m2297443841(L_29, _stringLiteral1961700812, /*hidden argument*/NULL); __this->set_mediaType_17(L_30); SerializationInfo_t2260044969 * L_31 = V_0; NullCheck(L_31); String_t* L_32 = SerializationInfo_GetString_m2297443841(L_31, _stringLiteral2723246392, /*hidden argument*/NULL); __this->set_method_18(L_32); SerializationInfo_t2260044969 * L_33 = V_0; NullCheck(L_33); String_t* L_34 = SerializationInfo_GetString_m2297443841(L_33, _stringLiteral954666166, /*hidden argument*/NULL); __this->set_initialMethod_19(L_34); SerializationInfo_t2260044969 * L_35 = V_0; NullCheck(L_35); bool L_36 = SerializationInfo_GetBoolean_m706624525(L_35, _stringLiteral2208733333, /*hidden argument*/NULL); __this->set_pipelined_20(L_36); SerializationInfo_t2260044969 * L_37 = V_0; Type_t * L_38 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Version_t269959680_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_37); RuntimeObject * L_39 = SerializationInfo_GetValue_m376336523(L_37, _stringLiteral1795378766, L_38, /*hidden argument*/NULL); __this->set_version_21(((Version_t269959680 *)CastclassSealed((RuntimeObject*)L_39, Version_t269959680_il2cpp_TypeInfo_var))); SerializationInfo_t2260044969 * L_40 = V_0; Type_t * L_41 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(IWebProxy_t2986465618_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_40); RuntimeObject * L_42 = SerializationInfo_GetValue_m376336523(L_40, _stringLiteral190309782, L_41, /*hidden argument*/NULL); __this->set_proxy_22(((RuntimeObject*)Castclass((RuntimeObject*)L_42, IWebProxy_t2986465618_il2cpp_TypeInfo_var))); SerializationInfo_t2260044969 * L_43 = V_0; NullCheck(L_43); bool L_44 = SerializationInfo_GetBoolean_m706624525(L_43, _stringLiteral86029165, /*hidden argument*/NULL); __this->set_sendChunked_23(L_44); SerializationInfo_t2260044969 * L_45 = V_0; NullCheck(L_45); int32_t L_46 = SerializationInfo_GetInt32_m877527589(L_45, _stringLiteral3674026459, /*hidden argument*/NULL); __this->set_timeout_25(L_46); SerializationInfo_t2260044969 * L_47 = V_0; NullCheck(L_47); int32_t L_48 = SerializationInfo_GetInt32_m877527589(L_47, _stringLiteral3687977956, /*hidden argument*/NULL); __this->set_redirects_26(L_48); return; } } // System.Void System.Net.HttpWebRequest::.cctor() extern "C" void HttpWebRequest__cctor_m1029007456 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (HttpWebRequest__cctor_m1029007456_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ((HttpWebRequest_t546590891_StaticFields*)il2cpp_codegen_static_fields_for(HttpWebRequest_t546590891_il2cpp_TypeInfo_var))->set_defaultMaxResponseHeadersLength_28(((int32_t)65536)); return; } } // System.Void System.Net.HttpWebRequest::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void HttpWebRequest_System_Runtime_Serialization_ISerializable_GetObjectData_m1457732854 (HttpWebRequest_t546590891 * __this, SerializationInfo_t2260044969 * ___serializationInfo0, StreamingContext_t3610716448 ___streamingContext1, const RuntimeMethod* method) { { SerializationInfo_t2260044969 * L_0 = ___serializationInfo0; StreamingContext_t3610716448 L_1 = ___streamingContext1; VirtActionInvoker2< SerializationInfo_t2260044969 *, StreamingContext_t3610716448 >::Invoke(7 /* System.Void System.Net.HttpWebRequest::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, __this, L_0, L_1); return; } } // System.Uri System.Net.HttpWebRequest::get_Address() extern "C" Uri_t3882940875 * HttpWebRequest_get_Address_m3911819819 (HttpWebRequest_t546590891 * __this, const RuntimeMethod* method) { { Uri_t3882940875 * L_0 = __this->get_actualUri_7(); return L_0; } } // System.Net.ServicePoint System.Net.HttpWebRequest::get_ServicePoint() extern "C" ServicePoint_t236056219 * HttpWebRequest_get_ServicePoint_m2120927683 (HttpWebRequest_t546590891 * __this, const RuntimeMethod* method) { { ServicePoint_t236056219 * L_0 = HttpWebRequest_GetServicePoint_m1588434857(__this, /*hidden argument*/NULL); return L_0; } } // System.Net.ServicePoint System.Net.HttpWebRequest::GetServicePoint() extern "C" ServicePoint_t236056219 * HttpWebRequest_GetServicePoint_m1588434857 (HttpWebRequest_t546590891 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (HttpWebRequest_GetServicePoint_m1588434857_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = __this->get_locker_27(); V_0 = L_0; RuntimeObject * L_1 = V_0; Monitor_Enter_m1524383546(NULL /*static, unused*/, L_1, /*hidden argument*/NULL); } IL_000d: try { // begin try (depth: 1) { bool L_2 = __this->get_hostChanged_8(); if (L_2) { goto IL_0023; } } IL_0018: { ServicePoint_t236056219 * L_3 = __this->get_servicePoint_24(); if (L_3) { goto IL_0041; } } IL_0023: { Uri_t3882940875 * L_4 = __this->get_actualUri_7(); RuntimeObject* L_5 = __this->get_proxy_22(); IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); ServicePoint_t236056219 * L_6 = ServicePointManager_FindServicePoint_m1468708084(NULL /*static, unused*/, L_4, L_5, /*hidden argument*/NULL); __this->set_servicePoint_24(L_6); __this->set_hostChanged_8((bool)0); } IL_0041: { IL2CPP_LEAVE(0x4D, FINALLY_0046); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_0046; } FINALLY_0046: { // begin finally (depth: 1) RuntimeObject * L_7 = V_0; Monitor_Exit_m69827708(NULL /*static, unused*/, L_7, /*hidden argument*/NULL); IL2CPP_END_FINALLY(70) } // end finally (depth: 1) IL2CPP_CLEANUP(70) { IL2CPP_JUMP_TBL(0x4D, IL_004d) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_004d: { ServicePoint_t236056219 * L_8 = __this->get_servicePoint_24(); return L_8; } } // System.Void System.Net.HttpWebRequest::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void HttpWebRequest_GetObjectData_m2943994912 (HttpWebRequest_t546590891 * __this, SerializationInfo_t2260044969 * ___serializationInfo0, StreamingContext_t3610716448 ___streamingContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (HttpWebRequest_GetObjectData_m2943994912_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationInfo_t2260044969 * V_0 = NULL; { SerializationInfo_t2260044969 * L_0 = ___serializationInfo0; V_0 = L_0; SerializationInfo_t2260044969 * L_1 = V_0; Uri_t3882940875 * L_2 = __this->get_requestUri_6(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_3 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Uri_t3882940875_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_1); SerializationInfo_AddValue_m1233434328(L_1, _stringLiteral835297980, L_2, L_3, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_4 = V_0; Uri_t3882940875 * L_5 = __this->get_actualUri_7(); Type_t * L_6 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Uri_t3882940875_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_4); SerializationInfo_AddValue_m1233434328(L_4, _stringLiteral2080548866, L_5, L_6, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_7 = V_0; bool L_8 = __this->get_allowAutoRedirect_9(); NullCheck(L_7); SerializationInfo_AddValue_m3100423471(L_7, _stringLiteral479993712, L_8, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_9 = V_0; bool L_10 = __this->get_allowBuffering_10(); NullCheck(L_9); SerializationInfo_AddValue_m3100423471(L_9, _stringLiteral2265734715, L_10, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_11 = V_0; X509CertificateCollection_t3808695127 * L_12 = __this->get_certificates_11(); Type_t * L_13 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(X509CertificateCollection_t3808695127_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_11); SerializationInfo_AddValue_m1233434328(L_11, _stringLiteral2620571223, L_12, L_13, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_14 = V_0; String_t* L_15 = __this->get_connectionGroup_12(); NullCheck(L_14); SerializationInfo_AddValue_m3743344052(L_14, _stringLiteral3106254525, L_15, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_16 = V_0; int64_t L_17 = __this->get_contentLength_13(); NullCheck(L_16); SerializationInfo_AddValue_m618654658(L_16, _stringLiteral2897867309, L_17, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_18 = V_0; WebHeaderCollection_t3555365273 * L_19 = __this->get_webHeaders_14(); Type_t * L_20 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(WebHeaderCollection_t3555365273_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_18); SerializationInfo_AddValue_m1233434328(L_18, _stringLiteral3303761322, L_19, L_20, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_21 = V_0; bool L_22 = __this->get_keepAlive_15(); NullCheck(L_21); SerializationInfo_AddValue_m3100423471(L_21, _stringLiteral3758605544, L_22, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_23 = V_0; int32_t L_24 = __this->get_maxAutoRedirect_16(); NullCheck(L_23); SerializationInfo_AddValue_m2171140450(L_23, _stringLiteral1458798883, L_24, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_25 = V_0; String_t* L_26 = __this->get_mediaType_17(); NullCheck(L_25); SerializationInfo_AddValue_m3743344052(L_25, _stringLiteral1961700812, L_26, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_27 = V_0; String_t* L_28 = __this->get_method_18(); NullCheck(L_27); SerializationInfo_AddValue_m3743344052(L_27, _stringLiteral2723246392, L_28, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_29 = V_0; String_t* L_30 = __this->get_initialMethod_19(); NullCheck(L_29); SerializationInfo_AddValue_m3743344052(L_29, _stringLiteral954666166, L_30, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_31 = V_0; bool L_32 = __this->get_pipelined_20(); NullCheck(L_31); SerializationInfo_AddValue_m3100423471(L_31, _stringLiteral2208733333, L_32, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_33 = V_0; Version_t269959680 * L_34 = __this->get_version_21(); Type_t * L_35 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Version_t269959680_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_33); SerializationInfo_AddValue_m1233434328(L_33, _stringLiteral1795378766, L_34, L_35, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_36 = V_0; RuntimeObject* L_37 = __this->get_proxy_22(); Type_t * L_38 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(IWebProxy_t2986465618_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_36); SerializationInfo_AddValue_m1233434328(L_36, _stringLiteral190309782, L_37, L_38, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_39 = V_0; bool L_40 = __this->get_sendChunked_23(); NullCheck(L_39); SerializationInfo_AddValue_m3100423471(L_39, _stringLiteral86029165, L_40, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_41 = V_0; int32_t L_42 = __this->get_timeout_25(); NullCheck(L_41); SerializationInfo_AddValue_m2171140450(L_41, _stringLiteral3674026459, L_42, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_43 = V_0; int32_t L_44 = __this->get_redirects_26(); NullCheck(L_43); SerializationInfo_AddValue_m2171140450(L_43, _stringLiteral3687977956, L_44, /*hidden argument*/NULL); return; } } // System.Void System.Net.IPAddress::.ctor(System.Int64) extern "C" void IPAddress__ctor_m2213721830 (IPAddress_t2830710878 * __this, int64_t ___addr0, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); int64_t L_0 = ___addr0; __this->set_m_Address_0(L_0); __this->set_m_Family_1(2); return; } } // System.Void System.Net.IPAddress::.ctor(System.UInt16[],System.Int64) extern "C" void IPAddress__ctor_m809365054 (IPAddress_t2830710878 * __this, UInt16U5BU5D_t1255862157* ___address0, int64_t ___scopeId1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPAddress__ctor_m809365054_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); UInt16U5BU5D_t1255862157* L_0 = ___address0; __this->set_m_Numbers_2(L_0); V_0 = 0; goto IL_002f; } IL_0014: { UInt16U5BU5D_t1255862157* L_1 = __this->get_m_Numbers_2(); int32_t L_2 = V_0; UInt16U5BU5D_t1255862157* L_3 = __this->get_m_Numbers_2(); int32_t L_4 = V_0; NullCheck(L_3); int32_t L_5 = L_4; uint16_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); int16_t L_7 = IPAddress_HostToNetworkOrder_m2436850084(NULL /*static, unused*/, (((int16_t)((int16_t)L_6))), /*hidden argument*/NULL); NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (uint16_t)(((int32_t)((uint16_t)L_7)))); int32_t L_8 = V_0; V_0 = ((int32_t)((int32_t)L_8+(int32_t)1)); } IL_002f: { int32_t L_9 = V_0; if ((((int32_t)L_9) < ((int32_t)8))) { goto IL_0014; } } { __this->set_m_Family_1(((int32_t)23)); int64_t L_10 = ___scopeId1; __this->set_m_ScopeId_3(L_10); return; } } // System.Void System.Net.IPAddress::.cctor() extern "C" void IPAddress__cctor_m3249259330 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPAddress__cctor_m3249259330_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IPAddress_t2830710878 * L_0 = (IPAddress_t2830710878 *)il2cpp_codegen_object_new(IPAddress_t2830710878_il2cpp_TypeInfo_var); IPAddress__ctor_m2213721830(L_0, (((int64_t)((int64_t)0))), /*hidden argument*/NULL); ((IPAddress_t2830710878_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2830710878_il2cpp_TypeInfo_var))->set_Any_4(L_0); IPAddress_t2830710878 * L_1 = IPAddress_Parse_m3708738621(NULL /*static, unused*/, _stringLiteral3469916976, /*hidden argument*/NULL); ((IPAddress_t2830710878_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2830710878_il2cpp_TypeInfo_var))->set_Broadcast_5(L_1); IPAddress_t2830710878 * L_2 = IPAddress_Parse_m3708738621(NULL /*static, unused*/, _stringLiteral136145558, /*hidden argument*/NULL); ((IPAddress_t2830710878_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2830710878_il2cpp_TypeInfo_var))->set_Loopback_6(L_2); IPAddress_t2830710878 * L_3 = IPAddress_Parse_m3708738621(NULL /*static, unused*/, _stringLiteral3469916976, /*hidden argument*/NULL); ((IPAddress_t2830710878_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2830710878_il2cpp_TypeInfo_var))->set_None_7(L_3); IPAddress_t2830710878 * L_4 = IPAddress_ParseIPV6_m3353368636(NULL /*static, unused*/, _stringLiteral3983943931, /*hidden argument*/NULL); ((IPAddress_t2830710878_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2830710878_il2cpp_TypeInfo_var))->set_IPv6Any_8(L_4); IPAddress_t2830710878 * L_5 = IPAddress_ParseIPV6_m3353368636(NULL /*static, unused*/, _stringLiteral28310375, /*hidden argument*/NULL); ((IPAddress_t2830710878_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2830710878_il2cpp_TypeInfo_var))->set_IPv6Loopback_9(L_5); IPAddress_t2830710878 * L_6 = IPAddress_ParseIPV6_m3353368636(NULL /*static, unused*/, _stringLiteral3983943931, /*hidden argument*/NULL); ((IPAddress_t2830710878_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2830710878_il2cpp_TypeInfo_var))->set_IPv6None_10(L_6); return; } } // System.Int16 System.Net.IPAddress::SwapShort(System.Int16) extern "C" int16_t IPAddress_SwapShort_m4226936771 (RuntimeObject * __this /* static, unused */, int16_t ___number0, const RuntimeMethod* method) { { int16_t L_0 = ___number0; int16_t L_1 = ___number0; return (((int16_t)((int16_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_0>>(int32_t)8))&(int32_t)((int32_t)255)))|(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_1<<(int32_t)8))&(int32_t)((int32_t)65280)))))))); } } // System.Int16 System.Net.IPAddress::HostToNetworkOrder(System.Int16) extern "C" int16_t IPAddress_HostToNetworkOrder_m2436850084 (RuntimeObject * __this /* static, unused */, int16_t ___host0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPAddress_HostToNetworkOrder_m2436850084_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t1877775590_il2cpp_TypeInfo_var); bool L_0 = ((BitConverter_t1877775590_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_t1877775590_il2cpp_TypeInfo_var))->get_IsLittleEndian_1(); if (L_0) { goto IL_000c; } } { int16_t L_1 = ___host0; return L_1; } IL_000c: { int16_t L_2 = ___host0; IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); int16_t L_3 = IPAddress_SwapShort_m4226936771(NULL /*static, unused*/, L_2, /*hidden argument*/NULL); return L_3; } } // System.Int16 System.Net.IPAddress::NetworkToHostOrder(System.Int16) extern "C" int16_t IPAddress_NetworkToHostOrder_m2003899271 (RuntimeObject * __this /* static, unused */, int16_t ___network0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPAddress_NetworkToHostOrder_m2003899271_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t1877775590_il2cpp_TypeInfo_var); bool L_0 = ((BitConverter_t1877775590_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_t1877775590_il2cpp_TypeInfo_var))->get_IsLittleEndian_1(); if (L_0) { goto IL_000c; } } { int16_t L_1 = ___network0; return L_1; } IL_000c: { int16_t L_2 = ___network0; IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); int16_t L_3 = IPAddress_SwapShort_m4226936771(NULL /*static, unused*/, L_2, /*hidden argument*/NULL); return L_3; } } // System.Net.IPAddress System.Net.IPAddress::Parse(System.String) extern "C" IPAddress_t2830710878 * IPAddress_Parse_m3708738621 (RuntimeObject * __this /* static, unused */, String_t* ___ipString0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPAddress_Parse_m3708738621_MetadataUsageId); s_Il2CppMethodInitialized = true; } IPAddress_t2830710878 * V_0 = NULL; { String_t* L_0 = ___ipString0; IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); bool L_1 = IPAddress_TryParse_m442898607(NULL /*static, unused*/, L_0, (&V_0), /*hidden argument*/NULL); if (!L_1) { goto IL_000f; } } { IPAddress_t2830710878 * L_2 = V_0; return L_2; } IL_000f: { FormatException_t3614201526 * L_3 = (FormatException_t3614201526 *)il2cpp_codegen_object_new(FormatException_t3614201526_il2cpp_TypeInfo_var); FormatException__ctor_m1936902822(L_3, _stringLiteral1026825319, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } } // System.Boolean System.Net.IPAddress::TryParse(System.String,System.Net.IPAddress&) extern "C" bool IPAddress_TryParse_m442898607 (RuntimeObject * __this /* static, unused */, String_t* ___ipString0, IPAddress_t2830710878 ** ___address1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPAddress_TryParse_m442898607_MetadataUsageId); s_Il2CppMethodInitialized = true; } IPAddress_t2830710878 * V_0 = NULL; { String_t* L_0 = ___ipString0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral53441942, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { IPAddress_t2830710878 ** L_2 = ___address1; String_t* L_3 = ___ipString0; IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); IPAddress_t2830710878 * L_4 = IPAddress_ParseIPV4_m1096964376(NULL /*static, unused*/, L_3, /*hidden argument*/NULL); IPAddress_t2830710878 * L_5 = L_4; V_0 = L_5; *((RuntimeObject **)(L_2)) = (RuntimeObject *)L_5; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_2), (RuntimeObject *)L_5); IPAddress_t2830710878 * L_6 = V_0; if (L_6) { goto IL_0033; } } { IPAddress_t2830710878 ** L_7 = ___address1; String_t* L_8 = ___ipString0; IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); IPAddress_t2830710878 * L_9 = IPAddress_ParseIPV6_m3353368636(NULL /*static, unused*/, L_8, /*hidden argument*/NULL); IPAddress_t2830710878 * L_10 = L_9; V_0 = L_10; *((RuntimeObject **)(L_7)) = (RuntimeObject *)L_10; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_7), (RuntimeObject *)L_10); IPAddress_t2830710878 * L_11 = V_0; if (L_11) { goto IL_0033; } } { return (bool)0; } IL_0033: { return (bool)1; } } // System.Net.IPAddress System.Net.IPAddress::ParseIPV4(System.String) extern "C" IPAddress_t2830710878 * IPAddress_ParseIPV4_m1096964376 (RuntimeObject * __this /* static, unused */, String_t* ___ip0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPAddress_ParseIPV4_m1096964376_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; StringU5BU5D_t1187188029* V_1 = NULL; String_t* V_2 = NULL; Il2CppChar V_3 = 0x0; CharU5BU5D_t1289681795* V_4 = NULL; int32_t V_5 = 0; StringU5BU5D_t1187188029* V_6 = NULL; int64_t V_7 = 0; int64_t V_8 = 0; int32_t V_9 = 0; String_t* V_10 = NULL; int32_t V_11 = 0; int32_t V_12 = 0; IPAddress_t2830710878 * V_13 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { String_t* L_0 = ___ip0; NullCheck(L_0); int32_t L_1 = String_IndexOf_m3163027715(L_0, ((int32_t)32), /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) == ((int32_t)(-1)))) { goto IL_0086; } } { String_t* L_3 = ___ip0; int32_t L_4 = V_0; NullCheck(L_3); String_t* L_5 = String_Substring_m4064971911(L_3, ((int32_t)((int32_t)L_4+(int32_t)1)), /*hidden argument*/NULL); CharU5BU5D_t1289681795* L_6 = ((CharU5BU5D_t1289681795*)SZArrayNew(CharU5BU5D_t1289681795_il2cpp_TypeInfo_var, (uint32_t)1)); NullCheck(L_6); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)46)); NullCheck(L_5); StringU5BU5D_t1187188029* L_7 = String_Split_m853698014(L_5, L_6, /*hidden argument*/NULL); V_1 = L_7; StringU5BU5D_t1187188029* L_8 = V_1; NullCheck(L_8); if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) <= ((int32_t)0))) { goto IL_007c; } } { StringU5BU5D_t1187188029* L_9 = V_1; StringU5BU5D_t1187188029* L_10 = V_1; NullCheck(L_10); NullCheck(L_9); int32_t L_11 = ((int32_t)((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length))))-(int32_t)1)); String_t* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11)); V_2 = L_12; String_t* L_13 = V_2; NullCheck(L_13); int32_t L_14 = String_get_Length_m2584136399(L_13, /*hidden argument*/NULL); if (L_14) { goto IL_0048; } } { return (IPAddress_t2830710878 *)NULL; } IL_0048: { String_t* L_15 = V_2; NullCheck(L_15); CharU5BU5D_t1289681795* L_16 = String_ToCharArray_m2342718794(L_15, /*hidden argument*/NULL); V_4 = L_16; V_5 = 0; goto IL_0071; } IL_0058: { CharU5BU5D_t1289681795* L_17 = V_4; int32_t L_18 = V_5; NullCheck(L_17); int32_t L_19 = L_18; uint16_t L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19)); V_3 = L_20; Il2CppChar L_21 = V_3; IL2CPP_RUNTIME_CLASS_INIT(Uri_t3882940875_il2cpp_TypeInfo_var); bool L_22 = Uri_IsHexDigit_m2101298566(NULL /*static, unused*/, L_21, /*hidden argument*/NULL); if (L_22) { goto IL_006b; } } { return (IPAddress_t2830710878 *)NULL; } IL_006b: { int32_t L_23 = V_5; V_5 = ((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0071: { int32_t L_24 = V_5; CharU5BU5D_t1289681795* L_25 = V_4; NullCheck(L_25); if ((((int32_t)L_24) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_25)->max_length))))))) { goto IL_0058; } } IL_007c: { String_t* L_26 = ___ip0; int32_t L_27 = V_0; NullCheck(L_26); String_t* L_28 = String_Substring_m3946733520(L_26, 0, L_27, /*hidden argument*/NULL); ___ip0 = L_28; } IL_0086: { String_t* L_29 = ___ip0; NullCheck(L_29); int32_t L_30 = String_get_Length_m2584136399(L_29, /*hidden argument*/NULL); if (!L_30) { goto IL_00a6; } } { String_t* L_31 = ___ip0; String_t* L_32 = ___ip0; NullCheck(L_32); int32_t L_33 = String_get_Length_m2584136399(L_32, /*hidden argument*/NULL); NullCheck(L_31); Il2CppChar L_34 = String_get_Chars_m1760567447(L_31, ((int32_t)((int32_t)L_33-(int32_t)1)), /*hidden argument*/NULL); if ((!(((uint32_t)L_34) == ((uint32_t)((int32_t)46))))) { goto IL_00a8; } } IL_00a6: { return (IPAddress_t2830710878 *)NULL; } IL_00a8: { String_t* L_35 = ___ip0; CharU5BU5D_t1289681795* L_36 = ((CharU5BU5D_t1289681795*)SZArrayNew(CharU5BU5D_t1289681795_il2cpp_TypeInfo_var, (uint32_t)1)); NullCheck(L_36); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)46)); NullCheck(L_35); StringU5BU5D_t1187188029* L_37 = String_Split_m853698014(L_35, L_36, /*hidden argument*/NULL); V_6 = L_37; StringU5BU5D_t1187188029* L_38 = V_6; NullCheck(L_38); if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_38)->max_length))))) <= ((int32_t)4))) { goto IL_00c7; } } { return (IPAddress_t2830710878 *)NULL; } IL_00c7: try { // begin try (depth: 1) { V_7 = (((int64_t)((int64_t)0))); V_8 = (((int64_t)((int64_t)0))); V_9 = 0; goto IL_027e; } IL_00d7: { StringU5BU5D_t1187188029* L_39 = V_6; int32_t L_40 = V_9; NullCheck(L_39); int32_t L_41 = L_40; String_t* L_42 = (L_39)->GetAt(static_cast<il2cpp_array_size_t>(L_41)); V_10 = L_42; String_t* L_43 = V_10; NullCheck(L_43); int32_t L_44 = String_get_Length_m2584136399(L_43, /*hidden argument*/NULL); if ((((int32_t)3) > ((int32_t)L_44))) { goto IL_016e; } } IL_00eb: { String_t* L_45 = V_10; NullCheck(L_45); int32_t L_46 = String_get_Length_m2584136399(L_45, /*hidden argument*/NULL); if ((((int32_t)L_46) > ((int32_t)4))) { goto IL_016e; } } IL_00f8: { String_t* L_47 = V_10; NullCheck(L_47); Il2CppChar L_48 = String_get_Chars_m1760567447(L_47, 0, /*hidden argument*/NULL); if ((!(((uint32_t)L_48) == ((uint32_t)((int32_t)48))))) { goto IL_016e; } } IL_0107: { String_t* L_49 = V_10; NullCheck(L_49); Il2CppChar L_50 = String_get_Chars_m1760567447(L_49, 1, /*hidden argument*/NULL); if ((((int32_t)L_50) == ((int32_t)((int32_t)120)))) { goto IL_0125; } } IL_0116: { String_t* L_51 = V_10; NullCheck(L_51); Il2CppChar L_52 = String_get_Chars_m1760567447(L_51, 1, /*hidden argument*/NULL); if ((!(((uint32_t)L_52) == ((uint32_t)((int32_t)88))))) { goto IL_016e; } } IL_0125: { String_t* L_53 = V_10; NullCheck(L_53); int32_t L_54 = String_get_Length_m2584136399(L_53, /*hidden argument*/NULL); if ((!(((uint32_t)L_54) == ((uint32_t)3)))) { goto IL_0148; } } IL_0132: { String_t* L_55 = V_10; NullCheck(L_55); Il2CppChar L_56 = String_get_Chars_m1760567447(L_55, 2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Uri_t3882940875_il2cpp_TypeInfo_var); int32_t L_57 = Uri_FromHex_m558617423(NULL /*static, unused*/, L_56, /*hidden argument*/NULL); V_8 = (((int64_t)((int64_t)(((int32_t)((uint8_t)L_57)))))); goto IL_0169; } IL_0148: { String_t* L_58 = V_10; NullCheck(L_58); Il2CppChar L_59 = String_get_Chars_m1760567447(L_58, 2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Uri_t3882940875_il2cpp_TypeInfo_var); int32_t L_60 = Uri_FromHex_m558617423(NULL /*static, unused*/, L_59, /*hidden argument*/NULL); String_t* L_61 = V_10; NullCheck(L_61); Il2CppChar L_62 = String_get_Chars_m1760567447(L_61, 3, /*hidden argument*/NULL); int32_t L_63 = Uri_FromHex_m558617423(NULL /*static, unused*/, L_62, /*hidden argument*/NULL); V_8 = (((int64_t)((int64_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_60<<(int32_t)4))|(int32_t)L_63)))))))); } IL_0169: { goto IL_0210; } IL_016e: { String_t* L_64 = V_10; NullCheck(L_64); int32_t L_65 = String_get_Length_m2584136399(L_64, /*hidden argument*/NULL); if (L_65) { goto IL_0182; } } IL_017a: { V_13 = (IPAddress_t2830710878 *)NULL; goto IL_02aa; } IL_0182: { String_t* L_66 = V_10; NullCheck(L_66); Il2CppChar L_67 = String_get_Chars_m1760567447(L_66, 0, /*hidden argument*/NULL); if ((!(((uint32_t)L_67) == ((uint32_t)((int32_t)48))))) { goto IL_01f8; } } IL_0191: { V_8 = (((int64_t)((int64_t)0))); V_11 = 1; goto IL_01e5; } IL_019d: { String_t* L_68 = V_10; int32_t L_69 = V_11; NullCheck(L_68); Il2CppChar L_70 = String_get_Chars_m1760567447(L_68, L_69, /*hidden argument*/NULL); if ((((int32_t)((int32_t)48)) > ((int32_t)L_70))) { goto IL_01d7; } } IL_01ad: { String_t* L_71 = V_10; int32_t L_72 = V_11; NullCheck(L_71); Il2CppChar L_73 = String_get_Chars_m1760567447(L_71, L_72, /*hidden argument*/NULL); if ((((int32_t)L_73) > ((int32_t)((int32_t)55)))) { goto IL_01d7; } } IL_01bd: { int64_t L_74 = V_8; String_t* L_75 = V_10; int32_t L_76 = V_11; NullCheck(L_75); Il2CppChar L_77 = String_get_Chars_m1760567447(L_75, L_76, /*hidden argument*/NULL); V_8 = ((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_74<<(int32_t)3))+(int64_t)(((int64_t)((int64_t)L_77)))))-(int64_t)(((int64_t)((int64_t)((int32_t)48)))))); goto IL_01df; } IL_01d7: { V_13 = (IPAddress_t2830710878 *)NULL; goto IL_02aa; } IL_01df: { int32_t L_78 = V_11; V_11 = ((int32_t)((int32_t)L_78+(int32_t)1)); } IL_01e5: { int32_t L_79 = V_11; String_t* L_80 = V_10; NullCheck(L_80); int32_t L_81 = String_get_Length_m2584136399(L_80, /*hidden argument*/NULL); if ((((int32_t)L_79) < ((int32_t)L_81))) { goto IL_019d; } } IL_01f3: { goto IL_0210; } IL_01f8: { String_t* L_82 = V_10; bool L_83 = Int64_TryParse_m2330259503(NULL /*static, unused*/, L_82, 0, (RuntimeObject*)NULL, (&V_8), /*hidden argument*/NULL); if (L_83) { goto IL_0210; } } IL_0208: { V_13 = (IPAddress_t2830710878 *)NULL; goto IL_02aa; } IL_0210: { int32_t L_84 = V_9; StringU5BU5D_t1187188029* L_85 = V_6; NullCheck(L_85); if ((!(((uint32_t)L_84) == ((uint32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_85)->max_length))))-(int32_t)1)))))) { goto IL_0225; } } IL_021d: { V_9 = 3; goto IL_023a; } IL_0225: { int64_t L_86 = V_8; if ((((int64_t)L_86) <= ((int64_t)(((int64_t)((int64_t)((int32_t)255))))))) { goto IL_023a; } } IL_0232: { V_13 = (IPAddress_t2830710878 *)NULL; goto IL_02aa; } IL_023a: { V_12 = 0; goto IL_026f; } IL_0242: { int64_t L_87 = V_7; int64_t L_88 = V_8; int32_t L_89 = V_9; int32_t L_90 = V_12; V_7 = ((int64_t)((int64_t)L_87|(int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_88&(int64_t)(((int64_t)((int64_t)((int32_t)255))))))<<(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_89-(int32_t)L_90))<<(int32_t)3))&(int32_t)((int32_t)63)))&(int32_t)((int32_t)63))))))); int32_t L_91 = V_12; V_12 = ((int32_t)((int32_t)L_91+(int32_t)1)); int64_t L_92 = V_8; V_8 = ((int64_t)((int64_t)L_92/(int64_t)(((int64_t)((int64_t)((int32_t)256)))))); } IL_026f: { int64_t L_93 = V_8; if ((((int64_t)L_93) > ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_0242; } } IL_0278: { int32_t L_94 = V_9; V_9 = ((int32_t)((int32_t)L_94+(int32_t)1)); } IL_027e: { int32_t L_95 = V_9; StringU5BU5D_t1187188029* L_96 = V_6; NullCheck(L_96); if ((((int32_t)L_95) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_96)->max_length))))))) { goto IL_00d7; } } IL_0289: { int64_t L_97 = V_7; IPAddress_t2830710878 * L_98 = (IPAddress_t2830710878 *)il2cpp_codegen_object_new(IPAddress_t2830710878_il2cpp_TypeInfo_var); IPAddress__ctor_m2213721830(L_98, L_97, /*hidden argument*/NULL); V_13 = L_98; goto IL_02aa; } IL_0297: { ; // IL_0297: leave IL_02aa } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t2428370182 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t2428370182_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_029c; throw e; } CATCH_029c: { // begin catch(System.Exception) { V_13 = (IPAddress_t2830710878 *)NULL; goto IL_02aa; } IL_02a5: { ; // IL_02a5: leave IL_02aa } } // end catch (depth: 1) IL_02aa: { IPAddress_t2830710878 * L_99 = V_13; return L_99; } } // System.Net.IPAddress System.Net.IPAddress::ParseIPV6(System.String) extern "C" IPAddress_t2830710878 * IPAddress_ParseIPV6_m3353368636 (RuntimeObject * __this /* static, unused */, String_t* ___ip0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPAddress_ParseIPV6_m3353368636_MetadataUsageId); s_Il2CppMethodInitialized = true; } IPv6Address_t2007755840 * V_0 = NULL; { String_t* L_0 = ___ip0; IL2CPP_RUNTIME_CLASS_INIT(IPv6Address_t2007755840_il2cpp_TypeInfo_var); bool L_1 = IPv6Address_TryParse_m412911054(NULL /*static, unused*/, L_0, (&V_0), /*hidden argument*/NULL); if (!L_1) { goto IL_001f; } } { IPv6Address_t2007755840 * L_2 = V_0; NullCheck(L_2); UInt16U5BU5D_t1255862157* L_3 = IPv6Address_get_Address_m844321525(L_2, /*hidden argument*/NULL); IPv6Address_t2007755840 * L_4 = V_0; NullCheck(L_4); int64_t L_5 = IPv6Address_get_ScopeId_m1617357672(L_4, /*hidden argument*/NULL); IPAddress_t2830710878 * L_6 = (IPAddress_t2830710878 *)il2cpp_codegen_object_new(IPAddress_t2830710878_il2cpp_TypeInfo_var); IPAddress__ctor_m809365054(L_6, L_3, L_5, /*hidden argument*/NULL); return L_6; } IL_001f: { return (IPAddress_t2830710878 *)NULL; } } // System.Int64 System.Net.IPAddress::get_InternalIPv4Address() extern "C" int64_t IPAddress_get_InternalIPv4Address_m1377209505 (IPAddress_t2830710878 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get_m_Address_0(); return L_0; } } // System.Int64 System.Net.IPAddress::get_ScopeId() extern "C" int64_t IPAddress_get_ScopeId_m1130465158 (IPAddress_t2830710878 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPAddress_get_ScopeId_m1130465158_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_m_Family_1(); if ((((int32_t)L_0) == ((int32_t)((int32_t)23)))) { goto IL_0018; } } { Exception_t2428370182 * L_1 = (Exception_t2428370182 *)il2cpp_codegen_object_new(Exception_t2428370182_il2cpp_TypeInfo_var); Exception__ctor_m4229980544(L_1, _stringLiteral3628454748, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0018: { int64_t L_2 = __this->get_m_ScopeId_3(); return L_2; } } // System.Byte[] System.Net.IPAddress::GetAddressBytes() extern "C" ByteU5BU5D_t1709610627* IPAddress_GetAddressBytes_m879949174 (IPAddress_t2830710878 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPAddress_GetAddressBytes_m879949174_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_t1709610627* V_0 = NULL; { int32_t L_0 = __this->get_m_Family_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)23))))) { goto IL_0027; } } { V_0 = ((ByteU5BU5D_t1709610627*)SZArrayNew(ByteU5BU5D_t1709610627_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16))); UInt16U5BU5D_t1255862157* L_1 = __this->get_m_Numbers_2(); ByteU5BU5D_t1709610627* L_2 = V_0; Buffer_BlockCopy_m568541762(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_1, 0, (RuntimeArray *)(RuntimeArray *)L_2, 0, ((int32_t)16), /*hidden argument*/NULL); ByteU5BU5D_t1709610627* L_3 = V_0; return L_3; } IL_0027: { ByteU5BU5D_t1709610627* L_4 = ((ByteU5BU5D_t1709610627*)SZArrayNew(ByteU5BU5D_t1709610627_il2cpp_TypeInfo_var, (uint32_t)4)); int64_t L_5 = __this->get_m_Address_0(); NullCheck(L_4); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_5&(int64_t)(((int64_t)((int64_t)((int32_t)255)))))))))); ByteU5BU5D_t1709610627* L_6 = L_4; int64_t L_7 = __this->get_m_Address_0(); NullCheck(L_6); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)((int64_t)((int64_t)L_7>>(int32_t)8))&(int64_t)(((int64_t)((int64_t)((int32_t)255)))))))))); ByteU5BU5D_t1709610627* L_8 = L_6; int64_t L_9 = __this->get_m_Address_0(); NullCheck(L_8); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)((int64_t)((int64_t)L_9>>(int32_t)((int32_t)16)))&(int64_t)(((int64_t)((int64_t)((int32_t)255)))))))))); ByteU5BU5D_t1709610627* L_10 = L_8; int64_t L_11 = __this->get_m_Address_0(); NullCheck(L_10); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_11>>(int32_t)((int32_t)24))))))); return L_10; } } // System.Net.Sockets.AddressFamily System.Net.IPAddress::get_AddressFamily() extern "C" int32_t IPAddress_get_AddressFamily_m3128376784 (IPAddress_t2830710878 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_Family_1(); return L_0; } } // System.Boolean System.Net.IPAddress::IsLoopback(System.Net.IPAddress) extern "C" bool IPAddress_IsLoopback_m1557316953 (RuntimeObject * __this /* static, unused */, IPAddress_t2830710878 * ___addr0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPAddress_IsLoopback_m1557316953_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { IPAddress_t2830710878 * L_0 = ___addr0; NullCheck(L_0); int32_t L_1 = L_0->get_m_Family_1(); if ((!(((uint32_t)L_1) == ((uint32_t)2)))) { goto IL_001f; } } { IPAddress_t2830710878 * L_2 = ___addr0; NullCheck(L_2); int64_t L_3 = L_2->get_m_Address_0(); return (bool)((((int64_t)((int64_t)((int64_t)L_3&(int64_t)(((int64_t)((int64_t)((int32_t)255))))))) == ((int64_t)(((int64_t)((int64_t)((int32_t)127))))))? 1 : 0); } IL_001f: { V_0 = 0; goto IL_0039; } IL_0026: { IPAddress_t2830710878 * L_4 = ___addr0; NullCheck(L_4); UInt16U5BU5D_t1255862157* L_5 = L_4->get_m_Numbers_2(); int32_t L_6 = V_0; NullCheck(L_5); int32_t L_7 = L_6; uint16_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); if (!L_8) { goto IL_0035; } } { return (bool)0; } IL_0035: { int32_t L_9 = V_0; V_0 = ((int32_t)((int32_t)L_9+(int32_t)1)); } IL_0039: { int32_t L_10 = V_0; if ((((int32_t)L_10) < ((int32_t)6))) { goto IL_0026; } } { IPAddress_t2830710878 * L_11 = ___addr0; NullCheck(L_11); UInt16U5BU5D_t1255862157* L_12 = L_11->get_m_Numbers_2(); NullCheck(L_12); int32_t L_13 = 7; uint16_t L_14 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_13)); IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); int16_t L_15 = IPAddress_NetworkToHostOrder_m2003899271(NULL /*static, unused*/, (((int16_t)((int16_t)L_14))), /*hidden argument*/NULL); return (bool)((((int32_t)L_15) == ((int32_t)1))? 1 : 0); } } // System.String System.Net.IPAddress::ToString() extern "C" String_t* IPAddress_ToString_m3105633789 (IPAddress_t2830710878 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPAddress_ToString_m3105633789_MetadataUsageId); s_Il2CppMethodInitialized = true; } UInt16U5BU5D_t1255862157* V_0 = NULL; int32_t V_1 = 0; IPv6Address_t2007755840 * V_2 = NULL; { int32_t L_0 = __this->get_m_Family_1(); if ((!(((uint32_t)L_0) == ((uint32_t)2)))) { goto IL_0018; } } { int64_t L_1 = __this->get_m_Address_0(); IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); String_t* L_2 = IPAddress_ToString_m1586858173(NULL /*static, unused*/, L_1, /*hidden argument*/NULL); return L_2; } IL_0018: { UInt16U5BU5D_t1255862157* L_3 = __this->get_m_Numbers_2(); NullCheck((RuntimeArray *)(RuntimeArray *)L_3); RuntimeObject * L_4 = Array_Clone_m3054328322((RuntimeArray *)(RuntimeArray *)L_3, /*hidden argument*/NULL); V_0 = ((UInt16U5BU5D_t1255862157*)IsInst((RuntimeObject*)L_4, UInt16U5BU5D_t1255862157_il2cpp_TypeInfo_var)); V_1 = 0; goto IL_0041; } IL_0030: { UInt16U5BU5D_t1255862157* L_5 = V_0; int32_t L_6 = V_1; UInt16U5BU5D_t1255862157* L_7 = V_0; int32_t L_8 = V_1; NullCheck(L_7); int32_t L_9 = L_8; uint16_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); int16_t L_11 = IPAddress_NetworkToHostOrder_m2003899271(NULL /*static, unused*/, (((int16_t)((int16_t)L_10))), /*hidden argument*/NULL); NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (uint16_t)(((int32_t)((uint16_t)L_11)))); int32_t L_12 = V_1; V_1 = ((int32_t)((int32_t)L_12+(int32_t)1)); } IL_0041: { int32_t L_13 = V_1; UInt16U5BU5D_t1255862157* L_14 = V_0; NullCheck(L_14); if ((((int32_t)L_13) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))))) { goto IL_0030; } } { UInt16U5BU5D_t1255862157* L_15 = V_0; IPv6Address_t2007755840 * L_16 = (IPv6Address_t2007755840 *)il2cpp_codegen_object_new(IPv6Address_t2007755840_il2cpp_TypeInfo_var); IPv6Address__ctor_m3006175894(L_16, L_15, /*hidden argument*/NULL); V_2 = L_16; IPv6Address_t2007755840 * L_17 = V_2; int64_t L_18 = IPAddress_get_ScopeId_m1130465158(__this, /*hidden argument*/NULL); NullCheck(L_17); IPv6Address_set_ScopeId_m2362086601(L_17, L_18, /*hidden argument*/NULL); IPv6Address_t2007755840 * L_19 = V_2; NullCheck(L_19); String_t* L_20 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Net.IPv6Address::ToString() */, L_19); return L_20; } } // System.String System.Net.IPAddress::ToString(System.Int64) extern "C" String_t* IPAddress_ToString_m1586858173 (RuntimeObject * __this /* static, unused */, int64_t ___addr0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPAddress_ToString_m1586858173_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; int64_t V_1 = 0; int64_t V_2 = 0; int64_t V_3 = 0; { StringU5BU5D_t1187188029* L_0 = ((StringU5BU5D_t1187188029*)SZArrayNew(StringU5BU5D_t1187188029_il2cpp_TypeInfo_var, (uint32_t)7)); int64_t L_1 = ___addr0; V_0 = ((int64_t)((int64_t)L_1&(int64_t)(((int64_t)((int64_t)((int32_t)255)))))); String_t* L_2 = Int64_ToString_m4165984453((&V_0), /*hidden argument*/NULL); NullCheck(L_0); ArrayElementTypeCheck (L_0, L_2); (L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_2); StringU5BU5D_t1187188029* L_3 = L_0; NullCheck(L_3); ArrayElementTypeCheck (L_3, _stringLiteral2446711370); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2446711370); StringU5BU5D_t1187188029* L_4 = L_3; int64_t L_5 = ___addr0; V_1 = ((int64_t)((int64_t)((int64_t)((int64_t)L_5>>(int32_t)8))&(int64_t)(((int64_t)((int64_t)((int32_t)255)))))); String_t* L_6 = Int64_ToString_m4165984453((&V_1), /*hidden argument*/NULL); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_6); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_6); StringU5BU5D_t1187188029* L_7 = L_4; NullCheck(L_7); ArrayElementTypeCheck (L_7, _stringLiteral2446711370); (L_7)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral2446711370); StringU5BU5D_t1187188029* L_8 = L_7; int64_t L_9 = ___addr0; V_2 = ((int64_t)((int64_t)((int64_t)((int64_t)L_9>>(int32_t)((int32_t)16)))&(int64_t)(((int64_t)((int64_t)((int32_t)255)))))); String_t* L_10 = Int64_ToString_m4165984453((&V_2), /*hidden argument*/NULL); NullCheck(L_8); ArrayElementTypeCheck (L_8, L_10); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_10); StringU5BU5D_t1187188029* L_11 = L_8; NullCheck(L_11); ArrayElementTypeCheck (L_11, _stringLiteral2446711370); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral2446711370); StringU5BU5D_t1187188029* L_12 = L_11; int64_t L_13 = ___addr0; V_3 = ((int64_t)((int64_t)((int64_t)((int64_t)L_13>>(int32_t)((int32_t)24)))&(int64_t)(((int64_t)((int64_t)((int32_t)255)))))); String_t* L_14 = Int64_ToString_m4165984453((&V_3), /*hidden argument*/NULL); NullCheck(L_12); ArrayElementTypeCheck (L_12, L_14); (L_12)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)L_14); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_15 = String_Concat_m4124671234(NULL /*static, unused*/, L_12, /*hidden argument*/NULL); return L_15; } } // System.Boolean System.Net.IPAddress::Equals(System.Object) extern "C" bool IPAddress_Equals_m2466391492 (IPAddress_t2830710878 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPAddress_Equals_m2466391492_MetadataUsageId); s_Il2CppMethodInitialized = true; } IPAddress_t2830710878 * V_0 = NULL; UInt16U5BU5D_t1255862157* V_1 = NULL; int32_t V_2 = 0; { RuntimeObject * L_0 = ___other0; V_0 = ((IPAddress_t2830710878 *)IsInstClass((RuntimeObject*)L_0, IPAddress_t2830710878_il2cpp_TypeInfo_var)); IPAddress_t2830710878 * L_1 = V_0; if (!L_1) { goto IL_0068; } } { int32_t L_2 = IPAddress_get_AddressFamily_m3128376784(__this, /*hidden argument*/NULL); IPAddress_t2830710878 * L_3 = V_0; NullCheck(L_3); int32_t L_4 = IPAddress_get_AddressFamily_m3128376784(L_3, /*hidden argument*/NULL); if ((((int32_t)L_2) == ((int32_t)L_4))) { goto IL_0020; } } { return (bool)0; } IL_0020: { int32_t L_5 = IPAddress_get_AddressFamily_m3128376784(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_5) == ((uint32_t)2)))) { goto IL_003b; } } { int64_t L_6 = __this->get_m_Address_0(); IPAddress_t2830710878 * L_7 = V_0; NullCheck(L_7); int64_t L_8 = L_7->get_m_Address_0(); return (bool)((((int64_t)L_6) == ((int64_t)L_8))? 1 : 0); } IL_003b: { IPAddress_t2830710878 * L_9 = V_0; NullCheck(L_9); UInt16U5BU5D_t1255862157* L_10 = L_9->get_m_Numbers_2(); V_1 = L_10; V_2 = 0; goto IL_005f; } IL_0049: { UInt16U5BU5D_t1255862157* L_11 = __this->get_m_Numbers_2(); int32_t L_12 = V_2; NullCheck(L_11); int32_t L_13 = L_12; uint16_t L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13)); UInt16U5BU5D_t1255862157* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = L_16; uint16_t L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17)); if ((((int32_t)L_14) == ((int32_t)L_18))) { goto IL_005b; } } { return (bool)0; } IL_005b: { int32_t L_19 = V_2; V_2 = ((int32_t)((int32_t)L_19+(int32_t)1)); } IL_005f: { int32_t L_20 = V_2; if ((((int32_t)L_20) < ((int32_t)8))) { goto IL_0049; } } { return (bool)1; } IL_0068: { return (bool)0; } } // System.Int32 System.Net.IPAddress::GetHashCode() extern "C" int32_t IPAddress_GetHashCode_m1473698286 (IPAddress_t2830710878 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPAddress_GetHashCode_m1473698286_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_m_Family_1(); if ((!(((uint32_t)L_0) == ((uint32_t)2)))) { goto IL_0014; } } { int64_t L_1 = __this->get_m_Address_0(); return (((int32_t)((int32_t)L_1))); } IL_0014: { UInt16U5BU5D_t1255862157* L_2 = __this->get_m_Numbers_2(); NullCheck(L_2); int32_t L_3 = 0; uint16_t L_4 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); UInt16U5BU5D_t1255862157* L_5 = __this->get_m_Numbers_2(); NullCheck(L_5); int32_t L_6 = 1; uint16_t L_7 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); UInt16U5BU5D_t1255862157* L_8 = __this->get_m_Numbers_2(); NullCheck(L_8); int32_t L_9 = 2; uint16_t L_10 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); UInt16U5BU5D_t1255862157* L_11 = __this->get_m_Numbers_2(); NullCheck(L_11); int32_t L_12 = 3; uint16_t L_13 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_12)); UInt16U5BU5D_t1255862157* L_14 = __this->get_m_Numbers_2(); NullCheck(L_14); int32_t L_15 = 4; uint16_t L_16 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); UInt16U5BU5D_t1255862157* L_17 = __this->get_m_Numbers_2(); NullCheck(L_17); int32_t L_18 = 5; uint16_t L_19 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); UInt16U5BU5D_t1255862157* L_20 = __this->get_m_Numbers_2(); NullCheck(L_20); int32_t L_21 = 6; uint16_t L_22 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_21)); UInt16U5BU5D_t1255862157* L_23 = __this->get_m_Numbers_2(); NullCheck(L_23); int32_t L_24 = 7; uint16_t L_25 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_24)); IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); int32_t L_26 = IPAddress_Hash_m775817492(NULL /*static, unused*/, ((int32_t)((int32_t)((int32_t)((int32_t)L_4<<(int32_t)((int32_t)16)))+(int32_t)L_7)), ((int32_t)((int32_t)((int32_t)((int32_t)L_10<<(int32_t)((int32_t)16)))+(int32_t)L_13)), ((int32_t)((int32_t)((int32_t)((int32_t)L_16<<(int32_t)((int32_t)16)))+(int32_t)L_19)), ((int32_t)((int32_t)((int32_t)((int32_t)L_22<<(int32_t)((int32_t)16)))+(int32_t)L_25)), /*hidden argument*/NULL); return L_26; } } // System.Int32 System.Net.IPAddress::Hash(System.Int32,System.Int32,System.Int32,System.Int32) extern "C" int32_t IPAddress_Hash_m775817492 (RuntimeObject * __this /* static, unused */, int32_t ___i0, int32_t ___j1, int32_t ___k2, int32_t ___l3, const RuntimeMethod* method) { { int32_t L_0 = ___i0; int32_t L_1 = ___j1; int32_t L_2 = ___j1; int32_t L_3 = ___k2; int32_t L_4 = ___k2; int32_t L_5 = ___l3; int32_t L_6 = ___l3; return ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_0^(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_1<<(int32_t)((int32_t)13)))|(int32_t)((int32_t)((int32_t)L_2>>(int32_t)((int32_t)19)))))))^(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_3<<(int32_t)((int32_t)26)))|(int32_t)((int32_t)((int32_t)L_4>>(int32_t)6))))))^(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_5<<(int32_t)7))|(int32_t)((int32_t)((int32_t)L_6>>(int32_t)((int32_t)25))))))); } } // System.Void System.Net.IPEndPoint::.ctor(System.Net.IPAddress,System.Int32) extern "C" void IPEndPoint__ctor_m3582815052 (IPEndPoint_t1606333388 * __this, IPAddress_t2830710878 * ___address0, int32_t ___port1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPEndPoint__ctor_m3582815052_MetadataUsageId); s_Il2CppMethodInitialized = true; } { EndPoint__ctor_m3636779127(__this, /*hidden argument*/NULL); IPAddress_t2830710878 * L_0 = ___address0; if (L_0) { goto IL_0017; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral3055831234, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0017: { IPAddress_t2830710878 * L_2 = ___address0; IPEndPoint_set_Address_m2670857108(__this, L_2, /*hidden argument*/NULL); int32_t L_3 = ___port1; IPEndPoint_set_Port_m2730216019(__this, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Net.IPEndPoint::.ctor(System.Int64,System.Int32) extern "C" void IPEndPoint__ctor_m234162846 (IPEndPoint_t1606333388 * __this, int64_t ___iaddr0, int32_t ___port1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPEndPoint__ctor_m234162846_MetadataUsageId); s_Il2CppMethodInitialized = true; } { EndPoint__ctor_m3636779127(__this, /*hidden argument*/NULL); int64_t L_0 = ___iaddr0; IPAddress_t2830710878 * L_1 = (IPAddress_t2830710878 *)il2cpp_codegen_object_new(IPAddress_t2830710878_il2cpp_TypeInfo_var); IPAddress__ctor_m2213721830(L_1, L_0, /*hidden argument*/NULL); IPEndPoint_set_Address_m2670857108(__this, L_1, /*hidden argument*/NULL); int32_t L_2 = ___port1; IPEndPoint_set_Port_m2730216019(__this, L_2, /*hidden argument*/NULL); return; } } // System.Net.IPAddress System.Net.IPEndPoint::get_Address() extern "C" IPAddress_t2830710878 * IPEndPoint_get_Address_m4034902075 (IPEndPoint_t1606333388 * __this, const RuntimeMethod* method) { { IPAddress_t2830710878 * L_0 = __this->get_address_0(); return L_0; } } // System.Void System.Net.IPEndPoint::set_Address(System.Net.IPAddress) extern "C" void IPEndPoint_set_Address_m2670857108 (IPEndPoint_t1606333388 * __this, IPAddress_t2830710878 * ___value0, const RuntimeMethod* method) { { IPAddress_t2830710878 * L_0 = ___value0; __this->set_address_0(L_0); return; } } // System.Net.Sockets.AddressFamily System.Net.IPEndPoint::get_AddressFamily() extern "C" int32_t IPEndPoint_get_AddressFamily_m2899206043 (IPEndPoint_t1606333388 * __this, const RuntimeMethod* method) { { IPAddress_t2830710878 * L_0 = __this->get_address_0(); NullCheck(L_0); int32_t L_1 = IPAddress_get_AddressFamily_m3128376784(L_0, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Net.IPEndPoint::get_Port() extern "C" int32_t IPEndPoint_get_Port_m527879344 (IPEndPoint_t1606333388 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_port_1(); return L_0; } } // System.Void System.Net.IPEndPoint::set_Port(System.Int32) extern "C" void IPEndPoint_set_Port_m2730216019 (IPEndPoint_t1606333388 * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPEndPoint_set_Port_m2730216019_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_0012; } } { int32_t L_1 = ___value0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)65535)))) { goto IL_001d; } } IL_0012: { ArgumentOutOfRangeException_t1933742687 * L_2 = (ArgumentOutOfRangeException_t1933742687 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t1933742687_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m2330281379(L_2, _stringLiteral266066983, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001d: { int32_t L_3 = ___value0; __this->set_port_1(L_3); return; } } // System.Net.EndPoint System.Net.IPEndPoint::Create(System.Net.SocketAddress) extern "C" EndPoint_t268181662 * IPEndPoint_Create_m3640247052 (IPEndPoint_t1606333388 * __this, SocketAddress_t1723199846 * ___socketAddress0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPEndPoint_Create_m3640247052_MetadataUsageId); s_Il2CppMethodInitialized = true; } SocketAddress_t1723199846 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; IPEndPoint_t1606333388 * V_4 = NULL; int64_t V_5 = 0; int32_t V_6 = 0; UInt16U5BU5D_t1255862157* V_7 = NULL; int32_t V_8 = 0; int32_t V_9 = 0; { SocketAddress_t1723199846 * L_0 = ___socketAddress0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral3197232329, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { SocketAddress_t1723199846 * L_2 = ___socketAddress0; NullCheck(L_2); int32_t L_3 = SocketAddress_get_Family_m3812398706(L_2, /*hidden argument*/NULL); int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Net.Sockets.AddressFamily System.Net.IPEndPoint::get_AddressFamily() */, __this); if ((((int32_t)L_3) == ((int32_t)L_4))) { goto IL_0067; } } { ObjectU5BU5D_t4199014551* L_5 = ((ObjectU5BU5D_t4199014551*)SZArrayNew(ObjectU5BU5D_t4199014551_il2cpp_TypeInfo_var, (uint32_t)5)); NullCheck(L_5); ArrayElementTypeCheck (L_5, _stringLiteral1614726381); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral1614726381); ObjectU5BU5D_t4199014551* L_6 = L_5; int32_t L_7 = VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Net.Sockets.AddressFamily System.Net.IPEndPoint::get_AddressFamily() */, __this); int32_t L_8 = L_7; RuntimeObject * L_9 = Box(AddressFamily_t2568691419_il2cpp_TypeInfo_var, &L_8); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_9); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_9); ObjectU5BU5D_t4199014551* L_10 = L_6; NullCheck(L_10); ArrayElementTypeCheck (L_10, _stringLiteral2979464242); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral2979464242); ObjectU5BU5D_t4199014551* L_11 = L_10; SocketAddress_t1723199846 * L_12 = ___socketAddress0; NullCheck(L_12); int32_t L_13 = SocketAddress_get_Family_m3812398706(L_12, /*hidden argument*/NULL); int32_t L_14 = L_13; RuntimeObject * L_15 = Box(AddressFamily_t2568691419_il2cpp_TypeInfo_var, &L_14); NullCheck(L_11); ArrayElementTypeCheck (L_11, L_15); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_15); ObjectU5BU5D_t4199014551* L_16 = L_11; NullCheck(L_16); ArrayElementTypeCheck (L_16, _stringLiteral2561854441); (L_16)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)_stringLiteral2561854441); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_17 = String_Concat_m2203353132(NULL /*static, unused*/, L_16, /*hidden argument*/NULL); ArgumentException_t1946723077 * L_18 = (ArgumentException_t1946723077 *)il2cpp_codegen_object_new(ArgumentException_t1946723077_il2cpp_TypeInfo_var); ArgumentException__ctor_m509860574(L_18, L_17, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18); } IL_0067: { SocketAddress_t1723199846 * L_19 = ___socketAddress0; V_0 = L_19; SocketAddress_t1723199846 * L_20 = V_0; NullCheck(L_20); int32_t L_21 = SocketAddress_get_Size_m1839617643(L_20, /*hidden argument*/NULL); V_1 = L_21; SocketAddress_t1723199846 * L_22 = V_0; NullCheck(L_22); int32_t L_23 = SocketAddress_get_Family_m3812398706(L_22, /*hidden argument*/NULL); V_2 = L_23; V_4 = (IPEndPoint_t1606333388 *)NULL; int32_t L_24 = V_2; V_9 = L_24; int32_t L_25 = V_9; if ((((int32_t)L_25) == ((int32_t)2))) { goto IL_0093; } } { int32_t L_26 = V_9; if ((((int32_t)L_26) == ((int32_t)((int32_t)23)))) { goto IL_00ea; } } { goto IL_018b; } IL_0093: { int32_t L_27 = V_1; if ((((int32_t)L_27) >= ((int32_t)8))) { goto IL_009c; } } { return (EndPoint_t268181662 *)NULL; } IL_009c: { SocketAddress_t1723199846 * L_28 = V_0; NullCheck(L_28); uint8_t L_29 = SocketAddress_get_Item_m30997818(L_28, 2, /*hidden argument*/NULL); SocketAddress_t1723199846 * L_30 = V_0; NullCheck(L_30); uint8_t L_31 = SocketAddress_get_Item_m30997818(L_30, 3, /*hidden argument*/NULL); V_3 = ((int32_t)((int32_t)((int32_t)((int32_t)L_29<<(int32_t)8))+(int32_t)L_31)); SocketAddress_t1723199846 * L_32 = V_0; NullCheck(L_32); uint8_t L_33 = SocketAddress_get_Item_m30997818(L_32, 7, /*hidden argument*/NULL); SocketAddress_t1723199846 * L_34 = V_0; NullCheck(L_34); uint8_t L_35 = SocketAddress_get_Item_m30997818(L_34, 6, /*hidden argument*/NULL); SocketAddress_t1723199846 * L_36 = V_0; NullCheck(L_36); uint8_t L_37 = SocketAddress_get_Item_m30997818(L_36, 5, /*hidden argument*/NULL); SocketAddress_t1723199846 * L_38 = V_0; NullCheck(L_38); uint8_t L_39 = SocketAddress_get_Item_m30997818(L_38, 4, /*hidden argument*/NULL); V_5 = ((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)(((int64_t)((int64_t)L_33)))<<(int32_t)((int32_t)24)))+(int64_t)((int64_t)((int64_t)(((int64_t)((int64_t)L_35)))<<(int32_t)((int32_t)16)))))+(int64_t)((int64_t)((int64_t)(((int64_t)((int64_t)L_37)))<<(int32_t)8))))+(int64_t)(((int64_t)((int64_t)L_39))))); int64_t L_40 = V_5; int32_t L_41 = V_3; IPEndPoint_t1606333388 * L_42 = (IPEndPoint_t1606333388 *)il2cpp_codegen_object_new(IPEndPoint_t1606333388_il2cpp_TypeInfo_var); IPEndPoint__ctor_m234162846(L_42, L_40, L_41, /*hidden argument*/NULL); V_4 = L_42; goto IL_018d; } IL_00ea: { int32_t L_43 = V_1; if ((((int32_t)L_43) >= ((int32_t)((int32_t)28)))) { goto IL_00f4; } } { return (EndPoint_t268181662 *)NULL; } IL_00f4: { SocketAddress_t1723199846 * L_44 = V_0; NullCheck(L_44); uint8_t L_45 = SocketAddress_get_Item_m30997818(L_44, 2, /*hidden argument*/NULL); SocketAddress_t1723199846 * L_46 = V_0; NullCheck(L_46); uint8_t L_47 = SocketAddress_get_Item_m30997818(L_46, 3, /*hidden argument*/NULL); V_3 = ((int32_t)((int32_t)((int32_t)((int32_t)L_45<<(int32_t)8))+(int32_t)L_47)); SocketAddress_t1723199846 * L_48 = V_0; NullCheck(L_48); uint8_t L_49 = SocketAddress_get_Item_m30997818(L_48, ((int32_t)24), /*hidden argument*/NULL); SocketAddress_t1723199846 * L_50 = V_0; NullCheck(L_50); uint8_t L_51 = SocketAddress_get_Item_m30997818(L_50, ((int32_t)25), /*hidden argument*/NULL); SocketAddress_t1723199846 * L_52 = V_0; NullCheck(L_52); uint8_t L_53 = SocketAddress_get_Item_m30997818(L_52, ((int32_t)26), /*hidden argument*/NULL); SocketAddress_t1723199846 * L_54 = V_0; NullCheck(L_54); uint8_t L_55 = SocketAddress_get_Item_m30997818(L_54, ((int32_t)27), /*hidden argument*/NULL); V_6 = ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_49+(int32_t)((int32_t)((int32_t)L_51<<(int32_t)8))))+(int32_t)((int32_t)((int32_t)L_53<<(int32_t)((int32_t)16)))))+(int32_t)((int32_t)((int32_t)L_55<<(int32_t)((int32_t)24))))); V_7 = ((UInt16U5BU5D_t1255862157*)SZArrayNew(UInt16U5BU5D_t1255862157_il2cpp_TypeInfo_var, (uint32_t)8)); V_8 = 0; goto IL_016c; } IL_0143: { UInt16U5BU5D_t1255862157* L_56 = V_7; int32_t L_57 = V_8; SocketAddress_t1723199846 * L_58 = V_0; int32_t L_59 = V_8; NullCheck(L_58); uint8_t L_60 = SocketAddress_get_Item_m30997818(L_58, ((int32_t)((int32_t)8+(int32_t)((int32_t)((int32_t)L_59*(int32_t)2)))), /*hidden argument*/NULL); SocketAddress_t1723199846 * L_61 = V_0; int32_t L_62 = V_8; NullCheck(L_61); uint8_t L_63 = SocketAddress_get_Item_m30997818(L_61, ((int32_t)((int32_t)((int32_t)((int32_t)8+(int32_t)((int32_t)((int32_t)L_62*(int32_t)2))))+(int32_t)1)), /*hidden argument*/NULL); NullCheck(L_56); (L_56)->SetAt(static_cast<il2cpp_array_size_t>(L_57), (uint16_t)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)((int32_t)L_60<<(int32_t)8))+(int32_t)L_63)))))); int32_t L_64 = V_8; V_8 = ((int32_t)((int32_t)L_64+(int32_t)1)); } IL_016c: { int32_t L_65 = V_8; if ((((int32_t)L_65) < ((int32_t)8))) { goto IL_0143; } } { UInt16U5BU5D_t1255862157* L_66 = V_7; int32_t L_67 = V_6; IPAddress_t2830710878 * L_68 = (IPAddress_t2830710878 *)il2cpp_codegen_object_new(IPAddress_t2830710878_il2cpp_TypeInfo_var); IPAddress__ctor_m809365054(L_68, L_66, (((int64_t)((int64_t)L_67))), /*hidden argument*/NULL); int32_t L_69 = V_3; IPEndPoint_t1606333388 * L_70 = (IPEndPoint_t1606333388 *)il2cpp_codegen_object_new(IPEndPoint_t1606333388_il2cpp_TypeInfo_var); IPEndPoint__ctor_m3582815052(L_70, L_68, L_69, /*hidden argument*/NULL); V_4 = L_70; goto IL_018d; } IL_018b: { return (EndPoint_t268181662 *)NULL; } IL_018d: { IPEndPoint_t1606333388 * L_71 = V_4; return L_71; } } // System.Net.SocketAddress System.Net.IPEndPoint::Serialize() extern "C" SocketAddress_t1723199846 * IPEndPoint_Serialize_m452470281 (IPEndPoint_t1606333388 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPEndPoint_Serialize_m452470281_MetadataUsageId); s_Il2CppMethodInitialized = true; } SocketAddress_t1723199846 * V_0 = NULL; int64_t V_1 = 0; ByteU5BU5D_t1709610627* V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; { V_0 = (SocketAddress_t1723199846 *)NULL; IPAddress_t2830710878 * L_0 = __this->get_address_0(); NullCheck(L_0); int32_t L_1 = IPAddress_get_AddressFamily_m3128376784(L_0, /*hidden argument*/NULL); V_4 = L_1; int32_t L_2 = V_4; if ((((int32_t)L_2) == ((int32_t)2))) { goto IL_0025; } } { int32_t L_3 = V_4; if ((((int32_t)L_3) == ((int32_t)((int32_t)23)))) { goto IL_00b1; } } { goto IL_0189; } IL_0025: { SocketAddress_t1723199846 * L_4 = (SocketAddress_t1723199846 *)il2cpp_codegen_object_new(SocketAddress_t1723199846_il2cpp_TypeInfo_var); SocketAddress__ctor_m4256079279(L_4, 2, ((int32_t)16), /*hidden argument*/NULL); V_0 = L_4; SocketAddress_t1723199846 * L_5 = V_0; int32_t L_6 = __this->get_port_1(); NullCheck(L_5); SocketAddress_set_Item_m1141364269(L_5, 2, (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6>>(int32_t)8))&(int32_t)((int32_t)255)))))), /*hidden argument*/NULL); SocketAddress_t1723199846 * L_7 = V_0; int32_t L_8 = __this->get_port_1(); NullCheck(L_7); SocketAddress_set_Item_m1141364269(L_7, 3, (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_8&(int32_t)((int32_t)255)))))), /*hidden argument*/NULL); IPAddress_t2830710878 * L_9 = __this->get_address_0(); NullCheck(L_9); int64_t L_10 = IPAddress_get_InternalIPv4Address_m1377209505(L_9, /*hidden argument*/NULL); V_1 = L_10; SocketAddress_t1723199846 * L_11 = V_0; int64_t L_12 = V_1; NullCheck(L_11); SocketAddress_set_Item_m1141364269(L_11, 4, (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_12&(int64_t)(((int64_t)((int64_t)((int32_t)255))))))))), /*hidden argument*/NULL); SocketAddress_t1723199846 * L_13 = V_0; int64_t L_14 = V_1; NullCheck(L_13); SocketAddress_set_Item_m1141364269(L_13, 5, (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)((int64_t)((int64_t)L_14>>(int32_t)8))&(int64_t)(((int64_t)((int64_t)((int32_t)255))))))))), /*hidden argument*/NULL); SocketAddress_t1723199846 * L_15 = V_0; int64_t L_16 = V_1; NullCheck(L_15); SocketAddress_set_Item_m1141364269(L_15, 6, (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)((int64_t)((int64_t)L_16>>(int32_t)((int32_t)16)))&(int64_t)(((int64_t)((int64_t)((int32_t)255))))))))), /*hidden argument*/NULL); SocketAddress_t1723199846 * L_17 = V_0; int64_t L_18 = V_1; NullCheck(L_17); SocketAddress_set_Item_m1141364269(L_17, 7, (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)((int64_t)((int64_t)L_18>>(int32_t)((int32_t)24)))&(int64_t)(((int64_t)((int64_t)((int32_t)255))))))))), /*hidden argument*/NULL); goto IL_0189; } IL_00b1: { SocketAddress_t1723199846 * L_19 = (SocketAddress_t1723199846 *)il2cpp_codegen_object_new(SocketAddress_t1723199846_il2cpp_TypeInfo_var); SocketAddress__ctor_m4256079279(L_19, ((int32_t)23), ((int32_t)28), /*hidden argument*/NULL); V_0 = L_19; SocketAddress_t1723199846 * L_20 = V_0; int32_t L_21 = __this->get_port_1(); NullCheck(L_20); SocketAddress_set_Item_m1141364269(L_20, 2, (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_21>>(int32_t)8))&(int32_t)((int32_t)255)))))), /*hidden argument*/NULL); SocketAddress_t1723199846 * L_22 = V_0; int32_t L_23 = __this->get_port_1(); NullCheck(L_22); SocketAddress_set_Item_m1141364269(L_22, 3, (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_23&(int32_t)((int32_t)255)))))), /*hidden argument*/NULL); IPAddress_t2830710878 * L_24 = __this->get_address_0(); NullCheck(L_24); ByteU5BU5D_t1709610627* L_25 = IPAddress_GetAddressBytes_m879949174(L_24, /*hidden argument*/NULL); V_2 = L_25; V_3 = 0; goto IL_0108; } IL_00f8: { SocketAddress_t1723199846 * L_26 = V_0; int32_t L_27 = V_3; ByteU5BU5D_t1709610627* L_28 = V_2; int32_t L_29 = V_3; NullCheck(L_28); int32_t L_30 = L_29; uint8_t L_31 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_30)); NullCheck(L_26); SocketAddress_set_Item_m1141364269(L_26, ((int32_t)((int32_t)8+(int32_t)L_27)), L_31, /*hidden argument*/NULL); int32_t L_32 = V_3; V_3 = ((int32_t)((int32_t)L_32+(int32_t)1)); } IL_0108: { int32_t L_33 = V_3; if ((((int32_t)L_33) < ((int32_t)((int32_t)16)))) { goto IL_00f8; } } { SocketAddress_t1723199846 * L_34 = V_0; IPAddress_t2830710878 * L_35 = __this->get_address_0(); NullCheck(L_35); int64_t L_36 = IPAddress_get_ScopeId_m1130465158(L_35, /*hidden argument*/NULL); NullCheck(L_34); SocketAddress_set_Item_m1141364269(L_34, ((int32_t)24), (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_36&(int64_t)(((int64_t)((int64_t)((int32_t)255))))))))), /*hidden argument*/NULL); SocketAddress_t1723199846 * L_37 = V_0; IPAddress_t2830710878 * L_38 = __this->get_address_0(); NullCheck(L_38); int64_t L_39 = IPAddress_get_ScopeId_m1130465158(L_38, /*hidden argument*/NULL); NullCheck(L_37); SocketAddress_set_Item_m1141364269(L_37, ((int32_t)25), (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)((int64_t)((int64_t)L_39>>(int32_t)8))&(int64_t)(((int64_t)((int64_t)((int32_t)255))))))))), /*hidden argument*/NULL); SocketAddress_t1723199846 * L_40 = V_0; IPAddress_t2830710878 * L_41 = __this->get_address_0(); NullCheck(L_41); int64_t L_42 = IPAddress_get_ScopeId_m1130465158(L_41, /*hidden argument*/NULL); NullCheck(L_40); SocketAddress_set_Item_m1141364269(L_40, ((int32_t)26), (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)((int64_t)((int64_t)L_42>>(int32_t)((int32_t)16)))&(int64_t)(((int64_t)((int64_t)((int32_t)255))))))))), /*hidden argument*/NULL); SocketAddress_t1723199846 * L_43 = V_0; IPAddress_t2830710878 * L_44 = __this->get_address_0(); NullCheck(L_44); int64_t L_45 = IPAddress_get_ScopeId_m1130465158(L_44, /*hidden argument*/NULL); NullCheck(L_43); SocketAddress_set_Item_m1141364269(L_43, ((int32_t)27), (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)((int64_t)((int64_t)L_45>>(int32_t)((int32_t)24)))&(int64_t)(((int64_t)((int64_t)((int32_t)255))))))))), /*hidden argument*/NULL); goto IL_0189; } IL_0189: { SocketAddress_t1723199846 * L_46 = V_0; return L_46; } } // System.String System.Net.IPEndPoint::ToString() extern "C" String_t* IPEndPoint_ToString_m1161305987 (IPEndPoint_t1606333388 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPEndPoint_ToString_m1161305987_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IPAddress_t2830710878 * L_0 = __this->get_address_0(); NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Net.IPAddress::ToString() */, L_0); int32_t L_2 = __this->get_port_1(); int32_t L_3 = L_2; RuntimeObject * L_4 = Box(Int32_t1085330725_il2cpp_TypeInfo_var, &L_3); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_5 = String_Concat_m2926526737(NULL /*static, unused*/, L_1, _stringLiteral1709538064, L_4, /*hidden argument*/NULL); return L_5; } } // System.Boolean System.Net.IPEndPoint::Equals(System.Object) extern "C" bool IPEndPoint_Equals_m2937983491 (IPEndPoint_t1606333388 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPEndPoint_Equals_m2937983491_MetadataUsageId); s_Il2CppMethodInitialized = true; } IPEndPoint_t1606333388 * V_0 = NULL; int32_t G_B4_0 = 0; { RuntimeObject * L_0 = ___obj0; V_0 = ((IPEndPoint_t1606333388 *)IsInstClass((RuntimeObject*)L_0, IPEndPoint_t1606333388_il2cpp_TypeInfo_var)); IPEndPoint_t1606333388 * L_1 = V_0; if (!L_1) { goto IL_0031; } } { IPEndPoint_t1606333388 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = L_2->get_port_1(); int32_t L_4 = __this->get_port_1(); if ((!(((uint32_t)L_3) == ((uint32_t)L_4)))) { goto IL_0031; } } { IPEndPoint_t1606333388 * L_5 = V_0; NullCheck(L_5); IPAddress_t2830710878 * L_6 = L_5->get_address_0(); IPAddress_t2830710878 * L_7 = __this->get_address_0(); NullCheck(L_6); bool L_8 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Net.IPAddress::Equals(System.Object) */, L_6, L_7); G_B4_0 = ((int32_t)(L_8)); goto IL_0032; } IL_0031: { G_B4_0 = 0; } IL_0032: { return (bool)G_B4_0; } } // System.Int32 System.Net.IPEndPoint::GetHashCode() extern "C" int32_t IPEndPoint_GetHashCode_m3408258597 (IPEndPoint_t1606333388 * __this, const RuntimeMethod* method) { { IPAddress_t2830710878 * L_0 = __this->get_address_0(); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Net.IPAddress::GetHashCode() */, L_0); int32_t L_2 = __this->get_port_1(); return ((int32_t)((int32_t)L_1+(int32_t)L_2)); } } // System.Void System.Net.IPHostEntry::.ctor() extern "C" void IPHostEntry__ctor_m4274864846 (IPHostEntry_t1585536838 * __this, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); return; } } // System.Net.IPAddress[] System.Net.IPHostEntry::get_AddressList() extern "C" IPAddressU5BU5D_t3756700779* IPHostEntry_get_AddressList_m2069605532 (IPHostEntry_t1585536838 * __this, const RuntimeMethod* method) { { IPAddressU5BU5D_t3756700779* L_0 = __this->get_addressList_0(); return L_0; } } // System.Void System.Net.IPHostEntry::set_AddressList(System.Net.IPAddress[]) extern "C" void IPHostEntry_set_AddressList_m2174166557 (IPHostEntry_t1585536838 * __this, IPAddressU5BU5D_t3756700779* ___value0, const RuntimeMethod* method) { { IPAddressU5BU5D_t3756700779* L_0 = ___value0; __this->set_addressList_0(L_0); return; } } // System.Void System.Net.IPHostEntry::set_Aliases(System.String[]) extern "C" void IPHostEntry_set_Aliases_m116993255 (IPHostEntry_t1585536838 * __this, StringU5BU5D_t1187188029* ___value0, const RuntimeMethod* method) { { StringU5BU5D_t1187188029* L_0 = ___value0; __this->set_aliases_1(L_0); return; } } // System.Void System.Net.IPHostEntry::set_HostName(System.String) extern "C" void IPHostEntry_set_HostName_m450026793 (IPHostEntry_t1585536838 * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_hostName_2(L_0); return; } } // System.Void System.Net.IPv6Address::.ctor(System.UInt16[]) extern "C" void IPv6Address__ctor_m3006175894 (IPv6Address_t2007755840 * __this, UInt16U5BU5D_t1255862157* ___addr0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPv6Address__ctor_m3006175894_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); UInt16U5BU5D_t1255862157* L_0 = ___addr0; if (L_0) { goto IL_0017; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral1631562470, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0017: { UInt16U5BU5D_t1255862157* L_2 = ___addr0; NullCheck(L_2); if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_2)->max_length))))) == ((int32_t)8))) { goto IL_002b; } } { ArgumentException_t1946723077 * L_3 = (ArgumentException_t1946723077 *)il2cpp_codegen_object_new(ArgumentException_t1946723077_il2cpp_TypeInfo_var); ArgumentException__ctor_m509860574(L_3, _stringLiteral1631562470, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_002b: { UInt16U5BU5D_t1255862157* L_4 = ___addr0; __this->set_address_0(L_4); return; } } // System.Void System.Net.IPv6Address::.ctor(System.UInt16[],System.Int32) extern "C" void IPv6Address__ctor_m1240619628 (IPv6Address_t2007755840 * __this, UInt16U5BU5D_t1255862157* ___addr0, int32_t ___prefixLength1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPv6Address__ctor_m1240619628_MetadataUsageId); s_Il2CppMethodInitialized = true; } { UInt16U5BU5D_t1255862157* L_0 = ___addr0; IPv6Address__ctor_m3006175894(__this, L_0, /*hidden argument*/NULL); int32_t L_1 = ___prefixLength1; if ((((int32_t)L_1) < ((int32_t)0))) { goto IL_0019; } } { int32_t L_2 = ___prefixLength1; if ((((int32_t)L_2) <= ((int32_t)((int32_t)128)))) { goto IL_0024; } } IL_0019: { ArgumentException_t1946723077 * L_3 = (ArgumentException_t1946723077 *)il2cpp_codegen_object_new(ArgumentException_t1946723077_il2cpp_TypeInfo_var); ArgumentException__ctor_m509860574(L_3, _stringLiteral4108421969, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_0024: { int32_t L_4 = ___prefixLength1; __this->set_prefixLength_1(L_4); return; } } // System.Void System.Net.IPv6Address::.ctor(System.UInt16[],System.Int32,System.Int32) extern "C" void IPv6Address__ctor_m3472332158 (IPv6Address_t2007755840 * __this, UInt16U5BU5D_t1255862157* ___addr0, int32_t ___prefixLength1, int32_t ___scopeId2, const RuntimeMethod* method) { { UInt16U5BU5D_t1255862157* L_0 = ___addr0; int32_t L_1 = ___prefixLength1; IPv6Address__ctor_m1240619628(__this, L_0, L_1, /*hidden argument*/NULL); int32_t L_2 = ___scopeId2; __this->set_scopeId_2((((int64_t)((int64_t)L_2)))); return; } } // System.Void System.Net.IPv6Address::.cctor() extern "C" void IPv6Address__cctor_m1093026902 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPv6Address__cctor_m1093026902_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IPv6Address_t2007755840 * L_0 = IPv6Address_Parse_m428862144(NULL /*static, unused*/, _stringLiteral28310375, /*hidden argument*/NULL); ((IPv6Address_t2007755840_StaticFields*)il2cpp_codegen_static_fields_for(IPv6Address_t2007755840_il2cpp_TypeInfo_var))->set_Loopback_3(L_0); IPv6Address_t2007755840 * L_1 = IPv6Address_Parse_m428862144(NULL /*static, unused*/, _stringLiteral3983943931, /*hidden argument*/NULL); ((IPv6Address_t2007755840_StaticFields*)il2cpp_codegen_static_fields_for(IPv6Address_t2007755840_il2cpp_TypeInfo_var))->set_Unspecified_4(L_1); return; } } // System.Net.IPv6Address System.Net.IPv6Address::Parse(System.String) extern "C" IPv6Address_t2007755840 * IPv6Address_Parse_m428862144 (RuntimeObject * __this /* static, unused */, String_t* ___ipString0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPv6Address_Parse_m428862144_MetadataUsageId); s_Il2CppMethodInitialized = true; } IPv6Address_t2007755840 * V_0 = NULL; { String_t* L_0 = ___ipString0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral53441942, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { String_t* L_2 = ___ipString0; IL2CPP_RUNTIME_CLASS_INIT(IPv6Address_t2007755840_il2cpp_TypeInfo_var); bool L_3 = IPv6Address_TryParse_m412911054(NULL /*static, unused*/, L_2, (&V_0), /*hidden argument*/NULL); if (!L_3) { goto IL_0020; } } { IPv6Address_t2007755840 * L_4 = V_0; return L_4; } IL_0020: { FormatException_t3614201526 * L_5 = (FormatException_t3614201526 *)il2cpp_codegen_object_new(FormatException_t3614201526_il2cpp_TypeInfo_var); FormatException__ctor_m1936902822(L_5, _stringLiteral1965827863, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5); } } // System.Int32 System.Net.IPv6Address::Fill(System.UInt16[],System.String) extern "C" int32_t IPv6Address_Fill_m1519478767 (RuntimeObject * __this /* static, unused */, UInt16U5BU5D_t1255862157* ___addr0, String_t* ___ipString1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPv6Address_Fill_m1519478767_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; Il2CppChar V_3 = 0x0; int32_t V_4 = 0; { V_0 = 0; V_1 = 0; String_t* L_0 = ___ipString1; NullCheck(L_0); int32_t L_1 = String_get_Length_m2584136399(L_0, /*hidden argument*/NULL); if (L_1) { goto IL_0011; } } { return 0; } IL_0011: { String_t* L_2 = ___ipString1; NullCheck(L_2); int32_t L_3 = String_IndexOf_m1251172182(L_2, _stringLiteral3983943931, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0024; } } { return (-1); } IL_0024: { V_2 = 0; goto IL_00d5; } IL_002b: { String_t* L_4 = ___ipString1; int32_t L_5 = V_2; NullCheck(L_4); Il2CppChar L_6 = String_get_Chars_m1760567447(L_4, L_5, /*hidden argument*/NULL); V_3 = L_6; Il2CppChar L_7 = V_3; if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)58))))) { goto IL_0064; } } { int32_t L_8 = V_2; String_t* L_9 = ___ipString1; NullCheck(L_9); int32_t L_10 = String_get_Length_m2584136399(L_9, /*hidden argument*/NULL); if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)((int32_t)L_10-(int32_t)1)))))) { goto IL_004b; } } { return (-1); } IL_004b: { int32_t L_11 = V_1; if ((!(((uint32_t)L_11) == ((uint32_t)8)))) { goto IL_0054; } } { return (-1); } IL_0054: { UInt16U5BU5D_t1255862157* L_12 = ___addr0; int32_t L_13 = V_1; int32_t L_14 = L_13; V_1 = ((int32_t)((int32_t)L_14+(int32_t)1)); int32_t L_15 = V_0; NullCheck(L_12); (L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (uint16_t)(((int32_t)((uint16_t)L_15)))); V_0 = 0; goto IL_00d1; } IL_0064: { Il2CppChar L_16 = V_3; if ((((int32_t)((int32_t)48)) > ((int32_t)L_16))) { goto IL_007f; } } { Il2CppChar L_17 = V_3; if ((((int32_t)L_17) > ((int32_t)((int32_t)57)))) { goto IL_007f; } } { Il2CppChar L_18 = V_3; V_4 = ((int32_t)((int32_t)L_18-(int32_t)((int32_t)48))); goto IL_00bd; } IL_007f: { Il2CppChar L_19 = V_3; if ((((int32_t)((int32_t)97)) > ((int32_t)L_19))) { goto IL_009d; } } { Il2CppChar L_20 = V_3; if ((((int32_t)L_20) > ((int32_t)((int32_t)102)))) { goto IL_009d; } } { Il2CppChar L_21 = V_3; V_4 = ((int32_t)((int32_t)((int32_t)((int32_t)L_21-(int32_t)((int32_t)97)))+(int32_t)((int32_t)10))); goto IL_00bd; } IL_009d: { Il2CppChar L_22 = V_3; if ((((int32_t)((int32_t)65)) > ((int32_t)L_22))) { goto IL_00bb; } } { Il2CppChar L_23 = V_3; if ((((int32_t)L_23) > ((int32_t)((int32_t)70)))) { goto IL_00bb; } } { Il2CppChar L_24 = V_3; V_4 = ((int32_t)((int32_t)((int32_t)((int32_t)L_24-(int32_t)((int32_t)65)))+(int32_t)((int32_t)10))); goto IL_00bd; } IL_00bb: { return (-1); } IL_00bd: { int32_t L_25 = V_0; int32_t L_26 = V_4; V_0 = ((int32_t)((int32_t)((int32_t)((int32_t)L_25<<(int32_t)4))+(int32_t)L_26)); int32_t L_27 = V_0; if ((((int32_t)L_27) <= ((int32_t)((int32_t)65535)))) { goto IL_00d1; } } { return (-1); } IL_00d1: { int32_t L_28 = V_2; V_2 = ((int32_t)((int32_t)L_28+(int32_t)1)); } IL_00d5: { int32_t L_29 = V_2; String_t* L_30 = ___ipString1; NullCheck(L_30); int32_t L_31 = String_get_Length_m2584136399(L_30, /*hidden argument*/NULL); if ((((int32_t)L_29) < ((int32_t)L_31))) { goto IL_002b; } } { int32_t L_32 = V_1; if ((!(((uint32_t)L_32) == ((uint32_t)8)))) { goto IL_00ea; } } { return (-1); } IL_00ea: { UInt16U5BU5D_t1255862157* L_33 = ___addr0; int32_t L_34 = V_1; int32_t L_35 = L_34; V_1 = ((int32_t)((int32_t)L_35+(int32_t)1)); int32_t L_36 = V_0; NullCheck(L_33); (L_33)->SetAt(static_cast<il2cpp_array_size_t>(L_35), (uint16_t)(((int32_t)((uint16_t)L_36)))); int32_t L_37 = V_1; return L_37; } } // System.Boolean System.Net.IPv6Address::TryParse(System.String,System.Int32&) extern "C" bool IPv6Address_TryParse_m2575875235 (RuntimeObject * __this /* static, unused */, String_t* ___prefix0, int32_t* ___res1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPv6Address_TryParse_m2575875235_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___prefix0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t270095993_il2cpp_TypeInfo_var); CultureInfo_t270095993 * L_1 = CultureInfo_get_InvariantCulture_m307173330(NULL /*static, unused*/, /*hidden argument*/NULL); int32_t* L_2 = ___res1; bool L_3 = Int32_TryParse_m275795741(NULL /*static, unused*/, L_0, 7, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.Boolean System.Net.IPv6Address::TryParse(System.String,System.Net.IPv6Address&) extern "C" bool IPv6Address_TryParse_m412911054 (RuntimeObject * __this /* static, unused */, String_t* ___ipString0, IPv6Address_t2007755840 ** ___result1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPv6Address_TryParse_m412911054_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; String_t* V_3 = NULL; String_t* V_4 = NULL; UInt16U5BU5D_t1255862157* V_5 = NULL; bool V_6 = false; int32_t V_7 = 0; int32_t V_8 = 0; String_t* V_9 = NULL; IPAddress_t2830710878 * V_10 = NULL; int64_t V_11 = 0; int32_t V_12 = 0; int32_t V_13 = 0; int32_t V_14 = 0; int32_t V_15 = 0; int32_t V_16 = 0; bool V_17 = false; int32_t V_18 = 0; int32_t V_19 = 0; { IPv6Address_t2007755840 ** L_0 = ___result1; *((RuntimeObject **)(L_0)) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_0), (RuntimeObject *)NULL); String_t* L_1 = ___ipString0; if (L_1) { goto IL_000b; } } { return (bool)0; } IL_000b: { String_t* L_2 = ___ipString0; NullCheck(L_2); int32_t L_3 = String_get_Length_m2584136399(L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) <= ((int32_t)2))) { goto IL_004b; } } { String_t* L_4 = ___ipString0; NullCheck(L_4); Il2CppChar L_5 = String_get_Chars_m1760567447(L_4, 0, /*hidden argument*/NULL); if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)91))))) { goto IL_004b; } } { String_t* L_6 = ___ipString0; String_t* L_7 = ___ipString0; NullCheck(L_7); int32_t L_8 = String_get_Length_m2584136399(L_7, /*hidden argument*/NULL); NullCheck(L_6); Il2CppChar L_9 = String_get_Chars_m1760567447(L_6, ((int32_t)((int32_t)L_8-(int32_t)1)), /*hidden argument*/NULL); if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)93))))) { goto IL_004b; } } { String_t* L_10 = ___ipString0; String_t* L_11 = ___ipString0; NullCheck(L_11); int32_t L_12 = String_get_Length_m2584136399(L_11, /*hidden argument*/NULL); NullCheck(L_10); String_t* L_13 = String_Substring_m3946733520(L_10, 1, ((int32_t)((int32_t)L_12-(int32_t)2)), /*hidden argument*/NULL); ___ipString0 = L_13; } IL_004b: { String_t* L_14 = ___ipString0; NullCheck(L_14); int32_t L_15 = String_get_Length_m2584136399(L_14, /*hidden argument*/NULL); if ((((int32_t)L_15) >= ((int32_t)2))) { goto IL_0059; } } { return (bool)0; } IL_0059: { V_0 = 0; V_1 = 0; String_t* L_16 = ___ipString0; NullCheck(L_16); int32_t L_17 = String_LastIndexOf_m2617292187(L_16, ((int32_t)47), /*hidden argument*/NULL); V_2 = L_17; int32_t L_18 = V_2; if ((((int32_t)L_18) == ((int32_t)(-1)))) { goto IL_00a9; } } { String_t* L_19 = ___ipString0; int32_t L_20 = V_2; NullCheck(L_19); String_t* L_21 = String_Substring_m4064971911(L_19, ((int32_t)((int32_t)L_20+(int32_t)1)), /*hidden argument*/NULL); V_3 = L_21; String_t* L_22 = V_3; IL2CPP_RUNTIME_CLASS_INIT(IPv6Address_t2007755840_il2cpp_TypeInfo_var); bool L_23 = IPv6Address_TryParse_m2575875235(NULL /*static, unused*/, L_22, (&V_0), /*hidden argument*/NULL); if (L_23) { goto IL_0086; } } { V_0 = (-1); } IL_0086: { int32_t L_24 = V_0; if ((((int32_t)L_24) < ((int32_t)0))) { goto IL_0098; } } { int32_t L_25 = V_0; if ((((int32_t)L_25) <= ((int32_t)((int32_t)128)))) { goto IL_009a; } } IL_0098: { return (bool)0; } IL_009a: { String_t* L_26 = ___ipString0; int32_t L_27 = V_2; NullCheck(L_26); String_t* L_28 = String_Substring_m3946733520(L_26, 0, L_27, /*hidden argument*/NULL); ___ipString0 = L_28; goto IL_00de; } IL_00a9: { String_t* L_29 = ___ipString0; NullCheck(L_29); int32_t L_30 = String_LastIndexOf_m2617292187(L_29, ((int32_t)37), /*hidden argument*/NULL); V_2 = L_30; int32_t L_31 = V_2; if ((((int32_t)L_31) == ((int32_t)(-1)))) { goto IL_00de; } } { String_t* L_32 = ___ipString0; int32_t L_33 = V_2; NullCheck(L_32); String_t* L_34 = String_Substring_m4064971911(L_32, ((int32_t)((int32_t)L_33+(int32_t)1)), /*hidden argument*/NULL); V_4 = L_34; String_t* L_35 = V_4; IL2CPP_RUNTIME_CLASS_INIT(IPv6Address_t2007755840_il2cpp_TypeInfo_var); bool L_36 = IPv6Address_TryParse_m2575875235(NULL /*static, unused*/, L_35, (&V_1), /*hidden argument*/NULL); if (L_36) { goto IL_00d4; } } { V_1 = 0; } IL_00d4: { String_t* L_37 = ___ipString0; int32_t L_38 = V_2; NullCheck(L_37); String_t* L_39 = String_Substring_m3946733520(L_37, 0, L_38, /*hidden argument*/NULL); ___ipString0 = L_39; } IL_00de: { V_5 = ((UInt16U5BU5D_t1255862157*)SZArrayNew(UInt16U5BU5D_t1255862157_il2cpp_TypeInfo_var, (uint32_t)8)); V_6 = (bool)0; String_t* L_40 = ___ipString0; NullCheck(L_40); int32_t L_41 = String_LastIndexOf_m2617292187(L_40, ((int32_t)58), /*hidden argument*/NULL); V_7 = L_41; int32_t L_42 = V_7; if ((!(((uint32_t)L_42) == ((uint32_t)(-1))))) { goto IL_00fd; } } { return (bool)0; } IL_00fd: { V_8 = 0; int32_t L_43 = V_7; String_t* L_44 = ___ipString0; NullCheck(L_44); int32_t L_45 = String_get_Length_m2584136399(L_44, /*hidden argument*/NULL); if ((((int32_t)L_43) >= ((int32_t)((int32_t)((int32_t)L_45-(int32_t)1))))) { goto IL_01bf; } } { String_t* L_46 = ___ipString0; int32_t L_47 = V_7; NullCheck(L_46); String_t* L_48 = String_Substring_m4064971911(L_46, ((int32_t)((int32_t)L_47+(int32_t)1)), /*hidden argument*/NULL); V_9 = L_48; String_t* L_49 = V_9; NullCheck(L_49); int32_t L_50 = String_IndexOf_m3163027715(L_49, ((int32_t)46), /*hidden argument*/NULL); if ((((int32_t)L_50) == ((int32_t)(-1)))) { goto IL_01bf; } } { String_t* L_51 = V_9; IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); bool L_52 = IPAddress_TryParse_m442898607(NULL /*static, unused*/, L_51, (&V_10), /*hidden argument*/NULL); if (L_52) { goto IL_013a; } } { return (bool)0; } IL_013a: { IPAddress_t2830710878 * L_53 = V_10; NullCheck(L_53); int64_t L_54 = IPAddress_get_InternalIPv4Address_m1377209505(L_53, /*hidden argument*/NULL); V_11 = L_54; UInt16U5BU5D_t1255862157* L_55 = V_5; int64_t L_56 = V_11; int64_t L_57 = V_11; NullCheck(L_55); (L_55)->SetAt(static_cast<il2cpp_array_size_t>(6), (uint16_t)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)((int64_t)((int64_t)L_56&(int64_t)(((int64_t)((int64_t)((int32_t)255)))))))))<<(int32_t)8))+(int32_t)(((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)((int64_t)L_57>>(int32_t)8))&(int64_t)(((int64_t)((int64_t)((int32_t)255))))))))))))))); UInt16U5BU5D_t1255862157* L_58 = V_5; int64_t L_59 = V_11; int64_t L_60 = V_11; NullCheck(L_58); (L_58)->SetAt(static_cast<il2cpp_array_size_t>(7), (uint16_t)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)((int64_t)L_59>>(int32_t)((int32_t)16)))&(int64_t)(((int64_t)((int64_t)((int32_t)255)))))))))<<(int32_t)8))+(int32_t)(((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)((int64_t)L_60>>(int32_t)((int32_t)24)))&(int64_t)(((int64_t)((int64_t)((int32_t)255))))))))))))))); int32_t L_61 = V_7; if ((((int32_t)L_61) <= ((int32_t)0))) { goto IL_01ae; } } { String_t* L_62 = ___ipString0; int32_t L_63 = V_7; NullCheck(L_62); Il2CppChar L_64 = String_get_Chars_m1760567447(L_62, ((int32_t)((int32_t)L_63-(int32_t)1)), /*hidden argument*/NULL); if ((!(((uint32_t)L_64) == ((uint32_t)((int32_t)58))))) { goto IL_01ae; } } { String_t* L_65 = ___ipString0; int32_t L_66 = V_7; NullCheck(L_65); String_t* L_67 = String_Substring_m3946733520(L_65, 0, ((int32_t)((int32_t)L_66+(int32_t)1)), /*hidden argument*/NULL); ___ipString0 = L_67; goto IL_01b9; } IL_01ae: { String_t* L_68 = ___ipString0; int32_t L_69 = V_7; NullCheck(L_68); String_t* L_70 = String_Substring_m3946733520(L_68, 0, L_69, /*hidden argument*/NULL); ___ipString0 = L_70; } IL_01b9: { V_6 = (bool)1; V_8 = 2; } IL_01bf: { String_t* L_71 = ___ipString0; NullCheck(L_71); int32_t L_72 = String_IndexOf_m1251172182(L_71, _stringLiteral3983943931, /*hidden argument*/NULL); V_12 = L_72; int32_t L_73 = V_12; if ((((int32_t)L_73) == ((int32_t)(-1)))) { goto IL_0268; } } { UInt16U5BU5D_t1255862157* L_74 = V_5; String_t* L_75 = ___ipString0; int32_t L_76 = V_12; NullCheck(L_75); String_t* L_77 = String_Substring_m4064971911(L_75, ((int32_t)((int32_t)L_76+(int32_t)2)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IPv6Address_t2007755840_il2cpp_TypeInfo_var); int32_t L_78 = IPv6Address_Fill_m1519478767(NULL /*static, unused*/, L_74, L_77, /*hidden argument*/NULL); V_13 = L_78; int32_t L_79 = V_13; if ((!(((uint32_t)L_79) == ((uint32_t)(-1))))) { goto IL_01f1; } } { return (bool)0; } IL_01f1: { int32_t L_80 = V_13; int32_t L_81 = V_8; if ((((int32_t)((int32_t)((int32_t)L_80+(int32_t)L_81))) <= ((int32_t)8))) { goto IL_01fe; } } { return (bool)0; } IL_01fe: { int32_t L_82 = V_8; int32_t L_83 = V_13; V_14 = ((int32_t)((int32_t)((int32_t)((int32_t)8-(int32_t)L_82))-(int32_t)L_83)); int32_t L_84 = V_13; V_15 = L_84; goto IL_022f; } IL_0210: { UInt16U5BU5D_t1255862157* L_85 = V_5; int32_t L_86 = V_15; int32_t L_87 = V_14; UInt16U5BU5D_t1255862157* L_88 = V_5; int32_t L_89 = V_15; NullCheck(L_88); int32_t L_90 = ((int32_t)((int32_t)L_89-(int32_t)1)); uint16_t L_91 = (L_88)->GetAt(static_cast<il2cpp_array_size_t>(L_90)); NullCheck(L_85); (L_85)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)((int32_t)((int32_t)((int32_t)L_86+(int32_t)L_87))-(int32_t)1))), (uint16_t)L_91); UInt16U5BU5D_t1255862157* L_92 = V_5; int32_t L_93 = V_15; NullCheck(L_92); (L_92)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)((int32_t)L_93-(int32_t)1))), (uint16_t)0); int32_t L_94 = V_15; V_15 = ((int32_t)((int32_t)L_94-(int32_t)1)); } IL_022f: { int32_t L_95 = V_15; if ((((int32_t)L_95) > ((int32_t)0))) { goto IL_0210; } } { UInt16U5BU5D_t1255862157* L_96 = V_5; String_t* L_97 = ___ipString0; int32_t L_98 = V_12; NullCheck(L_97); String_t* L_99 = String_Substring_m3946733520(L_97, 0, L_98, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IPv6Address_t2007755840_il2cpp_TypeInfo_var); int32_t L_100 = IPv6Address_Fill_m1519478767(NULL /*static, unused*/, L_96, L_99, /*hidden argument*/NULL); V_16 = L_100; int32_t L_101 = V_16; if ((!(((uint32_t)L_101) == ((uint32_t)(-1))))) { goto IL_0253; } } { return (bool)0; } IL_0253: { int32_t L_102 = V_16; int32_t L_103 = V_13; int32_t L_104 = V_8; if ((((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_102+(int32_t)L_103))+(int32_t)L_104))) <= ((int32_t)7))) { goto IL_0263; } } { return (bool)0; } IL_0263: { goto IL_027b; } IL_0268: { UInt16U5BU5D_t1255862157* L_105 = V_5; String_t* L_106 = ___ipString0; IL2CPP_RUNTIME_CLASS_INIT(IPv6Address_t2007755840_il2cpp_TypeInfo_var); int32_t L_107 = IPv6Address_Fill_m1519478767(NULL /*static, unused*/, L_105, L_106, /*hidden argument*/NULL); int32_t L_108 = V_8; if ((((int32_t)L_107) == ((int32_t)((int32_t)((int32_t)8-(int32_t)L_108))))) { goto IL_027b; } } { return (bool)0; } IL_027b: { V_17 = (bool)0; V_18 = 0; goto IL_02b0; } IL_0286: { UInt16U5BU5D_t1255862157* L_109 = V_5; int32_t L_110 = V_18; NullCheck(L_109); int32_t L_111 = L_110; uint16_t L_112 = (L_109)->GetAt(static_cast<il2cpp_array_size_t>(L_111)); if (L_112) { goto IL_02a7; } } { int32_t L_113 = V_18; if ((!(((uint32_t)L_113) == ((uint32_t)5)))) { goto IL_02aa; } } { UInt16U5BU5D_t1255862157* L_114 = V_5; int32_t L_115 = V_18; NullCheck(L_114); int32_t L_116 = L_115; uint16_t L_117 = (L_114)->GetAt(static_cast<il2cpp_array_size_t>(L_116)); if ((((int32_t)L_117) == ((int32_t)((int32_t)65535)))) { goto IL_02aa; } } IL_02a7: { V_17 = (bool)1; } IL_02aa: { int32_t L_118 = V_18; V_18 = ((int32_t)((int32_t)L_118+(int32_t)1)); } IL_02b0: { int32_t L_119 = V_18; int32_t L_120 = V_8; if ((((int32_t)L_119) < ((int32_t)L_120))) { goto IL_0286; } } { bool L_121 = V_6; if (!L_121) { goto IL_0302; } } { bool L_122 = V_17; if (L_122) { goto IL_0302; } } { V_19 = 0; goto IL_02e1; } IL_02cf: { UInt16U5BU5D_t1255862157* L_123 = V_5; int32_t L_124 = V_19; NullCheck(L_123); int32_t L_125 = L_124; uint16_t L_126 = (L_123)->GetAt(static_cast<il2cpp_array_size_t>(L_125)); if (!L_126) { goto IL_02db; } } { return (bool)0; } IL_02db: { int32_t L_127 = V_19; V_19 = ((int32_t)((int32_t)L_127+(int32_t)1)); } IL_02e1: { int32_t L_128 = V_19; if ((((int32_t)L_128) < ((int32_t)5))) { goto IL_02cf; } } { UInt16U5BU5D_t1255862157* L_129 = V_5; NullCheck(L_129); int32_t L_130 = 5; uint16_t L_131 = (L_129)->GetAt(static_cast<il2cpp_array_size_t>(L_130)); if (!L_131) { goto IL_0302; } } { UInt16U5BU5D_t1255862157* L_132 = V_5; NullCheck(L_132); int32_t L_133 = 5; uint16_t L_134 = (L_132)->GetAt(static_cast<il2cpp_array_size_t>(L_133)); if ((((int32_t)L_134) == ((int32_t)((int32_t)65535)))) { goto IL_0302; } } { return (bool)0; } IL_0302: { IPv6Address_t2007755840 ** L_135 = ___result1; UInt16U5BU5D_t1255862157* L_136 = V_5; int32_t L_137 = V_0; int32_t L_138 = V_1; IPv6Address_t2007755840 * L_139 = (IPv6Address_t2007755840 *)il2cpp_codegen_object_new(IPv6Address_t2007755840_il2cpp_TypeInfo_var); IPv6Address__ctor_m3472332158(L_139, L_136, L_137, L_138, /*hidden argument*/NULL); *((RuntimeObject **)(L_135)) = (RuntimeObject *)L_139; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_135), (RuntimeObject *)L_139); return (bool)1; } } // System.UInt16[] System.Net.IPv6Address::get_Address() extern "C" UInt16U5BU5D_t1255862157* IPv6Address_get_Address_m844321525 (IPv6Address_t2007755840 * __this, const RuntimeMethod* method) { { UInt16U5BU5D_t1255862157* L_0 = __this->get_address_0(); return L_0; } } // System.Int64 System.Net.IPv6Address::get_ScopeId() extern "C" int64_t IPv6Address_get_ScopeId_m1617357672 (IPv6Address_t2007755840 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get_scopeId_2(); return L_0; } } // System.Void System.Net.IPv6Address::set_ScopeId(System.Int64) extern "C" void IPv6Address_set_ScopeId_m2362086601 (IPv6Address_t2007755840 * __this, int64_t ___value0, const RuntimeMethod* method) { { int64_t L_0 = ___value0; __this->set_scopeId_2(L_0); return; } } // System.Boolean System.Net.IPv6Address::IsLoopback(System.Net.IPv6Address) extern "C" bool IPv6Address_IsLoopback_m1433789696 (RuntimeObject * __this /* static, unused */, IPv6Address_t2007755840 * ___addr0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { IPv6Address_t2007755840 * L_0 = ___addr0; NullCheck(L_0); UInt16U5BU5D_t1255862157* L_1 = L_0->get_address_0(); NullCheck(L_1); int32_t L_2 = 7; uint16_t L_3 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_2)); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0010; } } { return (bool)0; } IL_0010: { IPv6Address_t2007755840 * L_4 = ___addr0; NullCheck(L_4); UInt16U5BU5D_t1255862157* L_5 = L_4->get_address_0(); NullCheck(L_5); int32_t L_6 = 6; uint16_t L_7 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); V_0 = ((int32_t)((int32_t)L_7>>(int32_t)8)); int32_t L_8 = V_0; if ((((int32_t)L_8) == ((int32_t)((int32_t)127)))) { goto IL_002b; } } { int32_t L_9 = V_0; if (!L_9) { goto IL_002b; } } { return (bool)0; } IL_002b: { V_1 = 0; goto IL_0045; } IL_0032: { IPv6Address_t2007755840 * L_10 = ___addr0; NullCheck(L_10); UInt16U5BU5D_t1255862157* L_11 = L_10->get_address_0(); int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = L_12; uint16_t L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13)); if (!L_14) { goto IL_0041; } } { return (bool)0; } IL_0041: { int32_t L_15 = V_1; V_1 = ((int32_t)((int32_t)L_15+(int32_t)1)); } IL_0045: { int32_t L_16 = V_1; if ((((int32_t)L_16) < ((int32_t)4))) { goto IL_0032; } } { IPv6Address_t2007755840 * L_17 = ___addr0; NullCheck(L_17); UInt16U5BU5D_t1255862157* L_18 = L_17->get_address_0(); NullCheck(L_18); int32_t L_19 = 5; uint16_t L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19)); if (!L_20) { goto IL_006d; } } { IPv6Address_t2007755840 * L_21 = ___addr0; NullCheck(L_21); UInt16U5BU5D_t1255862157* L_22 = L_21->get_address_0(); NullCheck(L_22); int32_t L_23 = 5; uint16_t L_24 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_23)); if ((((int32_t)L_24) == ((int32_t)((int32_t)65535)))) { goto IL_006d; } } { return (bool)0; } IL_006d: { return (bool)1; } } // System.UInt16 System.Net.IPv6Address::SwapUShort(System.UInt16) extern "C" uint16_t IPv6Address_SwapUShort_m1827635909 (RuntimeObject * __this /* static, unused */, uint16_t ___number0, const RuntimeMethod* method) { { uint16_t L_0 = ___number0; uint16_t L_1 = ___number0; return (uint16_t)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_0>>(int32_t)8))&(int32_t)((int32_t)255)))+(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_1<<(int32_t)8))&(int32_t)((int32_t)65280)))))))); } } // System.Int32 System.Net.IPv6Address::AsIPv4Int() extern "C" int32_t IPv6Address_AsIPv4Int_m3403158558 (IPv6Address_t2007755840 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPv6Address_AsIPv4Int_m3403158558_MetadataUsageId); s_Il2CppMethodInitialized = true; } { UInt16U5BU5D_t1255862157* L_0 = __this->get_address_0(); NullCheck(L_0); int32_t L_1 = 7; uint16_t L_2 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_1)); IL2CPP_RUNTIME_CLASS_INIT(IPv6Address_t2007755840_il2cpp_TypeInfo_var); uint16_t L_3 = IPv6Address_SwapUShort_m1827635909(NULL /*static, unused*/, L_2, /*hidden argument*/NULL); UInt16U5BU5D_t1255862157* L_4 = __this->get_address_0(); NullCheck(L_4); int32_t L_5 = 6; uint16_t L_6 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); uint16_t L_7 = IPv6Address_SwapUShort_m1827635909(NULL /*static, unused*/, L_6, /*hidden argument*/NULL); return ((int32_t)((int32_t)((int32_t)((int32_t)L_3<<(int32_t)((int32_t)16)))+(int32_t)L_7)); } } // System.Boolean System.Net.IPv6Address::IsIPv4Compatible() extern "C" bool IPv6Address_IsIPv4Compatible_m2433077592 (IPv6Address_t2007755840 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { V_0 = 0; goto IL_001a; } IL_0007: { UInt16U5BU5D_t1255862157* L_0 = __this->get_address_0(); int32_t L_1 = V_0; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2)); if (!L_3) { goto IL_0016; } } { return (bool)0; } IL_0016: { int32_t L_4 = V_0; V_0 = ((int32_t)((int32_t)L_4+(int32_t)1)); } IL_001a: { int32_t L_5 = V_0; if ((((int32_t)L_5) < ((int32_t)6))) { goto IL_0007; } } { int32_t L_6 = IPv6Address_AsIPv4Int_m3403158558(__this, /*hidden argument*/NULL); return (bool)((((int32_t)L_6) > ((int32_t)1))? 1 : 0); } } // System.Boolean System.Net.IPv6Address::IsIPv4Mapped() extern "C" bool IPv6Address_IsIPv4Mapped_m1097108779 (IPv6Address_t2007755840 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { V_0 = 0; goto IL_001a; } IL_0007: { UInt16U5BU5D_t1255862157* L_0 = __this->get_address_0(); int32_t L_1 = V_0; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2)); if (!L_3) { goto IL_0016; } } { return (bool)0; } IL_0016: { int32_t L_4 = V_0; V_0 = ((int32_t)((int32_t)L_4+(int32_t)1)); } IL_001a: { int32_t L_5 = V_0; if ((((int32_t)L_5) < ((int32_t)5))) { goto IL_0007; } } { UInt16U5BU5D_t1255862157* L_6 = __this->get_address_0(); NullCheck(L_6); int32_t L_7 = 5; uint16_t L_8 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); return (bool)((((int32_t)L_8) == ((int32_t)((int32_t)65535)))? 1 : 0); } } // System.String System.Net.IPv6Address::ToString() extern "C" String_t* IPv6Address_ToString_m2361350363 (IPv6Address_t2007755840 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPv6Address_ToString_m2361350363_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringBuilder_t1723565765 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; { StringBuilder_t1723565765 * L_0 = (StringBuilder_t1723565765 *)il2cpp_codegen_object_new(StringBuilder_t1723565765_il2cpp_TypeInfo_var); StringBuilder__ctor_m3807124734(L_0, /*hidden argument*/NULL); V_0 = L_0; bool L_1 = IPv6Address_IsIPv4Compatible_m2433077592(__this, /*hidden argument*/NULL); if (L_1) { goto IL_001c; } } { bool L_2 = IPv6Address_IsIPv4Mapped_m1097108779(__this, /*hidden argument*/NULL); if (!L_2) { goto IL_005e; } } IL_001c: { StringBuilder_t1723565765 * L_3 = V_0; NullCheck(L_3); StringBuilder_Append_m2808439928(L_3, _stringLiteral3983943931, /*hidden argument*/NULL); bool L_4 = IPv6Address_IsIPv4Mapped_m1097108779(__this, /*hidden argument*/NULL); if (!L_4) { goto IL_003f; } } { StringBuilder_t1723565765 * L_5 = V_0; NullCheck(L_5); StringBuilder_Append_m2808439928(L_5, _stringLiteral471998336, /*hidden argument*/NULL); } IL_003f: { StringBuilder_t1723565765 * L_6 = V_0; int32_t L_7 = IPv6Address_AsIPv4Int_m3403158558(__this, /*hidden argument*/NULL); IPAddress_t2830710878 * L_8 = (IPAddress_t2830710878 *)il2cpp_codegen_object_new(IPAddress_t2830710878_il2cpp_TypeInfo_var); IPAddress__ctor_m2213721830(L_8, (((int64_t)((int64_t)L_7))), /*hidden argument*/NULL); NullCheck(L_8); String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Net.IPAddress::ToString() */, L_8); NullCheck(L_6); StringBuilder_Append_m2808439928(L_6, L_9, /*hidden argument*/NULL); StringBuilder_t1723565765 * L_10 = V_0; NullCheck(L_10); String_t* L_11 = StringBuilder_ToString_m4017876341(L_10, /*hidden argument*/NULL); return L_11; } IL_005e: { V_1 = (-1); V_2 = 0; V_3 = 0; V_4 = 0; goto IL_00a0; } IL_006c: { UInt16U5BU5D_t1255862157* L_12 = __this->get_address_0(); int32_t L_13 = V_4; NullCheck(L_12); int32_t L_14 = L_13; uint16_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14)); if (!L_15) { goto IL_0096; } } { int32_t L_16 = V_3; int32_t L_17 = V_2; if ((((int32_t)L_16) <= ((int32_t)L_17))) { goto IL_008f; } } { int32_t L_18 = V_3; if ((((int32_t)L_18) <= ((int32_t)1))) { goto IL_008f; } } { int32_t L_19 = V_3; V_2 = L_19; int32_t L_20 = V_4; int32_t L_21 = V_3; V_1 = ((int32_t)((int32_t)L_20-(int32_t)L_21)); } IL_008f: { V_3 = 0; goto IL_009a; } IL_0096: { int32_t L_22 = V_3; V_3 = ((int32_t)((int32_t)L_22+(int32_t)1)); } IL_009a: { int32_t L_23 = V_4; V_4 = ((int32_t)((int32_t)L_23+(int32_t)1)); } IL_00a0: { int32_t L_24 = V_4; if ((((int32_t)L_24) < ((int32_t)8))) { goto IL_006c; } } { int32_t L_25 = V_3; int32_t L_26 = V_2; if ((((int32_t)L_25) <= ((int32_t)L_26))) { goto IL_00bc; } } { int32_t L_27 = V_3; if ((((int32_t)L_27) <= ((int32_t)1))) { goto IL_00bc; } } { int32_t L_28 = V_3; V_2 = L_28; int32_t L_29 = V_3; V_1 = ((int32_t)((int32_t)8-(int32_t)L_29)); } IL_00bc: { int32_t L_30 = V_1; if (L_30) { goto IL_00ce; } } { StringBuilder_t1723565765 * L_31 = V_0; NullCheck(L_31); StringBuilder_Append_m2808439928(L_31, _stringLiteral1709538064, /*hidden argument*/NULL); } IL_00ce: { V_5 = 0; goto IL_0128; } IL_00d6: { int32_t L_32 = V_5; int32_t L_33 = V_1; if ((!(((uint32_t)L_32) == ((uint32_t)L_33)))) { goto IL_00f7; } } { StringBuilder_t1723565765 * L_34 = V_0; NullCheck(L_34); StringBuilder_Append_m2808439928(L_34, _stringLiteral1709538064, /*hidden argument*/NULL); int32_t L_35 = V_5; int32_t L_36 = V_2; V_5 = ((int32_t)((int32_t)L_35+(int32_t)((int32_t)((int32_t)L_36-(int32_t)1)))); goto IL_0122; } IL_00f7: { StringBuilder_t1723565765 * L_37 = V_0; UInt16U5BU5D_t1255862157* L_38 = __this->get_address_0(); int32_t L_39 = V_5; NullCheck(L_38); int32_t L_40 = L_39; uint16_t L_41 = (L_38)->GetAt(static_cast<il2cpp_array_size_t>(L_40)); uint16_t L_42 = L_41; RuntimeObject * L_43 = Box(UInt16_t3519387236_il2cpp_TypeInfo_var, &L_42); NullCheck(L_37); StringBuilder_AppendFormat_m2761752028(L_37, _stringLiteral3205777717, L_43, /*hidden argument*/NULL); int32_t L_44 = V_5; if ((((int32_t)L_44) >= ((int32_t)7))) { goto IL_0122; } } { StringBuilder_t1723565765 * L_45 = V_0; NullCheck(L_45); StringBuilder_Append_m1590428652(L_45, ((int32_t)58), /*hidden argument*/NULL); } IL_0122: { int32_t L_46 = V_5; V_5 = ((int32_t)((int32_t)L_46+(int32_t)1)); } IL_0128: { int32_t L_47 = V_5; if ((((int32_t)L_47) < ((int32_t)8))) { goto IL_00d6; } } { int64_t L_48 = __this->get_scopeId_2(); if (!L_48) { goto IL_014f; } } { StringBuilder_t1723565765 * L_49 = V_0; NullCheck(L_49); StringBuilder_t1723565765 * L_50 = StringBuilder_Append_m1590428652(L_49, ((int32_t)37), /*hidden argument*/NULL); int64_t L_51 = __this->get_scopeId_2(); NullCheck(L_50); StringBuilder_Append_m3561457556(L_50, L_51, /*hidden argument*/NULL); } IL_014f: { StringBuilder_t1723565765 * L_52 = V_0; NullCheck(L_52); String_t* L_53 = StringBuilder_ToString_m4017876341(L_52, /*hidden argument*/NULL); return L_53; } } // System.String System.Net.IPv6Address::ToString(System.Boolean) extern "C" String_t* IPv6Address_ToString_m1804056033 (IPv6Address_t2007755840 * __this, bool ___fullLength0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPv6Address_ToString_m1804056033_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringBuilder_t1723565765 * V_0 = NULL; int32_t V_1 = 0; { bool L_0 = ___fullLength0; if (L_0) { goto IL_000d; } } { String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Net.IPv6Address::ToString() */, __this); return L_1; } IL_000d: { StringBuilder_t1723565765 * L_2 = (StringBuilder_t1723565765 *)il2cpp_codegen_object_new(StringBuilder_t1723565765_il2cpp_TypeInfo_var); StringBuilder__ctor_m3807124734(L_2, /*hidden argument*/NULL); V_0 = L_2; V_1 = 0; goto IL_0037; } IL_001a: { StringBuilder_t1723565765 * L_3 = V_0; UInt16U5BU5D_t1255862157* L_4 = __this->get_address_0(); int32_t L_5 = V_1; NullCheck(L_4); int32_t L_6 = L_5; uint16_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); uint16_t L_8 = L_7; RuntimeObject * L_9 = Box(UInt16_t3519387236_il2cpp_TypeInfo_var, &L_8); NullCheck(L_3); StringBuilder_AppendFormat_m2761752028(L_3, _stringLiteral561203680, L_9, /*hidden argument*/NULL); int32_t L_10 = V_1; V_1 = ((int32_t)((int32_t)L_10+(int32_t)1)); } IL_0037: { int32_t L_11 = V_1; UInt16U5BU5D_t1255862157* L_12 = __this->get_address_0(); NullCheck(L_12); if ((((int32_t)L_11) < ((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_12)->max_length))))-(int32_t)1))))) { goto IL_001a; } } { StringBuilder_t1723565765 * L_13 = V_0; UInt16U5BU5D_t1255862157* L_14 = __this->get_address_0(); UInt16U5BU5D_t1255862157* L_15 = __this->get_address_0(); NullCheck(L_15); NullCheck(L_14); int32_t L_16 = ((int32_t)((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_15)->max_length))))-(int32_t)1)); uint16_t L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); uint16_t L_18 = L_17; RuntimeObject * L_19 = Box(UInt16_t3519387236_il2cpp_TypeInfo_var, &L_18); NullCheck(L_13); StringBuilder_AppendFormat_m2761752028(L_13, _stringLiteral915985749, L_19, /*hidden argument*/NULL); StringBuilder_t1723565765 * L_20 = V_0; NullCheck(L_20); String_t* L_21 = StringBuilder_ToString_m4017876341(L_20, /*hidden argument*/NULL); return L_21; } } // System.Boolean System.Net.IPv6Address::Equals(System.Object) extern "C" bool IPv6Address_Equals_m368438164 (IPv6Address_t2007755840 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPv6Address_Equals_m368438164_MetadataUsageId); s_Il2CppMethodInitialized = true; } IPv6Address_t2007755840 * V_0 = NULL; int32_t V_1 = 0; IPAddress_t2830710878 * V_2 = NULL; int32_t V_3 = 0; int64_t V_4 = 0; { RuntimeObject * L_0 = ___other0; V_0 = ((IPv6Address_t2007755840 *)IsInstClass((RuntimeObject*)L_0, IPv6Address_t2007755840_il2cpp_TypeInfo_var)); IPv6Address_t2007755840 * L_1 = V_0; if (!L_1) { goto IL_0038; } } { V_1 = 0; goto IL_002f; } IL_0014: { UInt16U5BU5D_t1255862157* L_2 = __this->get_address_0(); int32_t L_3 = V_1; NullCheck(L_2); int32_t L_4 = L_3; uint16_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); IPv6Address_t2007755840 * L_6 = V_0; NullCheck(L_6); UInt16U5BU5D_t1255862157* L_7 = L_6->get_address_0(); int32_t L_8 = V_1; NullCheck(L_7); int32_t L_9 = L_8; uint16_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); if ((((int32_t)L_5) == ((int32_t)L_10))) { goto IL_002b; } } { return (bool)0; } IL_002b: { int32_t L_11 = V_1; V_1 = ((int32_t)((int32_t)L_11+(int32_t)1)); } IL_002f: { int32_t L_12 = V_1; if ((((int32_t)L_12) < ((int32_t)8))) { goto IL_0014; } } { return (bool)1; } IL_0038: { RuntimeObject * L_13 = ___other0; V_2 = ((IPAddress_t2830710878 *)IsInstClass((RuntimeObject*)L_13, IPAddress_t2830710878_il2cpp_TypeInfo_var)); IPAddress_t2830710878 * L_14 = V_2; if (!L_14) { goto IL_00e5; } } { V_3 = 0; goto IL_005f; } IL_004c: { UInt16U5BU5D_t1255862157* L_15 = __this->get_address_0(); int32_t L_16 = V_3; NullCheck(L_15); int32_t L_17 = L_16; uint16_t L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17)); if (!L_18) { goto IL_005b; } } { return (bool)0; } IL_005b: { int32_t L_19 = V_3; V_3 = ((int32_t)((int32_t)L_19+(int32_t)1)); } IL_005f: { int32_t L_20 = V_3; if ((((int32_t)L_20) < ((int32_t)5))) { goto IL_004c; } } { UInt16U5BU5D_t1255862157* L_21 = __this->get_address_0(); NullCheck(L_21); int32_t L_22 = 5; uint16_t L_23 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_22)); if (!L_23) { goto IL_0087; } } { UInt16U5BU5D_t1255862157* L_24 = __this->get_address_0(); NullCheck(L_24); int32_t L_25 = 5; uint16_t L_26 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_25)); if ((((int32_t)L_26) == ((int32_t)((int32_t)65535)))) { goto IL_0087; } } { return (bool)0; } IL_0087: { IPAddress_t2830710878 * L_27 = V_2; NullCheck(L_27); int64_t L_28 = IPAddress_get_InternalIPv4Address_m1377209505(L_27, /*hidden argument*/NULL); V_4 = L_28; UInt16U5BU5D_t1255862157* L_29 = __this->get_address_0(); NullCheck(L_29); int32_t L_30 = 6; uint16_t L_31 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_30)); int64_t L_32 = V_4; int64_t L_33 = V_4; if ((!(((uint32_t)L_31) == ((uint32_t)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)((int64_t)((int64_t)L_32&(int64_t)(((int64_t)((int64_t)((int32_t)255)))))))))<<(int32_t)8))+(int32_t)(((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)((int64_t)L_33>>(int32_t)8))&(int64_t)(((int64_t)((int64_t)((int32_t)255)))))))))))))))))) { goto IL_00e1; } } { UInt16U5BU5D_t1255862157* L_34 = __this->get_address_0(); NullCheck(L_34); int32_t L_35 = 7; uint16_t L_36 = (L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_35)); int64_t L_37 = V_4; int64_t L_38 = V_4; if ((((int32_t)L_36) == ((int32_t)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)((int64_t)L_37>>(int32_t)((int32_t)16)))&(int64_t)(((int64_t)((int64_t)((int32_t)255)))))))))<<(int32_t)8))+(int32_t)(((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)((int64_t)L_38>>(int32_t)((int32_t)24)))&(int64_t)(((int64_t)((int64_t)((int32_t)255))))))))))))))))) { goto IL_00e3; } } IL_00e1: { return (bool)0; } IL_00e3: { return (bool)1; } IL_00e5: { return (bool)0; } } // System.Int32 System.Net.IPv6Address::GetHashCode() extern "C" int32_t IPv6Address_GetHashCode_m1495016379 (IPv6Address_t2007755840 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPv6Address_GetHashCode_m1495016379_MetadataUsageId); s_Il2CppMethodInitialized = true; } { UInt16U5BU5D_t1255862157* L_0 = __this->get_address_0(); NullCheck(L_0); int32_t L_1 = 0; uint16_t L_2 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_1)); UInt16U5BU5D_t1255862157* L_3 = __this->get_address_0(); NullCheck(L_3); int32_t L_4 = 1; uint16_t L_5 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); UInt16U5BU5D_t1255862157* L_6 = __this->get_address_0(); NullCheck(L_6); int32_t L_7 = 2; uint16_t L_8 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); UInt16U5BU5D_t1255862157* L_9 = __this->get_address_0(); NullCheck(L_9); int32_t L_10 = 3; uint16_t L_11 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); UInt16U5BU5D_t1255862157* L_12 = __this->get_address_0(); NullCheck(L_12); int32_t L_13 = 4; uint16_t L_14 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_13)); UInt16U5BU5D_t1255862157* L_15 = __this->get_address_0(); NullCheck(L_15); int32_t L_16 = 5; uint16_t L_17 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); UInt16U5BU5D_t1255862157* L_18 = __this->get_address_0(); NullCheck(L_18); int32_t L_19 = 6; uint16_t L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19)); UInt16U5BU5D_t1255862157* L_21 = __this->get_address_0(); NullCheck(L_21); int32_t L_22 = 7; uint16_t L_23 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_22)); IL2CPP_RUNTIME_CLASS_INIT(IPv6Address_t2007755840_il2cpp_TypeInfo_var); int32_t L_24 = IPv6Address_Hash_m1834498758(NULL /*static, unused*/, ((int32_t)((int32_t)((int32_t)((int32_t)L_2<<(int32_t)((int32_t)16)))+(int32_t)L_5)), ((int32_t)((int32_t)((int32_t)((int32_t)L_8<<(int32_t)((int32_t)16)))+(int32_t)L_11)), ((int32_t)((int32_t)((int32_t)((int32_t)L_14<<(int32_t)((int32_t)16)))+(int32_t)L_17)), ((int32_t)((int32_t)((int32_t)((int32_t)L_20<<(int32_t)((int32_t)16)))+(int32_t)L_23)), /*hidden argument*/NULL); return L_24; } } // System.Int32 System.Net.IPv6Address::Hash(System.Int32,System.Int32,System.Int32,System.Int32) extern "C" int32_t IPv6Address_Hash_m1834498758 (RuntimeObject * __this /* static, unused */, int32_t ___i0, int32_t ___j1, int32_t ___k2, int32_t ___l3, const RuntimeMethod* method) { { int32_t L_0 = ___i0; int32_t L_1 = ___j1; int32_t L_2 = ___j1; int32_t L_3 = ___k2; int32_t L_4 = ___k2; int32_t L_5 = ___l3; int32_t L_6 = ___l3; return ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_0^(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_1<<(int32_t)((int32_t)13)))|(int32_t)((int32_t)((int32_t)L_2>>(int32_t)((int32_t)19)))))))^(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_3<<(int32_t)((int32_t)26)))|(int32_t)((int32_t)((int32_t)L_4>>(int32_t)6))))))^(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_5<<(int32_t)7))|(int32_t)((int32_t)((int32_t)L_6>>(int32_t)((int32_t)25))))))); } } // System.Void System.Net.Security.RemoteCertificateValidationCallback::.ctor(System.Object,System.IntPtr) extern "C" void RemoteCertificateValidationCallback__ctor_m3584509631 (RemoteCertificateValidationCallback_t1272219315 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Net.Security.RemoteCertificateValidationCallback::Invoke(System.Object,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Net.Security.SslPolicyErrors) extern "C" bool RemoteCertificateValidationCallback_Invoke_m3002754149 (RemoteCertificateValidationCallback_t1272219315 * __this, RuntimeObject * ___sender0, X509Certificate_t1566844445 * ___certificate1, X509Chain_t2226602000 * ___chain2, int32_t ___sslPolicyErrors3, const RuntimeMethod* method) { if(__this->get_prev_9() != NULL) { RemoteCertificateValidationCallback_Invoke_m3002754149((RemoteCertificateValidationCallback_t1272219315 *)__this->get_prev_9(),___sender0, ___certificate1, ___chain2, ___sslPolicyErrors3, method); } il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3())); bool ___methodIsStatic = MethodIsStatic((RuntimeMethod*)(__this->get_method_3())); if (__this->get_m_target_2() != NULL && ___methodIsStatic) { typedef bool (*FunctionPointerType) (RuntimeObject *, void* __this, RuntimeObject * ___sender0, X509Certificate_t1566844445 * ___certificate1, X509Chain_t2226602000 * ___chain2, int32_t ___sslPolicyErrors3, const RuntimeMethod* method); return ((FunctionPointerType)__this->get_method_ptr_0())(NULL,__this->get_m_target_2(),___sender0, ___certificate1, ___chain2, ___sslPolicyErrors3,(RuntimeMethod*)(__this->get_method_3())); } else if (__this->get_m_target_2() != NULL || ___methodIsStatic) { typedef bool (*FunctionPointerType) (void* __this, RuntimeObject * ___sender0, X509Certificate_t1566844445 * ___certificate1, X509Chain_t2226602000 * ___chain2, int32_t ___sslPolicyErrors3, const RuntimeMethod* method); return ((FunctionPointerType)__this->get_method_ptr_0())(__this->get_m_target_2(),___sender0, ___certificate1, ___chain2, ___sslPolicyErrors3,(RuntimeMethod*)(__this->get_method_3())); } else { typedef bool (*FunctionPointerType) (void* __this, X509Certificate_t1566844445 * ___certificate1, X509Chain_t2226602000 * ___chain2, int32_t ___sslPolicyErrors3, const RuntimeMethod* method); return ((FunctionPointerType)__this->get_method_ptr_0())(___sender0, ___certificate1, ___chain2, ___sslPolicyErrors3,(RuntimeMethod*)(__this->get_method_3())); } } // System.IAsyncResult System.Net.Security.RemoteCertificateValidationCallback::BeginInvoke(System.Object,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Net.Security.SslPolicyErrors,System.AsyncCallback,System.Object) extern "C" RuntimeObject* RemoteCertificateValidationCallback_BeginInvoke_m107378189 (RemoteCertificateValidationCallback_t1272219315 * __this, RuntimeObject * ___sender0, X509Certificate_t1566844445 * ___certificate1, X509Chain_t2226602000 * ___chain2, int32_t ___sslPolicyErrors3, AsyncCallback_t1634113497 * ___callback4, RuntimeObject * ___object5, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RemoteCertificateValidationCallback_BeginInvoke_m107378189_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[5] = {0}; __d_args[0] = ___sender0; __d_args[1] = ___certificate1; __d_args[2] = ___chain2; __d_args[3] = Box(SslPolicyErrors_t2196644362_il2cpp_TypeInfo_var, &___sslPolicyErrors3); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback4, (RuntimeObject*)___object5); } // System.Boolean System.Net.Security.RemoteCertificateValidationCallback::EndInvoke(System.IAsyncResult) extern "C" bool RemoteCertificateValidationCallback_EndInvoke_m1204493854 (RemoteCertificateValidationCallback_t1272219315 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } // System.Void System.Net.ServicePoint::.ctor(System.Uri,System.Int32,System.Int32) extern "C" void ServicePoint__ctor_m2304191186 (ServicePoint_t236056219 * __this, Uri_t3882940875 * ___uri0, int32_t ___connectionLimit1, int32_t ___maxIdleTime2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ServicePoint__ctor_m2304191186_MetadataUsageId); s_Il2CppMethodInitialized = true; } { __this->set_sendContinue_6((bool)1); RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m3115879119(L_0, /*hidden argument*/NULL); __this->set_locker_8(L_0); RuntimeObject * L_1 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m3115879119(L_1, /*hidden argument*/NULL); __this->set_hostE_9(L_1); Object__ctor_m3115879119(__this, /*hidden argument*/NULL); Uri_t3882940875 * L_2 = ___uri0; __this->set_uri_0(L_2); int32_t L_3 = ___connectionLimit1; __this->set_connectionLimit_1(L_3); int32_t L_4 = ___maxIdleTime2; __this->set_maxIdleTime_2(L_4); __this->set_currentConnections_3(0); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t718238015_il2cpp_TypeInfo_var); DateTime_t718238015 L_5 = DateTime_get_Now_m1834417922(NULL /*static, unused*/, /*hidden argument*/NULL); __this->set_idleSince_4(L_5); return; } } // System.Uri System.Net.ServicePoint::get_Address() extern "C" Uri_t3882940875 * ServicePoint_get_Address_m2490071477 (ServicePoint_t236056219 * __this, const RuntimeMethod* method) { { Uri_t3882940875 * L_0 = __this->get_uri_0(); return L_0; } } // System.Int32 System.Net.ServicePoint::get_CurrentConnections() extern "C" int32_t ServicePoint_get_CurrentConnections_m3528356187 (ServicePoint_t236056219 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_currentConnections_3(); return L_0; } } // System.DateTime System.Net.ServicePoint::get_IdleSince() extern "C" DateTime_t718238015 ServicePoint_get_IdleSince_m3125529858 (ServicePoint_t236056219 * __this, const RuntimeMethod* method) { { DateTime_t718238015 L_0 = __this->get_idleSince_4(); return L_0; } } // System.Void System.Net.ServicePoint::set_IdleSince(System.DateTime) extern "C" void ServicePoint_set_IdleSince_m1847881400 (ServicePoint_t236056219 * __this, DateTime_t718238015 ___value0, const RuntimeMethod* method) { RuntimeObject * V_0 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = __this->get_locker_8(); V_0 = L_0; RuntimeObject * L_1 = V_0; Monitor_Enter_m1524383546(NULL /*static, unused*/, L_1, /*hidden argument*/NULL); } IL_000d: try { // begin try (depth: 1) DateTime_t718238015 L_2 = ___value0; __this->set_idleSince_4(L_2); IL2CPP_LEAVE(0x20, FINALLY_0019); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_0019; } FINALLY_0019: { // begin finally (depth: 1) RuntimeObject * L_3 = V_0; Monitor_Exit_m69827708(NULL /*static, unused*/, L_3, /*hidden argument*/NULL); IL2CPP_END_FINALLY(25) } // end finally (depth: 1) IL2CPP_CLEANUP(25) { IL2CPP_JUMP_TBL(0x20, IL_0020) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_0020: { return; } } // System.Void System.Net.ServicePoint::set_Expect100Continue(System.Boolean) extern "C" void ServicePoint_set_Expect100Continue_m585818429 (ServicePoint_t236056219 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; ServicePoint_set_SendContinue_m3827139042(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Net.ServicePoint::set_UseNagleAlgorithm(System.Boolean) extern "C" void ServicePoint_set_UseNagleAlgorithm_m3895224104 (ServicePoint_t236056219 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_useNagle_10(L_0); return; } } // System.Void System.Net.ServicePoint::set_SendContinue(System.Boolean) extern "C" void ServicePoint_set_SendContinue_m3827139042 (ServicePoint_t236056219 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_sendContinue_6(L_0); return; } } // System.Void System.Net.ServicePoint::set_UsesProxy(System.Boolean) extern "C" void ServicePoint_set_UsesProxy_m1502625926 (ServicePoint_t236056219 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_usesProxy_5(L_0); return; } } // System.Void System.Net.ServicePoint::set_UseConnect(System.Boolean) extern "C" void ServicePoint_set_UseConnect_m2697034844 (ServicePoint_t236056219 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_useConnect_7(L_0); return; } } // System.Boolean System.Net.ServicePoint::get_AvailableForRecycling() extern "C" bool ServicePoint_get_AvailableForRecycling_m3985306945 (ServicePoint_t236056219 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ServicePoint_get_AvailableForRecycling_m3985306945_MetadataUsageId); s_Il2CppMethodInitialized = true; } DateTime_t718238015 V_0; memset(&V_0, 0, sizeof(V_0)); int32_t G_B4_0 = 0; { int32_t L_0 = ServicePoint_get_CurrentConnections_m3528356187(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0038; } } { int32_t L_1 = __this->get_maxIdleTime_2(); if ((((int32_t)L_1) == ((int32_t)(-1)))) { goto IL_0038; } } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t718238015_il2cpp_TypeInfo_var); DateTime_t718238015 L_2 = DateTime_get_Now_m1834417922(NULL /*static, unused*/, /*hidden argument*/NULL); DateTime_t718238015 L_3 = ServicePoint_get_IdleSince_m3125529858(__this, /*hidden argument*/NULL); V_0 = L_3; int32_t L_4 = __this->get_maxIdleTime_2(); DateTime_t718238015 L_5 = DateTime_AddMilliseconds_m4136902214((&V_0), (((double)((double)L_4))), /*hidden argument*/NULL); bool L_6 = DateTime_op_GreaterThanOrEqual_m2823807249(NULL /*static, unused*/, L_2, L_5, /*hidden argument*/NULL); G_B4_0 = ((int32_t)(L_6)); goto IL_0039; } IL_0038: { G_B4_0 = 0; } IL_0039: { return (bool)G_B4_0; } } // System.Void System.Net.ServicePointManager::.cctor() extern "C" void ServicePointManager__cctor_m4121702741 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ServicePointManager__cctor_m4121702741_MetadataUsageId); s_Il2CppMethodInitialized = true; } { HybridDictionary_t979529962 * L_0 = (HybridDictionary_t979529962 *)il2cpp_codegen_object_new(HybridDictionary_t979529962_il2cpp_TypeInfo_var); HybridDictionary__ctor_m1509955104(L_0, /*hidden argument*/NULL); ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->set_servicePoints_0(L_0); DefaultCertificatePolicy_t1503698831 * L_1 = (DefaultCertificatePolicy_t1503698831 *)il2cpp_codegen_object_new(DefaultCertificatePolicy_t1503698831_il2cpp_TypeInfo_var); DefaultCertificatePolicy__ctor_m1698267278(L_1, /*hidden argument*/NULL); ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->set_policy_1(L_1); ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->set_defaultConnectionLimit_2(2); ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->set_maxServicePointIdleTime_3(((int32_t)900000)); ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->set_maxServicePoints_4(0); ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->set__checkCRL_5((bool)0); ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->set__securityProtocol_6(((int32_t)240)); ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->set_expectContinue_7((bool)1); return; } } // System.Net.ICertificatePolicy System.Net.ServicePointManager::get_CertificatePolicy() extern "C" RuntimeObject* ServicePointManager_get_CertificatePolicy_m2813576596 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ServicePointManager_get_CertificatePolicy_m2813576596_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_policy_1(); return L_0; } } // System.Boolean System.Net.ServicePointManager::get_CheckCertificateRevocationList() extern "C" bool ServicePointManager_get_CheckCertificateRevocationList_m4176280233 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ServicePointManager_get_CheckCertificateRevocationList_m4176280233_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); bool L_0 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get__checkCRL_5(); return L_0; } } // System.Net.SecurityProtocolType System.Net.ServicePointManager::get_SecurityProtocol() extern "C" int32_t ServicePointManager_get_SecurityProtocol_m3855581775 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ServicePointManager_get_SecurityProtocol_m3855581775_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); int32_t L_0 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get__securityProtocol_6(); return L_0; } } // System.Net.Security.RemoteCertificateValidationCallback System.Net.ServicePointManager::get_ServerCertificateValidationCallback() extern "C" RemoteCertificateValidationCallback_t1272219315 * ServicePointManager_get_ServerCertificateValidationCallback_m4196527332 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ServicePointManager_get_ServerCertificateValidationCallback_m4196527332_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); RemoteCertificateValidationCallback_t1272219315 * L_0 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_server_cert_cb_9(); return L_0; } } // System.Net.ServicePoint System.Net.ServicePointManager::FindServicePoint(System.Uri,System.Net.IWebProxy) extern "C" ServicePoint_t236056219 * ServicePointManager_FindServicePoint_m1468708084 (RuntimeObject * __this /* static, unused */, Uri_t3882940875 * ___address0, RuntimeObject* ___proxy1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ServicePointManager_FindServicePoint_m1468708084_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; bool V_2 = false; ServicePoint_t236056219 * V_3 = NULL; HybridDictionary_t979529962 * V_4 = NULL; SPKey_t3349994041 * V_5 = NULL; String_t* V_6 = NULL; int32_t V_7 = 0; ServicePoint_t236056219 * V_8 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { Uri_t3882940875 * L_0 = ___address0; IL2CPP_RUNTIME_CLASS_INIT(Uri_t3882940875_il2cpp_TypeInfo_var); bool L_1 = Uri_op_Equality_m2318555073(NULL /*static, unused*/, L_0, (Uri_t3882940875 *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0017; } } { ArgumentNullException_t873386607 * L_2 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_2, _stringLiteral3055831234, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_0017: { IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); ServicePointManager_RecycleServicePoints_m1283083192(NULL /*static, unused*/, /*hidden argument*/NULL); V_0 = (bool)0; V_1 = (bool)0; RuntimeObject* L_3 = ___proxy1; if (!L_3) { goto IL_0091; } } { RuntimeObject* L_4 = ___proxy1; Uri_t3882940875 * L_5 = ___address0; NullCheck(L_4); bool L_6 = InterfaceFuncInvoker1< bool, Uri_t3882940875 * >::Invoke(1 /* System.Boolean System.Net.IWebProxy::IsBypassed(System.Uri) */, IWebProxy_t2986465618_il2cpp_TypeInfo_var, L_4, L_5); if (L_6) { goto IL_0091; } } { V_0 = (bool)1; Uri_t3882940875 * L_7 = ___address0; NullCheck(L_7); String_t* L_8 = Uri_get_Scheme_m681902525(L_7, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_9 = String_op_Equality_m3571002539(NULL /*static, unused*/, L_8, _stringLiteral2062134826, /*hidden argument*/NULL); V_2 = L_9; RuntimeObject* L_10 = ___proxy1; Uri_t3882940875 * L_11 = ___address0; NullCheck(L_10); Uri_t3882940875 * L_12 = InterfaceFuncInvoker1< Uri_t3882940875 *, Uri_t3882940875 * >::Invoke(0 /* System.Uri System.Net.IWebProxy::GetProxy(System.Uri) */, IWebProxy_t2986465618_il2cpp_TypeInfo_var, L_10, L_11); ___address0 = L_12; Uri_t3882940875 * L_13 = ___address0; NullCheck(L_13); String_t* L_14 = Uri_get_Scheme_m681902525(L_13, /*hidden argument*/NULL); bool L_15 = String_op_Inequality_m1660367964(NULL /*static, unused*/, L_14, _stringLiteral1039860677, /*hidden argument*/NULL); if (!L_15) { goto IL_0074; } } { bool L_16 = V_2; if (L_16) { goto IL_0074; } } { NotSupportedException_t2060369835 * L_17 = (NotSupportedException_t2060369835 *)il2cpp_codegen_object_new(NotSupportedException_t2060369835_il2cpp_TypeInfo_var); NotSupportedException__ctor_m1363103711(L_17, _stringLiteral1020944282, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17); } IL_0074: { bool L_18 = V_2; if (!L_18) { goto IL_0091; } } { Uri_t3882940875 * L_19 = ___address0; NullCheck(L_19); String_t* L_20 = Uri_get_Scheme_m681902525(L_19, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_21 = String_op_Equality_m3571002539(NULL /*static, unused*/, L_20, _stringLiteral1039860677, /*hidden argument*/NULL); if (!L_21) { goto IL_0091; } } { V_1 = (bool)1; } IL_0091: { Uri_t3882940875 * L_22 = ___address0; NullCheck(L_22); String_t* L_23 = Uri_get_Scheme_m681902525(L_22, /*hidden argument*/NULL); Uri_t3882940875 * L_24 = ___address0; NullCheck(L_24); String_t* L_25 = Uri_get_Authority_m1702279103(L_24, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_26 = String_Concat_m1351243557(NULL /*static, unused*/, L_23, _stringLiteral3654256111, L_25, /*hidden argument*/NULL); Uri_t3882940875 * L_27 = (Uri_t3882940875 *)il2cpp_codegen_object_new(Uri_t3882940875_il2cpp_TypeInfo_var); Uri__ctor_m3129882193(L_27, L_26, /*hidden argument*/NULL); ___address0 = L_27; V_3 = (ServicePoint_t236056219 *)NULL; IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); HybridDictionary_t979529962 * L_28 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_servicePoints_0(); V_4 = L_28; HybridDictionary_t979529962 * L_29 = V_4; Monitor_Enter_m1524383546(NULL /*static, unused*/, L_29, /*hidden argument*/NULL); } IL_00be: try { // begin try (depth: 1) { Uri_t3882940875 * L_30 = ___address0; bool L_31 = V_1; SPKey_t3349994041 * L_32 = (SPKey_t3349994041 *)il2cpp_codegen_object_new(SPKey_t3349994041_il2cpp_TypeInfo_var); SPKey__ctor_m1504203566(L_32, L_30, L_31, /*hidden argument*/NULL); V_5 = L_32; IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); HybridDictionary_t979529962 * L_33 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_servicePoints_0(); SPKey_t3349994041 * L_34 = V_5; NullCheck(L_33); RuntimeObject * L_35 = HybridDictionary_get_Item_m1354733226(L_33, L_34, /*hidden argument*/NULL); V_3 = ((ServicePoint_t236056219 *)IsInstClass((RuntimeObject*)L_35, ServicePoint_t236056219_il2cpp_TypeInfo_var)); ServicePoint_t236056219 * L_36 = V_3; if (!L_36) { goto IL_00e7; } } IL_00df: { ServicePoint_t236056219 * L_37 = V_3; V_8 = L_37; IL2CPP_LEAVE(0x16E, FINALLY_0164); } IL_00e7: { IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); int32_t L_38 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_maxServicePoints_4(); if ((((int32_t)L_38) <= ((int32_t)0))) { goto IL_0111; } } IL_00f2: { IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); HybridDictionary_t979529962 * L_39 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_servicePoints_0(); NullCheck(L_39); int32_t L_40 = HybridDictionary_get_Count_m1630970262(L_39, /*hidden argument*/NULL); int32_t L_41 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_maxServicePoints_4(); if ((((int32_t)L_40) < ((int32_t)L_41))) { goto IL_0111; } } IL_0106: { InvalidOperationException_t94637358 * L_42 = (InvalidOperationException_t94637358 *)il2cpp_codegen_object_new(InvalidOperationException_t94637358_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1166481370(L_42, _stringLiteral25449621, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_42); } IL_0111: { Uri_t3882940875 * L_43 = ___address0; NullCheck(L_43); String_t* L_44 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Uri::ToString() */, L_43); V_6 = L_44; IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); int32_t L_45 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_defaultConnectionLimit_2(); V_7 = L_45; Uri_t3882940875 * L_46 = ___address0; int32_t L_47 = V_7; int32_t L_48 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_maxServicePointIdleTime_3(); ServicePoint_t236056219 * L_49 = (ServicePoint_t236056219 *)il2cpp_codegen_object_new(ServicePoint_t236056219_il2cpp_TypeInfo_var); ServicePoint__ctor_m2304191186(L_49, L_46, L_47, L_48, /*hidden argument*/NULL); V_3 = L_49; ServicePoint_t236056219 * L_50 = V_3; bool L_51 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_expectContinue_7(); NullCheck(L_50); ServicePoint_set_Expect100Continue_m585818429(L_50, L_51, /*hidden argument*/NULL); ServicePoint_t236056219 * L_52 = V_3; bool L_53 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_useNagle_8(); NullCheck(L_52); ServicePoint_set_UseNagleAlgorithm_m3895224104(L_52, L_53, /*hidden argument*/NULL); ServicePoint_t236056219 * L_54 = V_3; bool L_55 = V_0; NullCheck(L_54); ServicePoint_set_UsesProxy_m1502625926(L_54, L_55, /*hidden argument*/NULL); ServicePoint_t236056219 * L_56 = V_3; bool L_57 = V_1; NullCheck(L_56); ServicePoint_set_UseConnect_m2697034844(L_56, L_57, /*hidden argument*/NULL); HybridDictionary_t979529962 * L_58 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_servicePoints_0(); SPKey_t3349994041 * L_59 = V_5; ServicePoint_t236056219 * L_60 = V_3; NullCheck(L_58); HybridDictionary_Add_m1147581187(L_58, L_59, L_60, /*hidden argument*/NULL); IL2CPP_LEAVE(0x16C, FINALLY_0164); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_0164; } FINALLY_0164: { // begin finally (depth: 1) HybridDictionary_t979529962 * L_61 = V_4; Monitor_Exit_m69827708(NULL /*static, unused*/, L_61, /*hidden argument*/NULL); IL2CPP_END_FINALLY(356) } // end finally (depth: 1) IL2CPP_CLEANUP(356) { IL2CPP_JUMP_TBL(0x16E, IL_016e) IL2CPP_JUMP_TBL(0x16C, IL_016c) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_016c: { ServicePoint_t236056219 * L_62 = V_3; return L_62; } IL_016e: { ServicePoint_t236056219 * L_63 = V_8; return L_63; } } // System.Void System.Net.ServicePointManager::RecycleServicePoints() extern "C" void ServicePointManager_RecycleServicePoints_m1283083192 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ServicePointManager_RecycleServicePoints_m1283083192_MetadataUsageId); s_Il2CppMethodInitialized = true; } ArrayList_t4277734320 * V_0 = NULL; HybridDictionary_t979529962 * V_1 = NULL; RuntimeObject* V_2 = NULL; ServicePoint_t236056219 * V_3 = NULL; int32_t V_4 = 0; SortedList_t1920303691 * V_5 = NULL; ServicePoint_t236056219 * V_6 = NULL; int32_t V_7 = 0; DateTime_t718238015 V_8; memset(&V_8, 0, sizeof(V_8)); Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { ArrayList_t4277734320 * L_0 = (ArrayList_t4277734320 *)il2cpp_codegen_object_new(ArrayList_t4277734320_il2cpp_TypeInfo_var); ArrayList__ctor_m3769859358(L_0, /*hidden argument*/NULL); V_0 = L_0; IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); HybridDictionary_t979529962 * L_1 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_servicePoints_0(); V_1 = L_1; HybridDictionary_t979529962 * L_2 = V_1; Monitor_Enter_m1524383546(NULL /*static, unused*/, L_2, /*hidden argument*/NULL); } IL_0012: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); HybridDictionary_t979529962 * L_3 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_servicePoints_0(); NullCheck(L_3); RuntimeObject* L_4 = HybridDictionary_GetEnumerator_m2347203662(L_3, /*hidden argument*/NULL); V_2 = L_4; goto IL_0046; } IL_0022: { RuntimeObject* L_5 = V_2; NullCheck(L_5); RuntimeObject * L_6 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, IDictionaryEnumerator_t322788009_il2cpp_TypeInfo_var, L_5); V_3 = ((ServicePoint_t236056219 *)CastclassClass((RuntimeObject*)L_6, ServicePoint_t236056219_il2cpp_TypeInfo_var)); ServicePoint_t236056219 * L_7 = V_3; NullCheck(L_7); bool L_8 = ServicePoint_get_AvailableForRecycling_m3985306945(L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_0046; } } IL_0039: { ArrayList_t4277734320 * L_9 = V_0; RuntimeObject* L_10 = V_2; NullCheck(L_10); RuntimeObject * L_11 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Key() */, IDictionaryEnumerator_t322788009_il2cpp_TypeInfo_var, L_10); NullCheck(L_9); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_9, L_11); } IL_0046: { RuntimeObject* L_12 = V_2; NullCheck(L_12); bool L_13 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1868781825_il2cpp_TypeInfo_var, L_12); if (L_13) { goto IL_0022; } } IL_0051: { V_4 = 0; goto IL_0071; } IL_0059: { IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); HybridDictionary_t979529962 * L_14 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_servicePoints_0(); ArrayList_t4277734320 * L_15 = V_0; int32_t L_16 = V_4; NullCheck(L_15); RuntimeObject * L_17 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_15, L_16); NullCheck(L_14); HybridDictionary_Remove_m3394452943(L_14, L_17, /*hidden argument*/NULL); int32_t L_18 = V_4; V_4 = ((int32_t)((int32_t)L_18+(int32_t)1)); } IL_0071: { int32_t L_19 = V_4; ArrayList_t4277734320 * L_20 = V_0; NullCheck(L_20); int32_t L_21 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_20); if ((((int32_t)L_19) < ((int32_t)L_21))) { goto IL_0059; } } IL_007e: { IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); int32_t L_22 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_maxServicePoints_4(); if (!L_22) { goto IL_009c; } } IL_0088: { IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); HybridDictionary_t979529962 * L_23 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_servicePoints_0(); NullCheck(L_23); int32_t L_24 = HybridDictionary_get_Count_m1630970262(L_23, /*hidden argument*/NULL); int32_t L_25 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_maxServicePoints_4(); if ((((int32_t)L_24) > ((int32_t)L_25))) { goto IL_00a1; } } IL_009c: { IL2CPP_LEAVE(0x18C, FINALLY_0185); } IL_00a1: { IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); HybridDictionary_t979529962 * L_26 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_servicePoints_0(); NullCheck(L_26); int32_t L_27 = HybridDictionary_get_Count_m1630970262(L_26, /*hidden argument*/NULL); SortedList_t1920303691 * L_28 = (SortedList_t1920303691 *)il2cpp_codegen_object_new(SortedList_t1920303691_il2cpp_TypeInfo_var); SortedList__ctor_m3745045255(L_28, L_27, /*hidden argument*/NULL); V_5 = L_28; HybridDictionary_t979529962 * L_29 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_servicePoints_0(); NullCheck(L_29); RuntimeObject* L_30 = HybridDictionary_GetEnumerator_m2347203662(L_29, /*hidden argument*/NULL); V_2 = L_30; goto IL_0132; } IL_00c2: { RuntimeObject* L_31 = V_2; NullCheck(L_31); RuntimeObject * L_32 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, IDictionaryEnumerator_t322788009_il2cpp_TypeInfo_var, L_31); V_6 = ((ServicePoint_t236056219 *)CastclassClass((RuntimeObject*)L_32, ServicePoint_t236056219_il2cpp_TypeInfo_var)); ServicePoint_t236056219 * L_33 = V_6; NullCheck(L_33); int32_t L_34 = ServicePoint_get_CurrentConnections_m3528356187(L_33, /*hidden argument*/NULL); if (L_34) { goto IL_0132; } } IL_00db: { goto IL_0100; } IL_00e0: { ServicePoint_t236056219 * L_35 = V_6; ServicePoint_t236056219 * L_36 = V_6; NullCheck(L_36); DateTime_t718238015 L_37 = ServicePoint_get_IdleSince_m3125529858(L_36, /*hidden argument*/NULL); V_8 = L_37; DateTime_t718238015 L_38 = DateTime_AddMilliseconds_m4136902214((&V_8), (1.0), /*hidden argument*/NULL); NullCheck(L_35); ServicePoint_set_IdleSince_m1847881400(L_35, L_38, /*hidden argument*/NULL); } IL_0100: { SortedList_t1920303691 * L_39 = V_5; ServicePoint_t236056219 * L_40 = V_6; NullCheck(L_40); DateTime_t718238015 L_41 = ServicePoint_get_IdleSince_m3125529858(L_40, /*hidden argument*/NULL); DateTime_t718238015 L_42 = L_41; RuntimeObject * L_43 = Box(DateTime_t718238015_il2cpp_TypeInfo_var, &L_42); NullCheck(L_39); bool L_44 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(42 /* System.Boolean System.Collections.SortedList::ContainsKey(System.Object) */, L_39, L_43); if (L_44) { goto IL_00e0; } } IL_0118: { SortedList_t1920303691 * L_45 = V_5; ServicePoint_t236056219 * L_46 = V_6; NullCheck(L_46); DateTime_t718238015 L_47 = ServicePoint_get_IdleSince_m3125529858(L_46, /*hidden argument*/NULL); DateTime_t718238015 L_48 = L_47; RuntimeObject * L_49 = Box(DateTime_t718238015_il2cpp_TypeInfo_var, &L_48); ServicePoint_t236056219 * L_50 = V_6; NullCheck(L_50); Uri_t3882940875 * L_51 = ServicePoint_get_Address_m2490071477(L_50, /*hidden argument*/NULL); NullCheck(L_45); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(32 /* System.Void System.Collections.SortedList::Add(System.Object,System.Object) */, L_45, L_49, L_51); } IL_0132: { RuntimeObject* L_52 = V_2; NullCheck(L_52); bool L_53 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1868781825_il2cpp_TypeInfo_var, L_52); if (L_53) { goto IL_00c2; } } IL_013d: { V_7 = 0; goto IL_015e; } IL_0145: { IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); HybridDictionary_t979529962 * L_54 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_servicePoints_0(); SortedList_t1920303691 * L_55 = V_5; int32_t L_56 = V_7; NullCheck(L_55); RuntimeObject * L_57 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(44 /* System.Object System.Collections.SortedList::GetByIndex(System.Int32) */, L_55, L_56); NullCheck(L_54); HybridDictionary_Remove_m3394452943(L_54, L_57, /*hidden argument*/NULL); int32_t L_58 = V_7; V_7 = ((int32_t)((int32_t)L_58+(int32_t)1)); } IL_015e: { int32_t L_59 = V_7; SortedList_t1920303691 * L_60 = V_5; NullCheck(L_60); int32_t L_61 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.Int32 System.Collections.SortedList::get_Count() */, L_60); if ((((int32_t)L_59) >= ((int32_t)L_61))) { goto IL_0180; } } IL_016c: { IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_t3846324623_il2cpp_TypeInfo_var); HybridDictionary_t979529962 * L_62 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_servicePoints_0(); NullCheck(L_62); int32_t L_63 = HybridDictionary_get_Count_m1630970262(L_62, /*hidden argument*/NULL); int32_t L_64 = ((ServicePointManager_t3846324623_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t3846324623_il2cpp_TypeInfo_var))->get_maxServicePoints_4(); if ((((int32_t)L_63) > ((int32_t)L_64))) { goto IL_0145; } } IL_0180: { IL2CPP_LEAVE(0x18C, FINALLY_0185); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_0185; } FINALLY_0185: { // begin finally (depth: 1) HybridDictionary_t979529962 * L_65 = V_1; Monitor_Exit_m69827708(NULL /*static, unused*/, L_65, /*hidden argument*/NULL); IL2CPP_END_FINALLY(389) } // end finally (depth: 1) IL2CPP_CLEANUP(389) { IL2CPP_JUMP_TBL(0x18C, IL_018c) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_018c: { return; } } // System.Void System.Net.ServicePointManager/SPKey::.ctor(System.Uri,System.Boolean) extern "C" void SPKey__ctor_m1504203566 (SPKey_t3349994041 * __this, Uri_t3882940875 * ___uri0, bool ___use_connect1, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); Uri_t3882940875 * L_0 = ___uri0; __this->set_uri_0(L_0); bool L_1 = ___use_connect1; __this->set_use_connect_1(L_1); return; } } // System.Int32 System.Net.ServicePointManager/SPKey::GetHashCode() extern "C" int32_t SPKey_GetHashCode_m823362908 (SPKey_t3349994041 * __this, const RuntimeMethod* method) { int32_t G_B2_0 = 0; int32_t G_B1_0 = 0; int32_t G_B3_0 = 0; int32_t G_B3_1 = 0; { Uri_t3882940875 * L_0 = __this->get_uri_0(); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Uri::GetHashCode() */, L_0); bool L_2 = __this->get_use_connect_1(); G_B1_0 = L_1; if (!L_2) { G_B2_0 = L_1; goto IL_001c; } } { G_B3_0 = 1; G_B3_1 = G_B1_0; goto IL_001d; } IL_001c: { G_B3_0 = 0; G_B3_1 = G_B2_0; } IL_001d: { return ((int32_t)((int32_t)G_B3_1+(int32_t)G_B3_0)); } } // System.Boolean System.Net.ServicePointManager/SPKey::Equals(System.Object) extern "C" bool SPKey_Equals_m2464472619 (SPKey_t3349994041 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SPKey_Equals_m2464472619_MetadataUsageId); s_Il2CppMethodInitialized = true; } SPKey_t3349994041 * V_0 = NULL; int32_t G_B5_0 = 0; { RuntimeObject * L_0 = ___obj0; V_0 = ((SPKey_t3349994041 *)IsInstClass((RuntimeObject*)L_0, SPKey_t3349994041_il2cpp_TypeInfo_var)); RuntimeObject * L_1 = ___obj0; if (L_1) { goto IL_000f; } } { return (bool)0; } IL_000f: { Uri_t3882940875 * L_2 = __this->get_uri_0(); SPKey_t3349994041 * L_3 = V_0; NullCheck(L_3); Uri_t3882940875 * L_4 = L_3->get_uri_0(); NullCheck(L_2); bool L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Uri::Equals(System.Object) */, L_2, L_4); if (!L_5) { goto IL_0035; } } { SPKey_t3349994041 * L_6 = V_0; NullCheck(L_6); bool L_7 = L_6->get_use_connect_1(); bool L_8 = __this->get_use_connect_1(); G_B5_0 = ((((int32_t)L_7) == ((int32_t)L_8))? 1 : 0); goto IL_0036; } IL_0035: { G_B5_0 = 0; } IL_0036: { return (bool)G_B5_0; } } // System.Void System.Net.SocketAddress::.ctor(System.Net.Sockets.AddressFamily,System.Int32) extern "C" void SocketAddress__ctor_m4256079279 (SocketAddress_t1723199846 * __this, int32_t ___family0, int32_t ___size1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SocketAddress__ctor_m4256079279_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); int32_t L_0 = ___size1; if ((((int32_t)L_0) >= ((int32_t)2))) { goto IL_0018; } } { ArgumentOutOfRangeException_t1933742687 * L_1 = (ArgumentOutOfRangeException_t1933742687 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t1933742687_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m2330281379(L_1, _stringLiteral319129708, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0018: { int32_t L_2 = ___size1; __this->set_data_0(((ByteU5BU5D_t1709610627*)SZArrayNew(ByteU5BU5D_t1709610627_il2cpp_TypeInfo_var, (uint32_t)L_2))); ByteU5BU5D_t1709610627* L_3 = __this->get_data_0(); int32_t L_4 = ___family0; NullCheck(L_3); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)(((int32_t)((uint8_t)L_4)))); ByteU5BU5D_t1709610627* L_5 = __this->get_data_0(); int32_t L_6 = ___family0; NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_6>>(int32_t)8)))))); return; } } // System.Net.Sockets.AddressFamily System.Net.SocketAddress::get_Family() extern "C" int32_t SocketAddress_get_Family_m3812398706 (SocketAddress_t1723199846 * __this, const RuntimeMethod* method) { { ByteU5BU5D_t1709610627* L_0 = __this->get_data_0(); NullCheck(L_0); int32_t L_1 = 0; uint8_t L_2 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_1)); ByteU5BU5D_t1709610627* L_3 = __this->get_data_0(); NullCheck(L_3); int32_t L_4 = 1; uint8_t L_5 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); return (int32_t)(((int32_t)((int32_t)L_2+(int32_t)((int32_t)((int32_t)L_5<<(int32_t)8))))); } } // System.Int32 System.Net.SocketAddress::get_Size() extern "C" int32_t SocketAddress_get_Size_m1839617643 (SocketAddress_t1723199846 * __this, const RuntimeMethod* method) { { ByteU5BU5D_t1709610627* L_0 = __this->get_data_0(); NullCheck(L_0); return (((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))); } } // System.Byte System.Net.SocketAddress::get_Item(System.Int32) extern "C" uint8_t SocketAddress_get_Item_m30997818 (SocketAddress_t1723199846 * __this, int32_t ___offset0, const RuntimeMethod* method) { { ByteU5BU5D_t1709610627* L_0 = __this->get_data_0(); int32_t L_1 = ___offset0; NullCheck(L_0); int32_t L_2 = L_1; uint8_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2)); return L_3; } } // System.Void System.Net.SocketAddress::set_Item(System.Int32,System.Byte) extern "C" void SocketAddress_set_Item_m1141364269 (SocketAddress_t1723199846 * __this, int32_t ___offset0, uint8_t ___value1, const RuntimeMethod* method) { { ByteU5BU5D_t1709610627* L_0 = __this->get_data_0(); int32_t L_1 = ___offset0; uint8_t L_2 = ___value1; NullCheck(L_0); (L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_1), (uint8_t)L_2); return; } } // System.String System.Net.SocketAddress::ToString() extern "C" String_t* SocketAddress_ToString_m609448175 (SocketAddress_t1723199846 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SocketAddress_ToString_m609448175_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; int32_t V_1 = 0; String_t* V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; { ByteU5BU5D_t1709610627* L_0 = __this->get_data_0(); NullCheck(L_0); int32_t L_1 = 0; uint8_t L_2 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_1)); int32_t L_3 = ((int32_t)L_2); RuntimeObject * L_4 = Box(AddressFamily_t2568691419_il2cpp_TypeInfo_var, &L_3); NullCheck((Enum_t1784364487 *)L_4); String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Enum::ToString() */, (Enum_t1784364487 *)L_4); V_0 = L_5; ByteU5BU5D_t1709610627* L_6 = __this->get_data_0(); NullCheck(L_6); V_1 = (((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))); ObjectU5BU5D_t4199014551* L_7 = ((ObjectU5BU5D_t4199014551*)SZArrayNew(ObjectU5BU5D_t4199014551_il2cpp_TypeInfo_var, (uint32_t)4)); String_t* L_8 = V_0; NullCheck(L_7); ArrayElementTypeCheck (L_7, L_8); (L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_8); ObjectU5BU5D_t4199014551* L_9 = L_7; NullCheck(L_9); ArrayElementTypeCheck (L_9, _stringLiteral1709538064); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteral1709538064); ObjectU5BU5D_t4199014551* L_10 = L_9; int32_t L_11 = V_1; int32_t L_12 = L_11; RuntimeObject * L_13 = Box(Int32_t1085330725_il2cpp_TypeInfo_var, &L_12); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_13); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_13); ObjectU5BU5D_t4199014551* L_14 = L_10; NullCheck(L_14); ArrayElementTypeCheck (L_14, _stringLiteral3109069978); (L_14)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)_stringLiteral3109069978); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_15 = String_Concat_m2203353132(NULL /*static, unused*/, L_14, /*hidden argument*/NULL); V_2 = L_15; V_3 = 2; goto IL_007d; } IL_004c: { ByteU5BU5D_t1709610627* L_16 = __this->get_data_0(); int32_t L_17 = V_3; NullCheck(L_16); int32_t L_18 = L_17; uint8_t L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); V_4 = L_19; String_t* L_20 = V_2; int32_t L_21 = V_4; int32_t L_22 = L_21; RuntimeObject * L_23 = Box(Int32_t1085330725_il2cpp_TypeInfo_var, &L_22); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_24 = String_Concat_m4101136157(NULL /*static, unused*/, L_20, L_23, /*hidden argument*/NULL); V_2 = L_24; int32_t L_25 = V_3; int32_t L_26 = V_1; if ((((int32_t)L_25) >= ((int32_t)((int32_t)((int32_t)L_26-(int32_t)1))))) { goto IL_0079; } } { String_t* L_27 = V_2; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_28 = String_Concat_m3881611230(NULL /*static, unused*/, L_27, _stringLiteral216392854, /*hidden argument*/NULL); V_2 = L_28; } IL_0079: { int32_t L_29 = V_3; V_3 = ((int32_t)((int32_t)L_29+(int32_t)1)); } IL_007d: { int32_t L_30 = V_3; int32_t L_31 = V_1; if ((((int32_t)L_30) < ((int32_t)L_31))) { goto IL_004c; } } { String_t* L_32 = V_2; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_33 = String_Concat_m3881611230(NULL /*static, unused*/, L_32, _stringLiteral1498376565, /*hidden argument*/NULL); V_2 = L_33; String_t* L_34 = V_2; return L_34; } } // System.Boolean System.Net.SocketAddress::Equals(System.Object) extern "C" bool SocketAddress_Equals_m2484038695 (SocketAddress_t1723199846 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SocketAddress_Equals_m2484038695_MetadataUsageId); s_Il2CppMethodInitialized = true; } SocketAddress_t1723199846 * V_0 = NULL; ByteU5BU5D_t1709610627* V_1 = NULL; int32_t V_2 = 0; { RuntimeObject * L_0 = ___obj0; V_0 = ((SocketAddress_t1723199846 *)IsInstClass((RuntimeObject*)L_0, SocketAddress_t1723199846_il2cpp_TypeInfo_var)); SocketAddress_t1723199846 * L_1 = V_0; if (!L_1) { goto IL_0056; } } { SocketAddress_t1723199846 * L_2 = V_0; NullCheck(L_2); ByteU5BU5D_t1709610627* L_3 = L_2->get_data_0(); NullCheck(L_3); ByteU5BU5D_t1709610627* L_4 = __this->get_data_0(); NullCheck(L_4); if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length))))) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length)))))))) { goto IL_0056; } } { SocketAddress_t1723199846 * L_5 = V_0; NullCheck(L_5); ByteU5BU5D_t1709610627* L_6 = L_5->get_data_0(); V_1 = L_6; V_2 = 0; goto IL_0046; } IL_0030: { ByteU5BU5D_t1709610627* L_7 = V_1; int32_t L_8 = V_2; NullCheck(L_7); int32_t L_9 = L_8; uint8_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); ByteU5BU5D_t1709610627* L_11 = __this->get_data_0(); int32_t L_12 = V_2; NullCheck(L_11); int32_t L_13 = L_12; uint8_t L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13)); if ((((int32_t)L_10) == ((int32_t)L_14))) { goto IL_0042; } } { return (bool)0; } IL_0042: { int32_t L_15 = V_2; V_2 = ((int32_t)((int32_t)L_15+(int32_t)1)); } IL_0046: { int32_t L_16 = V_2; ByteU5BU5D_t1709610627* L_17 = __this->get_data_0(); 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_0056: { return (bool)0; } } // System.Int32 System.Net.SocketAddress::GetHashCode() extern "C" int32_t SocketAddress_GetHashCode_m29888665 (SocketAddress_t1723199846 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { V_0 = 0; V_1 = 0; goto IL_001a; } IL_0009: { int32_t L_0 = V_0; ByteU5BU5D_t1709610627* L_1 = __this->get_data_0(); int32_t L_2 = V_1; NullCheck(L_1); int32_t L_3 = L_2; uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); int32_t L_5 = V_1; V_0 = ((int32_t)((int32_t)L_0+(int32_t)((int32_t)((int32_t)L_4+(int32_t)L_5)))); int32_t L_6 = V_1; V_1 = ((int32_t)((int32_t)L_6+(int32_t)1)); } IL_001a: { int32_t L_7 = V_1; ByteU5BU5D_t1709610627* L_8 = __this->get_data_0(); NullCheck(L_8); if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))))) { goto IL_0009; } } { int32_t L_9 = V_0; return L_9; } } // System.Void System.Net.Sockets.LingerOption::.ctor(System.Boolean,System.Int32) extern "C" void LingerOption__ctor_m2827030615 (LingerOption_t1955249639 * __this, bool ___enable0, int32_t ___secs1, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); bool L_0 = ___enable0; __this->set_enabled_0(L_0); int32_t L_1 = ___secs1; __this->set_seconds_1(L_1); return; } } // System.Void System.Net.Sockets.Socket::.ctor(System.Net.Sockets.AddressFamily,System.Net.Sockets.SocketType,System.Net.Sockets.ProtocolType) extern "C" void Socket__ctor_m3106057280 (Socket_t2215831248 * __this, int32_t ___family0, int32_t ___type1, int32_t ___proto2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket__ctor_m3106057280_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { __this->set_blocking_13((bool)1); __this->set_max_bind_count_17(((int32_t)50)); Queue_t4072794599 * L_0 = (Queue_t4072794599 *)il2cpp_codegen_object_new(Queue_t4072794599_il2cpp_TypeInfo_var); Queue__ctor_m1333671058(L_0, 2, /*hidden argument*/NULL); __this->set_readQ_0(L_0); Queue_t4072794599 * L_1 = (Queue_t4072794599 *)il2cpp_codegen_object_new(Queue_t4072794599_il2cpp_TypeInfo_var); Queue__ctor_m1333671058(L_1, 2, /*hidden argument*/NULL); __this->set_writeQ_1(L_1); __this->set_MinListenPort_4(((int32_t)7100)); __this->set_MaxListenPort_5(((int32_t)7150)); Object__ctor_m3115879119(__this, /*hidden argument*/NULL); int32_t L_2 = ___family0; if (L_2) { goto IL_0054; } } { ArgumentException_t1946723077 * L_3 = (ArgumentException_t1946723077 *)il2cpp_codegen_object_new(ArgumentException_t1946723077_il2cpp_TypeInfo_var); ArgumentException__ctor_m509860574(L_3, _stringLiteral3583887622, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_0054: { int32_t L_4 = ___family0; __this->set_address_family_10(L_4); int32_t L_5 = ___type1; __this->set_socket_type_11(L_5); int32_t L_6 = ___proto2; __this->set_protocol_type_12(L_6); int32_t L_7 = ___family0; int32_t L_8 = ___type1; int32_t L_9 = ___proto2; intptr_t L_10 = Socket_Socket_internal_m4060053520(__this, L_7, L_8, L_9, (&V_0), /*hidden argument*/NULL); __this->set_socket_9(L_10); int32_t L_11 = V_0; if (!L_11) { goto IL_0087; } } { int32_t L_12 = V_0; SocketException_t2171012343 * L_13 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m1010342242(L_13, L_12, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13); } IL_0087: { return; } } // System.Void System.Net.Sockets.Socket::.cctor() extern "C" void Socket__cctor_m2231911161 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket__cctor_m2231911161_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ((Socket_t2215831248_StaticFields*)il2cpp_codegen_static_fields_for(Socket_t2215831248_il2cpp_TypeInfo_var))->set_ipv4Supported_6((-1)); ((Socket_t2215831248_StaticFields*)il2cpp_codegen_static_fields_for(Socket_t2215831248_il2cpp_TypeInfo_var))->set_ipv6Supported_7((-1)); Socket_CheckProtocolSupport_m1096119766(NULL /*static, unused*/, /*hidden argument*/NULL); return; } } // System.Int32 System.Net.Sockets.Socket::Available_internal(System.IntPtr,System.Int32&) extern "C" int32_t Socket_Available_internal_m1414329746 (RuntimeObject * __this /* static, unused */, intptr_t ___socket0, int32_t* ___error1, const RuntimeMethod* method) { typedef int32_t (*Socket_Available_internal_m1414329746_ftn) (intptr_t, int32_t*); using namespace il2cpp::icalls; return ((Socket_Available_internal_m1414329746_ftn)System::System::Net::Sockets::Socket::Available) (___socket0, ___error1); } // System.Int32 System.Net.Sockets.Socket::get_Available() extern "C" int32_t Socket_get_Available_m2005394896 (Socket_t2215831248 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_get_Available_m2005394896_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { bool L_0 = __this->get_disposed_20(); if (!L_0) { goto IL_0027; } } { bool L_1 = __this->get_closed_19(); if (!L_1) { goto IL_0027; } } { Type_t * L_2 = Object_GetType_m1134229006(__this, /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_2); ObjectDisposedException_t3257614166 * L_4 = (ObjectDisposedException_t3257614166 *)il2cpp_codegen_object_new(ObjectDisposedException_t3257614166_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m2005756758(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_0027: { intptr_t L_5 = __this->get_socket_9(); IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); int32_t L_6 = Socket_Available_internal_m1414329746(NULL /*static, unused*/, L_5, (&V_1), /*hidden argument*/NULL); V_0 = L_6; int32_t L_7 = V_1; if (!L_7) { goto IL_0042; } } { int32_t L_8 = V_1; SocketException_t2171012343 * L_9 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m1010342242(L_9, L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9); } IL_0042: { int32_t L_10 = V_0; return L_10; } } // System.Boolean System.Net.Sockets.Socket::get_IsBound() extern "C" bool Socket_get_IsBound_m3626047694 (Socket_t2215831248 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isbound_15(); return L_0; } } // System.Net.SocketAddress System.Net.Sockets.Socket::LocalEndPoint_internal(System.IntPtr,System.Int32&) extern "C" SocketAddress_t1723199846 * Socket_LocalEndPoint_internal_m1375667575 (RuntimeObject * __this /* static, unused */, intptr_t ___socket0, int32_t* ___error1, const RuntimeMethod* method) { typedef SocketAddress_t1723199846 * (*Socket_LocalEndPoint_internal_m1375667575_ftn) (intptr_t, int32_t*); using namespace il2cpp::icalls; return ((Socket_LocalEndPoint_internal_m1375667575_ftn)System::System::Net::Sockets::Socket::LocalEndPoint) (___socket0, ___error1); } // System.Net.EndPoint System.Net.Sockets.Socket::get_LocalEndPoint() extern "C" EndPoint_t268181662 * Socket_get_LocalEndPoint_m3262129616 (Socket_t2215831248 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_get_LocalEndPoint_m3262129616_MetadataUsageId); s_Il2CppMethodInitialized = true; } SocketAddress_t1723199846 * V_0 = NULL; int32_t V_1 = 0; { bool L_0 = __this->get_disposed_20(); if (!L_0) { goto IL_0027; } } { bool L_1 = __this->get_closed_19(); if (!L_1) { goto IL_0027; } } { Type_t * L_2 = Object_GetType_m1134229006(__this, /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_2); ObjectDisposedException_t3257614166 * L_4 = (ObjectDisposedException_t3257614166 *)il2cpp_codegen_object_new(ObjectDisposedException_t3257614166_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m2005756758(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_0027: { EndPoint_t268181662 * L_5 = __this->get_seed_endpoint_21(); if (L_5) { goto IL_0034; } } { return (EndPoint_t268181662 *)NULL; } IL_0034: { intptr_t L_6 = __this->get_socket_9(); IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); SocketAddress_t1723199846 * L_7 = Socket_LocalEndPoint_internal_m1375667575(NULL /*static, unused*/, L_6, (&V_1), /*hidden argument*/NULL); V_0 = L_7; int32_t L_8 = V_1; if (!L_8) { goto IL_004f; } } { int32_t L_9 = V_1; SocketException_t2171012343 * L_10 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m1010342242(L_10, L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_004f: { EndPoint_t268181662 * L_11 = __this->get_seed_endpoint_21(); SocketAddress_t1723199846 * L_12 = V_0; NullCheck(L_11); EndPoint_t268181662 * L_13 = VirtFuncInvoker1< EndPoint_t268181662 *, SocketAddress_t1723199846 * >::Invoke(5 /* System.Net.EndPoint System.Net.EndPoint::Create(System.Net.SocketAddress) */, L_11, L_12); return L_13; } } // System.Void System.Net.Sockets.Socket::set_SendTimeout(System.Int32) extern "C" void Socket_set_SendTimeout_m558889479 (Socket_t2215831248 * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_set_SendTimeout_m558889479_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_disposed_20(); if (!L_0) { goto IL_0027; } } { bool L_1 = __this->get_closed_19(); if (!L_1) { goto IL_0027; } } { Type_t * L_2 = Object_GetType_m1134229006(__this, /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_2); ObjectDisposedException_t3257614166 * L_4 = (ObjectDisposedException_t3257614166 *)il2cpp_codegen_object_new(ObjectDisposedException_t3257614166_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m2005756758(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_0027: { int32_t L_5 = ___value0; if ((((int32_t)L_5) >= ((int32_t)(-1)))) { goto IL_003e; } } { ArgumentOutOfRangeException_t1933742687 * L_6 = (ArgumentOutOfRangeException_t1933742687 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t1933742687_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m985369605(L_6, _stringLiteral1939629895, _stringLiteral4257605045, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6); } IL_003e: { int32_t L_7 = ___value0; if ((!(((uint32_t)L_7) == ((uint32_t)(-1))))) { goto IL_0048; } } { ___value0 = 0; } IL_0048: { int32_t L_8 = ___value0; Socket_SetSocketOption_m206373293(__this, ((int32_t)65535), ((int32_t)4101), L_8, /*hidden argument*/NULL); return; } } // System.Void System.Net.Sockets.Socket::set_ReceiveTimeout(System.Int32) extern "C" void Socket_set_ReceiveTimeout_m2589636163 (Socket_t2215831248 * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_set_ReceiveTimeout_m2589636163_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_disposed_20(); if (!L_0) { goto IL_0027; } } { bool L_1 = __this->get_closed_19(); if (!L_1) { goto IL_0027; } } { Type_t * L_2 = Object_GetType_m1134229006(__this, /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_2); ObjectDisposedException_t3257614166 * L_4 = (ObjectDisposedException_t3257614166 *)il2cpp_codegen_object_new(ObjectDisposedException_t3257614166_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m2005756758(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_0027: { int32_t L_5 = ___value0; if ((((int32_t)L_5) >= ((int32_t)(-1)))) { goto IL_003e; } } { ArgumentOutOfRangeException_t1933742687 * L_6 = (ArgumentOutOfRangeException_t1933742687 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t1933742687_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m985369605(L_6, _stringLiteral1939629895, _stringLiteral4257605045, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6); } IL_003e: { int32_t L_7 = ___value0; if ((!(((uint32_t)L_7) == ((uint32_t)(-1))))) { goto IL_0048; } } { ___value0 = 0; } IL_0048: { int32_t L_8 = ___value0; Socket_SetSocketOption_m206373293(__this, ((int32_t)65535), ((int32_t)4102), L_8, /*hidden argument*/NULL); return; } } // System.Void System.Net.Sockets.Socket::Connect(System.Net.IPAddress,System.Int32) extern "C" void Socket_Connect_m3141256807 (Socket_t2215831248 * __this, IPAddress_t2830710878 * ___address0, int32_t ___port1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_Connect_m3141256807_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IPAddress_t2830710878 * L_0 = ___address0; int32_t L_1 = ___port1; IPEndPoint_t1606333388 * L_2 = (IPEndPoint_t1606333388 *)il2cpp_codegen_object_new(IPEndPoint_t1606333388_il2cpp_TypeInfo_var); IPEndPoint__ctor_m3582815052(L_2, L_0, L_1, /*hidden argument*/NULL); Socket_Connect_m611381486(__this, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Net.Sockets.Socket::Connect(System.Net.IPAddress[],System.Int32) extern "C" void Socket_Connect_m2472886291 (Socket_t2215831248 * __this, IPAddressU5BU5D_t3756700779* ___addresses0, int32_t ___port1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_Connect_m2472886291_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; IPAddress_t2830710878 * V_1 = NULL; IPAddressU5BU5D_t3756700779* V_2 = NULL; int32_t V_3 = 0; IPEndPoint_t1606333388 * V_4 = NULL; SocketAddress_t1723199846 * V_5 = NULL; { bool L_0 = __this->get_disposed_20(); if (!L_0) { goto IL_0027; } } { bool L_1 = __this->get_closed_19(); if (!L_1) { goto IL_0027; } } { Type_t * L_2 = Object_GetType_m1134229006(__this, /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_2); ObjectDisposedException_t3257614166 * L_4 = (ObjectDisposedException_t3257614166 *)il2cpp_codegen_object_new(ObjectDisposedException_t3257614166_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m2005756758(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_0027: { IPAddressU5BU5D_t3756700779* L_5 = ___addresses0; if (L_5) { goto IL_0038; } } { ArgumentNullException_t873386607 * L_6 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_6, _stringLiteral3972230722, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6); } IL_0038: { int32_t L_7 = Socket_get_AddressFamily_m480135769(__this, /*hidden argument*/NULL); if ((((int32_t)L_7) == ((int32_t)2))) { goto IL_005c; } } { int32_t L_8 = Socket_get_AddressFamily_m480135769(__this, /*hidden argument*/NULL); if ((((int32_t)L_8) == ((int32_t)((int32_t)23)))) { goto IL_005c; } } { NotSupportedException_t2060369835 * L_9 = (NotSupportedException_t2060369835 *)il2cpp_codegen_object_new(NotSupportedException_t2060369835_il2cpp_TypeInfo_var); NotSupportedException__ctor_m1363103711(L_9, _stringLiteral405511172, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9); } IL_005c: { bool L_10 = __this->get_islistening_2(); if (!L_10) { goto IL_006d; } } { InvalidOperationException_t94637358 * L_11 = (InvalidOperationException_t94637358 *)il2cpp_codegen_object_new(InvalidOperationException_t94637358_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m2272205370(L_11, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11); } IL_006d: { V_0 = 0; IPAddressU5BU5D_t3756700779* L_12 = ___addresses0; V_2 = L_12; V_3 = 0; goto IL_0112; } IL_0078: { IPAddressU5BU5D_t3756700779* L_13 = V_2; int32_t L_14 = V_3; NullCheck(L_13); int32_t L_15 = L_14; IPAddress_t2830710878 * L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); V_1 = L_16; IPAddress_t2830710878 * L_17 = V_1; int32_t L_18 = ___port1; IPEndPoint_t1606333388 * L_19 = (IPEndPoint_t1606333388 *)il2cpp_codegen_object_new(IPEndPoint_t1606333388_il2cpp_TypeInfo_var); IPEndPoint__ctor_m3582815052(L_19, L_17, L_18, /*hidden argument*/NULL); V_4 = L_19; IPEndPoint_t1606333388 * L_20 = V_4; NullCheck(L_20); SocketAddress_t1723199846 * L_21 = VirtFuncInvoker0< SocketAddress_t1723199846 * >::Invoke(6 /* System.Net.SocketAddress System.Net.IPEndPoint::Serialize() */, L_20); V_5 = L_21; intptr_t L_22 = __this->get_socket_9(); SocketAddress_t1723199846 * L_23 = V_5; IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); Socket_Connect_internal_m2367322474(NULL /*static, unused*/, L_22, L_23, (&V_0), /*hidden argument*/NULL); int32_t L_24 = V_0; if (L_24) { goto IL_00b3; } } { __this->set_connected_18((bool)1); IPEndPoint_t1606333388 * L_25 = V_4; __this->set_seed_endpoint_21(L_25); return; } IL_00b3: { int32_t L_26 = V_0; if ((((int32_t)L_26) == ((int32_t)((int32_t)10036)))) { goto IL_00ce; } } { int32_t L_27 = V_0; if ((((int32_t)L_27) == ((int32_t)((int32_t)10035)))) { goto IL_00ce; } } { goto IL_010e; } IL_00ce: { bool L_28 = __this->get_blocking_13(); if (L_28) { goto IL_010e; } } { Socket_Poll_m1770499247(__this, (-1), 1, /*hidden argument*/NULL); RuntimeObject * L_29 = Socket_GetSocketOption_m2250061835(__this, ((int32_t)65535), ((int32_t)4103), /*hidden argument*/NULL); V_0 = ((*(int32_t*)((int32_t*)UnBox(L_29, Int32_t1085330725_il2cpp_TypeInfo_var)))); int32_t L_30 = V_0; if (L_30) { goto IL_010e; } } { __this->set_connected_18((bool)1); IPEndPoint_t1606333388 * L_31 = V_4; __this->set_seed_endpoint_21(L_31); return; } IL_010e: { int32_t L_32 = V_3; V_3 = ((int32_t)((int32_t)L_32+(int32_t)1)); } IL_0112: { int32_t L_33 = V_3; IPAddressU5BU5D_t3756700779* L_34 = V_2; NullCheck(L_34); if ((((int32_t)L_33) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_34)->max_length))))))) { goto IL_0078; } } { int32_t L_35 = V_0; if (!L_35) { goto IL_0128; } } { int32_t L_36 = V_0; SocketException_t2171012343 * L_37 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m1010342242(L_37, L_36, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_37); } IL_0128: { return; } } // System.Void System.Net.Sockets.Socket::Connect(System.String,System.Int32) extern "C" void Socket_Connect_m1217750559 (Socket_t2215831248 * __this, String_t* ___host0, int32_t ___port1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_Connect_m1217750559_MetadataUsageId); s_Il2CppMethodInitialized = true; } IPAddressU5BU5D_t3756700779* V_0 = NULL; { String_t* L_0 = ___host0; IL2CPP_RUNTIME_CLASS_INIT(Dns_t1916110264_il2cpp_TypeInfo_var); IPAddressU5BU5D_t3756700779* L_1 = Dns_GetHostAddresses_m2939178862(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); V_0 = L_1; IPAddressU5BU5D_t3756700779* L_2 = V_0; int32_t L_3 = ___port1; Socket_Connect_m2472886291(__this, L_2, L_3, /*hidden argument*/NULL); return; } } // System.Boolean System.Net.Sockets.Socket::Poll(System.Int32,System.Net.Sockets.SelectMode) extern "C" bool Socket_Poll_m1770499247 (Socket_t2215831248 * __this, int32_t ___time_us0, int32_t ___mode1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_Poll_m1770499247_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; bool V_1 = false; { bool L_0 = __this->get_disposed_20(); if (!L_0) { goto IL_0027; } } { bool L_1 = __this->get_closed_19(); if (!L_1) { goto IL_0027; } } { Type_t * L_2 = Object_GetType_m1134229006(__this, /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_2); ObjectDisposedException_t3257614166 * L_4 = (ObjectDisposedException_t3257614166 *)il2cpp_codegen_object_new(ObjectDisposedException_t3257614166_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m2005756758(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_0027: { int32_t L_5 = ___mode1; if (!L_5) { goto IL_0046; } } { int32_t L_6 = ___mode1; if ((((int32_t)L_6) == ((int32_t)1))) { goto IL_0046; } } { int32_t L_7 = ___mode1; if ((((int32_t)L_7) == ((int32_t)2))) { goto IL_0046; } } { NotSupportedException_t2060369835 * L_8 = (NotSupportedException_t2060369835 *)il2cpp_codegen_object_new(NotSupportedException_t2060369835_il2cpp_TypeInfo_var); NotSupportedException__ctor_m1363103711(L_8, _stringLiteral1521189018, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8); } IL_0046: { intptr_t L_9 = __this->get_socket_9(); int32_t L_10 = ___mode1; int32_t L_11 = ___time_us0; IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); bool L_12 = Socket_Poll_internal_m1396376171(NULL /*static, unused*/, L_9, L_10, L_11, (&V_0), /*hidden argument*/NULL); V_1 = L_12; int32_t L_13 = V_0; if (!L_13) { goto IL_0063; } } { int32_t L_14 = V_0; SocketException_t2171012343 * L_15 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m1010342242(L_15, L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15); } IL_0063: { int32_t L_16 = ___mode1; if ((!(((uint32_t)L_16) == ((uint32_t)1)))) { goto IL_009c; } } { bool L_17 = V_1; if (!L_17) { goto IL_009c; } } { bool L_18 = __this->get_connected_18(); if (L_18) { goto IL_009c; } } { RuntimeObject * L_19 = Socket_GetSocketOption_m2250061835(__this, ((int32_t)65535), ((int32_t)4103), /*hidden argument*/NULL); if (((*(int32_t*)((int32_t*)UnBox(L_19, Int32_t1085330725_il2cpp_TypeInfo_var))))) { goto IL_009c; } } { __this->set_connected_18((bool)1); } IL_009c: { bool L_20 = V_1; return L_20; } } // System.Int32 System.Net.Sockets.Socket::Receive(System.Byte[]) extern "C" int32_t Socket_Receive_m1503083361 (Socket_t2215831248 * __this, ByteU5BU5D_t1709610627* ___buffer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_Receive_m1503083361_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { bool L_0 = __this->get_disposed_20(); if (!L_0) { goto IL_0027; } } { bool L_1 = __this->get_closed_19(); if (!L_1) { goto IL_0027; } } { Type_t * L_2 = Object_GetType_m1134229006(__this, /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_2); ObjectDisposedException_t3257614166 * L_4 = (ObjectDisposedException_t3257614166 *)il2cpp_codegen_object_new(ObjectDisposedException_t3257614166_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m2005756758(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_0027: { ByteU5BU5D_t1709610627* L_5 = ___buffer0; if (L_5) { goto IL_0038; } } { ArgumentNullException_t873386607 * L_6 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_6, _stringLiteral1271641039, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6); } IL_0038: { ByteU5BU5D_t1709610627* L_7 = ___buffer0; ByteU5BU5D_t1709610627* L_8 = ___buffer0; NullCheck(L_8); int32_t L_9 = Socket_Receive_nochecks_m2605287863(__this, L_7, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), 0, (&V_0), /*hidden argument*/NULL); V_1 = L_9; int32_t L_10 = V_0; if (!L_10) { goto IL_0054; } } { int32_t L_11 = V_0; SocketException_t2171012343 * L_12 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m1010342242(L_12, L_11, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12); } IL_0054: { int32_t L_13 = V_1; return L_13; } } // System.Int32 System.Net.Sockets.Socket::Receive(System.Byte[],System.Net.Sockets.SocketFlags) extern "C" int32_t Socket_Receive_m2639921437 (Socket_t2215831248 * __this, ByteU5BU5D_t1709610627* ___buffer0, int32_t ___flags1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_Receive_m2639921437_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { bool L_0 = __this->get_disposed_20(); if (!L_0) { goto IL_0027; } } { bool L_1 = __this->get_closed_19(); if (!L_1) { goto IL_0027; } } { Type_t * L_2 = Object_GetType_m1134229006(__this, /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_2); ObjectDisposedException_t3257614166 * L_4 = (ObjectDisposedException_t3257614166 *)il2cpp_codegen_object_new(ObjectDisposedException_t3257614166_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m2005756758(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_0027: { ByteU5BU5D_t1709610627* L_5 = ___buffer0; if (L_5) { goto IL_0038; } } { ArgumentNullException_t873386607 * L_6 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_6, _stringLiteral1271641039, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6); } IL_0038: { ByteU5BU5D_t1709610627* L_7 = ___buffer0; ByteU5BU5D_t1709610627* L_8 = ___buffer0; NullCheck(L_8); int32_t L_9 = ___flags1; int32_t L_10 = Socket_Receive_nochecks_m2605287863(__this, L_7, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), L_9, (&V_0), /*hidden argument*/NULL); V_1 = L_10; int32_t L_11 = V_0; if (!L_11) { goto IL_0076; } } { int32_t L_12 = V_0; if ((!(((uint32_t)L_12) == ((uint32_t)((int32_t)10035))))) { goto IL_006f; } } { bool L_13 = __this->get_blocking_13(); if (!L_13) { goto IL_006f; } } { int32_t L_14 = V_0; SocketException_t2171012343 * L_15 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m2418413251(L_15, L_14, _stringLiteral1744649477, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15); } IL_006f: { int32_t L_16 = V_0; SocketException_t2171012343 * L_17 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m1010342242(L_17, L_16, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17); } IL_0076: { int32_t L_18 = V_1; return L_18; } } // System.Int32 System.Net.Sockets.Socket::Receive(System.Byte[],System.Int32,System.Int32,System.Net.Sockets.SocketFlags) extern "C" int32_t Socket_Receive_m1293184366 (Socket_t2215831248 * __this, ByteU5BU5D_t1709610627* ___buffer0, int32_t ___offset1, int32_t ___size2, int32_t ___flags3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_Receive_m1293184366_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { bool L_0 = __this->get_disposed_20(); if (!L_0) { goto IL_0027; } } { bool L_1 = __this->get_closed_19(); if (!L_1) { goto IL_0027; } } { Type_t * L_2 = Object_GetType_m1134229006(__this, /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_2); ObjectDisposedException_t3257614166 * L_4 = (ObjectDisposedException_t3257614166 *)il2cpp_codegen_object_new(ObjectDisposedException_t3257614166_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m2005756758(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_0027: { ByteU5BU5D_t1709610627* L_5 = ___buffer0; if (L_5) { goto IL_0038; } } { ArgumentNullException_t873386607 * L_6 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_6, _stringLiteral1271641039, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6); } IL_0038: { int32_t L_7 = ___offset1; if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0048; } } { int32_t L_8 = ___offset1; ByteU5BU5D_t1709610627* L_9 = ___buffer0; NullCheck(L_9); if ((((int32_t)L_8) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length))))))) { goto IL_0053; } } IL_0048: { ArgumentOutOfRangeException_t1933742687 * L_10 = (ArgumentOutOfRangeException_t1933742687 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t1933742687_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m2330281379(L_10, _stringLiteral1642978228, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_0053: { int32_t L_11 = ___size2; if ((((int32_t)L_11) < ((int32_t)0))) { goto IL_0065; } } { int32_t L_12 = ___offset1; int32_t L_13 = ___size2; ByteU5BU5D_t1709610627* L_14 = ___buffer0; NullCheck(L_14); if ((((int32_t)((int32_t)((int32_t)L_12+(int32_t)L_13))) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))))) { goto IL_0070; } } IL_0065: { ArgumentOutOfRangeException_t1933742687 * L_15 = (ArgumentOutOfRangeException_t1933742687 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t1933742687_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m2330281379(L_15, _stringLiteral764373485, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15); } IL_0070: { ByteU5BU5D_t1709610627* L_16 = ___buffer0; int32_t L_17 = ___offset1; int32_t L_18 = ___size2; int32_t L_19 = ___flags3; int32_t L_20 = Socket_Receive_nochecks_m2605287863(__this, L_16, L_17, L_18, L_19, (&V_0), /*hidden argument*/NULL); V_1 = L_20; int32_t L_21 = V_0; if (!L_21) { goto IL_00ad; } } { int32_t L_22 = V_0; if ((!(((uint32_t)L_22) == ((uint32_t)((int32_t)10035))))) { goto IL_00a6; } } { bool L_23 = __this->get_blocking_13(); if (!L_23) { goto IL_00a6; } } { int32_t L_24 = V_0; SocketException_t2171012343 * L_25 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m2418413251(L_25, L_24, _stringLiteral1744649477, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25); } IL_00a6: { int32_t L_26 = V_0; SocketException_t2171012343 * L_27 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m1010342242(L_27, L_26, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_27); } IL_00ad: { int32_t L_28 = V_1; return L_28; } } // System.Int32 System.Net.Sockets.Socket::RecvFrom_internal(System.IntPtr,System.Byte[],System.Int32,System.Int32,System.Net.Sockets.SocketFlags,System.Net.SocketAddress&,System.Int32&) extern "C" int32_t Socket_RecvFrom_internal_m1561942901 (RuntimeObject * __this /* static, unused */, intptr_t ___sock0, ByteU5BU5D_t1709610627* ___buffer1, int32_t ___offset2, int32_t ___count3, int32_t ___flags4, SocketAddress_t1723199846 ** ___sockaddr5, int32_t* ___error6, const RuntimeMethod* method) { typedef int32_t (*Socket_RecvFrom_internal_m1561942901_ftn) (intptr_t, ByteU5BU5D_t1709610627*, int32_t, int32_t, int32_t, SocketAddress_t1723199846 **, int32_t*); using namespace il2cpp::icalls; return ((Socket_RecvFrom_internal_m1561942901_ftn)System::System::Net::Sockets::Socket::RecvFrom) (___sock0, ___buffer1, ___offset2, ___count3, ___flags4, ___sockaddr5, ___error6); } // System.Int32 System.Net.Sockets.Socket::ReceiveFrom_nochecks_exc(System.Byte[],System.Int32,System.Int32,System.Net.Sockets.SocketFlags,System.Net.EndPoint&,System.Boolean,System.Int32&) extern "C" int32_t Socket_ReceiveFrom_nochecks_exc_m580463546 (Socket_t2215831248 * __this, ByteU5BU5D_t1709610627* ___buf0, int32_t ___offset1, int32_t ___size2, int32_t ___flags3, EndPoint_t268181662 ** ___remote_end4, bool ___throwOnError5, int32_t* ___error6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_ReceiveFrom_nochecks_exc_m580463546_MetadataUsageId); s_Il2CppMethodInitialized = true; } SocketAddress_t1723199846 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; { EndPoint_t268181662 ** L_0 = ___remote_end4; NullCheck((*((EndPoint_t268181662 **)L_0))); SocketAddress_t1723199846 * L_1 = VirtFuncInvoker0< SocketAddress_t1723199846 * >::Invoke(6 /* System.Net.SocketAddress System.Net.EndPoint::Serialize() */, (*((EndPoint_t268181662 **)L_0))); V_0 = L_1; intptr_t L_2 = __this->get_socket_9(); ByteU5BU5D_t1709610627* L_3 = ___buf0; int32_t L_4 = ___offset1; int32_t L_5 = ___size2; int32_t L_6 = ___flags3; int32_t* L_7 = ___error6; IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); int32_t L_8 = Socket_RecvFrom_internal_m1561942901(NULL /*static, unused*/, L_2, L_3, L_4, L_5, L_6, (&V_0), L_7, /*hidden argument*/NULL); V_1 = L_8; int32_t* L_9 = ___error6; V_2 = (*((int32_t*)L_9)); int32_t L_10 = V_2; if (!L_10) { goto IL_0093; } } { int32_t L_11 = V_2; if ((((int32_t)L_11) == ((int32_t)((int32_t)10035)))) { goto IL_004a; } } { int32_t L_12 = V_2; if ((((int32_t)L_12) == ((int32_t)((int32_t)10036)))) { goto IL_004a; } } { __this->set_connected_18((bool)0); goto IL_0081; } IL_004a: { int32_t L_13 = V_2; if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)10035))))) { goto IL_0081; } } { bool L_14 = __this->get_blocking_13(); if (!L_14) { goto IL_0081; } } { bool L_15 = ___throwOnError5; if (!L_15) { goto IL_0077; } } { SocketException_t2171012343 * L_16 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m2418413251(L_16, ((int32_t)10060), _stringLiteral3946778570, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16); } IL_0077: { int32_t* L_17 = ___error6; *((int32_t*)(L_17)) = (int32_t)((int32_t)10060); return 0; } IL_0081: { bool L_18 = ___throwOnError5; if (!L_18) { goto IL_0091; } } { int32_t* L_19 = ___error6; SocketException_t2171012343 * L_20 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m1010342242(L_20, (*((int32_t*)L_19)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20); } IL_0091: { return 0; } IL_0093: { bool L_21 = Environment_get_SocketSecurityEnabled_m535401884(NULL /*static, unused*/, /*hidden argument*/NULL); if (!L_21) { goto IL_00b9; } } { SocketAddress_t1723199846 * L_22 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); bool L_23 = Socket_CheckEndPoint_m892490345(NULL /*static, unused*/, L_22, /*hidden argument*/NULL); if (L_23) { goto IL_00b9; } } { ByteU5BU5D_t1709610627* L_24 = ___buf0; NullCheck((RuntimeArray *)(RuntimeArray *)L_24); Array_Initialize_m1250343159((RuntimeArray *)(RuntimeArray *)L_24, /*hidden argument*/NULL); SecurityException_t3040899540 * L_25 = (SecurityException_t3040899540 *)il2cpp_codegen_object_new(SecurityException_t3040899540_il2cpp_TypeInfo_var); SecurityException__ctor_m1823879396(L_25, _stringLiteral4182745582, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25); } IL_00b9: { __this->set_connected_18((bool)1); __this->set_isbound_15((bool)1); SocketAddress_t1723199846 * L_26 = V_0; if (!L_26) { goto IL_00d9; } } { EndPoint_t268181662 ** L_27 = ___remote_end4; EndPoint_t268181662 ** L_28 = ___remote_end4; SocketAddress_t1723199846 * L_29 = V_0; NullCheck((*((EndPoint_t268181662 **)L_28))); EndPoint_t268181662 * L_30 = VirtFuncInvoker1< EndPoint_t268181662 *, SocketAddress_t1723199846 * >::Invoke(5 /* System.Net.EndPoint System.Net.EndPoint::Create(System.Net.SocketAddress) */, (*((EndPoint_t268181662 **)L_28)), L_29); *((RuntimeObject **)(L_27)) = (RuntimeObject *)L_30; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_27), (RuntimeObject *)L_30); } IL_00d9: { EndPoint_t268181662 ** L_31 = ___remote_end4; __this->set_seed_endpoint_21((*((EndPoint_t268181662 **)L_31))); int32_t L_32 = V_1; return L_32; } } // System.Int32 System.Net.Sockets.Socket::Send(System.Byte[]) extern "C" int32_t Socket_Send_m380207113 (Socket_t2215831248 * __this, ByteU5BU5D_t1709610627* ___buf0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_Send_m380207113_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { bool L_0 = __this->get_disposed_20(); if (!L_0) { goto IL_0027; } } { bool L_1 = __this->get_closed_19(); if (!L_1) { goto IL_0027; } } { Type_t * L_2 = Object_GetType_m1134229006(__this, /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_2); ObjectDisposedException_t3257614166 * L_4 = (ObjectDisposedException_t3257614166 *)il2cpp_codegen_object_new(ObjectDisposedException_t3257614166_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m2005756758(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_0027: { ByteU5BU5D_t1709610627* L_5 = ___buf0; if (L_5) { goto IL_0038; } } { ArgumentNullException_t873386607 * L_6 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_6, _stringLiteral3280645651, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6); } IL_0038: { ByteU5BU5D_t1709610627* L_7 = ___buf0; ByteU5BU5D_t1709610627* L_8 = ___buf0; NullCheck(L_8); int32_t L_9 = Socket_Send_nochecks_m333970931(__this, L_7, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), 0, (&V_0), /*hidden argument*/NULL); V_1 = L_9; int32_t L_10 = V_0; if (!L_10) { goto IL_0054; } } { int32_t L_11 = V_0; SocketException_t2171012343 * L_12 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m1010342242(L_12, L_11, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12); } IL_0054: { int32_t L_13 = V_1; return L_13; } } // System.Int32 System.Net.Sockets.Socket::Send(System.Byte[],System.Int32,System.Int32,System.Net.Sockets.SocketFlags) extern "C" int32_t Socket_Send_m770754013 (Socket_t2215831248 * __this, ByteU5BU5D_t1709610627* ___buf0, int32_t ___offset1, int32_t ___size2, int32_t ___flags3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_Send_m770754013_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { bool L_0 = __this->get_disposed_20(); if (!L_0) { goto IL_0027; } } { bool L_1 = __this->get_closed_19(); if (!L_1) { goto IL_0027; } } { Type_t * L_2 = Object_GetType_m1134229006(__this, /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_2); ObjectDisposedException_t3257614166 * L_4 = (ObjectDisposedException_t3257614166 *)il2cpp_codegen_object_new(ObjectDisposedException_t3257614166_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m2005756758(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_0027: { ByteU5BU5D_t1709610627* L_5 = ___buf0; if (L_5) { goto IL_0038; } } { ArgumentNullException_t873386607 * L_6 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_6, _stringLiteral1271641039, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6); } IL_0038: { int32_t L_7 = ___offset1; if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0048; } } { int32_t L_8 = ___offset1; ByteU5BU5D_t1709610627* L_9 = ___buf0; NullCheck(L_9); if ((((int32_t)L_8) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length))))))) { goto IL_0053; } } IL_0048: { ArgumentOutOfRangeException_t1933742687 * L_10 = (ArgumentOutOfRangeException_t1933742687 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t1933742687_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m2330281379(L_10, _stringLiteral1642978228, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_0053: { int32_t L_11 = ___size2; if ((((int32_t)L_11) < ((int32_t)0))) { goto IL_0065; } } { int32_t L_12 = ___offset1; int32_t L_13 = ___size2; ByteU5BU5D_t1709610627* L_14 = ___buf0; NullCheck(L_14); if ((((int32_t)((int32_t)((int32_t)L_12+(int32_t)L_13))) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))))) { goto IL_0070; } } IL_0065: { ArgumentOutOfRangeException_t1933742687 * L_15 = (ArgumentOutOfRangeException_t1933742687 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t1933742687_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m2330281379(L_15, _stringLiteral764373485, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15); } IL_0070: { ByteU5BU5D_t1709610627* L_16 = ___buf0; int32_t L_17 = ___offset1; int32_t L_18 = ___size2; int32_t L_19 = ___flags3; int32_t L_20 = Socket_Send_nochecks_m333970931(__this, L_16, L_17, L_18, L_19, (&V_0), /*hidden argument*/NULL); V_1 = L_20; int32_t L_21 = V_0; if (!L_21) { goto IL_008b; } } { int32_t L_22 = V_0; SocketException_t2171012343 * L_23 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m1010342242(L_23, L_22, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_23); } IL_008b: { int32_t L_24 = V_1; return L_24; } } // System.Void System.Net.Sockets.Socket::CheckProtocolSupport() extern "C" void Socket_CheckProtocolSupport_m1096119766 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_CheckProtocolSupport_m1096119766_MetadataUsageId); s_Il2CppMethodInitialized = true; } Socket_t2215831248 * V_0 = NULL; Socket_t2215831248 * V_1 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); int32_t L_0 = ((Socket_t2215831248_StaticFields*)il2cpp_codegen_static_fields_for(Socket_t2215831248_il2cpp_TypeInfo_var))->get_ipv4Supported_6(); if ((!(((uint32_t)L_0) == ((uint32_t)(-1))))) { goto IL_0031; } } IL_000b: try { // begin try (depth: 1) Socket_t2215831248 * L_1 = (Socket_t2215831248 *)il2cpp_codegen_object_new(Socket_t2215831248_il2cpp_TypeInfo_var); Socket__ctor_m3106057280(L_1, 2, 1, 6, /*hidden argument*/NULL); V_0 = L_1; Socket_t2215831248 * L_2 = V_0; NullCheck(L_2); Socket_Close_m3321357048(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); ((Socket_t2215831248_StaticFields*)il2cpp_codegen_static_fields_for(Socket_t2215831248_il2cpp_TypeInfo_var))->set_ipv4Supported_6(1); goto IL_0031; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t2428370182 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0025; throw e; } CATCH_0025: { // begin catch(System.Object) IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); ((Socket_t2215831248_StaticFields*)il2cpp_codegen_static_fields_for(Socket_t2215831248_il2cpp_TypeInfo_var))->set_ipv4Supported_6(0); goto IL_0031; } // end catch (depth: 1) IL_0031: { IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); int32_t L_3 = ((Socket_t2215831248_StaticFields*)il2cpp_codegen_static_fields_for(Socket_t2215831248_il2cpp_TypeInfo_var))->get_ipv6Supported_7(); if ((!(((uint32_t)L_3) == ((uint32_t)(-1))))) { goto IL_006d; } } { IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); int32_t L_4 = ((Socket_t2215831248_StaticFields*)il2cpp_codegen_static_fields_for(Socket_t2215831248_il2cpp_TypeInfo_var))->get_ipv6Supported_7(); if (!L_4) { goto IL_006d; } } IL_0046: try { // begin try (depth: 1) Socket_t2215831248 * L_5 = (Socket_t2215831248 *)il2cpp_codegen_object_new(Socket_t2215831248_il2cpp_TypeInfo_var); Socket__ctor_m3106057280(L_5, ((int32_t)23), 1, 6, /*hidden argument*/NULL); V_1 = L_5; Socket_t2215831248 * L_6 = V_1; NullCheck(L_6); Socket_Close_m3321357048(L_6, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); ((Socket_t2215831248_StaticFields*)il2cpp_codegen_static_fields_for(Socket_t2215831248_il2cpp_TypeInfo_var))->set_ipv6Supported_7(1); goto IL_006d; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t2428370182 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0061; throw e; } CATCH_0061: { // begin catch(System.Object) IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); ((Socket_t2215831248_StaticFields*)il2cpp_codegen_static_fields_for(Socket_t2215831248_il2cpp_TypeInfo_var))->set_ipv6Supported_7(0); goto IL_006d; } // end catch (depth: 1) IL_006d: { return; } } // System.Boolean System.Net.Sockets.Socket::get_SupportsIPv4() extern "C" bool Socket_get_SupportsIPv4_m804629203 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_get_SupportsIPv4_m804629203_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); Socket_CheckProtocolSupport_m1096119766(NULL /*static, unused*/, /*hidden argument*/NULL); int32_t L_0 = ((Socket_t2215831248_StaticFields*)il2cpp_codegen_static_fields_for(Socket_t2215831248_il2cpp_TypeInfo_var))->get_ipv4Supported_6(); return (bool)((((int32_t)L_0) == ((int32_t)1))? 1 : 0); } } // System.Boolean System.Net.Sockets.Socket::get_SupportsIPv6() extern "C" bool Socket_get_SupportsIPv6_m4254163272 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_get_SupportsIPv6_m4254163272_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); Socket_CheckProtocolSupport_m1096119766(NULL /*static, unused*/, /*hidden argument*/NULL); int32_t L_0 = ((Socket_t2215831248_StaticFields*)il2cpp_codegen_static_fields_for(Socket_t2215831248_il2cpp_TypeInfo_var))->get_ipv6Supported_7(); return (bool)((((int32_t)L_0) == ((int32_t)1))? 1 : 0); } } // System.IntPtr System.Net.Sockets.Socket::Socket_internal(System.Net.Sockets.AddressFamily,System.Net.Sockets.SocketType,System.Net.Sockets.ProtocolType,System.Int32&) extern "C" intptr_t Socket_Socket_internal_m4060053520 (Socket_t2215831248 * __this, int32_t ___family0, int32_t ___type1, int32_t ___proto2, int32_t* ___error3, const RuntimeMethod* method) { typedef intptr_t (*Socket_Socket_internal_m4060053520_ftn) (Socket_t2215831248 *, int32_t, int32_t, int32_t, int32_t*); using namespace il2cpp::icalls; return ((Socket_Socket_internal_m4060053520_ftn)System::System::Net::Sockets::Socket::Socket_internal) (__this, ___family0, ___type1, ___proto2, ___error3); } // System.Void System.Net.Sockets.Socket::Finalize() extern "C" void Socket_Finalize_m3377774810 (Socket_t2215831248 * __this, const RuntimeMethod* method) { Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) VirtActionInvoker1< bool >::Invoke(5 /* System.Void System.Net.Sockets.Socket::Dispose(System.Boolean) */, __this, (bool)0); IL2CPP_LEAVE(0x13, FINALLY_000c); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_000c; } FINALLY_000c: { // begin finally (depth: 1) Object_Finalize_m1219447859(__this, /*hidden argument*/NULL); IL2CPP_END_FINALLY(12) } // end finally (depth: 1) IL2CPP_CLEANUP(12) { IL2CPP_JUMP_TBL(0x13, IL_0013) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_0013: { return; } } // System.Net.Sockets.AddressFamily System.Net.Sockets.Socket::get_AddressFamily() extern "C" int32_t Socket_get_AddressFamily_m480135769 (Socket_t2215831248 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_address_family_10(); return L_0; } } // System.Boolean System.Net.Sockets.Socket::get_Connected() extern "C" bool Socket_get_Connected_m2771609025 (Socket_t2215831248 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_connected_18(); return L_0; } } // System.Void System.Net.Sockets.Socket::set_NoDelay(System.Boolean) extern "C" void Socket_set_NoDelay_m2313557363 (Socket_t2215831248 * __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_set_NoDelay_m2313557363_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B5_0 = 0; int32_t G_B5_1 = 0; Socket_t2215831248 * G_B5_2 = NULL; int32_t G_B4_0 = 0; int32_t G_B4_1 = 0; Socket_t2215831248 * G_B4_2 = NULL; int32_t G_B6_0 = 0; int32_t G_B6_1 = 0; int32_t G_B6_2 = 0; Socket_t2215831248 * G_B6_3 = NULL; { bool L_0 = __this->get_disposed_20(); if (!L_0) { goto IL_0027; } } { bool L_1 = __this->get_closed_19(); if (!L_1) { goto IL_0027; } } { Type_t * L_2 = Object_GetType_m1134229006(__this, /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_2); ObjectDisposedException_t3257614166 * L_4 = (ObjectDisposedException_t3257614166 *)il2cpp_codegen_object_new(ObjectDisposedException_t3257614166_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m2005756758(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_0027: { Socket_ThrowIfUpd_m4264328861(__this, /*hidden argument*/NULL); bool L_5 = ___value0; G_B4_0 = 1; G_B4_1 = 6; G_B4_2 = __this; if (!L_5) { G_B5_0 = 1; G_B5_1 = 6; G_B5_2 = __this; goto IL_003c; } } { G_B6_0 = 1; G_B6_1 = G_B4_0; G_B6_2 = G_B4_1; G_B6_3 = G_B4_2; goto IL_003d; } IL_003c: { G_B6_0 = 0; G_B6_1 = G_B5_0; G_B6_2 = G_B5_1; G_B6_3 = G_B5_2; } IL_003d: { NullCheck(G_B6_3); Socket_SetSocketOption_m206373293(G_B6_3, G_B6_2, G_B6_1, G_B6_0, /*hidden argument*/NULL); return; } } // System.Net.SocketAddress System.Net.Sockets.Socket::RemoteEndPoint_internal(System.IntPtr,System.Int32&) extern "C" SocketAddress_t1723199846 * Socket_RemoteEndPoint_internal_m1113431622 (RuntimeObject * __this /* static, unused */, intptr_t ___socket0, int32_t* ___error1, const RuntimeMethod* method) { typedef SocketAddress_t1723199846 * (*Socket_RemoteEndPoint_internal_m1113431622_ftn) (intptr_t, int32_t*); using namespace il2cpp::icalls; return ((Socket_RemoteEndPoint_internal_m1113431622_ftn)System::System::Net::Sockets::Socket::RemoteEndPoint) (___socket0, ___error1); } // System.Net.EndPoint System.Net.Sockets.Socket::get_RemoteEndPoint() extern "C" EndPoint_t268181662 * Socket_get_RemoteEndPoint_m3592710157 (Socket_t2215831248 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_get_RemoteEndPoint_m3592710157_MetadataUsageId); s_Il2CppMethodInitialized = true; } SocketAddress_t1723199846 * V_0 = NULL; int32_t V_1 = 0; { bool L_0 = __this->get_disposed_20(); if (!L_0) { goto IL_0027; } } { bool L_1 = __this->get_closed_19(); if (!L_1) { goto IL_0027; } } { Type_t * L_2 = Object_GetType_m1134229006(__this, /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_2); ObjectDisposedException_t3257614166 * L_4 = (ObjectDisposedException_t3257614166 *)il2cpp_codegen_object_new(ObjectDisposedException_t3257614166_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m2005756758(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_0027: { EndPoint_t268181662 * L_5 = __this->get_seed_endpoint_21(); if (L_5) { goto IL_0034; } } { return (EndPoint_t268181662 *)NULL; } IL_0034: { intptr_t L_6 = __this->get_socket_9(); IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); SocketAddress_t1723199846 * L_7 = Socket_RemoteEndPoint_internal_m1113431622(NULL /*static, unused*/, L_6, (&V_1), /*hidden argument*/NULL); V_0 = L_7; int32_t L_8 = V_1; if (!L_8) { goto IL_004f; } } { int32_t L_9 = V_1; SocketException_t2171012343 * L_10 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m1010342242(L_10, L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_004f: { EndPoint_t268181662 * L_11 = __this->get_seed_endpoint_21(); SocketAddress_t1723199846 * L_12 = V_0; NullCheck(L_11); EndPoint_t268181662 * L_13 = VirtFuncInvoker1< EndPoint_t268181662 *, SocketAddress_t1723199846 * >::Invoke(5 /* System.Net.EndPoint System.Net.EndPoint::Create(System.Net.SocketAddress) */, L_11, L_12); return L_13; } } // System.Void System.Net.Sockets.Socket::Linger(System.IntPtr) extern "C" void Socket_Linger_m3264146316 (Socket_t2215831248 * __this, intptr_t ___handle0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_Linger_m3264146316_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; LingerOption_t1955249639 * V_3 = NULL; { bool L_0 = __this->get_connected_18(); if (!L_0) { goto IL_0017; } } { int32_t L_1 = __this->get_linger_timeout_8(); if ((((int32_t)L_1) > ((int32_t)0))) { goto IL_0018; } } IL_0017: { return; } IL_0018: { intptr_t L_2 = ___handle0; IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); Socket_Shutdown_internal_m1060800058(NULL /*static, unused*/, L_2, 0, (&V_0), /*hidden argument*/NULL); int32_t L_3 = V_0; if (!L_3) { goto IL_0028; } } { return; } IL_0028: { int32_t L_4 = __this->get_linger_timeout_8(); V_1 = ((int32_t)((int32_t)L_4/(int32_t)((int32_t)1000))); int32_t L_5 = __this->get_linger_timeout_8(); V_2 = ((int32_t)((int32_t)L_5%(int32_t)((int32_t)1000))); int32_t L_6 = V_2; if ((((int32_t)L_6) <= ((int32_t)0))) { goto IL_0061; } } { intptr_t L_7 = ___handle0; int32_t L_8 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); Socket_Poll_internal_m1396376171(NULL /*static, unused*/, L_7, 0, ((int32_t)((int32_t)L_8*(int32_t)((int32_t)1000))), (&V_0), /*hidden argument*/NULL); int32_t L_9 = V_0; if (!L_9) { goto IL_0061; } } { return; } IL_0061: { int32_t L_10 = V_1; if ((((int32_t)L_10) <= ((int32_t)0))) { goto IL_0085; } } { int32_t L_11 = V_1; LingerOption_t1955249639 * L_12 = (LingerOption_t1955249639 *)il2cpp_codegen_object_new(LingerOption_t1955249639_il2cpp_TypeInfo_var); LingerOption__ctor_m2827030615(L_12, (bool)1, L_11, /*hidden argument*/NULL); V_3 = L_12; intptr_t L_13 = ___handle0; LingerOption_t1955249639 * L_14 = V_3; IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); Socket_SetSocketOption_internal_m3798720458(NULL /*static, unused*/, L_13, ((int32_t)65535), ((int32_t)128), L_14, (ByteU5BU5D_t1709610627*)(ByteU5BU5D_t1709610627*)NULL, 0, (&V_0), /*hidden argument*/NULL); } IL_0085: { return; } } // System.Void System.Net.Sockets.Socket::Dispose(System.Boolean) extern "C" void Socket_Dispose_m1919124385 (Socket_t2215831248 * __this, bool ___explicitDisposing0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_Dispose_m1919124385_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; int32_t V_1 = 0; intptr_t V_2; memset(&V_2, 0, sizeof(V_2)); Thread_t3102188359 * V_3 = NULL; { bool L_0 = __this->get_disposed_20(); if (!L_0) { goto IL_000c; } } { return; } IL_000c: { __this->set_disposed_20((bool)1); bool L_1 = __this->get_connected_18(); V_0 = L_1; __this->set_connected_18((bool)0); intptr_t L_2 = __this->get_socket_9(); int32_t L_3 = IntPtr_op_Explicit_m999229369(NULL /*static, unused*/, L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_00a9; } } { bool L_4 = Environment_get_SocketSecurityEnabled_m535401884(NULL /*static, unused*/, /*hidden argument*/NULL); if (!L_4) { goto IL_0053; } } { IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); int32_t L_5 = ((Socket_t2215831248_StaticFields*)il2cpp_codegen_static_fields_for(Socket_t2215831248_il2cpp_TypeInfo_var))->get_current_bind_count_16(); if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_0053; } } { IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); int32_t L_6 = ((Socket_t2215831248_StaticFields*)il2cpp_codegen_static_fields_for(Socket_t2215831248_il2cpp_TypeInfo_var))->get_current_bind_count_16(); ((Socket_t2215831248_StaticFields*)il2cpp_codegen_static_fields_for(Socket_t2215831248_il2cpp_TypeInfo_var))->set_current_bind_count_16(((int32_t)((int32_t)L_6-(int32_t)1))); } IL_0053: { __this->set_closed_19((bool)1); intptr_t L_7 = __this->get_socket_9(); V_2 = L_7; intptr_t L_8 = IntPtr_op_Explicit_m2360224199(NULL /*static, unused*/, (-1), /*hidden argument*/NULL); __this->set_socket_9(L_8); Thread_t3102188359 * L_9 = __this->get_blocking_thread_14(); V_3 = L_9; Thread_t3102188359 * L_10 = V_3; if (!L_10) { goto IL_0087; } } { Thread_t3102188359 * L_11 = V_3; NullCheck(L_11); Thread_Abort_m1664890088(L_11, /*hidden argument*/NULL); __this->set_blocking_thread_14((Thread_t3102188359 *)NULL); } IL_0087: { bool L_12 = V_0; if (!L_12) { goto IL_0094; } } { intptr_t L_13 = V_2; Socket_Linger_m3264146316(__this, L_13, /*hidden argument*/NULL); } IL_0094: { intptr_t L_14 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); Socket_Close_internal_m2870548462(NULL /*static, unused*/, L_14, (&V_1), /*hidden argument*/NULL); int32_t L_15 = V_1; if (!L_15) { goto IL_00a9; } } { int32_t L_16 = V_1; SocketException_t2171012343 * L_17 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m1010342242(L_17, L_16, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17); } IL_00a9: { return; } } // System.Void System.Net.Sockets.Socket::Dispose() extern "C" void Socket_Dispose_m94729836 (Socket_t2215831248 * __this, const RuntimeMethod* method) { { VirtActionInvoker1< bool >::Invoke(5 /* System.Void System.Net.Sockets.Socket::Dispose(System.Boolean) */, __this, (bool)1); GC_SuppressFinalize_m768645527(NULL /*static, unused*/, __this, /*hidden argument*/NULL); return; } } // System.Void System.Net.Sockets.Socket::Close_internal(System.IntPtr,System.Int32&) extern "C" void Socket_Close_internal_m2870548462 (RuntimeObject * __this /* static, unused */, intptr_t ___socket0, int32_t* ___error1, const RuntimeMethod* method) { typedef void (*Socket_Close_internal_m2870548462_ftn) (intptr_t, int32_t*); using namespace il2cpp::icalls; ((Socket_Close_internal_m2870548462_ftn)System::System::Net::Sockets::Socket::Close) (___socket0, ___error1); } // System.Void System.Net.Sockets.Socket::Close() extern "C" void Socket_Close_m3321357048 (Socket_t2215831248 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_Close_m3321357048_MetadataUsageId); s_Il2CppMethodInitialized = true; } { __this->set_linger_timeout_8(0); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3750220212_il2cpp_TypeInfo_var, __this); return; } } // System.Void System.Net.Sockets.Socket::Connect_internal_real(System.IntPtr,System.Net.SocketAddress,System.Int32&) extern "C" void Socket_Connect_internal_real_m69548539 (RuntimeObject * __this /* static, unused */, intptr_t ___sock0, SocketAddress_t1723199846 * ___sa1, int32_t* ___error2, const RuntimeMethod* method) { typedef void (*Socket_Connect_internal_real_m69548539_ftn) (intptr_t, SocketAddress_t1723199846 *, int32_t*); using namespace il2cpp::icalls; ((Socket_Connect_internal_real_m69548539_ftn)System::System::Net::Sockets::Socket::Connect) (___sock0, ___sa1, ___error2); } // System.Void System.Net.Sockets.Socket::Connect_internal(System.IntPtr,System.Net.SocketAddress,System.Int32&) extern "C" void Socket_Connect_internal_m2367322474 (RuntimeObject * __this /* static, unused */, intptr_t ___sock0, SocketAddress_t1723199846 * ___sa1, int32_t* ___error2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_Connect_internal_m2367322474_MetadataUsageId); s_Il2CppMethodInitialized = true; } { intptr_t L_0 = ___sock0; SocketAddress_t1723199846 * L_1 = ___sa1; int32_t* L_2 = ___error2; IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); Socket_Connect_internal_m3421818009(NULL /*static, unused*/, L_0, L_1, L_2, (bool)1, /*hidden argument*/NULL); return; } } // System.Void System.Net.Sockets.Socket::Connect_internal(System.IntPtr,System.Net.SocketAddress,System.Int32&,System.Boolean) extern "C" void Socket_Connect_internal_m3421818009 (RuntimeObject * __this /* static, unused */, intptr_t ___sock0, SocketAddress_t1723199846 * ___sa1, int32_t* ___error2, bool ___requireSocketPolicyFile3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_Connect_internal_m3421818009_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = ___requireSocketPolicyFile3; if (!L_0) { goto IL_001c; } } { SocketAddress_t1723199846 * L_1 = ___sa1; IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); bool L_2 = Socket_CheckEndPoint_m892490345(NULL /*static, unused*/, L_1, /*hidden argument*/NULL); if (L_2) { goto IL_001c; } } { SecurityException_t3040899540 * L_3 = (SecurityException_t3040899540 *)il2cpp_codegen_object_new(SecurityException_t3040899540_il2cpp_TypeInfo_var); SecurityException__ctor_m1823879396(L_3, _stringLiteral4182745582, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_001c: { intptr_t L_4 = ___sock0; SocketAddress_t1723199846 * L_5 = ___sa1; int32_t* L_6 = ___error2; IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); Socket_Connect_internal_real_m69548539(NULL /*static, unused*/, L_4, L_5, L_6, /*hidden argument*/NULL); return; } } // System.Boolean System.Net.Sockets.Socket::CheckEndPoint(System.Net.SocketAddress) extern "C" bool Socket_CheckEndPoint_m892490345 (RuntimeObject * __this /* static, unused */, SocketAddress_t1723199846 * ___sa0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_CheckEndPoint_m892490345_MetadataUsageId); s_Il2CppMethodInitialized = true; } IPEndPoint_t1606333388 * V_0 = NULL; IPEndPoint_t1606333388 * V_1 = NULL; Exception_t2428370182 * V_2 = NULL; bool V_3 = false; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { bool L_0 = Environment_get_SocketSecurityEnabled_m535401884(NULL /*static, unused*/, /*hidden argument*/NULL); if (L_0) { goto IL_000c; } } { return (bool)1; } IL_000c: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); IPAddress_t2830710878 * L_1 = ((IPAddress_t2830710878_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2830710878_il2cpp_TypeInfo_var))->get_Loopback_6(); IPEndPoint_t1606333388 * L_2 = (IPEndPoint_t1606333388 *)il2cpp_codegen_object_new(IPEndPoint_t1606333388_il2cpp_TypeInfo_var); IPEndPoint__ctor_m3582815052(L_2, L_1, ((int32_t)123), /*hidden argument*/NULL); V_0 = L_2; IPEndPoint_t1606333388 * L_3 = V_0; SocketAddress_t1723199846 * L_4 = ___sa0; NullCheck(L_3); EndPoint_t268181662 * L_5 = VirtFuncInvoker1< EndPoint_t268181662 *, SocketAddress_t1723199846 * >::Invoke(5 /* System.Net.EndPoint System.Net.IPEndPoint::Create(System.Net.SocketAddress) */, L_3, L_4); V_1 = ((IPEndPoint_t1606333388 *)CastclassClass((RuntimeObject*)L_5, IPEndPoint_t1606333388_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); MethodInfo_t * L_6 = ((Socket_t2215831248_StaticFields*)il2cpp_codegen_static_fields_for(Socket_t2215831248_il2cpp_TypeInfo_var))->get_check_socket_policy_22(); if (L_6) { goto IL_003f; } } IL_0030: { IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); MethodInfo_t * L_7 = Socket_GetUnityCrossDomainHelperMethod_m303196429(NULL /*static, unused*/, _stringLiteral901683423, /*hidden argument*/NULL); ((Socket_t2215831248_StaticFields*)il2cpp_codegen_static_fields_for(Socket_t2215831248_il2cpp_TypeInfo_var))->set_check_socket_policy_22(L_7); } IL_003f: { IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); MethodInfo_t * L_8 = ((Socket_t2215831248_StaticFields*)il2cpp_codegen_static_fields_for(Socket_t2215831248_il2cpp_TypeInfo_var))->get_check_socket_policy_22(); ObjectU5BU5D_t4199014551* L_9 = ((ObjectU5BU5D_t4199014551*)SZArrayNew(ObjectU5BU5D_t4199014551_il2cpp_TypeInfo_var, (uint32_t)2)); IPEndPoint_t1606333388 * L_10 = V_1; NullCheck(L_10); IPAddress_t2830710878 * L_11 = IPEndPoint_get_Address_m4034902075(L_10, /*hidden argument*/NULL); NullCheck(L_11); String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Net.IPAddress::ToString() */, L_11); NullCheck(L_9); ArrayElementTypeCheck (L_9, L_12); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_12); ObjectU5BU5D_t4199014551* L_13 = L_9; IPEndPoint_t1606333388 * L_14 = V_1; NullCheck(L_14); int32_t L_15 = IPEndPoint_get_Port_m527879344(L_14, /*hidden argument*/NULL); int32_t L_16 = L_15; RuntimeObject * L_17 = Box(Int32_t1085330725_il2cpp_TypeInfo_var, &L_16); NullCheck(L_13); ArrayElementTypeCheck (L_13, L_17); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_17); NullCheck(L_8); RuntimeObject * L_18 = MethodBase_Invoke_m1864115319(L_8, NULL, L_13, /*hidden argument*/NULL); V_3 = ((*(bool*)((bool*)UnBox(L_18, Boolean_t3448040118_il2cpp_TypeInfo_var)))); goto IL_0099; } IL_0077: { ; // IL_0077: leave IL_0099 } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t2428370182 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t2428370182_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_007c; throw e; } CATCH_007c: { // begin catch(System.Exception) { V_2 = ((Exception_t2428370182 *)__exception_local); Exception_t2428370182 * L_19 = V_2; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_20 = String_Concat_m4101136157(NULL /*static, unused*/, _stringLiteral667184968, L_19, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Console_t2004602029_il2cpp_TypeInfo_var); Console_WriteLine_m1160833560(NULL /*static, unused*/, L_20, /*hidden argument*/NULL); V_3 = (bool)0; goto IL_0099; } IL_0094: { ; // IL_0094: leave IL_0099 } } // end catch (depth: 1) IL_0099: { bool L_21 = V_3; return L_21; } } // System.Reflection.MethodInfo System.Net.Sockets.Socket::GetUnityCrossDomainHelperMethod(System.String) extern "C" MethodInfo_t * Socket_GetUnityCrossDomainHelperMethod_m303196429 (RuntimeObject * __this /* static, unused */, String_t* ___methodname0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_GetUnityCrossDomainHelperMethod_m303196429_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; MethodInfo_t * V_1 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_m3930427402, _stringLiteral2024136142, "System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"); V_0 = L_0; Type_t * L_1 = V_0; if (L_1) { goto IL_001c; } } { SecurityException_t3040899540 * L_2 = (SecurityException_t3040899540 *)il2cpp_codegen_object_new(SecurityException_t3040899540_il2cpp_TypeInfo_var); SecurityException__ctor_m1823879396(L_2, _stringLiteral2652833540, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { Type_t * L_3 = V_0; String_t* L_4 = ___methodname0; NullCheck(L_3); MethodInfo_t * L_5 = Type_GetMethod_m1453190512(L_3, L_4, /*hidden argument*/NULL); V_1 = L_5; MethodInfo_t * L_6 = V_1; if (L_6) { goto IL_003b; } } { String_t* L_7 = ___methodname0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_8 = String_Concat_m3881611230(NULL /*static, unused*/, _stringLiteral1435022111, L_7, /*hidden argument*/NULL); SecurityException_t3040899540 * L_9 = (SecurityException_t3040899540 *)il2cpp_codegen_object_new(SecurityException_t3040899540_il2cpp_TypeInfo_var); SecurityException__ctor_m1823879396(L_9, L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9); } IL_003b: { MethodInfo_t * L_10 = V_1; return L_10; } } // System.Void System.Net.Sockets.Socket::Connect(System.Net.EndPoint) extern "C" void Socket_Connect_m611381486 (Socket_t2215831248 * __this, EndPoint_t268181662 * ___remoteEP0, const RuntimeMethod* method) { { EndPoint_t268181662 * L_0 = ___remoteEP0; Socket_Connect_m3770920720(__this, L_0, (bool)1, /*hidden argument*/NULL); return; } } // System.Void System.Net.Sockets.Socket::Connect(System.Net.EndPoint,System.Boolean) extern "C" void Socket_Connect_m3770920720 (Socket_t2215831248 * __this, EndPoint_t268181662 * ___remoteEP0, bool ___requireSocketPolicy1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_Connect_m3770920720_MetadataUsageId); s_Il2CppMethodInitialized = true; } SocketAddress_t1723199846 * V_0 = NULL; IPEndPoint_t1606333388 * V_1 = NULL; int32_t V_2 = 0; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { V_0 = (SocketAddress_t1723199846 *)NULL; bool L_0 = __this->get_disposed_20(); if (!L_0) { goto IL_0029; } } { bool L_1 = __this->get_closed_19(); if (!L_1) { goto IL_0029; } } { Type_t * L_2 = Object_GetType_m1134229006(__this, /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_2); ObjectDisposedException_t3257614166 * L_4 = (ObjectDisposedException_t3257614166 *)il2cpp_codegen_object_new(ObjectDisposedException_t3257614166_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m2005756758(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_0029: { EndPoint_t268181662 * L_5 = ___remoteEP0; if (L_5) { goto IL_003a; } } { ArgumentNullException_t873386607 * L_6 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_6, _stringLiteral2678028394, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6); } IL_003a: { EndPoint_t268181662 * L_7 = ___remoteEP0; V_1 = ((IPEndPoint_t1606333388 *)IsInstClass((RuntimeObject*)L_7, IPEndPoint_t1606333388_il2cpp_TypeInfo_var)); IPEndPoint_t1606333388 * L_8 = V_1; if (!L_8) { goto IL_007c; } } { IPEndPoint_t1606333388 * L_9 = V_1; NullCheck(L_9); IPAddress_t2830710878 * L_10 = IPEndPoint_get_Address_m4034902075(L_9, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); IPAddress_t2830710878 * L_11 = ((IPAddress_t2830710878_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2830710878_il2cpp_TypeInfo_var))->get_Any_4(); NullCheck(L_10); bool L_12 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Net.IPAddress::Equals(System.Object) */, L_10, L_11); if (L_12) { goto IL_0071; } } { IPEndPoint_t1606333388 * L_13 = V_1; NullCheck(L_13); IPAddress_t2830710878 * L_14 = IPEndPoint_get_Address_m4034902075(L_13, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); IPAddress_t2830710878 * L_15 = ((IPAddress_t2830710878_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2830710878_il2cpp_TypeInfo_var))->get_IPv6Any_8(); NullCheck(L_14); bool L_16 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Net.IPAddress::Equals(System.Object) */, L_14, L_15); if (!L_16) { goto IL_007c; } } IL_0071: { SocketException_t2171012343 * L_17 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m1010342242(L_17, ((int32_t)10049), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17); } IL_007c: { bool L_18 = __this->get_islistening_2(); if (!L_18) { goto IL_008d; } } { InvalidOperationException_t94637358 * L_19 = (InvalidOperationException_t94637358 *)il2cpp_codegen_object_new(InvalidOperationException_t94637358_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m2272205370(L_19, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_19); } IL_008d: { EndPoint_t268181662 * L_20 = ___remoteEP0; NullCheck(L_20); SocketAddress_t1723199846 * L_21 = VirtFuncInvoker0< SocketAddress_t1723199846 * >::Invoke(6 /* System.Net.SocketAddress System.Net.EndPoint::Serialize() */, L_20); V_0 = L_21; V_2 = 0; IL2CPP_RUNTIME_CLASS_INIT(Thread_t3102188359_il2cpp_TypeInfo_var); Thread_t3102188359 * L_22 = Thread_get_CurrentThread_m577432072(NULL /*static, unused*/, /*hidden argument*/NULL); __this->set_blocking_thread_14(L_22); } IL_00a1: try { // begin try (depth: 1) try { // begin try (depth: 2) intptr_t L_23 = __this->get_socket_9(); SocketAddress_t1723199846 * L_24 = V_0; bool L_25 = ___requireSocketPolicy1; IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); Socket_Connect_internal_m3421818009(NULL /*static, unused*/, L_23, L_24, (&V_2), L_25, /*hidden argument*/NULL); IL2CPP_LEAVE(0xD9, FINALLY_00d1); } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t2428370182 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ThreadAbortException_t2255830171_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_00b5; throw e; } CATCH_00b5: { // begin catch(System.Threading.ThreadAbortException) { bool L_26 = __this->get_disposed_20(); if (!L_26) { goto IL_00cc; } } IL_00c1: { IL2CPP_RUNTIME_CLASS_INIT(Thread_t3102188359_il2cpp_TypeInfo_var); Thread_ResetAbort_m958710345(NULL /*static, unused*/, /*hidden argument*/NULL); V_2 = ((int32_t)10004); } IL_00cc: { IL2CPP_LEAVE(0xD9, FINALLY_00d1); } } // end catch (depth: 2) } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_00d1; } FINALLY_00d1: { // begin finally (depth: 1) __this->set_blocking_thread_14((Thread_t3102188359 *)NULL); IL2CPP_END_FINALLY(209) } // end finally (depth: 1) IL2CPP_CLEANUP(209) { IL2CPP_JUMP_TBL(0xD9, IL_00d9) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_00d9: { int32_t L_27 = V_2; if (!L_27) { goto IL_00e6; } } { int32_t L_28 = V_2; SocketException_t2171012343 * L_29 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m1010342242(L_29, L_28, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29); } IL_00e6: { __this->set_connected_18((bool)1); __this->set_isbound_15((bool)1); EndPoint_t268181662 * L_30 = ___remoteEP0; __this->set_seed_endpoint_21(L_30); return; } } // System.Boolean System.Net.Sockets.Socket::Poll_internal(System.IntPtr,System.Net.Sockets.SelectMode,System.Int32,System.Int32&) extern "C" bool Socket_Poll_internal_m1396376171 (RuntimeObject * __this /* static, unused */, intptr_t ___socket0, int32_t ___mode1, int32_t ___timeout2, int32_t* ___error3, const RuntimeMethod* method) { typedef bool (*Socket_Poll_internal_m1396376171_ftn) (intptr_t, int32_t, int32_t, int32_t*); using namespace il2cpp::icalls; return ((Socket_Poll_internal_m1396376171_ftn)System::System::Net::Sockets::Socket::Poll) (___socket0, ___mode1, ___timeout2, ___error3); } // System.Int32 System.Net.Sockets.Socket::Receive_internal(System.IntPtr,System.Byte[],System.Int32,System.Int32,System.Net.Sockets.SocketFlags,System.Int32&) extern "C" int32_t Socket_Receive_internal_m1478365027 (RuntimeObject * __this /* static, unused */, intptr_t ___sock0, ByteU5BU5D_t1709610627* ___buffer1, int32_t ___offset2, int32_t ___count3, int32_t ___flags4, int32_t* ___error5, const RuntimeMethod* method) { typedef int32_t (*Socket_Receive_internal_m1478365027_ftn) (intptr_t, ByteU5BU5D_t1709610627*, int32_t, int32_t, int32_t, int32_t*); using namespace il2cpp::icalls; return ((Socket_Receive_internal_m1478365027_ftn)System::System::Net::Sockets::Socket::Receive) (___sock0, ___buffer1, ___offset2, ___count3, ___flags4, ___error5); } // System.Int32 System.Net.Sockets.Socket::Receive_nochecks(System.Byte[],System.Int32,System.Int32,System.Net.Sockets.SocketFlags,System.Net.Sockets.SocketError&) extern "C" int32_t Socket_Receive_nochecks_m2605287863 (Socket_t2215831248 * __this, ByteU5BU5D_t1709610627* ___buf0, int32_t ___offset1, int32_t ___size2, int32_t ___flags3, int32_t* ___error4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_Receive_nochecks_m2605287863_MetadataUsageId); s_Il2CppMethodInitialized = true; } IPAddress_t2830710878 * V_0 = NULL; EndPoint_t268181662 * V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; { int32_t L_0 = __this->get_protocol_type_12(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)17))))) { goto IL_0051; } } { bool L_1 = Environment_get_SocketSecurityEnabled_m535401884(NULL /*static, unused*/, /*hidden argument*/NULL); if (!L_1) { goto IL_0051; } } { IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); IPAddress_t2830710878 * L_2 = ((IPAddress_t2830710878_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2830710878_il2cpp_TypeInfo_var))->get_Any_4(); V_0 = L_2; int32_t L_3 = __this->get_address_family_10(); if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)23))))) { goto IL_0030; } } { IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); IPAddress_t2830710878 * L_4 = ((IPAddress_t2830710878_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2830710878_il2cpp_TypeInfo_var))->get_IPv6Any_8(); V_0 = L_4; } IL_0030: { IPAddress_t2830710878 * L_5 = V_0; IPEndPoint_t1606333388 * L_6 = (IPEndPoint_t1606333388 *)il2cpp_codegen_object_new(IPEndPoint_t1606333388_il2cpp_TypeInfo_var); IPEndPoint__ctor_m3582815052(L_6, L_5, 0, /*hidden argument*/NULL); V_1 = L_6; V_2 = 0; ByteU5BU5D_t1709610627* L_7 = ___buf0; int32_t L_8 = ___offset1; int32_t L_9 = ___size2; int32_t L_10 = ___flags3; int32_t L_11 = Socket_ReceiveFrom_nochecks_exc_m580463546(__this, L_7, L_8, L_9, L_10, (&V_1), (bool)0, (&V_2), /*hidden argument*/NULL); V_3 = L_11; int32_t* L_12 = ___error4; int32_t L_13 = V_2; *((int32_t*)(L_12)) = (int32_t)L_13; int32_t L_14 = V_3; return L_14; } IL_0051: { intptr_t L_15 = __this->get_socket_9(); ByteU5BU5D_t1709610627* L_16 = ___buf0; int32_t L_17 = ___offset1; int32_t L_18 = ___size2; int32_t L_19 = ___flags3; IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); int32_t L_20 = Socket_Receive_internal_m1478365027(NULL /*static, unused*/, L_15, L_16, L_17, L_18, L_19, (&V_4), /*hidden argument*/NULL); V_5 = L_20; int32_t* L_21 = ___error4; int32_t L_22 = V_4; *((int32_t*)(L_21)) = (int32_t)L_22; int32_t* L_23 = ___error4; if (!(*((int32_t*)L_23))) { goto IL_0098; } } { int32_t* L_24 = ___error4; if ((((int32_t)(*((int32_t*)L_24))) == ((int32_t)((int32_t)10035)))) { goto IL_0098; } } { int32_t* L_25 = ___error4; if ((((int32_t)(*((int32_t*)L_25))) == ((int32_t)((int32_t)10036)))) { goto IL_0098; } } { __this->set_connected_18((bool)0); goto IL_009f; } IL_0098: { __this->set_connected_18((bool)1); } IL_009f: { int32_t L_26 = V_5; return L_26; } } // System.Void System.Net.Sockets.Socket::GetSocketOption_obj_internal(System.IntPtr,System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName,System.Object&,System.Int32&) extern "C" void Socket_GetSocketOption_obj_internal_m1850898037 (RuntimeObject * __this /* static, unused */, intptr_t ___socket0, int32_t ___level1, int32_t ___name2, RuntimeObject ** ___obj_val3, int32_t* ___error4, const RuntimeMethod* method) { typedef void (*Socket_GetSocketOption_obj_internal_m1850898037_ftn) (intptr_t, int32_t, int32_t, RuntimeObject **, int32_t*); using namespace il2cpp::icalls; ((Socket_GetSocketOption_obj_internal_m1850898037_ftn)System::System::Net::Sockets::Socket::GetSocketOptionObj) (___socket0, ___level1, ___name2, ___obj_val3, ___error4); } // System.Int32 System.Net.Sockets.Socket::Send_internal(System.IntPtr,System.Byte[],System.Int32,System.Int32,System.Net.Sockets.SocketFlags,System.Int32&) extern "C" int32_t Socket_Send_internal_m2793093257 (RuntimeObject * __this /* static, unused */, intptr_t ___sock0, ByteU5BU5D_t1709610627* ___buf1, int32_t ___offset2, int32_t ___count3, int32_t ___flags4, int32_t* ___error5, const RuntimeMethod* method) { typedef int32_t (*Socket_Send_internal_m2793093257_ftn) (intptr_t, ByteU5BU5D_t1709610627*, int32_t, int32_t, int32_t, int32_t*); using namespace il2cpp::icalls; return ((Socket_Send_internal_m2793093257_ftn)System::System::Net::Sockets::Socket::Send) (___sock0, ___buf1, ___offset2, ___count3, ___flags4, ___error5); } // System.Int32 System.Net.Sockets.Socket::Send_nochecks(System.Byte[],System.Int32,System.Int32,System.Net.Sockets.SocketFlags,System.Net.Sockets.SocketError&) extern "C" int32_t Socket_Send_nochecks_m333970931 (Socket_t2215831248 * __this, ByteU5BU5D_t1709610627* ___buf0, int32_t ___offset1, int32_t ___size2, int32_t ___flags3, int32_t* ___error4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_Send_nochecks_m333970931_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___size2; if (L_0) { goto IL_000c; } } { int32_t* L_1 = ___error4; *((int32_t*)(L_1)) = (int32_t)0; return 0; } IL_000c: { intptr_t L_2 = __this->get_socket_9(); ByteU5BU5D_t1709610627* L_3 = ___buf0; int32_t L_4 = ___offset1; int32_t L_5 = ___size2; int32_t L_6 = ___flags3; IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); int32_t L_7 = Socket_Send_internal_m2793093257(NULL /*static, unused*/, L_2, L_3, L_4, L_5, L_6, (&V_0), /*hidden argument*/NULL); V_1 = L_7; int32_t* L_8 = ___error4; int32_t L_9 = V_0; *((int32_t*)(L_8)) = (int32_t)L_9; int32_t* L_10 = ___error4; if (!(*((int32_t*)L_10))) { goto IL_0051; } } { int32_t* L_11 = ___error4; if ((((int32_t)(*((int32_t*)L_11))) == ((int32_t)((int32_t)10035)))) { goto IL_0051; } } { int32_t* L_12 = ___error4; if ((((int32_t)(*((int32_t*)L_12))) == ((int32_t)((int32_t)10036)))) { goto IL_0051; } } { __this->set_connected_18((bool)0); goto IL_0058; } IL_0051: { __this->set_connected_18((bool)1); } IL_0058: { int32_t L_13 = V_1; return L_13; } } // System.Object System.Net.Sockets.Socket::GetSocketOption(System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName) extern "C" RuntimeObject * Socket_GetSocketOption_m2250061835 (Socket_t2215831248 * __this, int32_t ___optionLevel0, int32_t ___optionName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_GetSocketOption_m2250061835_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; int32_t V_1 = 0; { bool L_0 = __this->get_disposed_20(); if (!L_0) { goto IL_0027; } } { bool L_1 = __this->get_closed_19(); if (!L_1) { goto IL_0027; } } { Type_t * L_2 = Object_GetType_m1134229006(__this, /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_2); ObjectDisposedException_t3257614166 * L_4 = (ObjectDisposedException_t3257614166 *)il2cpp_codegen_object_new(ObjectDisposedException_t3257614166_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m2005756758(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_0027: { intptr_t L_5 = __this->get_socket_9(); int32_t L_6 = ___optionLevel0; int32_t L_7 = ___optionName1; IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); Socket_GetSocketOption_obj_internal_m1850898037(NULL /*static, unused*/, L_5, L_6, L_7, (&V_0), (&V_1), /*hidden argument*/NULL); int32_t L_8 = V_1; if (!L_8) { goto IL_0045; } } { int32_t L_9 = V_1; SocketException_t2171012343 * L_10 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m1010342242(L_10, L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_0045: { int32_t L_11 = ___optionName1; if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)128))))) { goto IL_0057; } } { RuntimeObject * L_12 = V_0; return ((LingerOption_t1955249639 *)CastclassClass((RuntimeObject*)L_12, LingerOption_t1955249639_il2cpp_TypeInfo_var)); } IL_0057: { int32_t L_13 = ___optionName1; if ((((int32_t)L_13) == ((int32_t)((int32_t)12)))) { goto IL_0067; } } { int32_t L_14 = ___optionName1; if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)13))))) { goto IL_006e; } } IL_0067: { RuntimeObject * L_15 = V_0; return ((MulticastOption_t267769071 *)CastclassClass((RuntimeObject*)L_15, MulticastOption_t267769071_il2cpp_TypeInfo_var)); } IL_006e: { RuntimeObject * L_16 = V_0; if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_16, Int32_t1085330725_il2cpp_TypeInfo_var))) { goto IL_0085; } } { RuntimeObject * L_17 = V_0; int32_t L_18 = ((*(int32_t*)((int32_t*)UnBox(L_17, Int32_t1085330725_il2cpp_TypeInfo_var)))); RuntimeObject * L_19 = Box(Int32_t1085330725_il2cpp_TypeInfo_var, &L_18); return L_19; } IL_0085: { RuntimeObject * L_20 = V_0; return L_20; } } // System.Void System.Net.Sockets.Socket::Shutdown_internal(System.IntPtr,System.Net.Sockets.SocketShutdown,System.Int32&) extern "C" void Socket_Shutdown_internal_m1060800058 (RuntimeObject * __this /* static, unused */, intptr_t ___socket0, int32_t ___how1, int32_t* ___error2, const RuntimeMethod* method) { typedef void (*Socket_Shutdown_internal_m1060800058_ftn) (intptr_t, int32_t, int32_t*); using namespace il2cpp::icalls; ((Socket_Shutdown_internal_m1060800058_ftn)System::System::Net::Sockets::Socket::Shutdown) (___socket0, ___how1, ___error2); } // System.Void System.Net.Sockets.Socket::SetSocketOption_internal(System.IntPtr,System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName,System.Object,System.Byte[],System.Int32,System.Int32&) extern "C" void Socket_SetSocketOption_internal_m3798720458 (RuntimeObject * __this /* static, unused */, intptr_t ___socket0, int32_t ___level1, int32_t ___name2, RuntimeObject * ___obj_val3, ByteU5BU5D_t1709610627* ___byte_val4, int32_t ___int_val5, int32_t* ___error6, const RuntimeMethod* method) { typedef void (*Socket_SetSocketOption_internal_m3798720458_ftn) (intptr_t, int32_t, int32_t, RuntimeObject *, ByteU5BU5D_t1709610627*, int32_t, int32_t*); using namespace il2cpp::icalls; ((Socket_SetSocketOption_internal_m3798720458_ftn)System::System::Net::Sockets::Socket::SetSocketOption) (___socket0, ___level1, ___name2, ___obj_val3, ___byte_val4, ___int_val5, ___error6); } // System.Void System.Net.Sockets.Socket::SetSocketOption(System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName,System.Int32) extern "C" void Socket_SetSocketOption_m206373293 (Socket_t2215831248 * __this, int32_t ___optionLevel0, int32_t ___optionName1, int32_t ___optionValue2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Socket_SetSocketOption_m206373293_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { bool L_0 = __this->get_disposed_20(); if (!L_0) { goto IL_0027; } } { bool L_1 = __this->get_closed_19(); if (!L_1) { goto IL_0027; } } { Type_t * L_2 = Object_GetType_m1134229006(__this, /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_2); ObjectDisposedException_t3257614166 * L_4 = (ObjectDisposedException_t3257614166 *)il2cpp_codegen_object_new(ObjectDisposedException_t3257614166_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m2005756758(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_0027: { intptr_t L_5 = __this->get_socket_9(); int32_t L_6 = ___optionLevel0; int32_t L_7 = ___optionName1; int32_t L_8 = ___optionValue2; IL2CPP_RUNTIME_CLASS_INIT(Socket_t2215831248_il2cpp_TypeInfo_var); Socket_SetSocketOption_internal_m3798720458(NULL /*static, unused*/, L_5, L_6, L_7, NULL, (ByteU5BU5D_t1709610627*)(ByteU5BU5D_t1709610627*)NULL, L_8, (&V_0), /*hidden argument*/NULL); int32_t L_9 = V_0; if (!L_9) { goto IL_0046; } } { int32_t L_10 = V_0; SocketException_t2171012343 * L_11 = (SocketException_t2171012343 *)il2cpp_codegen_object_new(SocketException_t2171012343_il2cpp_TypeInfo_var); SocketException__ctor_m1010342242(L_11, L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11); } IL_0046: { return; } } // System.Void System.Net.Sockets.Socket::ThrowIfUpd() extern "C" void Socket_ThrowIfUpd_m4264328861 (Socket_t2215831248 * __this, const RuntimeMethod* method) { { return; } } // System.Void System.Net.Sockets.SocketException::.ctor() extern "C" void SocketException__ctor_m3223151925 (SocketException_t2171012343 * __this, const RuntimeMethod* method) { { int32_t L_0 = SocketException_WSAGetLastError_internal_m2958171769(NULL /*static, unused*/, /*hidden argument*/NULL); Win32Exception__ctor_m10977592(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Net.Sockets.SocketException::.ctor(System.Int32) extern "C" void SocketException__ctor_m1010342242 (SocketException_t2171012343 * __this, int32_t ___error0, const RuntimeMethod* method) { { int32_t L_0 = ___error0; Win32Exception__ctor_m10977592(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Net.Sockets.SocketException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void SocketException__ctor_m4205199591 (SocketException_t2171012343 * __this, SerializationInfo_t2260044969 * ___info0, StreamingContext_t3610716448 ___context1, const RuntimeMethod* method) { { SerializationInfo_t2260044969 * L_0 = ___info0; StreamingContext_t3610716448 L_1 = ___context1; Win32Exception__ctor_m1389307655(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Net.Sockets.SocketException::.ctor(System.Int32,System.String) extern "C" void SocketException__ctor_m2418413251 (SocketException_t2171012343 * __this, int32_t ___error0, String_t* ___message1, const RuntimeMethod* method) { { int32_t L_0 = ___error0; String_t* L_1 = ___message1; Win32Exception__ctor_m1703036844(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Int32 System.Net.Sockets.SocketException::WSAGetLastError_internal() extern "C" int32_t SocketException_WSAGetLastError_internal_m2958171769 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { typedef int32_t (*SocketException_WSAGetLastError_internal_m2958171769_ftn) (); using namespace il2cpp::icalls; return ((SocketException_WSAGetLastError_internal_m2958171769_ftn)System::System::Net::Sockets::SocketException::WSAGetLastError) (); } // System.Int32 System.Net.Sockets.SocketException::get_ErrorCode() extern "C" int32_t SocketException_get_ErrorCode_m2197958126 (SocketException_t2171012343 * __this, const RuntimeMethod* method) { { int32_t L_0 = Win32Exception_get_NativeErrorCode_m1748228136(__this, /*hidden argument*/NULL); return L_0; } } // System.Net.Sockets.SocketError System.Net.Sockets.SocketException::get_SocketErrorCode() extern "C" int32_t SocketException_get_SocketErrorCode_m3794754150 (SocketException_t2171012343 * __this, const RuntimeMethod* method) { { int32_t L_0 = Win32Exception_get_NativeErrorCode_m1748228136(__this, /*hidden argument*/NULL); return (int32_t)(L_0); } } // System.String System.Net.Sockets.SocketException::get_Message() extern "C" String_t* SocketException_get_Message_m287355646 (SocketException_t2171012343 * __this, const RuntimeMethod* method) { { String_t* L_0 = Exception_get_Message_m3004078240(__this, /*hidden argument*/NULL); return L_0; } } // System.Void System.Net.WebHeaderCollection::.ctor() extern "C" void WebHeaderCollection__ctor_m1604616055 (WebHeaderCollection_t3555365273 * __this, const RuntimeMethod* method) { { NameValueCollection__ctor_m1872871932(__this, /*hidden argument*/NULL); return; } } // System.Void System.Net.WebHeaderCollection::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void WebHeaderCollection__ctor_m907116336 (WebHeaderCollection_t3555365273 * __this, SerializationInfo_t2260044969 * ___serializationInfo0, StreamingContext_t3610716448 ___streamingContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebHeaderCollection__ctor_m907116336_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { NameValueCollection__ctor_m1872871932(__this, /*hidden argument*/NULL); } IL_0006: try { // begin try (depth: 1) { SerializationInfo_t2260044969 * L_0 = ___serializationInfo0; NullCheck(L_0); int32_t L_1 = SerializationInfo_GetInt32_m877527589(L_0, _stringLiteral1911533953, /*hidden argument*/NULL); V_0 = L_1; V_1 = 0; goto IL_0041; } IL_0019: { SerializationInfo_t2260044969 * L_2 = ___serializationInfo0; String_t* L_3 = Int32_ToString_m2394199081((&V_1), /*hidden argument*/NULL); NullCheck(L_2); String_t* L_4 = SerializationInfo_GetString_m2297443841(L_2, L_3, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_5 = ___serializationInfo0; int32_t L_6 = V_0; int32_t L_7 = V_1; V_3 = ((int32_t)((int32_t)L_6+(int32_t)L_7)); String_t* L_8 = Int32_ToString_m2394199081((&V_3), /*hidden argument*/NULL); NullCheck(L_5); String_t* L_9 = SerializationInfo_GetString_m2297443841(L_5, L_8, /*hidden argument*/NULL); VirtActionInvoker2< String_t*, String_t* >::Invoke(16 /* System.Void System.Net.WebHeaderCollection::Add(System.String,System.String) */, __this, L_4, L_9); int32_t L_10 = V_1; V_1 = ((int32_t)((int32_t)L_10+(int32_t)1)); } IL_0041: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) < ((int32_t)L_12))) { goto IL_0019; } } IL_0048: { goto IL_00a3; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t2428370182 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (SerializationException_t1084472723_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_004d; throw e; } CATCH_004d: { // begin catch(System.Runtime.Serialization.SerializationException) { SerializationInfo_t2260044969 * L_13 = ___serializationInfo0; NullCheck(L_13); int32_t L_14 = SerializationInfo_GetInt32_m877527589(L_13, _stringLiteral2324216545, /*hidden argument*/NULL); V_0 = L_14; V_2 = 0; goto IL_0097; } IL_0061: { SerializationInfo_t2260044969 * L_15 = ___serializationInfo0; int32_t L_16 = V_2; int32_t L_17 = L_16; RuntimeObject * L_18 = Box(Int32_t1085330725_il2cpp_TypeInfo_var, &L_17); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_19 = String_Concat_m4101136157(NULL /*static, unused*/, _stringLiteral1009927320, L_18, /*hidden argument*/NULL); NullCheck(L_15); String_t* L_20 = SerializationInfo_GetString_m2297443841(L_15, L_19, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_21 = ___serializationInfo0; int32_t L_22 = V_2; int32_t L_23 = L_22; RuntimeObject * L_24 = Box(Int32_t1085330725_il2cpp_TypeInfo_var, &L_23); String_t* L_25 = String_Concat_m4101136157(NULL /*static, unused*/, _stringLiteral1667594372, L_24, /*hidden argument*/NULL); NullCheck(L_21); String_t* L_26 = SerializationInfo_GetString_m2297443841(L_21, L_25, /*hidden argument*/NULL); VirtActionInvoker2< String_t*, String_t* >::Invoke(16 /* System.Void System.Net.WebHeaderCollection::Add(System.String,System.String) */, __this, L_20, L_26); int32_t L_27 = V_2; V_2 = ((int32_t)((int32_t)L_27+(int32_t)1)); } IL_0097: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0061; } } IL_009e: { goto IL_00a3; } } // end catch (depth: 1) IL_00a3: { return; } } // System.Void System.Net.WebHeaderCollection::.ctor(System.Boolean) extern "C" void WebHeaderCollection__ctor_m1317962248 (WebHeaderCollection_t3555365273 * __this, bool ___internallyCreated0, const RuntimeMethod* method) { { NameValueCollection__ctor_m1872871932(__this, /*hidden argument*/NULL); bool L_0 = ___internallyCreated0; __this->set_internallyCreated_15(L_0); return; } } // System.Void System.Net.WebHeaderCollection::.cctor() extern "C" void WebHeaderCollection__cctor_m1753140571 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebHeaderCollection__cctor_m1753140571_MetadataUsageId); s_Il2CppMethodInitialized = true; } { BooleanU5BU5D_t184022451* L_0 = ((BooleanU5BU5D_t184022451*)SZArrayNew(BooleanU5BU5D_t184022451_il2cpp_TypeInfo_var, (uint32_t)((int32_t)126))); RuntimeHelpers_InitializeArray_m68930590(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_0, LoadFieldToken(U3CPrivateImplementationDetailsU3E_t3706520246____U24U24fieldU2D2_0_FieldInfo_var), /*hidden argument*/NULL); ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->set_allowed_chars_16(L_0); IL2CPP_RUNTIME_CLASS_INIT(CaseInsensitiveHashCodeProvider_t1153736937_il2cpp_TypeInfo_var); CaseInsensitiveHashCodeProvider_t1153736937 * L_1 = CaseInsensitiveHashCodeProvider_get_DefaultInvariant_m468958183(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CaseInsensitiveComparer_t2588724170_il2cpp_TypeInfo_var); CaseInsensitiveComparer_t2588724170 * L_2 = CaseInsensitiveComparer_get_DefaultInvariant_m3840188841(NULL /*static, unused*/, /*hidden argument*/NULL); Hashtable_t448324601 * L_3 = (Hashtable_t448324601 *)il2cpp_codegen_object_new(Hashtable_t448324601_il2cpp_TypeInfo_var); Hashtable__ctor_m3104597869(L_3, L_1, L_2, /*hidden argument*/NULL); ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->set_restricted_12(L_3); Hashtable_t448324601 * L_4 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_restricted_12(); bool L_5 = ((bool)1); RuntimeObject * L_6 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_5); NullCheck(L_4); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_4, _stringLiteral3856439155, L_6); Hashtable_t448324601 * L_7 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_restricted_12(); bool L_8 = ((bool)1); RuntimeObject * L_9 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_8); NullCheck(L_7); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_7, _stringLiteral2354107953, L_9); Hashtable_t448324601 * L_10 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_restricted_12(); bool L_11 = ((bool)1); RuntimeObject * L_12 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_11); NullCheck(L_10); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_10, _stringLiteral113791910, L_12); Hashtable_t448324601 * L_13 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_restricted_12(); bool L_14 = ((bool)1); RuntimeObject * L_15 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_14); NullCheck(L_13); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_13, _stringLiteral2670134877, L_15); Hashtable_t448324601 * L_16 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_restricted_12(); bool L_17 = ((bool)1); RuntimeObject * L_18 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_17); NullCheck(L_16); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_16, _stringLiteral1588550801, L_18); Hashtable_t448324601 * L_19 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_restricted_12(); bool L_20 = ((bool)1); RuntimeObject * L_21 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_20); NullCheck(L_19); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_19, _stringLiteral2085779464, L_21); Hashtable_t448324601 * L_22 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_restricted_12(); bool L_23 = ((bool)1); RuntimeObject * L_24 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_23); NullCheck(L_22); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_22, _stringLiteral1109505646, L_24); Hashtable_t448324601 * L_25 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_restricted_12(); bool L_26 = ((bool)1); RuntimeObject * L_27 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_26); NullCheck(L_25); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_25, _stringLiteral1649166721, L_27); Hashtable_t448324601 * L_28 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_restricted_12(); bool L_29 = ((bool)1); RuntimeObject * L_30 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_29); NullCheck(L_28); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_28, _stringLiteral1694016236, L_30); Hashtable_t448324601 * L_31 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_restricted_12(); bool L_32 = ((bool)1); RuntimeObject * L_33 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_32); NullCheck(L_31); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_31, _stringLiteral246229162, L_33); Hashtable_t448324601 * L_34 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_restricted_12(); bool L_35 = ((bool)1); RuntimeObject * L_36 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_35); NullCheck(L_34); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_34, _stringLiteral1313062740, L_36); Hashtable_t448324601 * L_37 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_restricted_12(); bool L_38 = ((bool)1); RuntimeObject * L_39 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_38); NullCheck(L_37); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_37, _stringLiteral789279023, L_39); Hashtable_t448324601 * L_40 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_restricted_12(); bool L_41 = ((bool)1); RuntimeObject * L_42 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_41); NullCheck(L_40); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_40, _stringLiteral3089027803, L_42); IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t3292076425_il2cpp_TypeInfo_var); StringComparer_t3292076425 * L_43 = StringComparer_get_InvariantCultureIgnoreCase_m4127723561(NULL /*static, unused*/, /*hidden argument*/NULL); Dictionary_2_t120496167 * L_44 = (Dictionary_2_t120496167 *)il2cpp_codegen_object_new(Dictionary_2_t120496167_il2cpp_TypeInfo_var); Dictionary_2__ctor_m1275257838(L_44, L_43, /*hidden argument*/Dictionary_2__ctor_m1275257838_RuntimeMethod_var); ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->set_restricted_response_14(L_44); Dictionary_2_t120496167 * L_45 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_restricted_response_14(); NullCheck(L_45); Dictionary_2_Add_m562197175(L_45, _stringLiteral684885993, (bool)1, /*hidden argument*/Dictionary_2_Add_m562197175_RuntimeMethod_var); Dictionary_2_t120496167 * L_46 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_restricted_response_14(); NullCheck(L_46); Dictionary_2_Add_m562197175(L_46, _stringLiteral3398588934, (bool)1, /*hidden argument*/Dictionary_2_Add_m562197175_RuntimeMethod_var); Dictionary_2_t120496167 * L_47 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_restricted_response_14(); NullCheck(L_47); Dictionary_2_Add_m562197175(L_47, _stringLiteral3492792528, (bool)1, /*hidden argument*/Dictionary_2_Add_m562197175_RuntimeMethod_var); CaseInsensitiveHashCodeProvider_t1153736937 * L_48 = CaseInsensitiveHashCodeProvider_get_DefaultInvariant_m468958183(NULL /*static, unused*/, /*hidden argument*/NULL); CaseInsensitiveComparer_t2588724170 * L_49 = CaseInsensitiveComparer_get_DefaultInvariant_m3840188841(NULL /*static, unused*/, /*hidden argument*/NULL); Hashtable_t448324601 * L_50 = (Hashtable_t448324601 *)il2cpp_codegen_object_new(Hashtable_t448324601_il2cpp_TypeInfo_var); Hashtable__ctor_m3104597869(L_50, L_48, L_49, /*hidden argument*/NULL); ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->set_multiValue_13(L_50); Hashtable_t448324601 * L_51 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_52 = ((bool)1); RuntimeObject * L_53 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_52); NullCheck(L_51); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_51, _stringLiteral3856439155, L_53); Hashtable_t448324601 * L_54 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_55 = ((bool)1); RuntimeObject * L_56 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_55); NullCheck(L_54); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_54, _stringLiteral1691685178, L_56); Hashtable_t448324601 * L_57 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_58 = ((bool)1); RuntimeObject * L_59 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_58); NullCheck(L_57); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_57, _stringLiteral2362467865, L_59); Hashtable_t448324601 * L_60 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_61 = ((bool)1); RuntimeObject * L_62 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_61); NullCheck(L_60); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_60, _stringLiteral4065154328, L_62); Hashtable_t448324601 * L_63 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_64 = ((bool)1); RuntimeObject * L_65 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_64); NullCheck(L_63); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_63, _stringLiteral520074917, L_65); Hashtable_t448324601 * L_66 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_67 = ((bool)1); RuntimeObject * L_68 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_67); NullCheck(L_66); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_66, _stringLiteral1119712883, L_68); Hashtable_t448324601 * L_69 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_70 = ((bool)1); RuntimeObject * L_71 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_70); NullCheck(L_69); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_69, _stringLiteral1709511650, L_71); Hashtable_t448324601 * L_72 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_73 = ((bool)1); RuntimeObject * L_74 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_73); NullCheck(L_72); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_72, _stringLiteral3468215339, L_74); Hashtable_t448324601 * L_75 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_76 = ((bool)1); RuntimeObject * L_77 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_76); NullCheck(L_75); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_75, _stringLiteral2354107953, L_77); Hashtable_t448324601 * L_78 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_79 = ((bool)1); RuntimeObject * L_80 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_79); NullCheck(L_78); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_78, _stringLiteral2678089644, L_80); Hashtable_t448324601 * L_81 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_82 = ((bool)1); RuntimeObject * L_83 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_82); NullCheck(L_81); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_81, _stringLiteral2467366331, L_83); Hashtable_t448324601 * L_84 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_85 = ((bool)1); RuntimeObject * L_86 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_85); NullCheck(L_84); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_84, _stringLiteral2085779464, L_86); Hashtable_t448324601 * L_87 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_88 = ((bool)1); RuntimeObject * L_89 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_88); NullCheck(L_87); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_87, _stringLiteral113715573, L_89); Hashtable_t448324601 * L_90 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_91 = ((bool)1); RuntimeObject * L_92 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_91); NullCheck(L_90); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_90, _stringLiteral714402064, L_92); Hashtable_t448324601 * L_93 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_94 = ((bool)1); RuntimeObject * L_95 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_94); NullCheck(L_93); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_93, _stringLiteral84591582, L_95); Hashtable_t448324601 * L_96 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_97 = ((bool)1); RuntimeObject * L_98 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_97); NullCheck(L_96); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_96, _stringLiteral3842778059, L_98); Hashtable_t448324601 * L_99 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_100 = ((bool)1); RuntimeObject * L_101 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_100); NullCheck(L_99); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_99, _stringLiteral1694016236, L_101); Hashtable_t448324601 * L_102 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_103 = ((bool)1); RuntimeObject * L_104 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_103); NullCheck(L_102); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_102, _stringLiteral1313062740, L_104); Hashtable_t448324601 * L_105 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_106 = ((bool)1); RuntimeObject * L_107 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_106); NullCheck(L_105); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_105, _stringLiteral2497026984, L_107); Hashtable_t448324601 * L_108 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_109 = ((bool)1); RuntimeObject * L_110 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_109); NullCheck(L_108); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_108, _stringLiteral1623754138, L_110); Hashtable_t448324601 * L_111 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_112 = ((bool)1); RuntimeObject * L_113 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_112); NullCheck(L_111); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_111, _stringLiteral84257549, L_113); Hashtable_t448324601 * L_114 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_115 = ((bool)1); RuntimeObject * L_116 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_115); NullCheck(L_114); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_114, _stringLiteral2675151371, L_116); Hashtable_t448324601 * L_117 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_118 = ((bool)1); RuntimeObject * L_119 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_118); NullCheck(L_117); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_117, _stringLiteral2004130813, L_119); Hashtable_t448324601 * L_120 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_121 = ((bool)1); RuntimeObject * L_122 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_121); NullCheck(L_120); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_120, _stringLiteral2038848099, L_122); Hashtable_t448324601 * L_123 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_multiValue_13(); bool L_124 = ((bool)1); RuntimeObject * L_125 = Box(Boolean_t3448040118_il2cpp_TypeInfo_var, &L_124); NullCheck(L_123); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_123, _stringLiteral2663766586, L_125); return; } } // System.Void System.Net.WebHeaderCollection::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void WebHeaderCollection_System_Runtime_Serialization_ISerializable_GetObjectData_m2536080020 (WebHeaderCollection_t3555365273 * __this, SerializationInfo_t2260044969 * ___serializationInfo0, StreamingContext_t3610716448 ___streamingContext1, const RuntimeMethod* method) { { SerializationInfo_t2260044969 * L_0 = ___serializationInfo0; StreamingContext_t3610716448 L_1 = ___streamingContext1; VirtActionInvoker2< SerializationInfo_t2260044969 *, StreamingContext_t3610716448 >::Invoke(13 /* System.Void System.Net.WebHeaderCollection::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, __this, L_0, L_1); return; } } // System.Void System.Net.WebHeaderCollection::Add(System.String,System.String) extern "C" void WebHeaderCollection_Add_m1118486195 (WebHeaderCollection_t3555365273 * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebHeaderCollection_Add_m1118486195_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___name0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral1001768650, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { bool L_2 = __this->get_internallyCreated_15(); if (!L_2) { goto IL_0032; } } { String_t* L_3 = ___name0; IL2CPP_RUNTIME_CLASS_INIT(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var); bool L_4 = WebHeaderCollection_IsRestricted_m1165393757(NULL /*static, unused*/, L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_0032; } } { ArgumentException_t1946723077 * L_5 = (ArgumentException_t1946723077 *)il2cpp_codegen_object_new(ArgumentException_t1946723077_il2cpp_TypeInfo_var); ArgumentException__ctor_m509860574(L_5, _stringLiteral374482117, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5); } IL_0032: { String_t* L_6 = ___name0; String_t* L_7 = ___value1; WebHeaderCollection_AddWithoutValidate_m391413266(__this, L_6, L_7, /*hidden argument*/NULL); return; } } // System.Void System.Net.WebHeaderCollection::AddWithoutValidate(System.String,System.String) extern "C" void WebHeaderCollection_AddWithoutValidate_m391413266 (WebHeaderCollection_t3555365273 * __this, String_t* ___headerName0, String_t* ___headerValue1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebHeaderCollection_AddWithoutValidate_m391413266_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___headerName0; IL2CPP_RUNTIME_CLASS_INIT(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var); bool L_1 = WebHeaderCollection_IsHeaderName_m2786743463(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); if (L_1) { goto IL_0021; } } { String_t* L_2 = ___headerName0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_3 = String_Concat_m3881611230(NULL /*static, unused*/, _stringLiteral2265282234, L_2, /*hidden argument*/NULL); ArgumentException_t1946723077 * L_4 = (ArgumentException_t1946723077 *)il2cpp_codegen_object_new(ArgumentException_t1946723077_il2cpp_TypeInfo_var); ArgumentException__ctor_m2999873659(L_4, L_3, _stringLiteral2292233094, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_0021: { String_t* L_5 = ___headerValue1; if (L_5) { goto IL_0033; } } { IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_6 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); ___headerValue1 = L_6; goto IL_003b; } IL_0033: { String_t* L_7 = ___headerValue1; NullCheck(L_7); String_t* L_8 = String_Trim_m17949824(L_7, /*hidden argument*/NULL); ___headerValue1 = L_8; } IL_003b: { String_t* L_9 = ___headerValue1; IL2CPP_RUNTIME_CLASS_INIT(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var); bool L_10 = WebHeaderCollection_IsHeaderValue_m1310012786(NULL /*static, unused*/, L_9, /*hidden argument*/NULL); if (L_10) { goto IL_005c; } } { String_t* L_11 = ___headerValue1; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_12 = String_Concat_m3881611230(NULL /*static, unused*/, _stringLiteral940965989, L_11, /*hidden argument*/NULL); ArgumentException_t1946723077 * L_13 = (ArgumentException_t1946723077 *)il2cpp_codegen_object_new(ArgumentException_t1946723077_il2cpp_TypeInfo_var); ArgumentException__ctor_m2999873659(L_13, L_12, _stringLiteral1646368410, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13); } IL_005c: { String_t* L_14 = ___headerName0; String_t* L_15 = ___headerValue1; NameValueCollection_Add_m1455414060(__this, L_14, L_15, /*hidden argument*/NULL); return; } } // System.Boolean System.Net.WebHeaderCollection::IsRestricted(System.String) extern "C" bool WebHeaderCollection_IsRestricted_m1165393757 (RuntimeObject * __this /* static, unused */, String_t* ___headerName0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebHeaderCollection_IsRestricted_m1165393757_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___headerName0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral2292233094, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { String_t* L_2 = ___headerName0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); bool L_4 = String_op_Equality_m3571002539(NULL /*static, unused*/, L_2, L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_0031; } } { ArgumentException_t1946723077 * L_5 = (ArgumentException_t1946723077 *)il2cpp_codegen_object_new(ArgumentException_t1946723077_il2cpp_TypeInfo_var); ArgumentException__ctor_m2999873659(L_5, _stringLiteral1427728537, _stringLiteral2292233094, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5); } IL_0031: { String_t* L_6 = ___headerName0; IL2CPP_RUNTIME_CLASS_INIT(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var); bool L_7 = WebHeaderCollection_IsHeaderName_m2786743463(NULL /*static, unused*/, L_6, /*hidden argument*/NULL); if (L_7) { goto IL_0047; } } { ArgumentException_t1946723077 * L_8 = (ArgumentException_t1946723077 *)il2cpp_codegen_object_new(ArgumentException_t1946723077_il2cpp_TypeInfo_var); ArgumentException__ctor_m509860574(L_8, _stringLiteral2674015978, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8); } IL_0047: { IL2CPP_RUNTIME_CLASS_INIT(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var); Hashtable_t448324601 * L_9 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_restricted_12(); String_t* L_10 = ___headerName0; NullCheck(L_9); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(38 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_9, L_10); return L_11; } } // System.Void System.Net.WebHeaderCollection::OnDeserialization(System.Object) extern "C" void WebHeaderCollection_OnDeserialization_m2877455483 (WebHeaderCollection_t3555365273 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { { return; } } // System.String System.Net.WebHeaderCollection::ToString() extern "C" String_t* WebHeaderCollection_ToString_m4044152304 (WebHeaderCollection_t3555365273 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebHeaderCollection_ToString_m4044152304_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringBuilder_t1723565765 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; { StringBuilder_t1723565765 * L_0 = (StringBuilder_t1723565765 *)il2cpp_codegen_object_new(StringBuilder_t1723565765_il2cpp_TypeInfo_var); StringBuilder__ctor_m3807124734(L_0, /*hidden argument*/NULL); V_0 = L_0; int32_t L_1 = NameObjectCollectionBase_get_Count_m1082627926(__this, /*hidden argument*/NULL); V_1 = L_1; V_2 = 0; goto IL_0046; } IL_0014: { StringBuilder_t1723565765 * L_2 = V_0; int32_t L_3 = V_2; String_t* L_4 = VirtFuncInvoker1< String_t*, int32_t >::Invoke(18 /* System.String System.Net.WebHeaderCollection::GetKey(System.Int32) */, __this, L_3); NullCheck(L_2); StringBuilder_t1723565765 * L_5 = StringBuilder_Append_m2808439928(L_2, L_4, /*hidden argument*/NULL); NullCheck(L_5); StringBuilder_t1723565765 * L_6 = StringBuilder_Append_m2808439928(L_5, _stringLiteral801661202, /*hidden argument*/NULL); int32_t L_7 = V_2; String_t* L_8 = VirtFuncInvoker1< String_t*, int32_t >::Invoke(17 /* System.String System.Net.WebHeaderCollection::Get(System.Int32) */, __this, L_7); NullCheck(L_6); StringBuilder_t1723565765 * L_9 = StringBuilder_Append_m2808439928(L_6, L_8, /*hidden argument*/NULL); NullCheck(L_9); StringBuilder_Append_m2808439928(L_9, _stringLiteral3288804172, /*hidden argument*/NULL); int32_t L_10 = V_2; V_2 = ((int32_t)((int32_t)L_10+(int32_t)1)); } IL_0046: { int32_t L_11 = V_2; int32_t L_12 = V_1; if ((((int32_t)L_11) < ((int32_t)L_12))) { goto IL_0014; } } { StringBuilder_t1723565765 * L_13 = V_0; NullCheck(L_13); StringBuilder_t1723565765 * L_14 = StringBuilder_Append_m2808439928(L_13, _stringLiteral3288804172, /*hidden argument*/NULL); NullCheck(L_14); String_t* L_15 = StringBuilder_ToString_m4017876341(L_14, /*hidden argument*/NULL); return L_15; } } // System.Void System.Net.WebHeaderCollection::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void WebHeaderCollection_GetObjectData_m1477692677 (WebHeaderCollection_t3555365273 * __this, SerializationInfo_t2260044969 * ___serializationInfo0, StreamingContext_t3610716448 ___streamingContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebHeaderCollection_GetObjectData_m1477692677_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { int32_t L_0 = NameObjectCollectionBase_get_Count_m1082627926(__this, /*hidden argument*/NULL); V_0 = L_0; SerializationInfo_t2260044969 * L_1 = ___serializationInfo0; int32_t L_2 = V_0; NullCheck(L_1); SerializationInfo_AddValue_m2171140450(L_1, _stringLiteral1911533953, L_2, /*hidden argument*/NULL); V_1 = 0; goto IL_004a; } IL_001a: { SerializationInfo_t2260044969 * L_3 = ___serializationInfo0; String_t* L_4 = Int32_ToString_m2394199081((&V_1), /*hidden argument*/NULL); int32_t L_5 = V_1; String_t* L_6 = VirtFuncInvoker1< String_t*, int32_t >::Invoke(18 /* System.String System.Net.WebHeaderCollection::GetKey(System.Int32) */, __this, L_5); NullCheck(L_3); SerializationInfo_AddValue_m3743344052(L_3, L_4, L_6, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_7 = ___serializationInfo0; int32_t L_8 = V_0; int32_t L_9 = V_1; V_2 = ((int32_t)((int32_t)L_8+(int32_t)L_9)); String_t* L_10 = Int32_ToString_m2394199081((&V_2), /*hidden argument*/NULL); int32_t L_11 = V_1; String_t* L_12 = VirtFuncInvoker1< String_t*, int32_t >::Invoke(17 /* System.String System.Net.WebHeaderCollection::Get(System.Int32) */, __this, L_11); NullCheck(L_7); SerializationInfo_AddValue_m3743344052(L_7, L_10, L_12, /*hidden argument*/NULL); int32_t L_13 = V_1; V_1 = ((int32_t)((int32_t)L_13+(int32_t)1)); } IL_004a: { int32_t L_14 = V_1; int32_t L_15 = V_0; if ((((int32_t)L_14) < ((int32_t)L_15))) { goto IL_001a; } } { return; } } // System.Int32 System.Net.WebHeaderCollection::get_Count() extern "C" int32_t WebHeaderCollection_get_Count_m2022340970 (WebHeaderCollection_t3555365273 * __this, const RuntimeMethod* method) { { int32_t L_0 = NameObjectCollectionBase_get_Count_m1082627926(__this, /*hidden argument*/NULL); return L_0; } } // System.Collections.Specialized.NameObjectCollectionBase/KeysCollection System.Net.WebHeaderCollection::get_Keys() extern "C" KeysCollection_t4017748511 * WebHeaderCollection_get_Keys_m455535377 (WebHeaderCollection_t3555365273 * __this, const RuntimeMethod* method) { { KeysCollection_t4017748511 * L_0 = NameObjectCollectionBase_get_Keys_m3830472704(__this, /*hidden argument*/NULL); return L_0; } } // System.String System.Net.WebHeaderCollection::Get(System.Int32) extern "C" String_t* WebHeaderCollection_Get_m1585445798 (WebHeaderCollection_t3555365273 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; String_t* L_1 = NameValueCollection_Get_m1680895466(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.String System.Net.WebHeaderCollection::GetKey(System.Int32) extern "C" String_t* WebHeaderCollection_GetKey_m2963660806 (WebHeaderCollection_t3555365273 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; String_t* L_1 = NameValueCollection_GetKey_m975685328(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Collections.IEnumerator System.Net.WebHeaderCollection::GetEnumerator() extern "C" RuntimeObject* WebHeaderCollection_GetEnumerator_m1073272476 (WebHeaderCollection_t3555365273 * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = NameObjectCollectionBase_GetEnumerator_m2065869120(__this, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.Net.WebHeaderCollection::IsHeaderValue(System.String) extern "C" bool WebHeaderCollection_IsHeaderValue_m1310012786 (RuntimeObject * __this /* static, unused */, String_t* ___value0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; Il2CppChar V_2 = 0x0; { String_t* L_0 = ___value0; NullCheck(L_0); int32_t L_1 = String_get_Length_m2584136399(L_0, /*hidden argument*/NULL); V_0 = L_1; V_1 = 0; goto IL_0073; } IL_000e: { String_t* L_2 = ___value0; int32_t L_3 = V_1; NullCheck(L_2); Il2CppChar L_4 = String_get_Chars_m1760567447(L_2, L_3, /*hidden argument*/NULL); V_2 = L_4; Il2CppChar L_5 = V_2; if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)127))))) { goto IL_0020; } } { return (bool)0; } IL_0020: { Il2CppChar L_6 = V_2; if ((((int32_t)L_6) >= ((int32_t)((int32_t)32)))) { goto IL_0042; } } { Il2CppChar L_7 = V_2; if ((((int32_t)L_7) == ((int32_t)((int32_t)13)))) { goto IL_0042; } } { Il2CppChar L_8 = V_2; if ((((int32_t)L_8) == ((int32_t)((int32_t)10)))) { goto IL_0042; } } { Il2CppChar L_9 = V_2; if ((((int32_t)L_9) == ((int32_t)((int32_t)9)))) { goto IL_0042; } } { return (bool)0; } IL_0042: { Il2CppChar L_10 = V_2; if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)10))))) { goto IL_006f; } } { int32_t L_11 = V_1; int32_t L_12 = ((int32_t)((int32_t)L_11+(int32_t)1)); V_1 = L_12; int32_t L_13 = V_0; if ((((int32_t)L_12) >= ((int32_t)L_13))) { goto IL_006f; } } { String_t* L_14 = ___value0; int32_t L_15 = V_1; NullCheck(L_14); Il2CppChar L_16 = String_get_Chars_m1760567447(L_14, L_15, /*hidden argument*/NULL); V_2 = L_16; Il2CppChar L_17 = V_2; if ((((int32_t)L_17) == ((int32_t)((int32_t)32)))) { goto IL_006f; } } { Il2CppChar L_18 = V_2; if ((((int32_t)L_18) == ((int32_t)((int32_t)9)))) { goto IL_006f; } } { return (bool)0; } IL_006f: { int32_t L_19 = V_1; V_1 = ((int32_t)((int32_t)L_19+(int32_t)1)); } IL_0073: { int32_t L_20 = V_1; int32_t L_21 = V_0; if ((((int32_t)L_20) < ((int32_t)L_21))) { goto IL_000e; } } { return (bool)1; } } // System.Boolean System.Net.WebHeaderCollection::IsHeaderName(System.String) extern "C" bool WebHeaderCollection_IsHeaderName_m2786743463 (RuntimeObject * __this /* static, unused */, String_t* ___name0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebHeaderCollection_IsHeaderName_m2786743463_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Il2CppChar V_2 = 0x0; { String_t* L_0 = ___name0; if (!L_0) { goto IL_0011; } } { String_t* L_1 = ___name0; NullCheck(L_1); int32_t L_2 = String_get_Length_m2584136399(L_1, /*hidden argument*/NULL); if (L_2) { goto IL_0013; } } IL_0011: { return (bool)0; } IL_0013: { String_t* L_3 = ___name0; NullCheck(L_3); int32_t L_4 = String_get_Length_m2584136399(L_3, /*hidden argument*/NULL); V_0 = L_4; V_1 = 0; goto IL_0043; } IL_0021: { String_t* L_5 = ___name0; int32_t L_6 = V_1; NullCheck(L_5); Il2CppChar L_7 = String_get_Chars_m1760567447(L_5, L_6, /*hidden argument*/NULL); V_2 = L_7; Il2CppChar L_8 = V_2; if ((((int32_t)L_8) > ((int32_t)((int32_t)126)))) { goto IL_003d; } } { IL2CPP_RUNTIME_CLASS_INIT(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var); BooleanU5BU5D_t184022451* L_9 = ((WebHeaderCollection_t3555365273_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_t3555365273_il2cpp_TypeInfo_var))->get_allowed_chars_16(); Il2CppChar L_10 = V_2; NullCheck(L_9); Il2CppChar L_11 = L_10; uint8_t L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11)); if (L_12) { goto IL_003f; } } IL_003d: { return (bool)0; } IL_003f: { int32_t L_13 = V_1; V_1 = ((int32_t)((int32_t)L_13+(int32_t)1)); } IL_0043: { int32_t L_14 = V_1; int32_t L_15 = V_0; if ((((int32_t)L_14) < ((int32_t)L_15))) { goto IL_0021; } } { return (bool)1; } } // System.Void System.Net.WebProxy::.ctor() extern "C" void WebProxy__ctor_m1609992258 (WebProxy_t234734190 * __this, const RuntimeMethod* method) { { WebProxy__ctor_m3644851391(__this, (Uri_t3882940875 *)NULL, (bool)0, (StringU5BU5D_t1187188029*)(StringU5BU5D_t1187188029*)NULL, (RuntimeObject*)NULL, /*hidden argument*/NULL); return; } } // System.Void System.Net.WebProxy::.ctor(System.Uri,System.Boolean,System.String[],System.Net.ICredentials) extern "C" void WebProxy__ctor_m3644851391 (WebProxy_t234734190 * __this, Uri_t3882940875 * ___address0, bool ___bypassOnLocal1, StringU5BU5D_t1187188029* ___bypassList2, RuntimeObject* ___credentials3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebProxy__ctor_m3644851391_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); Uri_t3882940875 * L_0 = ___address0; __this->set_address_0(L_0); bool L_1 = ___bypassOnLocal1; __this->set_bypassOnLocal_1(L_1); StringU5BU5D_t1187188029* L_2 = ___bypassList2; if (!L_2) { goto IL_0026; } } { StringU5BU5D_t1187188029* L_3 = ___bypassList2; ArrayList_t4277734320 * L_4 = (ArrayList_t4277734320 *)il2cpp_codegen_object_new(ArrayList_t4277734320_il2cpp_TypeInfo_var); ArrayList__ctor_m2443836621(L_4, (RuntimeObject*)(RuntimeObject*)L_3, /*hidden argument*/NULL); __this->set_bypassList_2(L_4); } IL_0026: { RuntimeObject* L_5 = ___credentials3; __this->set_credentials_3(L_5); WebProxy_CheckBypassList_m1544871404(__this, /*hidden argument*/NULL); return; } } // System.Void System.Net.WebProxy::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void WebProxy__ctor_m1973135428 (WebProxy_t234734190 * __this, SerializationInfo_t2260044969 * ___serializationInfo0, StreamingContext_t3610716448 ___streamingContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebProxy__ctor_m1973135428_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_0 = ___serializationInfo0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(Uri_t3882940875_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_0); RuntimeObject * L_2 = SerializationInfo_GetValue_m376336523(L_0, _stringLiteral2175735794, L_1, /*hidden argument*/NULL); __this->set_address_0(((Uri_t3882940875 *)CastclassClass((RuntimeObject*)L_2, Uri_t3882940875_il2cpp_TypeInfo_var))); SerializationInfo_t2260044969 * L_3 = ___serializationInfo0; NullCheck(L_3); bool L_4 = SerializationInfo_GetBoolean_m706624525(L_3, _stringLiteral3498360290, /*hidden argument*/NULL); __this->set_bypassOnLocal_1(L_4); SerializationInfo_t2260044969 * L_5 = ___serializationInfo0; Type_t * L_6 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(ArrayList_t4277734320_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_5); RuntimeObject * L_7 = SerializationInfo_GetValue_m376336523(L_5, _stringLiteral527848162, L_6, /*hidden argument*/NULL); __this->set_bypassList_2(((ArrayList_t4277734320 *)CastclassClass((RuntimeObject*)L_7, ArrayList_t4277734320_il2cpp_TypeInfo_var))); SerializationInfo_t2260044969 * L_8 = ___serializationInfo0; NullCheck(L_8); bool L_9 = SerializationInfo_GetBoolean_m706624525(L_8, _stringLiteral693576673, /*hidden argument*/NULL); __this->set_useDefaultCredentials_4(L_9); __this->set_credentials_3((RuntimeObject*)NULL); WebProxy_CheckBypassList_m1544871404(__this, /*hidden argument*/NULL); return; } } // System.Void System.Net.WebProxy::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void WebProxy_System_Runtime_Serialization_ISerializable_GetObjectData_m1684095516 (WebProxy_t234734190 * __this, SerializationInfo_t2260044969 * ___serializationInfo0, StreamingContext_t3610716448 ___streamingContext1, const RuntimeMethod* method) { { SerializationInfo_t2260044969 * L_0 = ___serializationInfo0; StreamingContext_t3610716448 L_1 = ___streamingContext1; VirtActionInvoker2< SerializationInfo_t2260044969 *, StreamingContext_t3610716448 >::Invoke(7 /* System.Void System.Net.WebProxy::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, __this, L_0, L_1); return; } } // System.Boolean System.Net.WebProxy::get_UseDefaultCredentials() extern "C" bool WebProxy_get_UseDefaultCredentials_m3070668334 (WebProxy_t234734190 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_useDefaultCredentials_4(); return L_0; } } // System.Uri System.Net.WebProxy::GetProxy(System.Uri) extern "C" Uri_t3882940875 * WebProxy_GetProxy_m808424704 (WebProxy_t234734190 * __this, Uri_t3882940875 * ___destination0, const RuntimeMethod* method) { { Uri_t3882940875 * L_0 = ___destination0; bool L_1 = WebProxy_IsBypassed_m367914737(__this, L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_000e; } } { Uri_t3882940875 * L_2 = ___destination0; return L_2; } IL_000e: { Uri_t3882940875 * L_3 = __this->get_address_0(); return L_3; } } // System.Boolean System.Net.WebProxy::IsBypassed(System.Uri) extern "C" bool WebProxy_IsBypassed_m367914737 (WebProxy_t234734190 * __this, Uri_t3882940875 * ___host0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebProxy_IsBypassed_m367914737_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; IPAddress_t2830710878 * V_1 = NULL; String_t* V_2 = NULL; int32_t V_3 = 0; Regex_t2405265571 * V_4 = NULL; bool V_5 = false; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { Uri_t3882940875 * L_0 = ___host0; IL2CPP_RUNTIME_CLASS_INIT(Uri_t3882940875_il2cpp_TypeInfo_var); bool L_1 = Uri_op_Equality_m2318555073(NULL /*static, unused*/, L_0, (Uri_t3882940875 *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0017; } } { ArgumentNullException_t873386607 * L_2 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_2, _stringLiteral1109505646, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_0017: { Uri_t3882940875 * L_3 = ___host0; NullCheck(L_3); bool L_4 = Uri_get_IsLoopback_m2572783566(L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_002f; } } { bool L_5 = __this->get_bypassOnLocal_1(); if (!L_5) { goto IL_002f; } } { return (bool)1; } IL_002f: { Uri_t3882940875 * L_6 = __this->get_address_0(); IL2CPP_RUNTIME_CLASS_INIT(Uri_t3882940875_il2cpp_TypeInfo_var); bool L_7 = Uri_op_Equality_m2318555073(NULL /*static, unused*/, L_6, (Uri_t3882940875 *)NULL, /*hidden argument*/NULL); if (!L_7) { goto IL_0042; } } { return (bool)1; } IL_0042: { Uri_t3882940875 * L_8 = ___host0; NullCheck(L_8); String_t* L_9 = Uri_get_Host_m4264362232(L_8, /*hidden argument*/NULL); V_0 = L_9; bool L_10 = __this->get_bypassOnLocal_1(); if (!L_10) { goto IL_0064; } } { String_t* L_11 = V_0; NullCheck(L_11); int32_t L_12 = String_IndexOf_m3163027715(L_11, ((int32_t)46), /*hidden argument*/NULL); if ((!(((uint32_t)L_12) == ((uint32_t)(-1))))) { goto IL_0064; } } { return (bool)1; } IL_0064: { bool L_13 = __this->get_bypassOnLocal_1(); if (L_13) { goto IL_00bb; } } { String_t* L_14 = V_0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t270095993_il2cpp_TypeInfo_var); CultureInfo_t270095993 * L_15 = CultureInfo_get_InvariantCulture_m307173330(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); int32_t L_16 = String_Compare_m1677189168(NULL /*static, unused*/, L_14, _stringLiteral3126353954, (bool)1, L_15, /*hidden argument*/NULL); if (L_16) { goto IL_0087; } } { return (bool)1; } IL_0087: { String_t* L_17 = V_0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t270095993_il2cpp_TypeInfo_var); CultureInfo_t270095993 * L_18 = CultureInfo_get_InvariantCulture_m307173330(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); int32_t L_19 = String_Compare_m1677189168(NULL /*static, unused*/, L_17, _stringLiteral115919490, (bool)1, L_18, /*hidden argument*/NULL); if (L_19) { goto IL_009f; } } { return (bool)1; } IL_009f: { V_1 = (IPAddress_t2830710878 *)NULL; String_t* L_20 = V_0; IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); bool L_21 = IPAddress_TryParse_m442898607(NULL /*static, unused*/, L_20, (&V_1), /*hidden argument*/NULL); if (!L_21) { goto IL_00bb; } } { IPAddress_t2830710878 * L_22 = V_1; IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2830710878_il2cpp_TypeInfo_var); bool L_23 = IPAddress_IsLoopback_m1557316953(NULL /*static, unused*/, L_22, /*hidden argument*/NULL); if (!L_23) { goto IL_00bb; } } { return (bool)1; } IL_00bb: { ArrayList_t4277734320 * L_24 = __this->get_bypassList_2(); if (!L_24) { goto IL_00d6; } } { ArrayList_t4277734320 * L_25 = __this->get_bypassList_2(); NullCheck(L_25); int32_t L_26 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_25); if (L_26) { goto IL_00d8; } } IL_00d6: { return (bool)0; } IL_00d8: try { // begin try (depth: 1) { Uri_t3882940875 * L_27 = ___host0; NullCheck(L_27); String_t* L_28 = Uri_get_Scheme_m681902525(L_27, /*hidden argument*/NULL); Uri_t3882940875 * L_29 = ___host0; NullCheck(L_29); String_t* L_30 = Uri_get_Authority_m1702279103(L_29, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_31 = String_Concat_m1351243557(NULL /*static, unused*/, L_28, _stringLiteral3654256111, L_30, /*hidden argument*/NULL); V_2 = L_31; V_3 = 0; goto IL_0126; } IL_00f6: { ArrayList_t4277734320 * L_32 = __this->get_bypassList_2(); int32_t L_33 = V_3; NullCheck(L_32); RuntimeObject * L_34 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_32, L_33); Regex_t2405265571 * L_35 = (Regex_t2405265571 *)il2cpp_codegen_object_new(Regex_t2405265571_il2cpp_TypeInfo_var); Regex__ctor_m1710886513(L_35, ((String_t*)CastclassSealed((RuntimeObject*)L_34, String_t_il2cpp_TypeInfo_var)), ((int32_t)17), /*hidden argument*/NULL); V_4 = L_35; Regex_t2405265571 * L_36 = V_4; String_t* L_37 = V_2; NullCheck(L_36); bool L_38 = Regex_IsMatch_m651348755(L_36, L_37, /*hidden argument*/NULL); if (!L_38) { goto IL_0122; } } IL_011d: { goto IL_0137; } IL_0122: { int32_t L_39 = V_3; V_3 = ((int32_t)((int32_t)L_39+(int32_t)1)); } IL_0126: { int32_t L_40 = V_3; ArrayList_t4277734320 * L_41 = __this->get_bypassList_2(); NullCheck(L_41); int32_t L_42 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_41); if ((((int32_t)L_40) < ((int32_t)L_42))) { goto IL_00f6; } } IL_0137: { int32_t L_43 = V_3; ArrayList_t4277734320 * L_44 = __this->get_bypassList_2(); NullCheck(L_44); int32_t L_45 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_44); if ((!(((uint32_t)L_43) == ((uint32_t)L_45)))) { goto IL_0150; } } IL_0148: { V_5 = (bool)0; goto IL_019c; } IL_0150: { goto IL_0170; } IL_0155: { ArrayList_t4277734320 * L_46 = __this->get_bypassList_2(); int32_t L_47 = V_3; NullCheck(L_46); RuntimeObject * L_48 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_46, L_47); Regex_t2405265571 * L_49 = (Regex_t2405265571 *)il2cpp_codegen_object_new(Regex_t2405265571_il2cpp_TypeInfo_var); Regex__ctor_m2000001007(L_49, ((String_t*)CastclassSealed((RuntimeObject*)L_48, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); int32_t L_50 = V_3; V_3 = ((int32_t)((int32_t)L_50+(int32_t)1)); } IL_0170: { int32_t L_51 = V_3; ArrayList_t4277734320 * L_52 = __this->get_bypassList_2(); NullCheck(L_52); int32_t L_53 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_52); if ((((int32_t)L_51) < ((int32_t)L_53))) { goto IL_0155; } } IL_0181: { V_5 = (bool)1; goto IL_019c; } IL_0189: { ; // IL_0189: leave IL_019c } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t2428370182 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArgumentException_t1946723077_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_018e; throw e; } CATCH_018e: { // begin catch(System.ArgumentException) { V_5 = (bool)0; goto IL_019c; } IL_0197: { ; // IL_0197: leave IL_019c } } // end catch (depth: 1) IL_019c: { bool L_54 = V_5; return L_54; } } // System.Void System.Net.WebProxy::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void WebProxy_GetObjectData_m4174783663 (WebProxy_t234734190 * __this, SerializationInfo_t2260044969 * ___serializationInfo0, StreamingContext_t3610716448 ___streamingContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebProxy_GetObjectData_m4174783663_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SerializationInfo_t2260044969 * L_0 = ___serializationInfo0; bool L_1 = __this->get_bypassOnLocal_1(); NullCheck(L_0); SerializationInfo_AddValue_m3100423471(L_0, _stringLiteral3498360290, L_1, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_2 = ___serializationInfo0; Uri_t3882940875 * L_3 = __this->get_address_0(); NullCheck(L_2); SerializationInfo_AddValue_m3743344052(L_2, _stringLiteral2175735794, L_3, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_4 = ___serializationInfo0; ArrayList_t4277734320 * L_5 = __this->get_bypassList_2(); NullCheck(L_4); SerializationInfo_AddValue_m3743344052(L_4, _stringLiteral527848162, L_5, /*hidden argument*/NULL); SerializationInfo_t2260044969 * L_6 = ___serializationInfo0; bool L_7 = WebProxy_get_UseDefaultCredentials_m3070668334(__this, /*hidden argument*/NULL); NullCheck(L_6); SerializationInfo_AddValue_m3100423471(L_6, _stringLiteral693576673, L_7, /*hidden argument*/NULL); return; } } // System.Void System.Net.WebProxy::CheckBypassList() extern "C" void WebProxy_CheckBypassList_m1544871404 (WebProxy_t234734190 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebProxy_CheckBypassList_m1544871404_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { ArrayList_t4277734320 * L_0 = __this->get_bypassList_2(); if (L_0) { goto IL_000c; } } { return; } IL_000c: { V_0 = 0; goto IL_002e; } IL_0013: { ArrayList_t4277734320 * L_1 = __this->get_bypassList_2(); int32_t L_2 = V_0; NullCheck(L_1); RuntimeObject * L_3 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_1, L_2); Regex_t2405265571 * L_4 = (Regex_t2405265571 *)il2cpp_codegen_object_new(Regex_t2405265571_il2cpp_TypeInfo_var); Regex__ctor_m2000001007(L_4, ((String_t*)CastclassSealed((RuntimeObject*)L_3, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); int32_t L_5 = V_0; V_0 = ((int32_t)((int32_t)L_5+(int32_t)1)); } IL_002e: { int32_t L_6 = V_0; ArrayList_t4277734320 * L_7 = __this->get_bypassList_2(); NullCheck(L_7); int32_t L_8 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_7); if ((((int32_t)L_6) < ((int32_t)L_8))) { goto IL_0013; } } { return; } } // System.Void System.Net.WebRequest::.ctor() extern "C" void WebRequest__ctor_m1143597694 (WebRequest_t294146427 * __this, const RuntimeMethod* method) { { __this->set_authentication_level_4(1); MarshalByRefObject__ctor_m3192187787(__this, /*hidden argument*/NULL); return; } } // System.Void System.Net.WebRequest::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void WebRequest__ctor_m2082721084 (WebRequest_t294146427 * __this, SerializationInfo_t2260044969 * ___serializationInfo0, StreamingContext_t3610716448 ___streamingContext1, const RuntimeMethod* method) { { __this->set_authentication_level_4(1); MarshalByRefObject__ctor_m3192187787(__this, /*hidden argument*/NULL); return; } } // System.Void System.Net.WebRequest::.cctor() extern "C" void WebRequest__cctor_m3941683786 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebRequest__cctor_m3941683786_MetadataUsageId); s_Il2CppMethodInitialized = true; } { HybridDictionary_t979529962 * L_0 = (HybridDictionary_t979529962 *)il2cpp_codegen_object_new(HybridDictionary_t979529962_il2cpp_TypeInfo_var); HybridDictionary__ctor_m1509955104(L_0, /*hidden argument*/NULL); ((WebRequest_t294146427_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t294146427_il2cpp_TypeInfo_var))->set_prefixes_1(L_0); RuntimeObject * L_1 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m3115879119(L_1, /*hidden argument*/NULL); ((WebRequest_t294146427_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t294146427_il2cpp_TypeInfo_var))->set_lockobj_5(L_1); WebRequest_AddDynamicPrefix_m411026550(NULL /*static, unused*/, _stringLiteral1039860677, _stringLiteral655412027, /*hidden argument*/NULL); WebRequest_AddDynamicPrefix_m411026550(NULL /*static, unused*/, _stringLiteral2062134826, _stringLiteral655412027, /*hidden argument*/NULL); WebRequest_AddDynamicPrefix_m411026550(NULL /*static, unused*/, _stringLiteral2164328306, _stringLiteral1213298349, /*hidden argument*/NULL); WebRequest_AddDynamicPrefix_m411026550(NULL /*static, unused*/, _stringLiteral1199502068, _stringLiteral1648531443, /*hidden argument*/NULL); return; } } // System.Void System.Net.WebRequest::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void WebRequest_System_Runtime_Serialization_ISerializable_GetObjectData_m1853895338 (WebRequest_t294146427 * __this, SerializationInfo_t2260044969 * ___serializationInfo0, StreamingContext_t3610716448 ___streamingContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebRequest_System_Runtime_Serialization_ISerializable_GetObjectData_m1853895338_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t2060369835 * L_0 = (NotSupportedException_t2060369835 *)il2cpp_codegen_object_new(NotSupportedException_t2060369835_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2970087223(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Net.WebRequest::AddDynamicPrefix(System.String,System.String) extern "C" void WebRequest_AddDynamicPrefix_m411026550 (RuntimeObject * __this /* static, unused */, String_t* ___protocol0, String_t* ___implementor1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebRequest_AddDynamicPrefix_m411026550_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m2715795878(NULL /*static, unused*/, LoadTypeToken(WebRequest_t294146427_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_0); Assembly_t2742862503 * L_1 = VirtFuncInvoker0< Assembly_t2742862503 * >::Invoke(14 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_0); String_t* L_2 = ___implementor1; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_3 = String_Concat_m3881611230(NULL /*static, unused*/, _stringLiteral758059268, L_2, /*hidden argument*/NULL); NullCheck(L_1); Type_t * L_4 = VirtFuncInvoker1< Type_t *, String_t* >::Invoke(14 /* System.Type System.Reflection.Assembly::GetType(System.String) */, L_1, L_3); V_0 = L_4; Type_t * L_5 = V_0; if (L_5) { goto IL_0027; } } { return; } IL_0027: { String_t* L_6 = ___protocol0; Type_t * L_7 = V_0; IL2CPP_RUNTIME_CLASS_INIT(WebRequest_t294146427_il2cpp_TypeInfo_var); WebRequest_AddPrefix_m1190702954(NULL /*static, unused*/, L_6, L_7, /*hidden argument*/NULL); return; } } // System.Exception System.Net.WebRequest::GetMustImplement() extern "C" Exception_t2428370182 * WebRequest_GetMustImplement_m184024796 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebRequest_GetMustImplement_m184024796_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotImplementedException_t682134635 * L_0 = (NotImplementedException_t682134635 *)il2cpp_codegen_object_new(NotImplementedException_t682134635_il2cpp_TypeInfo_var); NotImplementedException__ctor_m272930463(L_0, _stringLiteral403918440, /*hidden argument*/NULL); return L_0; } } // System.Net.IWebProxy System.Net.WebRequest::get_DefaultWebProxy() extern "C" RuntimeObject* WebRequest_get_DefaultWebProxy_m1954888778 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebRequest_get_DefaultWebProxy_m1954888778_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { IL2CPP_RUNTIME_CLASS_INIT(WebRequest_t294146427_il2cpp_TypeInfo_var); bool L_0 = ((WebRequest_t294146427_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t294146427_il2cpp_TypeInfo_var))->get_isDefaultWebProxySet_2(); if (L_0) { goto IL_0036; } } { IL2CPP_RUNTIME_CLASS_INIT(WebRequest_t294146427_il2cpp_TypeInfo_var); RuntimeObject * L_1 = ((WebRequest_t294146427_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t294146427_il2cpp_TypeInfo_var))->get_lockobj_5(); V_0 = L_1; RuntimeObject * L_2 = V_0; Monitor_Enter_m1524383546(NULL /*static, unused*/, L_2, /*hidden argument*/NULL); } IL_0016: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(WebRequest_t294146427_il2cpp_TypeInfo_var); RuntimeObject* L_3 = ((WebRequest_t294146427_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t294146427_il2cpp_TypeInfo_var))->get_defaultWebProxy_3(); if (L_3) { goto IL_002a; } } IL_0020: { IL2CPP_RUNTIME_CLASS_INIT(WebRequest_t294146427_il2cpp_TypeInfo_var); RuntimeObject* L_4 = WebRequest_GetDefaultWebProxy_m215964591(NULL /*static, unused*/, /*hidden argument*/NULL); ((WebRequest_t294146427_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t294146427_il2cpp_TypeInfo_var))->set_defaultWebProxy_3(L_4); } IL_002a: { IL2CPP_LEAVE(0x36, FINALLY_002f); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t2428370182 *)e.ex; goto FINALLY_002f; } FINALLY_002f: { // begin finally (depth: 1) RuntimeObject * L_5 = V_0; Monitor_Exit_m69827708(NULL /*static, unused*/, L_5, /*hidden argument*/NULL); IL2CPP_END_FINALLY(47) } // end finally (depth: 1) IL2CPP_CLEANUP(47) { IL2CPP_JUMP_TBL(0x36, IL_0036) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t2428370182 *) } IL_0036: { IL2CPP_RUNTIME_CLASS_INIT(WebRequest_t294146427_il2cpp_TypeInfo_var); RuntimeObject* L_6 = ((WebRequest_t294146427_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t294146427_il2cpp_TypeInfo_var))->get_defaultWebProxy_3(); return L_6; } } // System.Net.IWebProxy System.Net.WebRequest::GetDefaultWebProxy() extern "C" RuntimeObject* WebRequest_GetDefaultWebProxy_m215964591 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { WebProxy_t234734190 * V_0 = NULL; { V_0 = (WebProxy_t234734190 *)NULL; WebProxy_t234734190 * L_0 = V_0; return L_0; } } // System.Void System.Net.WebRequest::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void WebRequest_GetObjectData_m1630121127 (WebRequest_t294146427 * __this, SerializationInfo_t2260044969 * ___serializationInfo0, StreamingContext_t3610716448 ___streamingContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebRequest_GetObjectData_m1630121127_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(WebRequest_t294146427_il2cpp_TypeInfo_var); Exception_t2428370182 * L_0 = WebRequest_GetMustImplement_m184024796(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Net.WebRequest::AddPrefix(System.String,System.Type) extern "C" void WebRequest_AddPrefix_m1190702954 (RuntimeObject * __this /* static, unused */, String_t* ___prefix0, Type_t * ___type1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebRequest_AddPrefix_m1190702954_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; { Type_t * L_0 = ___type1; RuntimeObject * L_1 = Activator_CreateInstance_m755441566(NULL /*static, unused*/, L_0, (bool)1, /*hidden argument*/NULL); V_0 = L_1; IL2CPP_RUNTIME_CLASS_INIT(WebRequest_t294146427_il2cpp_TypeInfo_var); HybridDictionary_t979529962 * L_2 = ((WebRequest_t294146427_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t294146427_il2cpp_TypeInfo_var))->get_prefixes_1(); String_t* L_3 = ___prefix0; RuntimeObject * L_4 = V_0; NullCheck(L_2); HybridDictionary_set_Item_m223444751(L_2, L_3, L_4, /*hidden argument*/NULL); return; } } // System.Void System.Security.Cryptography.AsnEncodedData::.ctor() extern "C" void AsnEncodedData__ctor_m1857111961 (AsnEncodedData_t2501174634 * __this, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); return; } } // System.Void System.Security.Cryptography.AsnEncodedData::.ctor(System.String,System.Byte[]) extern "C" void AsnEncodedData__ctor_m2493478101 (AsnEncodedData_t2501174634 * __this, String_t* ___oid0, ByteU5BU5D_t1709610627* ___rawData1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsnEncodedData__ctor_m2493478101_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); String_t* L_0 = ___oid0; Oid_t1416572164 * L_1 = (Oid_t1416572164 *)il2cpp_codegen_object_new(Oid_t1416572164_il2cpp_TypeInfo_var); Oid__ctor_m2480021574(L_1, L_0, /*hidden argument*/NULL); __this->set__oid_0(L_1); ByteU5BU5D_t1709610627* L_2 = ___rawData1; AsnEncodedData_set_RawData_m3736237913(__this, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Security.Cryptography.AsnEncodedData::.ctor(System.Security.Cryptography.Oid,System.Byte[]) extern "C" void AsnEncodedData__ctor_m1427542006 (AsnEncodedData_t2501174634 * __this, Oid_t1416572164 * ___oid0, ByteU5BU5D_t1709610627* ___rawData1, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); Oid_t1416572164 * L_0 = ___oid0; AsnEncodedData_set_Oid_m3720899968(__this, L_0, /*hidden argument*/NULL); ByteU5BU5D_t1709610627* L_1 = ___rawData1; AsnEncodedData_set_RawData_m3736237913(__this, L_1, /*hidden argument*/NULL); return; } } // System.Security.Cryptography.Oid System.Security.Cryptography.AsnEncodedData::get_Oid() extern "C" Oid_t1416572164 * AsnEncodedData_get_Oid_m3664917545 (AsnEncodedData_t2501174634 * __this, const RuntimeMethod* method) { { Oid_t1416572164 * L_0 = __this->get__oid_0(); return L_0; } } // System.Void System.Security.Cryptography.AsnEncodedData::set_Oid(System.Security.Cryptography.Oid) extern "C" void AsnEncodedData_set_Oid_m3720899968 (AsnEncodedData_t2501174634 * __this, Oid_t1416572164 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsnEncodedData_set_Oid_m3720899968_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Oid_t1416572164 * L_0 = ___value0; if (L_0) { goto IL_0012; } } { __this->set__oid_0((Oid_t1416572164 *)NULL); goto IL_001e; } IL_0012: { Oid_t1416572164 * L_1 = ___value0; Oid_t1416572164 * L_2 = (Oid_t1416572164 *)il2cpp_codegen_object_new(Oid_t1416572164_il2cpp_TypeInfo_var); Oid__ctor_m3313774207(L_2, L_1, /*hidden argument*/NULL); __this->set__oid_0(L_2); } IL_001e: { return; } } // System.Byte[] System.Security.Cryptography.AsnEncodedData::get_RawData() extern "C" ByteU5BU5D_t1709610627* AsnEncodedData_get_RawData_m342412803 (AsnEncodedData_t2501174634 * __this, const RuntimeMethod* method) { { ByteU5BU5D_t1709610627* L_0 = __this->get__raw_1(); return L_0; } } // System.Void System.Security.Cryptography.AsnEncodedData::set_RawData(System.Byte[]) extern "C" void AsnEncodedData_set_RawData_m3736237913 (AsnEncodedData_t2501174634 * __this, ByteU5BU5D_t1709610627* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsnEncodedData_set_RawData_m3736237913_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_t1709610627* L_0 = ___value0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral2143559327, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { ByteU5BU5D_t1709610627* L_2 = ___value0; NullCheck((RuntimeArray *)(RuntimeArray *)L_2); RuntimeObject * L_3 = Array_Clone_m3054328322((RuntimeArray *)(RuntimeArray *)L_2, /*hidden argument*/NULL); __this->set__raw_1(((ByteU5BU5D_t1709610627*)Castclass((RuntimeObject*)L_3, ByteU5BU5D_t1709610627_il2cpp_TypeInfo_var))); return; } } // System.Void System.Security.Cryptography.AsnEncodedData::CopyFrom(System.Security.Cryptography.AsnEncodedData) extern "C" void AsnEncodedData_CopyFrom_m2874826303 (AsnEncodedData_t2501174634 * __this, AsnEncodedData_t2501174634 * ___asnEncodedData0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsnEncodedData_CopyFrom_m2874826303_MetadataUsageId); s_Il2CppMethodInitialized = true; } { AsnEncodedData_t2501174634 * L_0 = ___asnEncodedData0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral3899878418, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { AsnEncodedData_t2501174634 * L_2 = ___asnEncodedData0; NullCheck(L_2); Oid_t1416572164 * L_3 = L_2->get__oid_0(); if (L_3) { goto IL_0028; } } { AsnEncodedData_set_Oid_m3720899968(__this, (Oid_t1416572164 *)NULL, /*hidden argument*/NULL); goto IL_0039; } IL_0028: { AsnEncodedData_t2501174634 * L_4 = ___asnEncodedData0; NullCheck(L_4); Oid_t1416572164 * L_5 = L_4->get__oid_0(); Oid_t1416572164 * L_6 = (Oid_t1416572164 *)il2cpp_codegen_object_new(Oid_t1416572164_il2cpp_TypeInfo_var); Oid__ctor_m3313774207(L_6, L_5, /*hidden argument*/NULL); AsnEncodedData_set_Oid_m3720899968(__this, L_6, /*hidden argument*/NULL); } IL_0039: { AsnEncodedData_t2501174634 * L_7 = ___asnEncodedData0; NullCheck(L_7); ByteU5BU5D_t1709610627* L_8 = L_7->get__raw_1(); AsnEncodedData_set_RawData_m3736237913(__this, L_8, /*hidden argument*/NULL); return; } } // System.String System.Security.Cryptography.AsnEncodedData::ToString(System.Boolean) extern "C" String_t* AsnEncodedData_ToString_m2572150612 (AsnEncodedData_t2501174634 * __this, bool ___multiLine0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsnEncodedData_ToString_m2572150612_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; Dictionary_2_t2052754070 * V_1 = NULL; int32_t V_2 = 0; { Oid_t1416572164 * L_0 = __this->get__oid_0(); NullCheck(L_0); String_t* L_1 = Oid_get_Value_m1039239028(L_0, /*hidden argument*/NULL); V_0 = L_1; String_t* L_2 = V_0; if (!L_2) { goto IL_00d6; } } { Dictionary_2_t2052754070 * L_3 = ((AsnEncodedData_t2501174634_StaticFields*)il2cpp_codegen_static_fields_for(AsnEncodedData_t2501174634_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24mapA_2(); if (L_3) { goto IL_0071; } } { Dictionary_2_t2052754070 * L_4 = (Dictionary_2_t2052754070 *)il2cpp_codegen_object_new(Dictionary_2_t2052754070_il2cpp_TypeInfo_var); Dictionary_2__ctor_m3230131747(L_4, 6, /*hidden argument*/Dictionary_2__ctor_m3230131747_RuntimeMethod_var); V_1 = L_4; Dictionary_2_t2052754070 * L_5 = V_1; NullCheck(L_5); Dictionary_2_Add_m3664665439(L_5, _stringLiteral1638445413, 0, /*hidden argument*/Dictionary_2_Add_m3664665439_RuntimeMethod_var); Dictionary_2_t2052754070 * L_6 = V_1; NullCheck(L_6); Dictionary_2_Add_m3664665439(L_6, _stringLiteral3268013603, 1, /*hidden argument*/Dictionary_2_Add_m3664665439_RuntimeMethod_var); Dictionary_2_t2052754070 * L_7 = V_1; NullCheck(L_7); Dictionary_2_Add_m3664665439(L_7, _stringLiteral495262285, 2, /*hidden argument*/Dictionary_2_Add_m3664665439_RuntimeMethod_var); Dictionary_2_t2052754070 * L_8 = V_1; NullCheck(L_8); Dictionary_2_Add_m3664665439(L_8, _stringLiteral1034484529, 3, /*hidden argument*/Dictionary_2_Add_m3664665439_RuntimeMethod_var); Dictionary_2_t2052754070 * L_9 = V_1; NullCheck(L_9); Dictionary_2_Add_m3664665439(L_9, _stringLiteral1352213227, 4, /*hidden argument*/Dictionary_2_Add_m3664665439_RuntimeMethod_var); Dictionary_2_t2052754070 * L_10 = V_1; NullCheck(L_10); Dictionary_2_Add_m3664665439(L_10, _stringLiteral3546303020, 5, /*hidden argument*/Dictionary_2_Add_m3664665439_RuntimeMethod_var); Dictionary_2_t2052754070 * L_11 = V_1; ((AsnEncodedData_t2501174634_StaticFields*)il2cpp_codegen_static_fields_for(AsnEncodedData_t2501174634_il2cpp_TypeInfo_var))->set_U3CU3Ef__switchU24mapA_2(L_11); } IL_0071: { Dictionary_2_t2052754070 * L_12 = ((AsnEncodedData_t2501174634_StaticFields*)il2cpp_codegen_static_fields_for(AsnEncodedData_t2501174634_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24mapA_2(); String_t* L_13 = V_0; NullCheck(L_12); bool L_14 = Dictionary_2_TryGetValue_m960735834(L_12, L_13, (&V_2), /*hidden argument*/Dictionary_2_TryGetValue_m960735834_RuntimeMethod_var); if (!L_14) { goto IL_00d6; } } { int32_t L_15 = V_2; switch (L_15) { case 0: { goto IL_00a6; } case 1: { goto IL_00ae; } case 2: { goto IL_00b6; } case 3: { goto IL_00be; } case 4: { goto IL_00c6; } case 5: { goto IL_00ce; } } } { goto IL_00d6; } IL_00a6: { bool L_16 = ___multiLine0; String_t* L_17 = AsnEncodedData_BasicConstraintsExtension_m842585528(__this, L_16, /*hidden argument*/NULL); return L_17; } IL_00ae: { bool L_18 = ___multiLine0; String_t* L_19 = AsnEncodedData_EnhancedKeyUsageExtension_m1429011967(__this, L_18, /*hidden argument*/NULL); return L_19; } IL_00b6: { bool L_20 = ___multiLine0; String_t* L_21 = AsnEncodedData_KeyUsageExtension_m1744264604(__this, L_20, /*hidden argument*/NULL); return L_21; } IL_00be: { bool L_22 = ___multiLine0; String_t* L_23 = AsnEncodedData_SubjectKeyIdentifierExtension_m2277791034(__this, L_22, /*hidden argument*/NULL); return L_23; } IL_00c6: { bool L_24 = ___multiLine0; String_t* L_25 = AsnEncodedData_SubjectAltName_m2045235003(__this, L_24, /*hidden argument*/NULL); return L_25; } IL_00ce: { bool L_26 = ___multiLine0; String_t* L_27 = AsnEncodedData_NetscapeCertType_m4094850323(__this, L_26, /*hidden argument*/NULL); return L_27; } IL_00d6: { bool L_28 = ___multiLine0; String_t* L_29 = AsnEncodedData_Default_m3512740418(__this, L_28, /*hidden argument*/NULL); return L_29; } } // System.String System.Security.Cryptography.AsnEncodedData::Default(System.Boolean) extern "C" String_t* AsnEncodedData_Default_m3512740418 (AsnEncodedData_t2501174634 * __this, bool ___multiLine0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsnEncodedData_Default_m3512740418_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringBuilder_t1723565765 * V_0 = NULL; int32_t V_1 = 0; { StringBuilder_t1723565765 * L_0 = (StringBuilder_t1723565765 *)il2cpp_codegen_object_new(StringBuilder_t1723565765_il2cpp_TypeInfo_var); StringBuilder__ctor_m3807124734(L_0, /*hidden argument*/NULL); V_0 = L_0; V_1 = 0; goto IL_004a; } IL_000d: { StringBuilder_t1723565765 * L_1 = V_0; ByteU5BU5D_t1709610627* L_2 = __this->get__raw_1(); int32_t L_3 = V_1; NullCheck(L_2); String_t* L_4 = Byte_ToString_m3730449428(((L_2)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_3))), _stringLiteral4195304582, /*hidden argument*/NULL); NullCheck(L_1); StringBuilder_Append_m2808439928(L_1, L_4, /*hidden argument*/NULL); int32_t L_5 = V_1; ByteU5BU5D_t1709610627* L_6 = __this->get__raw_1(); NullCheck(L_6); if ((((int32_t)L_5) == ((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length))))-(int32_t)1))))) { goto IL_0046; } } { StringBuilder_t1723565765 * L_7 = V_0; NullCheck(L_7); StringBuilder_Append_m2808439928(L_7, _stringLiteral2321571601, /*hidden argument*/NULL); } IL_0046: { int32_t L_8 = V_1; V_1 = ((int32_t)((int32_t)L_8+(int32_t)1)); } IL_004a: { int32_t L_9 = V_1; ByteU5BU5D_t1709610627* L_10 = __this->get__raw_1(); NullCheck(L_10); if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length))))))) { goto IL_000d; } } { StringBuilder_t1723565765 * L_11 = V_0; NullCheck(L_11); String_t* L_12 = StringBuilder_ToString_m4017876341(L_11, /*hidden argument*/NULL); return L_12; } } // System.String System.Security.Cryptography.AsnEncodedData::BasicConstraintsExtension(System.Boolean) extern "C" String_t* AsnEncodedData_BasicConstraintsExtension_m842585528 (AsnEncodedData_t2501174634 * __this, bool ___multiLine0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsnEncodedData_BasicConstraintsExtension_m842585528_MetadataUsageId); s_Il2CppMethodInitialized = true; } X509BasicConstraintsExtension_t1207207255 * V_0 = NULL; String_t* V_1 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { X509BasicConstraintsExtension_t1207207255 * L_0 = (X509BasicConstraintsExtension_t1207207255 *)il2cpp_codegen_object_new(X509BasicConstraintsExtension_t1207207255_il2cpp_TypeInfo_var); X509BasicConstraintsExtension__ctor_m2847909888(L_0, __this, (bool)0, /*hidden argument*/NULL); V_0 = L_0; X509BasicConstraintsExtension_t1207207255 * L_1 = V_0; bool L_2 = ___multiLine0; NullCheck(L_1); String_t* L_3 = X509BasicConstraintsExtension_ToString_m3940628223(L_1, L_2, /*hidden argument*/NULL); V_1 = L_3; goto IL_002b; } IL_0015: { ; // IL_0015: leave IL_002b } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t2428370182 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_001a; throw e; } CATCH_001a: { // begin catch(System.Object) { IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); V_1 = L_4; goto IL_002b; } IL_0026: { ; // IL_0026: leave IL_002b } } // end catch (depth: 1) IL_002b: { String_t* L_5 = V_1; return L_5; } } // System.String System.Security.Cryptography.AsnEncodedData::EnhancedKeyUsageExtension(System.Boolean) extern "C" String_t* AsnEncodedData_EnhancedKeyUsageExtension_m1429011967 (AsnEncodedData_t2501174634 * __this, bool ___multiLine0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsnEncodedData_EnhancedKeyUsageExtension_m1429011967_MetadataUsageId); s_Il2CppMethodInitialized = true; } X509EnhancedKeyUsageExtension_t778057432 * V_0 = NULL; String_t* V_1 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { X509EnhancedKeyUsageExtension_t778057432 * L_0 = (X509EnhancedKeyUsageExtension_t778057432 *)il2cpp_codegen_object_new(X509EnhancedKeyUsageExtension_t778057432_il2cpp_TypeInfo_var); X509EnhancedKeyUsageExtension__ctor_m1382476803(L_0, __this, (bool)0, /*hidden argument*/NULL); V_0 = L_0; X509EnhancedKeyUsageExtension_t778057432 * L_1 = V_0; bool L_2 = ___multiLine0; NullCheck(L_1); String_t* L_3 = X509EnhancedKeyUsageExtension_ToString_m572667286(L_1, L_2, /*hidden argument*/NULL); V_1 = L_3; goto IL_002b; } IL_0015: { ; // IL_0015: leave IL_002b } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t2428370182 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_001a; throw e; } CATCH_001a: { // begin catch(System.Object) { IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); V_1 = L_4; goto IL_002b; } IL_0026: { ; // IL_0026: leave IL_002b } } // end catch (depth: 1) IL_002b: { String_t* L_5 = V_1; return L_5; } } // System.String System.Security.Cryptography.AsnEncodedData::KeyUsageExtension(System.Boolean) extern "C" String_t* AsnEncodedData_KeyUsageExtension_m1744264604 (AsnEncodedData_t2501174634 * __this, bool ___multiLine0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsnEncodedData_KeyUsageExtension_m1744264604_MetadataUsageId); s_Il2CppMethodInitialized = true; } X509KeyUsageExtension_t3246595939 * V_0 = NULL; String_t* V_1 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { X509KeyUsageExtension_t3246595939 * L_0 = (X509KeyUsageExtension_t3246595939 *)il2cpp_codegen_object_new(X509KeyUsageExtension_t3246595939_il2cpp_TypeInfo_var); X509KeyUsageExtension__ctor_m1337989643(L_0, __this, (bool)0, /*hidden argument*/NULL); V_0 = L_0; X509KeyUsageExtension_t3246595939 * L_1 = V_0; bool L_2 = ___multiLine0; NullCheck(L_1); String_t* L_3 = X509KeyUsageExtension_ToString_m3539842244(L_1, L_2, /*hidden argument*/NULL); V_1 = L_3; goto IL_002b; } IL_0015: { ; // IL_0015: leave IL_002b } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t2428370182 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_001a; throw e; } CATCH_001a: { // begin catch(System.Object) { IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); V_1 = L_4; goto IL_002b; } IL_0026: { ; // IL_0026: leave IL_002b } } // end catch (depth: 1) IL_002b: { String_t* L_5 = V_1; return L_5; } } // System.String System.Security.Cryptography.AsnEncodedData::SubjectKeyIdentifierExtension(System.Boolean) extern "C" String_t* AsnEncodedData_SubjectKeyIdentifierExtension_m2277791034 (AsnEncodedData_t2501174634 * __this, bool ___multiLine0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsnEncodedData_SubjectKeyIdentifierExtension_m2277791034_MetadataUsageId); s_Il2CppMethodInitialized = true; } X509SubjectKeyIdentifierExtension_t2831496947 * V_0 = NULL; String_t* V_1 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { X509SubjectKeyIdentifierExtension_t2831496947 * L_0 = (X509SubjectKeyIdentifierExtension_t2831496947 *)il2cpp_codegen_object_new(X509SubjectKeyIdentifierExtension_t2831496947_il2cpp_TypeInfo_var); X509SubjectKeyIdentifierExtension__ctor_m1402408632(L_0, __this, (bool)0, /*hidden argument*/NULL); V_0 = L_0; X509SubjectKeyIdentifierExtension_t2831496947 * L_1 = V_0; bool L_2 = ___multiLine0; NullCheck(L_1); String_t* L_3 = X509SubjectKeyIdentifierExtension_ToString_m2611723470(L_1, L_2, /*hidden argument*/NULL); V_1 = L_3; goto IL_002b; } IL_0015: { ; // IL_0015: leave IL_002b } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t2428370182 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_001a; throw e; } CATCH_001a: { // begin catch(System.Object) { IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); V_1 = L_4; goto IL_002b; } IL_0026: { ; // IL_0026: leave IL_002b } } // end catch (depth: 1) IL_002b: { String_t* L_5 = V_1; return L_5; } } // System.String System.Security.Cryptography.AsnEncodedData::SubjectAltName(System.Boolean) extern "C" String_t* AsnEncodedData_SubjectAltName_m2045235003 (AsnEncodedData_t2501174634 * __this, bool ___multiLine0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsnEncodedData_SubjectAltName_m2045235003_MetadataUsageId); s_Il2CppMethodInitialized = true; } ASN1_t2575024487 * V_0 = NULL; StringBuilder_t1723565765 * V_1 = NULL; int32_t V_2 = 0; ASN1_t2575024487 * V_3 = NULL; String_t* V_4 = NULL; String_t* V_5 = NULL; uint8_t V_6 = 0x0; String_t* V_7 = NULL; Exception_t2428370182 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t2428370182 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { ByteU5BU5D_t1709610627* L_0 = __this->get__raw_1(); NullCheck(L_0); if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))) >= ((int32_t)5))) { goto IL_0014; } } { return _stringLiteral470798357; } IL_0014: try { // begin try (depth: 1) { ByteU5BU5D_t1709610627* L_1 = __this->get__raw_1(); ASN1_t2575024487 * L_2 = (ASN1_t2575024487 *)il2cpp_codegen_object_new(ASN1_t2575024487_il2cpp_TypeInfo_var); ASN1__ctor_m3000560880(L_2, L_1, /*hidden argument*/NULL); V_0 = L_2; StringBuilder_t1723565765 * L_3 = (StringBuilder_t1723565765 *)il2cpp_codegen_object_new(StringBuilder_t1723565765_il2cpp_TypeInfo_var); StringBuilder__ctor_m3807124734(L_3, /*hidden argument*/NULL); V_1 = L_3; V_2 = 0; goto IL_010c; } IL_002d: { ASN1_t2575024487 * L_4 = V_0; int32_t L_5 = V_2; NullCheck(L_4); ASN1_t2575024487 * L_6 = ASN1_get_Item_m3158563920(L_4, L_5, /*hidden argument*/NULL); V_3 = L_6; V_4 = (String_t*)NULL; V_5 = (String_t*)NULL; ASN1_t2575024487 * L_7 = V_3; NullCheck(L_7); uint8_t L_8 = ASN1_get_Tag_m4184187564(L_7, /*hidden argument*/NULL); V_6 = L_8; uint8_t L_9 = V_6; if ((((int32_t)L_9) == ((int32_t)((int32_t)129)))) { goto IL_0060; } } IL_004f: { uint8_t L_10 = V_6; if ((((int32_t)L_10) == ((int32_t)((int32_t)130)))) { goto IL_007e; } } IL_005b: { goto IL_009c; } IL_0060: { V_4 = _stringLiteral1296185833; IL2CPP_RUNTIME_CLASS_INIT(Encoding_t3296442469_il2cpp_TypeInfo_var); Encoding_t3296442469 * L_11 = Encoding_get_ASCII_m1481601337(NULL /*static, unused*/, /*hidden argument*/NULL); ASN1_t2575024487 * L_12 = V_3; NullCheck(L_12); ByteU5BU5D_t1709610627* L_13 = ASN1_get_Value_m3168500790(L_12, /*hidden argument*/NULL); NullCheck(L_11); String_t* L_14 = VirtFuncInvoker1< String_t*, ByteU5BU5D_t1709610627* >::Invoke(22 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_11, L_13); V_5 = L_14; goto IL_00c5; } IL_007e: { V_4 = _stringLiteral4128937602; IL2CPP_RUNTIME_CLASS_INIT(Encoding_t3296442469_il2cpp_TypeInfo_var); Encoding_t3296442469 * L_15 = Encoding_get_ASCII_m1481601337(NULL /*static, unused*/, /*hidden argument*/NULL); ASN1_t2575024487 * L_16 = V_3; NullCheck(L_16); ByteU5BU5D_t1709610627* L_17 = ASN1_get_Value_m3168500790(L_16, /*hidden argument*/NULL); NullCheck(L_15); String_t* L_18 = VirtFuncInvoker1< String_t*, ByteU5BU5D_t1709610627* >::Invoke(22 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_15, L_17); V_5 = L_18; goto IL_00c5; } IL_009c: { ASN1_t2575024487 * L_19 = V_3; NullCheck(L_19); uint8_t L_20 = ASN1_get_Tag_m4184187564(L_19, /*hidden argument*/NULL); uint8_t L_21 = L_20; RuntimeObject * L_22 = Box(Byte_t2425511462_il2cpp_TypeInfo_var, &L_21); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_23 = String_Format_m3436242843(NULL /*static, unused*/, _stringLiteral184100245, L_22, /*hidden argument*/NULL); V_4 = L_23; ASN1_t2575024487 * L_24 = V_3; NullCheck(L_24); ByteU5BU5D_t1709610627* L_25 = ASN1_get_Value_m3168500790(L_24, /*hidden argument*/NULL); String_t* L_26 = CryptoConvert_ToHex_m292390700(NULL /*static, unused*/, L_25, /*hidden argument*/NULL); V_5 = L_26; goto IL_00c5; } IL_00c5: { StringBuilder_t1723565765 * L_27 = V_1; String_t* L_28 = V_4; NullCheck(L_27); StringBuilder_Append_m2808439928(L_27, L_28, /*hidden argument*/NULL); StringBuilder_t1723565765 * L_29 = V_1; String_t* L_30 = V_5; NullCheck(L_29); StringBuilder_Append_m2808439928(L_29, L_30, /*hidden argument*/NULL); bool L_31 = ___multiLine0; if (!L_31) { goto IL_00ee; } } IL_00dd: { StringBuilder_t1723565765 * L_32 = V_1; String_t* L_33 = Environment_get_NewLine_m264761464(NULL /*static, unused*/, /*hidden argument*/NULL); NullCheck(L_32); StringBuilder_Append_m2808439928(L_32, L_33, /*hidden argument*/NULL); goto IL_0108; } IL_00ee: { int32_t L_34 = V_2; ASN1_t2575024487 * L_35 = V_0; NullCheck(L_35); int32_t L_36 = ASN1_get_Count_m3229415929(L_35, /*hidden argument*/NULL); if ((((int32_t)L_34) >= ((int32_t)((int32_t)((int32_t)L_36-(int32_t)1))))) { goto IL_0108; } } IL_00fc: { StringBuilder_t1723565765 * L_37 = V_1; NullCheck(L_37); StringBuilder_Append_m2808439928(L_37, _stringLiteral3242900561, /*hidden argument*/NULL); } IL_0108: { int32_t L_38 = V_2; V_2 = ((int32_t)((int32_t)L_38+(int32_t)1)); } IL_010c: { int32_t L_39 = V_2; ASN1_t2575024487 * L_40 = V_0; NullCheck(L_40); int32_t L_41 = ASN1_get_Count_m3229415929(L_40, /*hidden argument*/NULL); if ((((int32_t)L_39) < ((int32_t)L_41))) { goto IL_002d; } } IL_0118: { StringBuilder_t1723565765 * L_42 = V_1; NullCheck(L_42); String_t* L_43 = StringBuilder_ToString_m4017876341(L_42, /*hidden argument*/NULL); V_7 = L_43; goto IL_013c; } IL_0125: { ; // IL_0125: leave IL_013c } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t2428370182 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_012a; throw e; } CATCH_012a: { // begin catch(System.Object) { IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_44 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); V_7 = L_44; goto IL_013c; } IL_0137: { ; // IL_0137: leave IL_013c } } // end catch (depth: 1) IL_013c: { String_t* L_45 = V_7; return L_45; } } // System.String System.Security.Cryptography.AsnEncodedData::NetscapeCertType(System.Boolean) extern "C" String_t* AsnEncodedData_NetscapeCertType_m4094850323 (AsnEncodedData_t2501174634 * __this, bool ___multiLine0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsnEncodedData_NetscapeCertType_m4094850323_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; StringBuilder_t1723565765 * V_1 = NULL; { ByteU5BU5D_t1709610627* L_0 = __this->get__raw_1(); NullCheck(L_0); if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))) < ((int32_t)4))) { goto IL_002a; } } { ByteU5BU5D_t1709610627* L_1 = __this->get__raw_1(); NullCheck(L_1); int32_t L_2 = 0; uint8_t L_3 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_2)); if ((!(((uint32_t)L_3) == ((uint32_t)3)))) { goto IL_002a; } } { ByteU5BU5D_t1709610627* L_4 = __this->get__raw_1(); NullCheck(L_4); int32_t L_5 = 1; uint8_t L_6 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); if ((((int32_t)L_6) == ((int32_t)2))) { goto IL_0030; } } IL_002a: { return _stringLiteral470798357; } IL_0030: { ByteU5BU5D_t1709610627* L_7 = __this->get__raw_1(); NullCheck(L_7); int32_t L_8 = 3; uint8_t L_9 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_8)); ByteU5BU5D_t1709610627* L_10 = __this->get__raw_1(); NullCheck(L_10); int32_t L_11 = 2; uint8_t L_12 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_11)); ByteU5BU5D_t1709610627* L_13 = __this->get__raw_1(); NullCheck(L_13); int32_t L_14 = 2; uint8_t L_15 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_14)); V_0 = ((int32_t)((int32_t)((int32_t)((int32_t)L_9>>(int32_t)((int32_t)((int32_t)L_12&(int32_t)((int32_t)31)))))<<(int32_t)((int32_t)((int32_t)L_15&(int32_t)((int32_t)31))))); StringBuilder_t1723565765 * L_16 = (StringBuilder_t1723565765 *)il2cpp_codegen_object_new(StringBuilder_t1723565765_il2cpp_TypeInfo_var); StringBuilder__ctor_m3807124734(L_16, /*hidden argument*/NULL); V_1 = L_16; int32_t L_17 = V_0; if ((!(((uint32_t)((int32_t)((int32_t)L_17&(int32_t)((int32_t)128)))) == ((uint32_t)((int32_t)128))))) { goto IL_0074; } } { StringBuilder_t1723565765 * L_18 = V_1; NullCheck(L_18); StringBuilder_Append_m2808439928(L_18, _stringLiteral3977524714, /*hidden argument*/NULL); } IL_0074: { int32_t L_19 = V_0; if ((!(((uint32_t)((int32_t)((int32_t)L_19&(int32_t)((int32_t)64)))) == ((uint32_t)((int32_t)64))))) { goto IL_00a3; } } { StringBuilder_t1723565765 * L_20 = V_1; NullCheck(L_20); int32_t L_21 = StringBuilder_get_Length_m4005776360(L_20, /*hidden argument*/NULL); if ((((int32_t)L_21) <= ((int32_t)0))) { goto IL_0097; } } { StringBuilder_t1723565765 * L_22 = V_1; NullCheck(L_22); StringBuilder_Append_m2808439928(L_22, _stringLiteral3242900561, /*hidden argument*/NULL); } IL_0097: { StringBuilder_t1723565765 * L_23 = V_1; NullCheck(L_23); StringBuilder_Append_m2808439928(L_23, _stringLiteral1171817006, /*hidden argument*/NULL); } IL_00a3: { int32_t L_24 = V_0; if ((!(((uint32_t)((int32_t)((int32_t)L_24&(int32_t)((int32_t)32)))) == ((uint32_t)((int32_t)32))))) { goto IL_00d2; } } { StringBuilder_t1723565765 * L_25 = V_1; NullCheck(L_25); int32_t L_26 = StringBuilder_get_Length_m4005776360(L_25, /*hidden argument*/NULL); if ((((int32_t)L_26) <= ((int32_t)0))) { goto IL_00c6; } } { StringBuilder_t1723565765 * L_27 = V_1; NullCheck(L_27); StringBuilder_Append_m2808439928(L_27, _stringLiteral3242900561, /*hidden argument*/NULL); } IL_00c6: { StringBuilder_t1723565765 * L_28 = V_1; NullCheck(L_28); StringBuilder_Append_m2808439928(L_28, _stringLiteral2780200989, /*hidden argument*/NULL); } IL_00d2: { int32_t L_29 = V_0; if ((!(((uint32_t)((int32_t)((int32_t)L_29&(int32_t)((int32_t)16)))) == ((uint32_t)((int32_t)16))))) { goto IL_0101; } } { StringBuilder_t1723565765 * L_30 = V_1; NullCheck(L_30); int32_t L_31 = StringBuilder_get_Length_m4005776360(L_30, /*hidden argument*/NULL); if ((((int32_t)L_31) <= ((int32_t)0))) { goto IL_00f5; } } { StringBuilder_t1723565765 * L_32 = V_1; NullCheck(L_32); StringBuilder_Append_m2808439928(L_32, _stringLiteral3242900561, /*hidden argument*/NULL); } IL_00f5: { StringBuilder_t1723565765 * L_33 = V_1; NullCheck(L_33); StringBuilder_Append_m2808439928(L_33, _stringLiteral826182503, /*hidden argument*/NULL); } IL_0101: { int32_t L_34 = V_0; if ((!(((uint32_t)((int32_t)((int32_t)L_34&(int32_t)8))) == ((uint32_t)8)))) { goto IL_012e; } } { StringBuilder_t1723565765 * L_35 = V_1; NullCheck(L_35); int32_t L_36 = StringBuilder_get_Length_m4005776360(L_35, /*hidden argument*/NULL); if ((((int32_t)L_36) <= ((int32_t)0))) { goto IL_0122; } } { StringBuilder_t1723565765 * L_37 = V_1; NullCheck(L_37); StringBuilder_Append_m2808439928(L_37, _stringLiteral3242900561, /*hidden argument*/NULL); } IL_0122: { StringBuilder_t1723565765 * L_38 = V_1; NullCheck(L_38); StringBuilder_Append_m2808439928(L_38, _stringLiteral854467961, /*hidden argument*/NULL); } IL_012e: { int32_t L_39 = V_0; if ((!(((uint32_t)((int32_t)((int32_t)L_39&(int32_t)4))) == ((uint32_t)4)))) { goto IL_015b; } } { StringBuilder_t1723565765 * L_40 = V_1; NullCheck(L_40); int32_t L_41 = StringBuilder_get_Length_m4005776360(L_40, /*hidden argument*/NULL); if ((((int32_t)L_41) <= ((int32_t)0))) { goto IL_014f; } } { StringBuilder_t1723565765 * L_42 = V_1; NullCheck(L_42); StringBuilder_Append_m2808439928(L_42, _stringLiteral3242900561, /*hidden argument*/NULL); } IL_014f: { StringBuilder_t1723565765 * L_43 = V_1; NullCheck(L_43); StringBuilder_Append_m2808439928(L_43, _stringLiteral1249481975, /*hidden argument*/NULL); } IL_015b: { int32_t L_44 = V_0; if ((!(((uint32_t)((int32_t)((int32_t)L_44&(int32_t)2))) == ((uint32_t)2)))) { goto IL_0188; } } { StringBuilder_t1723565765 * L_45 = V_1; NullCheck(L_45); int32_t L_46 = StringBuilder_get_Length_m4005776360(L_45, /*hidden argument*/NULL); if ((((int32_t)L_46) <= ((int32_t)0))) { goto IL_017c; } } { StringBuilder_t1723565765 * L_47 = V_1; NullCheck(L_47); StringBuilder_Append_m2808439928(L_47, _stringLiteral3242900561, /*hidden argument*/NULL); } IL_017c: { StringBuilder_t1723565765 * L_48 = V_1; NullCheck(L_48); StringBuilder_Append_m2808439928(L_48, _stringLiteral3042973264, /*hidden argument*/NULL); } IL_0188: { int32_t L_49 = V_0; if ((!(((uint32_t)((int32_t)((int32_t)L_49&(int32_t)1))) == ((uint32_t)1)))) { goto IL_01b5; } } { StringBuilder_t1723565765 * L_50 = V_1; NullCheck(L_50); int32_t L_51 = StringBuilder_get_Length_m4005776360(L_50, /*hidden argument*/NULL); if ((((int32_t)L_51) <= ((int32_t)0))) { goto IL_01a9; } } { StringBuilder_t1723565765 * L_52 = V_1; NullCheck(L_52); StringBuilder_Append_m2808439928(L_52, _stringLiteral3242900561, /*hidden argument*/NULL); } IL_01a9: { StringBuilder_t1723565765 * L_53 = V_1; NullCheck(L_53); StringBuilder_Append_m2808439928(L_53, _stringLiteral1703926674, /*hidden argument*/NULL); } IL_01b5: { StringBuilder_t1723565765 * L_54 = V_1; String_t* L_55 = Int32_ToString_m3093922668((&V_0), _stringLiteral4195304582, /*hidden argument*/NULL); NullCheck(L_54); StringBuilder_AppendFormat_m2761752028(L_54, _stringLiteral1402432105, L_55, /*hidden argument*/NULL); StringBuilder_t1723565765 * L_56 = V_1; NullCheck(L_56); String_t* L_57 = StringBuilder_ToString_m4017876341(L_56, /*hidden argument*/NULL); return L_57; } } // System.Void System.Security.Cryptography.Oid::.ctor() extern "C" void Oid__ctor_m1239464202 (Oid_t1416572164 * __this, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); return; } } // System.Void System.Security.Cryptography.Oid::.ctor(System.String) extern "C" void Oid__ctor_m2480021574 (Oid_t1416572164 * __this, String_t* ___oid0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Oid__ctor_m2480021574_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); String_t* L_0 = ___oid0; if (L_0) { goto IL_0017; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral3497942821, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0017: { String_t* L_2 = ___oid0; __this->set__value_0(L_2); String_t* L_3 = ___oid0; String_t* L_4 = Oid_GetName_m490454385(__this, L_3, /*hidden argument*/NULL); __this->set__name_1(L_4); return; } } // System.Void System.Security.Cryptography.Oid::.ctor(System.String,System.String) extern "C" void Oid__ctor_m1643124109 (Oid_t1416572164 * __this, String_t* ___value0, String_t* ___friendlyName1, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); String_t* L_0 = ___value0; __this->set__value_0(L_0); String_t* L_1 = ___friendlyName1; __this->set__name_1(L_1); return; } } // System.Void System.Security.Cryptography.Oid::.ctor(System.Security.Cryptography.Oid) extern "C" void Oid__ctor_m3313774207 (Oid_t1416572164 * __this, Oid_t1416572164 * ___oid0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Oid__ctor_m3313774207_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); Oid_t1416572164 * L_0 = ___oid0; if (L_0) { goto IL_0017; } } { ArgumentNullException_t873386607 * L_1 = (ArgumentNullException_t873386607 *)il2cpp_codegen_object_new(ArgumentNullException_t873386607_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m4164121496(L_1, _stringLiteral3497942821, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0017: { Oid_t1416572164 * L_2 = ___oid0; NullCheck(L_2); String_t* L_3 = Oid_get_Value_m1039239028(L_2, /*hidden argument*/NULL); __this->set__value_0(L_3); Oid_t1416572164 * L_4 = ___oid0; NullCheck(L_4); String_t* L_5 = Oid_get_FriendlyName_m1010528668(L_4, /*hidden argument*/NULL); __this->set__name_1(L_5); return; } } // System.String System.Security.Cryptography.Oid::get_FriendlyName() extern "C" String_t* Oid_get_FriendlyName_m1010528668 (Oid_t1416572164 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__name_1(); return L_0; } } // System.String System.Security.Cryptography.Oid::get_Value() extern "C" String_t* Oid_get_Value_m1039239028 (Oid_t1416572164 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__value_0(); return L_0; } } // System.String System.Security.Cryptography.Oid::GetName(System.String) extern "C" String_t* Oid_GetName_m490454385 (Oid_t1416572164 * __this, String_t* ___oid0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Oid_GetName_m490454385_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; Dictionary_2_t2052754070 * V_1 = NULL; int32_t V_2 = 0; { String_t* L_0 = ___oid0; V_0 = L_0; String_t* L_1 = V_0; if (!L_1) { goto IL_0176; } } { Dictionary_2_t2052754070 * L_2 = ((Oid_t1416572164_StaticFields*)il2cpp_codegen_static_fields_for(Oid_t1416572164_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map10_2(); if (L_2) { goto IL_00cd; } } { Dictionary_2_t2052754070 * L_3 = (Dictionary_2_t2052754070 *)il2cpp_codegen_object_new(Dictionary_2_t2052754070_il2cpp_TypeInfo_var); Dictionary_2__ctor_m3230131747(L_3, ((int32_t)14), /*hidden argument*/Dictionary_2__ctor_m3230131747_RuntimeMethod_var); V_1 = L_3; Dictionary_2_t2052754070 * L_4 = V_1; NullCheck(L_4); Dictionary_2_Add_m3664665439(L_4, _stringLiteral4019210925, 0, /*hidden argument*/Dictionary_2_Add_m3664665439_RuntimeMethod_var); Dictionary_2_t2052754070 * L_5 = V_1; NullCheck(L_5); Dictionary_2_Add_m3664665439(L_5, _stringLiteral488937476, 1, /*hidden argument*/Dictionary_2_Add_m3664665439_RuntimeMethod_var); Dictionary_2_t2052754070 * L_6 = V_1; NullCheck(L_6); Dictionary_2_Add_m3664665439(L_6, _stringLiteral3862928724, 2, /*hidden argument*/Dictionary_2_Add_m3664665439_RuntimeMethod_var); Dictionary_2_t2052754070 * L_7 = V_1; NullCheck(L_7); Dictionary_2_Add_m3664665439(L_7, _stringLiteral1447724389, 3, /*hidden argument*/Dictionary_2_Add_m3664665439_RuntimeMethod_var); Dictionary_2_t2052754070 * L_8 = V_1; NullCheck(L_8); Dictionary_2_Add_m3664665439(L_8, _stringLiteral2463128351, 4, /*hidden argument*/Dictionary_2_Add_m3664665439_RuntimeMethod_var); Dictionary_2_t2052754070 * L_9 = V_1; NullCheck(L_9); Dictionary_2_Add_m3664665439(L_9, _stringLiteral4048148019, 5, /*hidden argument*/Dictionary_2_Add_m3664665439_RuntimeMethod_var); Dictionary_2_t2052754070 * L_10 = V_1; NullCheck(L_10); Dictionary_2_Add_m3664665439(L_10, _stringLiteral1638445413, 6, /*hidden argument*/Dictionary_2_Add_m3664665439_RuntimeMethod_var); Dictionary_2_t2052754070 * L_11 = V_1; NullCheck(L_11); Dictionary_2_Add_m3664665439(L_11, _stringLiteral495262285, 7, /*hidden argument*/Dictionary_2_Add_m3664665439_RuntimeMethod_var); Dictionary_2_t2052754070 * L_12 = V_1; NullCheck(L_12); Dictionary_2_Add_m3664665439(L_12, _stringLiteral3268013603, 8, /*hidden argument*/Dictionary_2_Add_m3664665439_RuntimeMethod_var); Dictionary_2_t2052754070 * L_13 = V_1; NullCheck(L_13); Dictionary_2_Add_m3664665439(L_13, _stringLiteral1034484529, ((int32_t)9), /*hidden argument*/Dictionary_2_Add_m3664665439_RuntimeMethod_var); Dictionary_2_t2052754070 * L_14 = V_1; NullCheck(L_14); Dictionary_2_Add_m3664665439(L_14, _stringLiteral1352213227, ((int32_t)10), /*hidden argument*/Dictionary_2_Add_m3664665439_RuntimeMethod_var); Dictionary_2_t2052754070 * L_15 = V_1; NullCheck(L_15); Dictionary_2_Add_m3664665439(L_15, _stringLiteral3546303020, ((int32_t)11), /*hidden argument*/Dictionary_2_Add_m3664665439_RuntimeMethod_var); Dictionary_2_t2052754070 * L_16 = V_1; NullCheck(L_16); Dictionary_2_Add_m3664665439(L_16, _stringLiteral4062822888, ((int32_t)12), /*hidden argument*/Dictionary_2_Add_m3664665439_RuntimeMethod_var); Dictionary_2_t2052754070 * L_17 = V_1; NullCheck(L_17); Dictionary_2_Add_m3664665439(L_17, _stringLiteral1232705382, ((int32_t)13), /*hidden argument*/Dictionary_2_Add_m3664665439_RuntimeMethod_var); Dictionary_2_t2052754070 * L_18 = V_1; ((Oid_t1416572164_StaticFields*)il2cpp_codegen_static_fields_for(Oid_t1416572164_il2cpp_TypeInfo_var))->set_U3CU3Ef__switchU24map10_2(L_18); } IL_00cd: { Dictionary_2_t2052754070 * L_19 = ((Oid_t1416572164_StaticFields*)il2cpp_codegen_static_fields_for(Oid_t1416572164_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map10_2(); String_t* L_20 = V_0; NullCheck(L_19); bool L_21 = Dictionary_2_TryGetValue_m960735834(L_19, L_20, (&V_2), /*hidden argument*/Dictionary_2_TryGetValue_m960735834_RuntimeMethod_var); if (!L_21) { goto IL_0176; } } { int32_t L_22 = V_2; switch (L_22) { case 0: { goto IL_0122; } case 1: { goto IL_0128; } case 2: { goto IL_012e; } case 3: { goto IL_0134; } case 4: { goto IL_013a; } case 5: { goto IL_0140; } case 6: { goto IL_0146; } case 7: { goto IL_014c; } case 8: { goto IL_0152; } case 9: { goto IL_0158; } case 10: { goto IL_015e; } case 11: { goto IL_0164; } case 12: { goto IL_016a; } case 13: { goto IL_0170; } } } { goto IL_0176; } IL_0122: { return _stringLiteral879538509; } IL_0128: { return _stringLiteral3680393469; } IL_012e: { return _stringLiteral599206045; } IL_0134: { return _stringLiteral984218199; } IL_013a: { return _stringLiteral2700609637; } IL_0140: { return _stringLiteral3253380901; } IL_0146: { return _stringLiteral511059956; } IL_014c: { return _stringLiteral3876656434; } IL_0152: { return _stringLiteral2590468587; } IL_0158: { return _stringLiteral4030284121; } IL_015e: { return _stringLiteral3021269014; } IL_0164: { return _stringLiteral3592138753; } IL_016a: { return _stringLiteral4288834412; } IL_0170: { return _stringLiteral3809453991; } IL_0176: { String_t* L_23 = __this->get__name_1(); return L_23; } } // System.Void System.Security.Cryptography.OidCollection::.ctor() extern "C" void OidCollection__ctor_m104153985 (OidCollection_t5760417 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (OidCollection__ctor_m104153985_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); ArrayList_t4277734320 * L_0 = (ArrayList_t4277734320 *)il2cpp_codegen_object_new(ArrayList_t4277734320_il2cpp_TypeInfo_var); ArrayList__ctor_m3769859358(L_0, /*hidden argument*/NULL); __this->set__list_0(L_0); return; } } // System.Void System.Security.Cryptography.OidCollection::System.Collections.ICollection.CopyTo(System.Array,System.Int32) extern "C" void OidCollection_System_Collections_ICollection_CopyTo_m558719273 (OidCollection_t5760417 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { { ArrayList_t4277734320 * L_0 = __this->get__list_0(); RuntimeArray * L_1 = ___array0; int32_t L_2 = ___index1; NullCheck(L_0); VirtActionInvoker2< RuntimeArray *, int32_t >::Invoke(41 /* System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) */, L_0, L_1, L_2); return; } } // System.Collections.IEnumerator System.Security.Cryptography.OidCollection::System.Collections.IEnumerable.GetEnumerator() extern "C" RuntimeObject* OidCollection_System_Collections_IEnumerable_GetEnumerator_m2491830106 (OidCollection_t5760417 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (OidCollection_System_Collections_IEnumerable_GetEnumerator_m2491830106_MetadataUsageId); s_Il2CppMethodInitialized = true; } { OidEnumerator_t822741923 * L_0 = (OidEnumerator_t822741923 *)il2cpp_codegen_object_new(OidEnumerator_t822741923_il2cpp_TypeInfo_var); OidEnumerator__ctor_m581949267(L_0, __this, /*hidden argument*/NULL); return L_0; } } // System.Int32 System.Security.Cryptography.OidCollection::get_Count() extern "C" int32_t OidCollection_get_Count_m1553273653 (OidCollection_t5760417 * __this, const RuntimeMethod* method) { { ArrayList_t4277734320 * L_0 = __this->get__list_0(); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0); return L_1; } } // System.Boolean System.Security.Cryptography.OidCollection::get_IsSynchronized() extern "C" bool OidCollection_get_IsSynchronized_m866694730 (OidCollection_t5760417 * __this, const RuntimeMethod* method) { { ArrayList_t4277734320 * L_0 = __this->get__list_0(); NullCheck(L_0); bool L_1 = VirtFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Collections.ArrayList::get_IsSynchronized() */, L_0); return L_1; } } // System.Security.Cryptography.Oid System.Security.Cryptography.OidCollection::get_Item(System.Int32) extern "C" Oid_t1416572164 * OidCollection_get_Item_m1837888684 (OidCollection_t5760417 * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (OidCollection_get_Item_m1837888684_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ArrayList_t4277734320 * L_0 = __this->get__list_0(); int32_t L_1 = ___index0; NullCheck(L_0); RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1); return ((Oid_t1416572164 *)CastclassSealed((RuntimeObject*)L_2, Oid_t1416572164_il2cpp_TypeInfo_var)); } } // System.Object System.Security.Cryptography.OidCollection::get_SyncRoot() extern "C" RuntimeObject * OidCollection_get_SyncRoot_m4003832711 (OidCollection_t5760417 * __this, const RuntimeMethod* method) { { ArrayList_t4277734320 * L_0 = __this->get__list_0(); NullCheck(L_0); RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(29 /* System.Object System.Collections.ArrayList::get_SyncRoot() */, L_0); return L_1; } } // System.Int32 System.Security.Cryptography.OidCollection::Add(System.Security.Cryptography.Oid) extern "C" int32_t OidCollection_Add_m2116548627 (OidCollection_t5760417 * __this, Oid_t1416572164 * ___oid0, const RuntimeMethod* method) { int32_t G_B3_0 = 0; { bool L_0 = __this->get__readOnly_1(); if (!L_0) { goto IL_0011; } } { G_B3_0 = 0; goto IL_001d; } IL_0011: { ArrayList_t4277734320 * L_1 = __this->get__list_0(); Oid_t1416572164 * L_2 = ___oid0; NullCheck(L_1); int32_t L_3 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_1, L_2); G_B3_0 = L_3; } IL_001d: { return G_B3_0; } } // System.Void System.Security.Cryptography.OidEnumerator::.ctor(System.Security.Cryptography.OidCollection) extern "C" void OidEnumerator__ctor_m581949267 (OidEnumerator_t822741923 * __this, OidCollection_t5760417 * ___collection0, const RuntimeMethod* method) { { Object__ctor_m3115879119(__this, /*hidden argument*/NULL); OidCollection_t5760417 * L_0 = ___collection0; __this->set__collection_0(L_0); __this->set__position_1((-1)); return; } } // System.Object System.Security.Cryptography.OidEnumerator::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * OidEnumerator_System_Collections_IEnumerator_get_Current_m634557982 (OidEnumerator_t822741923 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (OidEnumerator_System_Collections_IEnumerator_get_Current_m634557982_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get__position_1(); if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0012; } } { ArgumentOutOfRangeException_t1933742687 * L_1 = (ArgumentOutOfRangeException_t1933742687 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t1933742687_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m3881672281(L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0012: { OidCollection_t5760417 * L_2 = __this->get__collection_0(); int32_t L_3 = __this->get__position_1(); NullCheck(L_2); Oid_t1416572164 * L_4 = OidCollection_get_Item_m1837888684(L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Boolean System.Security.Cryptography.OidEnumerator::MoveNext() extern "C" bool OidEnumerator_MoveNext_m1735328443 (OidEnumerator_t822741923 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->get__position_1(); int32_t L_1 = ((int32_t)((int32_t)L_0+(int32_t)1)); V_0 = L_1; __this->set__position_1(L_1); int32_t L_2 = V_0; OidCollection_t5760417 * L_3 = __this->get__collection_0(); NullCheck(L_3); int32_t L_4 = OidCollection_get_Count_m1553273653(L_3, /*hidden argument*/NULL); if ((((int32_t)L_2) >= ((int32_t)L_4))) { goto IL_0023; } } { return (bool)1; } IL_0023: { OidCollection_t5760417 * L_5 = __this->get__collection_0(); NullCheck(L_5); int32_t L_6 = OidCollection_get_Count_m1553273653(L_5, /*hidden argument*/NULL); __this->set__position_1(((int32_t)((int32_t)L_6-(int32_t)1))); return (bool)0; } } // System.Void System.Security.Cryptography.OidEnumerator::Reset() extern "C" void OidEnumerator_Reset_m3698059979 (OidEnumerator_t822741923 * __this, const RuntimeMethod* method) { { __this->set__position_1((-1)); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif
812e4919cb638b454f48690d4c22df31a5e717c5
5f333776f56616bd25bb2c972cfdc0f203af8bae
/TestProC-main/lastedit/ModelViewDemo/ModelViewDemo/imagedelegate.cpp
ca825565962b2f341b37f36d5f0304cf76e4a820
[]
no_license
Pedos321/TestProC
b723d347c78ee5d4a04db4b80b6a36e50f671e05
2b6b5d93a817e2044e04ecfb1358e1ba18fb2018
refs/heads/main
2023-07-15T22:46:25.421139
2021-08-18T22:11:05
2021-08-18T22:11:05
395,389,748
0
0
null
null
null
null
UTF-8
C++
false
false
1,097
cpp
imagedelegate.cpp
#include "imagedelegate.h" #include "math.h" #include <QPainter> #include <QDebug> Imagedelegate::Imagedelegate() { } QSize Imagedelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const { return QItemDelegate::sizeHint(option, index); } void Imagedelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const { QStyleOptionViewItem myOption = option; if (index.column()==4) { QString data = index.model()->data(index, Qt::DisplayRole).toString(); myOption.displayAlignment = Qt::AlignCenter | Qt::AlignVCenter; QString icon = "C:/QtProjects/my/ModelViewDemo/Icon/" + index.model()->data(index, Qt::DisplayRole).toString(); QPixmap pixmap2(icon); painter->drawPixmap(option.rect.x() + option.rect.width()/2,myOption.rect.y(),20,20, pixmap2); } else { drawDisplay(painter, option, option.rect, index.model()->data(index, Qt::DisplayRole).toString()); } drawFocus(painter, myOption, myOption.rect); }
69af1d6d25d05538dee250e98d83d9354798d2db
d5fce8e6172fc3b2366d3d22ca5816149dfbfd10
/hilti/toolchain/include/compiler/detail/parser/driver.h
f35b6d88bfae7874ad4c65304f8ac6275d317ee6
[ "BSD-2-Clause", "BSD-3-Clause" ]
permissive
jonknet/spicy
059f12369ca701349080d9816dc461105486b2e4
422f31db99cb64c9fea36ee116bb5f9fe3d7e9f4
refs/heads/main
2023-06-19T09:42:09.644924
2021-07-09T06:34:26
2021-07-09T06:34:52
385,472,907
1
0
NOASSERTION
2021-07-13T04:18:36
2021-07-13T04:18:36
null
UTF-8
C++
false
false
4,262
h
driver.h
// Copyright (c) 2020-2021 by the Zeek Project. See LICENSE for details. #pragma once #include <utility> #include <vector> #ifdef yylex #undef yylex // Work-around for bison messing up the function name by adding the local namespace. #define yylex lex #endif #include <memory.h> #include <iostream> #include <string> #include <hilti/ast/all.h> #include <hilti/base/result.h> #undef YY_DECL #define YY_DECL \ hilti::detail::parser::Parser::token_type \ hilti::detail::parser::Scanner::lex(hilti::detail::parser::Parser::semantic_type* yylval, \ hilti::detail::parser::location* yylloc, \ hilti::detail::parser::Driver* driver) #define YYSTYPE yystype_hilti #ifndef __FLEX_LEXER_H #define yyFlexLexer HiltiFlexLexer #include <FlexLexer.h> #undef yyFlexLexer #endif /** Bison value type. */ struct yystype_hilti { bool bool_ = false; double real = 0.0; uint64_t uint = 0; int64_t sint = 0; std::string str; hilti::ID id; hilti::Declaration declaration; hilti::Type type; hilti::Ctor ctor; hilti::Expression expression; hilti::Statement statement; hilti::Attribute attribute; hilti::Function function; hilti::type::Flags type_flags; std::optional<hilti::Expression> opt_expression; std::optional<hilti::Statement> opt_statement; std::optional<hilti::AttributeSet> opt_attributes; hilti::declaration::Linkage linkage; hilti::declaration::parameter::Kind function_parameter_kind; hilti::function::CallingConvention function_calling_convention; hilti::type::function::Parameter function_parameter; hilti::type::function::Result function_result; hilti::type::function::Flavor function_flavor; hilti::statement::switch_::Case switch_case; hilti::statement::try_::Catch try_catch; std::vector<std::string> strings; std::vector<hilti::Declaration> declarations; std::vector<hilti::Expression> expressions; std::vector<hilti::Statement> statements; std::vector<hilti::type::function::Parameter> function_parameters; std::vector<hilti::statement::switch_::Case> switch_cases; std::vector<hilti::statement::try_::Catch> try_catches; std::pair<hilti::ID, hilti::Type> tuple_type_elem; std::vector<std::pair<hilti::ID, hilti::Type>> tuple_type_elems; hilti::type::struct_::Field struct_field; hilti::ctor::struct_::Field struct_elem; std::vector<hilti::type::struct_::Field> struct_fields; std::vector<hilti::ctor::struct_::Field> struct_elems; hilti::type::union_::Field union_field; std::vector<hilti::type::union_::Field> union_fields; hilti::ctor::Map::Element map_elem; std::vector<hilti::ctor::Map::Element> map_elems; hilti::type::enum_::Label enum_label; std::vector<hilti::type::enum_::Label> enum_labels; std::pair<std::vector<hilti::Declaration>, std::vector<hilti::Statement>> decls_and_stmts; }; namespace hilti { namespace logging::debug { inline const DebugStream Parser("parser"); } // namespace logging::debug namespace detail { namespace parser { class Parser; class Scanner; /** Driver for flex/bison. */ class Driver { public: Result<hilti::Node> parse(std::istream& in, const std::string& filename); Scanner* scanner() const { return _scanner; } Parser* parser() const { return _parser; } // Methods for the parser. std::string* currentFile() { return &_filename; } void error(const std::string& msg, const Meta& m); void enablePatternMode(); void disablePatternMode(); void enableExpressionMode(); void disableExpressionMode(); void enableDottedIDMode(); void disableDottedIDMode(); void setDestinationModule(Module&& m) { _module = std::move(m); } private: Module _module; std::string _filename; Parser* _parser = nullptr; Scanner* _scanner = nullptr; int _expression_mode = 0; }; } // namespace parser } // namespace detail } // namespace hilti
1a63db148f8632b2b7d1067c37618259cc1bb276
f0eeb6724147908e6903a07cd524472938d5cdba
/Baekjoon/1333_부재중 전화.cpp
a0c6cae369a5fe40f29c073e4354ebbd10a14e3c
[]
no_license
paperfrog1228/Algorithm
bb338e51169d2b9257116f8e9c23afc147e65e27
14b0da325f317d36537a1254bc178bed32337829
refs/heads/master
2022-09-22T23:58:28.824408
2022-09-09T07:01:41
2022-09-09T07:01:41
152,889,184
3
0
null
2019-03-24T14:49:13
2018-10-13T16:04:45
C++
UTF-8
C++
false
false
338
cpp
1333_부재중 전화.cpp
#include<stdio.h> int main(){ int n,l,d,a=1; scanf("%d %d %d",&n,&l,&d); while(a<=n){ for(int i=a*l+5*(a-1);i<a*l+a*5;i++){ if(i%d==0){ printf("%d",i); return 0; } } a++; } int i=0; while(1) { if((n*l+(n-1)*5+i)%d==0){ printf("%d", n*l+(n-1)*5+i); return 0; } i++; } }
e223ba2f79d48f90856d5a00c858682b3fd48090
6b6e040a7cb431b9905a51c20aa3d3dc86b345dc
/LabProject/SurfaceReconstruction/alg/kernel/spiky_kernel.cpp
bc63e2f7ab34422bcf68f7821c474d8bdc431371
[]
no_license
CedricM9/SPH-Surface-Reconstruction
023be4255ecfb382c7c71dea84fe17d36bce7384
a7639e4c7c06d5cf828aa8e140ef97d7f68faaef
refs/heads/master
2023-02-02T14:50:35.225041
2020-12-16T11:29:17
2020-12-16T11:29:17
284,705,137
0
1
null
null
null
null
UTF-8
C++
false
false
938
cpp
spiky_kernel.cpp
spikyKernel::spikyKernel() {} void spikyKernel::setRadius(float compactSupport) { h_ = compactSupport; a_ = 15/((M_PI)*pow(h_,6)); } double spikyKernel::evaluate(float x, float y, float z, particle& p2) { float xDistance = p2.x() - x; float yDistance = p2.y() - y; float zDistance = p2.z() - z; float r = sqrt( (xDistance*xDistance) + (yDistance*yDistance) + (zDistance*zDistance)); float result = 0.0; if ((r >= 0) && (r <= h_)) {result = pow(h_-r,3);} else {return 0;} return a_*result; } double spikyKernel::evaluate(particle& p1, particle& p2) { float xDistance = p2.x() - p1.x(); float yDistance = p2.y() - p1.y(); float zDistance = p2.z() - p1.z(); float r = sqrt( (xDistance*xDistance) + (yDistance*yDistance) + (zDistance*zDistance)); float result = 0.0; if ((r >= 0) && (r <= h_)) {result = pow(h_-r,3);} else {return 0;} return a_*result; }
5e14de7a87c6958a6a11ddb6e3757758ceb421f8
785e865126fecd2ed27841e2321ba66686b69f39
/Proyecto2/Proyecto2/Cuadro1.h
4ecb0237c1301d839fa0f1674afb29d0e4582e59
[]
no_license
jesussaco9/Proyecto2
90d182ab702087edfe6e748e07e12b882c1f6a71
863acfac7343de8dd8989dec892fc554dd9b762f
refs/heads/master
2022-10-23T18:08:52.513686
2020-06-16T04:04:01
2020-06-16T04:04:01
266,695,117
0
0
null
null
null
null
UTF-8
C++
false
false
201
h
Cuadro1.h
#pragma once #include"ElementosDeMatriz.h" class Cuadro1 : public ElementosDeMatriz { string nombreClase; public: virtual string toString(); virtual string toString2(); string getNombreClase(); };
7f6d6b4dc56869855c7af07d9ac4f6b4ab49e0e7
143845445ea0366183b72423340cd52c2c94c081
/domain/TradeMessage.cpp
51ac5bf309fe8f02337665833a1c9e85a635519f
[]
no_license
rorymcstay/algomon
b2286cdc1bfbe7a60daeca392438315c3360f372
ff6872088ed09c33ca8d2b564a3f3cb7d009e3aa
refs/heads/master
2021-07-06T13:26:33.131357
2021-03-28T19:25:21
2021-03-28T19:25:21
229,152,753
0
0
null
null
null
null
UTF-8
C++
false
false
925
cpp
TradeMessage.cpp
#include <vector> #include <string> #include <iostream> #include <include.hpp> #include "Enums.h" #include "Quote.h" #include "TradeMessage.h" namespace domain { TradeMessage::TradeMessage(std::vector<std::string> data_) : Event(EventType::TradeMessage, TimeType::Stamped) { _type = (MessageType)utils::fromString<int>(data_[1]); _oid = utils::fromString<int>(data_[3]); settimestamp(utils::fromString<double>(data_[0])); // Quote Quote qt = Quote(); qt.setprice(utils::fromString<double>(data_[2])); qt.setquantity(utils::fromString<int>(data_[4])); switch(utils::fromString<int>(data_[5])) { case 1: { qt.setside(Side::Buy); break; } case -1: { qt.setside(Side::Sell); break; } } } }
32757f3277780bf90a90c0e7599d5e65c671b615
e0366490052cca4337d797f6285adcafc2eb33f4
/3Elevators-scheduling/elevator.h
93de57ff4a5b319cf92bc7ff9e8af4bbbbb53b44
[]
no_license
0pyj0/3Elevator-scheduling
5ce5976bfb59d245512c6ede7e4849740c6c08e2
32d4e02f1e7a7e4959c27504154d4a5250f80999
refs/heads/master
2020-03-17T03:35:44.459096
2018-05-13T13:46:07
2018-05-13T13:46:07
133,242,103
0
0
null
null
null
null
GB18030
C++
false
false
729
h
elevator.h
class Elevator { private: int floor; public: int timeq;//请求时间 int fromfloor;//请求楼层 int gotofloor;//目的楼层 static int sum; int nowFloor1(int i,int j,int &r,int &s,int f,int w);//当请求时间小于s时, //i为上一个请求的gotofloor和当前请求的fromfloor的时间差 //j为当前请求的gotofloor和fromfloor的时间差 //r为当前所处楼层, //用s(sum)计时刻, //f为gotofloor int nowFloor2(int &s,int f,int w);//当请求时刻大于s时,直接跳到请求时刻,无需计算请求之间的耗时 //f为fromfloor Elevator(); ~Elevator(); };
0eef0ad32c0d282b02ca04bfc8e4ea8fd5c17e43
da1b99cb8f45186085339ea8043ffb335bcd733c
/UvaOnlineJudge/299.CPP
e81c9e5b824eb4f222ce8083714782975475ff1d
[]
no_license
Intiser/ProblemSolvingAndContest
2dff8470fe109701d2e3e407d757f8859691dbd1
de5431261ac675f323e1d8c19008b0523ba6455e
refs/heads/master
2020-03-28T04:33:15.934870
2019-02-12T09:43:54
2019-02-12T09:43:54
147,721,990
0
0
null
null
null
null
UTF-8
C++
false
false
631
cpp
299.CPP
#include<iostream> using namespace std; void swap1(int *a,int *b) { int temp; temp=*a; *a=*b; *b=temp; } int main() { int t,n,s,i,j,k,a[50]; cin>>t; for(i=0;i<t;i++) { cin>>n; for(j=0;j<n;j++) { cin>>a[j]; } for(j=0,s=0;j<n;j++) { for(k=j+1;k<n;k++) { if(a[j]>a[k]) { // swap1(&a[k],&a[k-1]); s++; } } } cout<<"Optimal train swapping takes "<<s<<" swaps."<<endl; } }
a3ceb949f3916cdaa1461748071e3effb36f6521
8286803ece758209dd196ab69fbe4a212ff9dceb
/Source/Scene.cpp
7b0ffd55775ef0651e0fbb9abaacf3e7757fd1d3
[ "MIT" ]
permissive
Balajanovski/teapot-demo
37436bd1da2388d8e2ae8c93eb7d5e8aa5fcab00
d4291b8fe6a0464d92b310eaf799757a0c9183c1
refs/heads/master
2020-03-29T22:05:17.328449
2018-10-03T22:48:15
2018-10-03T22:48:15
150,402,319
0
0
null
null
null
null
UTF-8
C++
false
false
2,686
cpp
Scene.cpp
// // Created by Balajanovski on 2/10/2018. // #include "Scene.h" #include "Util/Cleanup.h" #include "Util/Model.h" #include "Util/Shader.h" #include <climits> #include <vector> #include <string> #include <glm/gtc/type_ptr.hpp> void Scene::Draw(Shader& shader) { for (unsigned int i = 0; i < next_model_key; ++i) { auto range_of_key = objects.equal_range(i); unsigned int num_objects = objects.count(i); // Set model matrices and materials auto iter = range_of_key.first; for (unsigned int j = 0; j < num_objects; ++j, ++iter) { // Set model matrix int model_matrix_loc = glGetUniformLocation(static_cast<GLuint>(shader.ID()), (std::string("models[") + std::to_string(j) + "]").c_str()); glUniformMatrix4fv(model_matrix_loc, 1, GL_FALSE, glm::value_ptr(iter->second->getModelMatrix())); // Set object material auto material = iter->second->getMaterial(); int vec_loc = glGetUniformLocation(static_cast<GLuint>(shader.ID()), "material.ambient"); glUniform3fv(vec_loc, 1, glm::value_ptr(material.ambient)); vec_loc = glGetUniformLocation(static_cast<GLuint>(shader.ID()), "material.diffuse"); glUniform3fv(vec_loc, 1, glm::value_ptr(material.diffuse)); vec_loc = glGetUniformLocation(static_cast<GLuint>(shader.ID()), "material.specular"); glUniform3fv(vec_loc, 1, glm::value_ptr(material.specular)); shader.set_float("material.shininess", material.shininess); } // Draw instances range_of_key.first->second->DrawInstances(num_objects); } } std::shared_ptr<Object> Scene::AddObject(const std::shared_ptr<Model> &mod, const glm::mat4 &matrix, const Material &mat) { auto object = std::make_shared<Object>(mod, matrix, mat); unsigned int model_key = mod->getKey(); if (objects.count(model_key) >= MAX_OBJS_SAME_MODEL) { throwRuntimeError("Scene error: too many objects of the same model"); } objects.insert(std::make_pair(model_key, object)); return object; } void Scene::AddObject(const std::shared_ptr<Object> &obj) { if (objects.count(obj->getModelKey()) >= MAX_OBJS_SAME_MODEL) { throwRuntimeError("Scene error: too many objects of the same model"); } objects.insert(std::make_pair(obj->getModelKey(), obj)); } unsigned int Scene::GetUnusedModelKey() { if (next_model_key > UINT_MAX) { throwRuntimeError("Scene error: too many models loaded.\nnext_model_key would overflow"); } return next_model_key++; }
94611cc561263f46d7443b6b95f6772937bead36
0cfbfa90384e0dd05ac7b16d7db4b7f50c1d52ad
/Deck/ConeyIslandCard.h
77d4e92536204ac8b77ee7adee1cdd7a7b953693
[]
no_license
jack-burns/COMP-345-Assignment-4
2d8d9483dee90cb20ee796394ab2fb0914290e7e
cea4c57b551cc306b8d0f7546580d510358046de
refs/heads/master
2020-04-08T17:52:02.408420
2018-12-01T02:01:07
2018-12-01T02:01:07
159,583,943
0
0
null
2018-11-29T00:31:21
2018-11-29T00:31:21
null
UTF-8
C++
false
false
235
h
ConeyIslandCard.h
#ifndef CONEYISLANDCARD_H #define CONEYISLANDCARD_H #include "Card.h" #include "../Player/Player.h" class ConeyIslandCard : public Card { public: ConeyIslandCard(); ~ConeyIslandCard(); void Play(Player* playerData); }; #endif
b154b53af776dd3a4dc4a691937026d5fa135e50
e222e5be832442abac5545236277671fea56a1d1
/src/engine/bind/global_object_template.hpp
11b7cf45f885b7bc3ec46f438070607ef94b8cc6
[ "MIT" ]
permissive
YuukiTsuchida/v8_embeded
c28e208b6b4b73c41d0a5c81aeca71d1111c635c
c6e18f4e91fcc50607f8e3edc745a3afa30b2871
refs/heads/master
2020-12-31T22:56:33.725884
2020-11-10T04:00:12
2020-11-10T04:00:12
239,064,117
0
0
MIT
2020-05-20T08:24:54
2020-02-08T03:39:19
C++
UTF-8
C++
false
false
1,094
hpp
global_object_template.hpp
#pragma once #include <v8.h> #include <cassert> #include "object_template_binder.hpp" namespace engine::bind { template <class Type> class global_object_template { public: explicit global_object_template() = default; explicit global_object_template(v8::Isolate* isolate) { initialize(isolate); } ~global_object_template() { object_template_.Reset(); } void initialize(v8::Isolate* isolate) { if (!object_template_.IsEmpty()) { assert(false); } auto object_template = v8::ObjectTemplate::New(isolate); object_template->SetInternalFieldCount(1); object_template_binder<Type> binder(object_template); binder.bind(isolate); auto global_template = v8::Global<v8::ObjectTemplate>(isolate, object_template); object_template_ = global_template.Pass(); } v8::Local<v8::Object> create(v8::Isolate* isolate) const { return object_template_.Get(isolate) ->NewInstance(isolate->GetCurrentContext()) .ToLocalChecked(); } private: v8::Global<v8::ObjectTemplate> object_template_; }; } // namespace engine::bind
ae7762f96360e102ec3f25788f21a5b6516e9cf5
1550679ab16d8e8ef8727bcd97083615c4f90fc3
/RPG_Game/Character_builder/CharacterBuilder/configrationwindow.cpp
42c1f78a2767fac628b0b88f16e5f8482fb3801c
[]
no_license
shbli/2D-Animator
ead2e3fd902b749a505dcfe8484f7f87fdfcf2cd
6c90cc53163981183163cd445d7b30337275157a
refs/heads/master
2021-08-23T04:10:12.824644
2017-12-03T06:07:32
2017-12-03T06:07:32
112,904,066
0
0
null
null
null
null
UTF-8
C++
false
false
35,333
cpp
configrationwindow.cpp
#include "configrationwindow.h" #include "ui_configrationwindow.h" #define numberOfParts 20 ConfigrationWindow::ConfigrationWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::ConfigrationWindow) { ui->setupUi(this); moving = false; // setWindowFlags(Qt::FramelessWindowHint); // move(QPoint(1200,100)); resize(1280,750); svgSceneSelected = true; svgScene = 0; selectedHbox = NULL; selectedAnimationStep = NULL; ui->XMLNamelineEdit->setText(QSettings().value("xml_name").toString()); #ifdef viewerOnly setFixedSize(200,100); ui->scrollArea->hide(); ui->centralWidget->layout()->addWidget(ui->XMLNamelineEdit); ui->centralWidget->layout()->addWidget(ui->refresh); ui->refresh->setFixedWidth(200); ui->centralWidget->layout()->addWidget(ui->slowAnimationPushButton); ui->slowAnimationPushButton->setFixedWidth(200); ui->centralWidget->layout()->addWidget(ui->label); #else connect(ui->loadXMLpushButton,SIGNAL(clicked()),this,SLOT(loadXML()),Qt::UniqueConnection); connect(ui->JointtreeWidget,SIGNAL(itemSelectionChanged()),this,SLOT(JointTreeSelectionChanged()),Qt::UniqueConnection); connect(ui->AnimationtreeWidget,SIGNAL(itemSelectionChanged()),this,SLOT(AnimationTreeSelectionChanged()),Qt::UniqueConnection); ui->JointXAnchlineEdit->setDisabled(1); setUpMovementsDropDown(); ui->AnimationSetValuespushButton->setEnabled(0); ui->refresh->setDisabled(1); #endif skeltalwidget = new skeltal_widget(this,this); disableUpdateSave = false; Director::sharedDirector()->mainViewWindow->close(); Director::sharedDirector()->sharedGraphicView()->setMinimumWidth(origwallw/1.5); Director::sharedDirector()->sharedGraphicView()->setMinimumHeight(origwallh/1.25); Director::sharedDirector()->sharedGraphicView()->setMaximumWidth(origwallw/1.5); Director::sharedDirector()->sharedGraphicView()->setMaximumHeight(origwallh/1.25); Director::sharedDirector()->sharedGraphicView()->setFixedWidth(origwallw/1.5); Director::sharedDirector()->sharedGraphicView()->setFixedHeight(origwallh/1.25); Director::sharedDirector()->sharedGraphicView()->setFrameStyle(1); ui->GraphicsgridLayout->addWidget(Director::sharedDirector()->sharedGraphicView()); if (!ui->scrollArea->horizontalScrollBar()->isHidden() || !ui->scrollArea->verticalScrollBar()->isHidden()) { qDebug() << "Scroll bar not hidden"; } ui->toolBox->setCurrentIndex(0); ui->AnimationtreeWidget->setColumnWidth(0,100); ui->AnimationtreeWidget->setColumnWidth(2,40); QFont font = ui->label_23->font(); font.setPointSize(7); ui->label_23->setFont(font); ui->keyFrameslistWidget->clear(); key_frames_strings.clear(); ui->keyFrameslistWidget->addItem("To show key frames, select Main from Joints list, then select animation name from Joint animation list! Make sure to click on an animation name, not time!!!"); font = ui->keyFrameslistWidget->item(ui->keyFrameslistWidget->count()-1)->font(); font.setBold(true); font.setPixelSize(14); ui->keyFrameslistWidget->item(ui->keyFrameslistWidget->count()-1)->setFont(font); ui->keyFrameslistWidget->item(ui->keyFrameslistWidget->count()-1)->setTextColor(QColor(0,190,255)); time_diffrence = ui->KeyFramedoubleSpinBox->value(); // ui->toolBox->setFixedWidth(400); } ConfigrationWindow::~ConfigrationWindow() { delete ui;delete skeltalwidget; } QTreeWidget *ConfigrationWindow::jointTreeWidget() { return ui->JointtreeWidget; } void ConfigrationWindow::setDragAndDropElement(skeltal_hbox *hBox) { svgScene->dragAndDropJoint = hBox; } void ConfigrationWindow::on_refresh_clicked() { ui->refresh->setEnabled(0); #ifdef viewerOnly Scene *scene = Scene::node(); pngScene = new png_scene; scene->addChild(pngScene); Director::sharedDirector()->replaceScene(scene); pngScene->loadCharacterFromXML(ui->XMLNamelineEdit->text(),0); #else submitPrevChanges(); if (checkAnimationValues()) { on_SaveXML_clicked(); Scene *scene = Scene::node(); svgScene = new svg_scene; scene->addChild(svgScene); Director::sharedDirector()->replaceScene(scene); svgScene->loadCharacterFromXML(ui->XMLNamelineEdit->text(),skeltalwidget->rootBox); } #endif ui->refresh->setEnabled(1); } void ConfigrationWindow::on_SaveXML_clicked() { if (ui->XMLNamelineEdit->text().isEmpty()) { //error message QMessageBox box; QString messagetext; messagetext = QString::fromUtf8("File name cannot be empty!"); box.setText(messagetext); box.exec(); } else { if (skeltalwidget->noChilds()) { //display appropriate error message //error message QMessageBox box; QString messagetext; messagetext = QString::fromUtf8("Canot save a file, with 0 child joints, you may need to load an older file, or create a new character"); box.setText(messagetext); box.exec(); } else { QSettings().setValue("xml_name",ui->XMLNamelineEdit->text()); QSettings().sync(); // //creating the xml file in ram memery QDomDocument xmlDocument; QDomElement characterElement = xmlDocument.createElement("character"); characterElement.setAttribute("name",ui->NamelineEdit->text()); characterElement.setAttribute("type",ui->TypelineEdit->text()); characterElement.setAttribute("circule-y-offset",ui->yOffsetlineEdit->text()); characterElement.setAttribute("speed",ui->SpeedlineEdit->text()); characterElement.setAttribute("w1-xml",ui->Weapon1lineEdit->text()); characterElement.setAttribute("health",ui->HealthlineEdit->text()); characterElement.setAttribute("level",ui->LevellineEdit->text()); characterElement.setAttribute("super-attack-xml",ui->SuperXMLlineEdit->text()); characterElement.appendChild(skeltalwidget->getSkeltalDomElement(&xmlDocument)); xmlDocument.appendChild(characterElement); //saving actual xml content to a file QFile file(ui->XMLNamelineEdit->text()); if ( ! file.open( QIODevice::WriteOnly | QIODevice::Text ) ) { qFatal("Cannot create XML File"); } QTextStream stream(&file); QString xmlAsString = xmlDocument.toString(); stream << xmlAsString; file.close(); //saving actual xml content to a file in archive QFile file2("archive/" + ui->XMLNamelineEdit->text().remove(".xml") + "_" + QDate().currentDate().toString(Qt::ISODate) + "_" + QTime().currentTime().toString(Qt::ISODate) + ".xml"); if ( ! file2.open( QIODevice::WriteOnly | QIODevice::Text ) ) { //error message QMessageBox box; QString messagetext; messagetext = QString::fromUtf8("Please create a new folder called archive so that the application can automatically archive old files for you!"); box.setText(messagetext); box.exec(); } else { QTextStream stream(&file2); QString xmlAsString = xmlDocument.toString(); stream << xmlAsString; file2.close(); } } } } void ConfigrationWindow::changeCurrentAnimationTime(int newTimeValue) { bool change = false; if (currentSettingforAnimation != ui->AnimationcomboBox->currentText()) { currentSettingforAnimation = ui->AnimationcomboBox->currentText(); change = true; } svgScene->setXMLTestCharacterCurrentAnimationTime(ui->AnimationcomboBox->currentText(),newTimeValue); } void ConfigrationWindow::loadXML() { QTime timer; timer.start(); //this button should be clicked on a new empty character QDomDocument xmlDocument; QFile openxml(ui->XMLNamelineEdit->text()); if (! openxml.open( QIODevice::ReadOnly | QIODevice::Text)) { //error message QMessageBox box; QString messagetext; messagetext = QString::fromUtf8("ERROR : File not found, please make sure the xml file exist in the character directory!!!"); box.setText(messagetext); box.exec(); } else { ui->loadXMLpushButton->setEnabled(false); ui->refresh->setEnabled(true); xmlDocument.setContent(&openxml); QDomElement document = xmlDocument.documentElement(); ui->TypelineEdit->setText(document.attribute("type")); ui->NamelineEdit->setText(document.attribute("name")); ui->yOffsetlineEdit->setText(document.attribute("circule-y-offset")); ui->SpeedlineEdit->setText(document.attribute("speed")); ui->Weapon1lineEdit->setText(document.attribute("w1-xml")); ui->HealthlineEdit->setText(document.attribute("health")); ui->LevellineEdit->setText(document.attribute("level")); ui->SuperXMLlineEdit->setText(document.attribute("super-attack-xml")); QDomElement eye; //use the eye element to load into it the first, or root joint eye = document.namedItem("joint").toElement(); skeltalwidget->loadFromQDomElement(&eye); ui->JointtreeWidget->expandAll(); openxml.close(); } } bool ConfigrationWindow::checkAnimationValues() { return skeltalwidget->checkAnimationValues(); } void ConfigrationWindow::JointTreeSelectionChanged() { updateSelectedAnimationIndex(); submitPrevChanges(); selectedAnimationStep = NULL; if (svgScene != 0) { svgScene->setTouchEnabled(false); svgScene->hideLine(); } selectedHbox = static_cast<skeltal_hbox*>(ui->JointtreeWidget->currentItem()); if (selectedHbox != NULL) { ui->JointNamelineEdit->setText(selectedHbox->partName); if (!selectedHbox->skeltalSVGs.isEmpty()) ui->JointSVGlineEdit->setText(selectedHbox->skeltalSVGs.first()); ui->JointRotationlineEdit->setText(QString().setNum(selectedHbox->rValueBox)); bool disableYInteraction = false; if (selectedHbox->containsW1Box) { disableYInteraction = true; } else { if (selectedHbox->skeltalSVGs.isEmpty()) { disableYInteraction = false; } else { if (selectedHbox->skeltalSVGs.first() == "") { disableYInteraction = false; } else { disableYInteraction = true; } } } if (!disableYInteraction) { ui->JointYlineEdit->setText(QString().setNum(selectedHbox->yValueBox / (origwallw/ Director::sharedDirector()->winSizeInPixels().width()))); ui->JointYlineEdit->setEnabled(1); ui->JointYDragDroppushButton->setEnabled(1); } else { ui->JointYlineEdit->setText(QString().setNum(0)); ui->JointYlineEdit->setDisabled(1); ui->JointYDragDroppushButton->setDisabled(1); } ui->JointXAnchlineEdit->setText(QString().setNum(selectedHbox->xAnchValueBox)); ui->JointXAnchlineEdit->setText(QString().setNum(0.5)); ui->JointYAnchlineEdit->setText(QString().setNum(selectedHbox->yAnchValueBox)); ui->JointZlineEdit->setText(QString().setNum(selectedHbox->zValueBox)); ui->JointW1checkBox->setChecked(selectedHbox->containsW1Box); } refreshAnimationTree(); selectUpdateSelectedAnimationIndex(); } void ConfigrationWindow::AnimationTreeSelectionChanged() { if (!disableUpdateSave) { submitPrevAnimationChanges(); } else { disableUpdateSave = false; } // qDebug() << "Test 1 " << ui->AnimationtreeWidget->currentItem() << " Index " << ui->AnimationtreeWidget->currentIndex(); if (ui->AnimationtreeWidget->currentItem() != 0) { if (ui->AnimationtreeWidget->currentItem()->text(1) != "") { selectedAnimationStep = static_cast<animationStep*>(ui->AnimationtreeWidget->currentItem()); if (selectedAnimationStep != NULL) { ui->AnimationTimelineEdit->setText(QString().setNum(selectedAnimationStep->tBox)); ui->AnimationRotationlineEdit->setText(QString().setNum(selectedAnimationStep->rBox)); bool disableYInteraction = false; if (selectedHbox->containsW1Box) { disableYInteraction = true; } else { if (selectedHbox->skeltalSVGs.isEmpty()) { disableYInteraction = false; } else { if (selectedHbox->skeltalSVGs.first() == "") { disableYInteraction = false; } else { disableYInteraction = true; } } } if (!disableYInteraction) { ui->AnimationYlineEdit->setText(QString().setNum(selectedAnimationStep->yBox / (origwallw/ Director::sharedDirector()->winSizeInPixels().width()))); if (selectedHbox->part_type != 0) { ui->AnimationYlineEdit->setEnabled(1); ui->AnimationYDragDroppushButton->setEnabled(1); } } else { ui->AnimationYlineEdit->setText(QString().setNum(0)); ui->AnimationYlineEdit->setDisabled(1); ui->AnimationYDragDroppushButton->setDisabled(1); } ui->AnimationFireW1checkBox->setChecked(selectedAnimationStep->fireW1Box); } } else { //a root is selected, let's refresh the key frames if (selectedHbox->part_type == 0) { refresh_key_frames(); } } } } void ConfigrationWindow::submitPrevChanges() { if (selectedHbox != NULL) { submitPrevAnimationChanges(); selectedHbox->partName = ui->JointNamelineEdit->text(); if (!selectedHbox->skeltalSVGs.isEmpty()) { selectedHbox->skeltalSVGs.replace(0,ui->JointSVGlineEdit->text()); } selectedHbox->rValueBox = ui->JointRotationlineEdit->text().toFloat(); selectedHbox->yValueBox = ui->JointYlineEdit->text().toFloat() * (origwallw/ Director::sharedDirector()->winSizeInPixels().width()); selectedHbox->xAnchValueBox = ui->JointXAnchlineEdit->text().toFloat(); selectedHbox->yAnchValueBox = ui->JointYAnchlineEdit->text().toFloat(); selectedHbox->zValueBox = ui->JointZlineEdit->text().toFloat(); selectedHbox->containsW1Box = ui->JointW1checkBox->isChecked(); selectedHbox->refreshParameters(); } } void ConfigrationWindow::submitPrevAnimationChanges() { if (selectedAnimationStep != NULL) { if (selectedAnimationStep->parentPartType == 0) { } else { selectedAnimationStep->tBox = ui->AnimationTimelineEdit->text().toFloat(); selectedAnimationStep->rBox = ui->AnimationRotationlineEdit->text().toFloat(); selectedAnimationStep->yBox = ui->AnimationYlineEdit->text().toFloat() * (origwallw/ Director::sharedDirector()->winSizeInPixels().width()); selectedAnimationStep->fireW1Box = ui->AnimationFireW1checkBox->isChecked(); } selectedAnimationStep->refreshStepParameters(); } } void ConfigrationWindow::refreshAnimationTree() { if (selectedHbox != NULL ) { //this is the root selected if (selectedHbox->part_type == 0) { enableRootAnimationItems(); } else { enableAnyAnimationItems(); } while (ui->AnimationtreeWidget->topLevelItemCount() > 0) ui->AnimationtreeWidget->takeTopLevelItem(0); for (int i = 0; i < selectedHbox->animationsBoxes.size(); i++) { ui->AnimationtreeWidget->addTopLevelItem(selectedHbox->animationsBoxes.at(i)); if (selectedAnimationStep != NULL && selectedHbox->part_type != 0) { if (ui->AnimationtreeWidget->topLevelItem(ui->AnimationtreeWidget->topLevelItemCount() - 1)->text(0) == selectedAnimationStep->parentAnimationBox->animationName) { ui->AnimationtreeWidget->topLevelItem(ui->AnimationtreeWidget->topLevelItemCount() - 1)->setExpanded(true); } } else { ui->AnimationtreeWidget->topLevelItem(ui->AnimationtreeWidget->topLevelItemCount() - 1)->setExpanded(true); } } } } void ConfigrationWindow::refresh_key_frames() { if (selectedHbox != NULL) { if (selectedHbox->part_type == 0) { if (time_diffrence >= 0.01) { if (ui->AnimationtreeWidget->currentItem() != 0) { if (ui->AnimationtreeWidget->currentItem()->childCount() != 0) { float total_time_frame = ui->AnimationtreeWidget->currentItem()->child(0)->text(0).toFloat(); key_animation_name = ui->AnimationtreeWidget->currentItem()->text(0); ui->keyFrameslistWidget->clear(); key_frames_strings.clear(); QSet <QString> keySet; float start_time = 0; while (start_time <= total_time_frame) { keySet.insert(QString().setNum(start_time)); start_time += time_diffrence; } int selected_animation_index = -1; if (selectedHbox != NULL) { for (int i = 0; i < selectedHbox->animationsBoxes.size(); i++) { if (selectedHbox->animationsBoxes.at(i)->animationName == key_animation_name) { selected_animation_index = i; skeltal_hbox* to_be_parsed = 0; if (selectedHbox->part_type == 0 && selectedHbox->child_joint.size() > 0) { to_be_parsed = selectedHbox->child_joint.first(); } else { to_be_parsed = selectedHbox; } if (to_be_parsed != 0) { for (int j = 0; j < to_be_parsed->animationsBoxes.at(selected_animation_index)->stepslist.size(); j++) { QSet<QString>::const_iterator i = keySet.insert(QString().setNum(to_be_parsed->animationsBoxes.at(selected_animation_index)->stepslist.at(j)->tBox)); QString temp = *i; temp.append("00"); keySet.remove(*i); keySet.insert(temp); } } } } QStringList keyList = keySet.toList(); keyList.sort(); QString string_to_append; bool is_key_frame = false; while (!keyList.isEmpty()) { string_to_append = keyList.takeFirst(); if (string_to_append.contains("00")) { is_key_frame = true; string_to_append.remove("00"); } else { is_key_frame = false; } key_frames_strings.append(string_to_append); ui->keyFrameslistWidget->addItem("'"); if (is_key_frame) { QFont font = ui->keyFrameslistWidget->item(ui->keyFrameslistWidget->count()-1)->font(); font.setBold(true); ui->keyFrameslistWidget->item(ui->keyFrameslistWidget->count()-1)->setFont(font); ui->keyFrameslistWidget->item(ui->keyFrameslistWidget->count()-1)->setTextColor(QColor(0,190,255)); } QSize size = ui->keyFrameslistWidget->item(ui->keyFrameslistWidget->count()-1)->sizeHint(); size.setWidth(20); size.setHeight(20); ui->keyFrameslistWidget->item(ui->keyFrameslistWidget->count()-1)->setSizeHint(size); } // ui->keyFrameslistWidget->sortItems(Qt::AscendingOrder); } } } } } } } void ConfigrationWindow::on_runAnimationButton_clicked() { if (ui->AnimationcomboBox->currentText() != "") { if (svgScene != 0) { if (svgScene->xml_test_character != 0) { svgScene->setXMLTestCharacterCurrentAnimationTime(ui->AnimationcomboBox->currentText(),0); svgScene->runAnimationOnCharacter(); } } } } void ConfigrationWindow::on_stopAnimationButton_clicked() { if (svgScene != 0) { if (svgScene->xml_test_character != 0) { svgScene->stopAnimationOnCharacter(); } } } void ConfigrationWindow::keyPressEvent(QKeyEvent *event) { qDebug() << "key code " << event->key(); if (event->key() == 16777220) { on_refresh_clicked(); qDebug() << "Enter clicked"; } } void ConfigrationWindow::updateSelectedAnimationIndex() { if (selectedHbox != NULL && selectedAnimationStep != NULL) { for (int i = 0; i < selectedHbox->animationsBoxes.size(); i++) { if (selectedHbox->animationsBoxes.at(i)->animationName == selectedAnimationStep->parentAnimationBox->animationName) { selectedAnimationIndex = i; selectedAnimationTimeLine = selectedAnimationStep->tBox; return; } } } } void ConfigrationWindow::selectUpdateSelectedAnimationIndex() { if (selectedHbox != NULL) { if (selectedAnimationIndex >= 0 && selectedAnimationIndex < selectedHbox->animationsBoxes.size()) { for (int i = 0; i < selectedHbox->animationsBoxes.at(selectedAnimationIndex)->stepslist.size(); i++) { if (selectedHbox->animationsBoxes.at(selectedAnimationIndex)->stepslist.at(i)->tBox == selectedAnimationTimeLine) { disableUpdateSave = true; ui->AnimationtreeWidget->setCurrentItem(selectedHbox->animationsBoxes.at(selectedAnimationIndex)->stepslist.at(i)); } } } } } void ConfigrationWindow::setUpMovementsDropDown() { QDomDocument xmlDocument; QFile openxml("movements_types.xml"); if (! openxml.open( QIODevice::ReadOnly | QIODevice::Text)) { QMessageBox box; QString messagetext; messagetext = QString::fromUtf8("File movements_types.xml must be in the character directory, application will now close"); box.setText(messagetext); box.exec(); qFatal("Cannot read xml file!!"); } xmlDocument.setContent(&openxml); openxml.close(); QDomElement animationtypes = xmlDocument.documentElement(); QDomNode animationNode = animationtypes.firstChild(); while (!animationNode.isNull()) { ui->AnimationcomboBox->addItem(animationNode.nodeName()); animationNode = animationNode.nextSibling(); } } void ConfigrationWindow::enableRootAnimationItems() { if (!ui->label_2->isEnabled()) { setRootAnimationEnabled(true); } } void ConfigrationWindow::enableAnyAnimationItems() { if (!ui->label_22->isEnabled()) { setRootAnimationEnabled(false); } } void ConfigrationWindow::setRootAnimationEnabled(bool enable) { if (enable) { ui->toolBox_2->setCurrentIndex(0); } else { ui->toolBox_2->setCurrentIndex(1); } ui->label_2->setEnabled(enable); ui->AnimationSetValuespushButton->setEnabled(enable); ui->AnimationChangeTimelineEdit->setEnabled(enable); ui->ChangeAnimationPointpushButton->setEnabled(enable); ui->label_12->setEnabled(enable); ui->label_16->setEnabled(enable); ui->AnimationTotalTimelineEdit->setEnabled(enable); ui->AddAnimationPointpushButton->setEnabled(enable); ui->RemoveAnimationPointpushButton->setEnabled(enable); ui->AnimationTimelineEdit->setEnabled(!enable); ui->AnimationRotationlineEdit->setEnabled(!enable); ui->AnimationRDragDroppushButton->setEnabled(!enable); ui->AnimationFireW1checkBox->setEnabled(!enable); ui->AnimationYDragDroppushButton->setEnabled(!enable); ui->AnimationYlineEdit->setEnabled(!enable); ui->label_22->setEnabled(!enable); } void ConfigrationWindow::disableWholeAnimationSection() { bool enable = true; ui->label_2->setEnabled(!enable); ui->AnimationTotalTimelineEdit->setEnabled(!enable); ui->AddAnimationPointpushButton->setEnabled(!enable); ui->RemoveAnimationPointpushButton->setEnabled(!enable); ui->AnimationTimelineEdit->setEnabled(!enable); ui->AnimationRotationlineEdit->setEnabled(!enable); ui->AnimationRDragDroppushButton->setEnabled(!enable); ui->AnimationFireW1checkBox->setEnabled(!enable); ui->AnimationYDragDroppushButton->setEnabled(!enable); ui->AnimationYlineEdit->setEnabled(!enable); ui->label_22->setEnabled(!enable); } void ConfigrationWindow::on_setValuesPushButton_clicked() { if (svgScene != 0) { svgScene->update(0.5); } } void ConfigrationWindow::on_AddAnimationPointpushButton_clicked() { if (selectedHbox != NULL) { if (selectedAnimationStep != NULL) { for (int i = 0; i < selectedHbox->animationsBoxes.size(); i++) { if (selectedHbox->animationsBoxes.at(i)->animationName == selectedAnimationStep->parentAnimationBox->animationName) { selectedHbox->animationsBoxes.at(i)->addNewStep(ui->AnimationTotalTimelineEdit->text().toFloat(),i); selectedAnimationStep->refreshStepParameters(); return; } } } } } void ConfigrationWindow::on_RemoveAnimationPointpushButton_clicked() { if (selectedHbox != NULL) { if (selectedAnimationStep != NULL) { for (int i = 0; i < selectedHbox->animationsBoxes.size(); i++) { if (selectedHbox->animationsBoxes.at(i)->animationName == selectedAnimationStep->parentAnimationBox->animationName) { selectedHbox->animationsBoxes.at(i)->removeStep(ui->AnimationTotalTimelineEdit->text().toFloat(),i); submitPrevAnimationChanges(); return; } } } } } void ConfigrationWindow::on_AddJointpushButton_clicked() { if (selectedHbox != NULL) { selectedHbox->addJoint_button(); //add animation for that child too for (int i = 0; i < selectedHbox->animationsBoxes.size(); i++) { for (int j = 0; j < selectedHbox->animationsBoxes.at(i)->stepslist.size(); j++) { selectedHbox->child_joint.last()->animationsBoxes.at(i)->addNewStep(selectedHbox->animationsBoxes.at(i)->stepslist.at(j)->tBox,i); } } } } void ConfigrationWindow::on_DeleteJointpushButton_clicked() { if (selectedHbox != NULL) { selectedHbox->removeJoint_button(); } } void ConfigrationWindow::on_JointYDragDroppushButton_clicked() { if (selectedHbox != NULL) { if (selectedHbox->partPointer != 0) { if (svgScene != 0) { svgScene->setTouchEnabled(true); } svgScene->dragAndDropJoint = selectedHbox; svgScene->dragDropLineEdit = ui->JointYlineEdit; svgScene->rotation = false; svgScene->updateJointSelection(); } } } void ConfigrationWindow::on_JointRotationDragDroppushButton_clicked() { if (selectedHbox != NULL) { if (selectedHbox->partPointer != 0) { if (svgScene != 0) { svgScene->setTouchEnabled(true); } svgScene->dragAndDropJoint = selectedHbox; svgScene->dragDropLineEdit = ui->JointRotationlineEdit; svgScene->rotation = true; svgScene->updateJointSelection(); } } } void ConfigrationWindow::on_AnimationRDragDroppushButton_clicked() { if (selectedHbox != NULL) { if (selectedHbox->partPointer != 0) { if (svgScene != 0) { svgScene->setTouchEnabled(true); } svgScene->dragAndDropJoint = selectedHbox; svgScene->dragDropLineEdit = ui->AnimationRotationlineEdit; svgScene->rotation = true; svgScene->updateJointSelection(); } } } void ConfigrationWindow::on_AnimationYDragDroppushButton_clicked() { if (selectedHbox != NULL) { if (selectedHbox->partPointer != 0) { if (svgScene != 0) { svgScene->setTouchEnabled(true); } svgScene->dragAndDropJoint = selectedHbox; svgScene->dragDropLineEdit = ui->AnimationYlineEdit; svgScene->rotation = false; svgScene->updateJointSelection(); } } } void ConfigrationWindow::on_AnimationSetValuespushButton_clicked() { if (skeltalwidget->rootBox != 0) { if (selectedHbox != 0) { if (selectedAnimationStep != 0) { for (int i = 0; i < selectedHbox->animationsBoxes.size(); i++) { if (selectedHbox->animationsBoxes.at(i)->animationName == selectedAnimationStep->parentAnimationBox->animationName) { skeltalwidget->rootBox->setPartValues(ui->AnimationTotalTimelineEdit->text().toFloat(),i); svgScene->update(0); return; } } } } } } void ConfigrationWindow::on_JointXDragDroppushButton_clicked() { if (selectedHbox != NULL) { if (selectedHbox->partPointer != 0) { svgScene->dragAndDropJoint = selectedHbox; svgScene->dragDropLineEdit = ui->JointYlineEdit; svgScene->rotation = false; } } } void ConfigrationWindow::on_slowAnimationPushButton_clicked() { if (game_controller::sharedGameController()->playerSpeed == 1.0) { //this is slow motion game_controller::sharedGameController()->playerSpeed = 0.05; game_controller::sharedGameController()->enemySpeed = 0.05; ui->slowAnimationPushButton->setText("Normal"); } else { //this is slow motion game_controller::sharedGameController()->playerSpeed = 1.0; game_controller::sharedGameController()->enemySpeed = 1.0; ui->slowAnimationPushButton->setText("Slow motion"); } } void ConfigrationWindow::on_ChangeAnimationPointpushButton_clicked() { if (selectedHbox != NULL) { if (selectedAnimationStep != NULL) { for (int i = 0; i < selectedHbox->animationsBoxes.size(); i++) { if (selectedHbox->animationsBoxes.at(i)->animationName == selectedAnimationStep->parentAnimationBox->animationName) { selectedHbox->animationsBoxes.at(i)->changeAStep(ui->AnimationTotalTimelineEdit->text().toFloat(),ui->AnimationChangeTimelineEdit->text().toFloat(),i); selectedAnimationStep->refreshStepParameters(); return; } } } } } void ConfigrationWindow::on_WeaponSuperpushButton_clicked() { if (svgScene != 0) { svgScene->run_sample_super_weapon(); } } void ConfigrationWindow::on_CharSuperpushButton_clicked() { if (svgScene != 0) { svgScene->run_sample_super_char(); } } void ConfigrationWindow::on_JointtreeWidget_itemDoubleClicked(QTreeWidgetItem *item, int column) { //activate super focus on that item if (selectedHbox != NULL) { if (!selectedHbox->partPointer->svgsList.isEmpty() || selectedHbox->partPointer->containsW1) { skeltalwidget->rootBox->dim_all_svgs(); selectedHbox->show_current_one(); } } } void ConfigrationWindow::on_JointResetAllOpacitypushButton_clicked() { skeltalwidget->rootBox->un_dim_all_svgs(); } void ConfigrationWindow::on_keyFrameslistWidget_itemClicked(QListWidgetItem *item) { int row = ui->keyFrameslistWidget->currentRow(); ui->key_frame_label->setText(key_frames_strings.at(row)); if (selectedHbox != NULL) { for (int i = 0; i < selectedHbox->animationsBoxes.size(); i++) { if (selectedHbox->animationsBoxes.at(i)->animationName == key_animation_name) { selectedAnimationIndex = i; } } } if (svgScene != 0) { svgScene->set_key_point_on_character(key_animation_name,key_frames_strings.at(row).toFloat()); if (ui->keyFrameslistWidget->currentItem()->font().bold()) { selectedAnimationTimeLine = key_frames_strings.at(row).toFloat(); selectUpdateSelectedAnimationIndex(); } } } void ConfigrationWindow::on_keyFrameslistWidget_itemPressed(QListWidgetItem *item) { } void ConfigrationWindow::on_keyFrameslistWidget_itemSelectionChanged() { on_keyFrameslistWidget_itemClicked(ui->keyFrameslistWidget->currentItem()); } void ConfigrationWindow::on_KeyFramedoubleSpinBox_valueChanged(double arg1){ time_diffrence = arg1; refresh_key_frames(); } void ConfigrationWindow::on_keyFrameslistWidget_itemDoubleClicked(QListWidgetItem *item) { // int row = ui->keyFrameslistWidget->currentRow(); // ui->keyFrameslistWidget->setEnabled(false); // if (item->font().bold()) { // //we need to remove that point // skeltalwidget->rootBox->animationsBoxes.at(selectedAnimationIndex)->removeStep(key_frames_strings.at(row).toFloat(),selectedAnimationIndex); // QFont font = item->font(); // font.setBold(false); // item->setFont(font); // item->setTextColor(QColor(255,255,255)); // } else { // //we need to add a new point for that point // skeltalwidget->rootBox->animationsBoxes.at(selectedAnimationIndex)->addNewStep(key_frames_strings.at(row).toFloat(),selectedAnimationIndex,true); // QFont font = item->font(); // font.setBold(true); // item->setFont(font); // item->setTextColor(QColor(0,190,255)); // } // ui->keyFrameslistWidget->setEnabled(true); // refresh_key_frames(); }
3bcd967db5f7fed981bba3c7e063ea878eb6f66a
eb6fca7cb8a4425c8fba4a2a9c68fde2ced2077e
/Asteroids/src/FPSActor.cpp
1275d51bf1b9b2e7201972bce42276577fd8a5b5
[]
no_license
hzwr/Asteroids
fdd8c7125fb062f9b9ca7fb315a33faf9bffdc54
d8808cb9b99015783c8e941782970320227fd85a
refs/heads/main
2023-07-13T23:17:04.888168
2021-08-18T04:30:28
2021-08-18T04:30:28
368,767,885
1
1
null
null
null
null
UTF-8
C++
false
false
1,756
cpp
FPSActor.cpp
#include "FPSActor.h" #include "GameEngine/EntitySystem/Components/MoveComponent.h" #include "GameEngine/EntitySystem/Components/Camera/FirstPersonCamera.h" FPSActor::FPSActor(Game *game) :Actor(game) { m_moveComp = new MoveComponent(this); m_cameraComp = new FirstPersonCamera(this); } void FPSActor::UpdateActor(float deltaTime) { Actor::UpdateActor(deltaTime); } void FPSActor::ActorInput(const InputState &state) { float forwardSpeed = 0.0f; //float angularSpeed = 0.0f; float strafeSpeed = 0.0f; // wasd movement if (state.keyboard.GetKeyValue(SDL_SCANCODE_W)) { forwardSpeed += 30.0f; } if (state.keyboard.GetKeyValue(SDL_SCANCODE_S)) { forwardSpeed -= 30.0f; } if (state.keyboard.GetKeyValue(SDL_SCANCODE_A)) { //angularSpeed -= Math::TwoPi; strafeSpeed -= 30.0f; } if (state.keyboard.GetKeyValue(SDL_SCANCODE_D)) { //angularSpeed += Math::TwoPi; strafeSpeed += 30.0f; } m_moveComp->SetForwardSpeed(forwardSpeed); m_moveComp->SetStrafeSpeed(strafeSpeed); //m_moveComp->SetAngularSpeed(angularSpeed); // Mouse movement const int maxMouseSpeed = 500; float angularSpeed = 0.0f; const float maxAngularSpeed = Math::Pi * 8; int x = state.mouse.GetPosition().x; // relative pos, set this in game.cpp int y = state.mouse.GetPosition().y; // relative pos, set this in game.cpp if (x != 0) { angularSpeed = static_cast<float>(x) / maxMouseSpeed; angularSpeed *= maxAngularSpeed; } m_moveComp->SetAngularSpeed(angularSpeed); // Update camera pitch speed based on mouse movement const float maxPitchSpeed = Math::Pi * 8; float pitchSpeed = 0.0f; if (y != 0) { pitchSpeed = static_cast<float>(y) / maxMouseSpeed; pitchSpeed *= maxPitchSpeed; } m_cameraComp->SetPitchSpeed(pitchSpeed); }
a573f47953dfa90617cbf61f95f3fdb5518eaa57
cb8349985ab353e193379a0bbf212e2526008c0b
/include/weeds/NoConstructorPublicAndProtected_impl.h
9b59124ab437ce3d4b106a8c3544c67902456933
[]
no_license
ericluii/joos-compiler
b29869479caa4e282e4598b81c3369967b0c03a7
70e915ab001a4812f75302a0f516e1960600035e
refs/heads/master
2021-01-19T07:53:46.020627
2015-04-06T07:23:56
2015-04-06T07:23:56
28,887,471
4
4
null
2015-04-06T07:23:57
2015-01-06T22:52:54
C++
UTF-8
C++
false
false
907
h
NoConstructorPublicAndProtected_impl.h
#ifndef __WEED_NO_CONSTRUCTOR_PUBLIC_AND_PROTECTED_H__ #define __WEED_NO_CONSTRUCTOR_PUBLIC_AND_PROTECTED_H__ #include "weed.h" #include "NoPublicAndProtected_impl.h" class NoConstructorPublicAndProtected : public NoPublicAndProtected { public: NoConstructorPublicAndProtected() { rule = CONSTRUCTOR_PARTS; } std::string getConstructorName(ParseTree* node) { token = node->children[1]->children[0]->children[0]->children[0]->token; return token->getString(); } void check(ParseTree* node) { if(hasMod(MEMBER_MOD_PUBLIC, node) && hasMod(MEMBER_MOD_PROTECTED, node)) { std::stringstream ss; ss << "Constructor '" << getConstructorName(node) << "' in class cannot be both public and protected."; Error(E_WEEDER, token, ss.str()); } } }; #endif
bdf7ed72a27071e3b9bc288adbd10f9f71e66006
335bca3b133b6fdc9f94906ac8d3915c207bee97
/Arduino/FinalV1/includes/BuffData.cpp
a34419ccbd5fc99dbb2e72234298d1d6ee0518ee
[]
no_license
nicolerey/Thesis
efdde66ab2395aad11f9f052f945bfd78a4d9b71
8a7917b91b28d8081c9bbdd1fdb2a76c33abaf36
refs/heads/master
2021-01-10T07:10:10.246904
2016-03-31T14:41:16
2016-03-31T14:41:16
45,770,023
0
1
null
null
null
null
UTF-8
C++
false
false
1,682
cpp
BuffData.cpp
#include "include.h" void ReadDataInBuffer(){ int delPos = 0; int queueLen = 0; while(xbee_serial.available() > 0){ unsigned char in = (unsigned char)xbee_serial.read(); if(!RxQ.Enqueue(in)) break; } queueLen = RxQ.Size() for(int x=0; x<queueLen; x++){ if(RxQ.Peek(x)==0x7E){ unsigned char checkBuff[Q_SIZE]; unsigned char msgBuff[Q_SIZE]; int checkLen = 0; int msgLen = 0; int data_start_index = 0; checkLen = RxQ.Copy(checkBuff, x); msgLen = xbee.Receive(checkBuff, checkLen, msgBuff); if(msgLen > 0){ data_start_index = ((int)msgBuff[9]) + 13; if(msgBuff[9]==msgBuff[10]){ if(msgBuff[8]==0x01 || msgBuff==0x02){ if(msgBuff[8]==0x01) manual_control_flag = 1; else manual_control_flag = 0; ChangeRoomStatus(msgBuff, data_start_index); } else if(msgBuff[8]==0x03){ SyncRoomDateTime(msgBuff, data_start_index); } else if(msgBuff[8]==0x04){ // not yet coded RequestConsumption(msgBuff); } else if(msgBuff[8]==0x07) ARPRequest(msgBuff); else if(msgBuff[8]==0x09) ScheduleFunction(msgBuff); else if(msgBuff[8]==0x0A) CheckRoomStatus(msgBuff, data_start_index); else if(msgBuff[8]==0x0C) ChangePort(msgBuff, data_start_index); switch(msgBuff[8]){ case 0x01: case 0x02: case 0x03: case 0x04: case 0x09: case 0x0C: SendAcknowledgement(msgBuff); break; default: break; } } else SendFrameToOtherModules(msgBuff); x += msgLen; delPos = x; } else{ if(x>0) delPos = x-1; } } } RxQ.Clear(delPos); }
777eb5d55608a805a58a104d24b281f53c1df17f
191bf92db1a9f6df7c30e37a8f0a14d1c220a3bd
/MODEFREQ.cpp
1ca4f89ec8b52cfd0fe5bcdc48f219760cf0d30d
[]
no_license
doomsday861/Allofit
958fa379296e1a4c9a78b25ab0fd7c222bb1f81a
94d644e52a64ff2949ea731c569478e721fc71bf
refs/heads/master
2023-01-04T12:35:10.447467
2022-12-28T09:30:18
2022-12-28T09:30:18
250,110,669
0
1
null
2021-01-11T09:20:21
2020-03-25T22:59:54
C++
UTF-8
C++
false
false
312
cpp
MODEFREQ.cpp
/** * MODEFREQ **/ #include<bits/stdc++.h> #define ll long long #define testcase ll t;cin>>t;while(t--) using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); testcase { ll n; cin>>n; vector<pair<ll,ll>> v(100000); } return 0; }
774621956909d1a1766aa044a81ab6a2407a680d
e0ec926e9c23d9064aad152c14d2070a468d2b0f
/src/algorithms/data_structures/string/str_compression.hpp
2688a82c61581c9fd1635c04128edbc8f63c2c3d
[ "MIT" ]
permissive
xGreat/CppNotes
6aae7497dda51d909097731c03593d9dbb302161
2707db6560ad80b0e5e286a04b2d46e5c0280b3f
refs/heads/master
2023-02-22T00:10:46.391669
2021-01-21T09:24:25
2021-01-21T09:24:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,433
hpp
str_compression.hpp
#ifndef STR_COMPRESSION_HPP_ #define STR_COMPRESSION_HPP_ // https://leetcode.com/problems/string-compression/description/ /* Given an array of characters, compress it in-place. The length after compression must always be smaller than or equal to the original array. Every element of the array should be a character (not int) of length 1. After you are done modifying the input array in-place, return the new length of the array. Follow up: Could you solve it using only O(1) extra space? Example 1: Input: ["a","a","b","b","c","c","c"] Output: Return 6, and the first 6 characters of the input array should be - ["a","2","b","2","c","3"] Explanation: "aa" is replaced by "a2". "bb" is replaced by "b2". "ccc" is replaced by "c3". Example 2: Input: ["a"] Output: Return 1, and the first 1 characters of the input array should be - ["a"] Explanation: Nothing is replaced. Example 3: Input: ["a","b","b","b","b","b","b","b","b","b","b","b","b"] Output: Return 4, and the first 4 characters of the input array should be - ["a","b","1","2"]. Explanation: Since the character "a" does not repeat, it is not compressed. "bbbbbbbbbbbb" is replaced by "b12". Notice each digit has it's own entry in the array. Note: All characters have an ASCII value in [35, 126]. 1 <= len(chars) <= 1000. */ #include <vector> #include <string> namespace Algo::DS::String { class StringCompression { public: static size_t Compress(std::vector<char>& chars) { if (chars.size() < 2) { return chars.size(); } size_t writePos = 0; for (size_t i = 0; i < chars.size(); ++i) { // Count same characters size_t charPos = i, j = i; while(j < chars.size() && chars[charPos] == chars[j]) { ++j; } chars[writePos] = chars[charPos]; ++writePos; size_t elementsNum = j - i; if (elementsNum > 1) { std::string numStr = std::to_string(elementsNum); for (size_t nPos = 0; nPos < numStr.size(); ++nPos, ++writePos) { chars[writePos] = numStr[nPos]; } i += elementsNum - 1; } } chars.resize(writePos); return chars.size(); } }; } #endif /* STR_COMPRESSION_HPP_ */
b38fbffe755d209ab0a5d343447dcca41fbb7e68
ca800bc566ca49f80ffa52d839d175d5ac7ea99f
/src/facefollow.cpp
6df6e97b5ccacc1cd4675b688ca6446ac52d3b7a
[]
no_license
Wei-Fan/ardrone_facefollow
ffb3df02a24c957898f40a57657f4ee038e60ce9
a1da5e2ed1d1c8574c8abc70971a5b9430aea2aa
refs/heads/master
2021-09-10T11:10:29.797904
2018-03-25T09:14:21
2018-03-25T09:14:21
105,608,381
1
0
null
null
null
null
UTF-8
C++
false
false
3,330
cpp
facefollow.cpp
#include <iostream> #include <string> #include "opencv2/highgui/highgui.hpp" #include "opencv2/imgproc/imgproc.hpp" #include "opencv2/opencv.hpp" #include "ros/ros.h" #include "image_transport/image_transport.h" #include "cv_bridge/cv_bridge.h" #include "sensor_msgs/image_encodings.h" #include "ardrone_autonomy/Navdata.h" #include "ardrone_autonomy/navdata_altitude.h" #include "geometry_msgs/Point.h" #include "geometry_msgs/Twist.h" #include "std_msgs/UInt8.h" #include "std_msgs/Float32.h" #include "std_msgs/Bool.h" #define MIDDLE 0 #define RIGHT 1 #define LEFT 2 #define Z_SET 1.5 class Face_Follow { private: ros::NodeHandle node; ros::Subscriber faceside_sub; ros::Subscriber faceloc_sub; ros::Publisher cmd_pub; geometry_msgs::Twist cmd; int current_mode; float face_distance; geometry_msgs::Point face_center; public: Face_Follow(); ~Face_Follow(); void run(double freq); void iteration(const ros::TimerEvent& e); void facesideCallback(const std_msgs::UInt8 &msg); void facelocCallback(const geometry_msgs::Point &msg); }; Face_Follow::Face_Follow() { faceside_sub = node.subscribe("/face_side",1,&Face_Follow::facesideCallback,this); faceloc_sub = node.subscribe("/face_loc",1,&Face_Follow::facelocCallback,this); cmd_pub = node.advertise<geometry_msgs::Twist>("cmd_vel_ref", 1000); } Face_Follow::~Face_Follow() {} void Face_Follow::run(double freq) { ros::NodeHandle node; /*code*/ current_mode = MIDDLE; ros::Timer timer = node.createTimer(ros::Duration(1.0/freq), &Face_Follow::iteration, this); ros::spin(); } void Face_Follow::iteration(const ros::TimerEvent& e) { static float time_elapse = 0; float dt = e.current_real.toSec() - e.last_real.toSec(); time_elapse += dt; /*flight control code*/ if (fabs(face_center.y)>40) { cmd.linear.x = 0.0; cmd.linear.y = 0.0; cmd.linear.z = -face_center.y/100.0; cmd.angular.x = 0.0; cmd.angular.y = 0.0; cmd.angular.z = 0.0; ROS_INFO("altitude control~~~~~\n"); }else if (fabs(face_center.x)>50) { cmd.linear.x = 0.0; cmd.linear.y = 0.0; cmd.linear.z = 0.0; cmd.angular.x = 0.0; cmd.angular.y = 0.0; cmd.angular.z = face_center.x/100.0; ROS_INFO("yaw control~~~~~\n"); }else{ switch(current_mode) { case MIDDLE: cmd.linear.x = (100.0-face_distance)*0.01; cmd.linear.y = 0.0; cmd.linear.z = 0.0; cmd.angular.x = 0.0; cmd.angular.y = 0.0; cmd.angular.z = 0.0; ROS_INFO("distance control~~~~~\n");break; case RIGHT: cmd.linear.x = 0.0; cmd.linear.y = 1.0; cmd.linear.z = 0.0; cmd.angular.x = 0.0; cmd.angular.y = 0.0; cmd.angular.z = 0.0;break; case LEFT:;break; default: cmd.linear.x = 0.0; cmd.linear.y = -1.0; cmd.linear.z = 0.0; cmd.angular.x = 0.0; cmd.angular.y = 0.0; cmd.angular.z = 0.0;;break; } } cmd_pub.publish(cmd); } void Face_Follow::facesideCallback(const std_msgs::UInt8 &msg) { current_mode = msg.data; } void Face_Follow::facelocCallback(const geometry_msgs::Point &msg) { /*x, y is col&roll, z is the size of the face*/ face_center.x = msg.x; face_center.y = msg.y; face_distance = msg.z; } int main(int argc, char **argv) { ros::init(argc, argv, "facefollow"); Face_Follow ff; ff.run(50); return 0; }
cdb7866c913e305c868276d025f09cac6c133560
7bb00eea506d129c94cede3001d437f4ebc4b16f
/20180502/Source/Thread/IThreadTask.cpp
2671ddd648556a394682a88e1afb8440aa7d8ab2
[]
no_license
jhd41/ToolFrame
3e5c82b5a5c41e1ba844b93c3df6dfc5a41572d9
250c7d4371eca95acc1a579f2b861a1c94dfe9e4
refs/heads/master
2020-03-15T03:04:58.371922
2018-05-03T03:01:10
2018-05-03T03:03:05
131,933,829
1
0
null
null
null
null
UTF-8
C++
false
false
685
cpp
IThreadTask.cpp
#include "IThreadTask.h" #include "MThread.h" NS_TOOL_FRAME_BEGIN IThreadTask::IThreadTask(void) { _pMgrTaskThread = &MThread::Singleton().GetTaskMgr(); } IThreadTask::~IThreadTask(void) { StopThread(); } bool IThreadTask::StartThread( int nLoop /*= -1*/,uint uCount /*= 1*/,uint uTimeInterval/*=50*/ ) { if (uCount<=0)return false; CLockScoped lock(_mutex); if (!IThread::StartThread())return false; SetThreadStarted(); return _pMgrTaskThread->AddTask(this,nLoop,uCount,uTimeInterval); } bool IThreadTask::ReqStopThread() { CLockScoped lock(_mutex); if (IsThreadStarted()) _pMgrTaskThread->RemoveTask(this); SetThreadStoped(); return true; } NS_TOOL_FRAME_END
afbd036f2f98bec2287065b71f4e1cfef0829a46
3a3e9b954e8aa884841337ddee3412b9dd879955
/src/binary.cpp
9934cfb3c3258122496ae18ca5db6db55f23f27b
[]
no_license
TheDarkLightX/TML
3db45189b5a311fca8b4e5d7b33b6cc7d709530c
4673f82db19ecac7980e7472474b34a00725517a
refs/heads/master
2022-11-20T17:41:50.307321
2020-07-29T05:21:34
2020-07-29T05:21:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,050
cpp
binary.cpp
// LICENSE // This software is free for use and redistribution while including this // license notice, unless: // 1. is used for commercial or non-personal purposes, or // 2. used for a product which includes or associated with a blockchain or other // decentralized database technology, or // 3. used for a product which includes or associated with the issuance or use // of cryptographic or electronic currencies/coins/tokens. // On all of the mentioned cases, an explicit and written permission is required // from the Author (Ohad Asor). // Contact ohad@idni.org for requesting a permission. This license may be // modified over time by the Author. #include "driver.h" using namespace std; // binary format of a source, dict and resulting bdd database //------------------------------------------------------------------------------ // // header (0xbdd0) // version (0x0000) // dict: // int_t nrels // nrels * cstr rel // int_t nsyms // nsyms * cstr sym // int_t bits // int_t nums // int_t nnodes (V.size()) // nnodes * (int_t v, int h, int l) // cstr source // // usage: // ostream << driver // istream >> driver ostream& write_int(ostream& os, int_t v); ostream& write_string(ostream& os, const lexeme& l); ostream& write_string(ostream& os, const wstring& s); ostream& write_string(ostream& os, const string& s); ostream& write_bdd(ostream& os); ostream& operator<<(ostream& os, const lexeme& l); ostream& operator<<(ostream& os, const dict_t& d); ostream& operator<<(ostream& os, const tables& tbl); ostream& operator<<(ostream& os, const driver& d); int_t read_int(istream& is); wstring read_string(istream& is); istream& read_bdd(istream& is); istream& operator>>(istream& is, dict_t& d); istream& operator>>(istream& is, tables& tbl); istream& operator>>(istream& is, driver& d); // serializing //------------------------------------------------------------------------------ ostream& write_string(ostream& os, const lexeme& l) { return write_string(os, wstring(l[0], l[1]-l[0])); } ostream& write_string(ostream& os, const wstring& ws) { return write_string(os, ws2s(ws)); } ostream& write_string(ostream& os, const string& s) { os.write(reinterpret_cast<const char *>(s.c_str()), s.size()); os.write("\0", sizeof(char)); return os; } ostream& write_int(ostream& os, int_t v) { os.write(reinterpret_cast<const char *>(&v), sizeof(int_t)); return os; } ostream& operator<<(ostream& os, const lexeme& l) { return write_string(os, wstring(l[0], l[1]-l[0])); } ostream& operator<<(ostream& os, const dict_t& d) { write_int(os, d.nrels()); for (size_t i = 0; i != d.nrels(); ++i) write_string(os, d.get_rel(i)); write_int(os, d.nsyms()); for (size_t i = 0; i != d.nsyms(); ++i) write_string(os, d.get_sym(i<<2)); return os; } ostream& operator<<(ostream& os, const tables& tbl) { os << tbl.dict; write_int(os, tbl.bits); write_int(os, tbl.nums); return os; } ostream& write_bdd(ostream& os) { write_int(os, V.size()-2); for (auto b = V.begin()+2; b < V.end(); ++b) { //DBG(o::out()<<L"v: "<<b->v<<L" h: "<<b->h<<L" l: "<<b->l<<endl;) write_int(os, b->v); write_int(os, b->h); write_int(os, b->l); } return os; } ostream& operator<<(ostream& os, const driver& d) { write_int(os, 53437); // 0xbdd00000 if (!d.tbl) for (size_t i = 0; i != 4; ++i) write_int(os, 0); else os << *d.tbl; write_bdd(os); return os << input::source; } // unserializing //------------------------------------------------------------------------------ int_t read_int(istream& is) { int_t v; is.read(reinterpret_cast<char *>(&v), sizeof(int_t)); return v; } wstring read_string(istream& is) { stringstream ss; char p; while (is.read(&p, sizeof(char)), p) ss << p; return s2ws(ss.str()); } istream& read_bdd(istream& is) { int_t nnodes = read_int(is); bdd::gc(); V.clear(); bdd::init(); DBG(o::out() << L"nnodes: " << nnodes << endl;) for (int_t i = 0; i != nnodes; ++i) { int_t v = read_int(is), h = read_int(is), l = read_int(is); DBG(o::out()<<L"v: "<<v<<L" h: "<<h<<L" l: "<<l<<endl;) V.emplace_back(v, h, l); } return is; } istream& operator>>(istream& is, dict_t& d) { int_t nrels = read_int(is); DBG(o::out() << L"nrels: " << nrels << endl;) for (int_t i = 0; i != nrels; ++i) { wstring t = read_string(is); DBG(o::out() << L"\t`" << t << L'`' << endl;) d.get_rel(t); } int_t nsyms = read_int(is); DBG(o::out() << L"nsyms: " << nsyms << endl;) for (int_t i = 0; i != nsyms; ++i) { wstring t = read_string(is); DBG(o::out() << L"\t`" << t << L'`' << endl;) d.get_sym(d.get_lexeme(t)); } return is; } istream& operator>>(istream& is, tables& tbl) { is >> tbl.dict; tbl.bits = read_int(is); DBG(o::out() << L"bits: " << tbl.bits << endl;) tbl.nums = read_int(is); DBG(o::out() << L"nums: " << tbl.nums << endl;) return is; } istream& operator>>(istream& is, driver& d) { read_int(is); // should be 53437 is >> *d.tbl; read_bdd(is); wstring source = read_string(is); DBG(o::out()<<L"source: `"<<source<<L"`"<<endl;) return is; }
a521569250c1fa0f5b87487d55ad0f04dc3a9944
a8ec0b280e63eb06c9352402aaa81c4f6b06b47c
/ZOJ/3774.cpp
8a2f9d5f07a2e6fb26e9dc2b1a20a158846692fe
[ "Unlicense" ]
permissive
CodingYue/acm-icpc
5eff1b81a50cc9f7cbcd93c38b0232ba085a0b97
667596efae998f5480819870714c37e9af0740eb
refs/heads/master
2020-05-16T21:51:33.553238
2017-02-14T11:52:05
2017-02-14T11:52:05
17,904,772
1
0
null
null
null
null
UTF-8
C++
false
false
2,718
cpp
3774.cpp
// File Name: 3774.cpp // Author: YangYue // Created Time: Sun Jun 29 22:05:10 2014 //headers #include <cstdio> #include <cstdlib> #include <cstring> #include <algorithm> #include <cstring> #include <cmath> #include <ctime> #include <string> #include <queue> #include <set> #include <map> #include <iostream> #include <vector> using namespace std; typedef long long LL; typedef unsigned long long ULL; typedef pair<int,int> PII; typedef pair<double,double> PDD; typedef pair<LL, LL>PLL; typedef pair<LL,int>PLI; #define lch(n) ((n<<1)) #define rch(n) ((n<<1)+1) #define lowbit(i) (i&-i) #define sqr(x) ((x)*(x)) #define fi first #define se second #define MP make_pair #define PB push_back const int MaxN = 1000005; const double eps = 1e-8; const double DINF = 1e100; const int INF = 1000000006; const LL LINF = 1000000000000000005ll; const int mod = (int) 1e9 + 9; LL fpow(int a, LL t, int mod) { int res = 1; for (; t; t >>= 1, a = (LL) a * a % mod) if (t & 1) res = (LL) res * a % mod; return res; } int find_root(int n, int p) { n %= p; if (n == 0) return 0; if (fpow(n, (p - 1) / 2, p) != 1) return -1; int Q = p - 1, S = 0; for (; Q % 2 == 0; Q >>= 1) ++S; if (S == 1) return fpow(n, (p + 1) / 4, p); int z; while (1) { z = 1 + rand() % (p - 1); if (fpow(z, (p - 1) / 2, p) != 1) break; } int c = fpow(z, Q, p); int R = fpow(n, (Q + 1) / 2, p); int t = fpow(n, Q, p); int m = S; while (1) { if (t % p == 1) break; int i = 1; for (i = 1; i < m; ++i) if (fpow(t, 1 << i, p) == 1) break; int b = fpow(c, 1 << (m - i - 1), p); R = (LL) R * b % p; t = (LL) t * b % p * b % p; c = (LL) b * b % p; m = i; } return (R % p + p) % p; } LL invfac[1000001], fac[1000001];; LL C(int n, int k) { return fac[n] * invfac[n-k] % mod * invfac[k] % mod; } LL calc(LL p1, LL p2, int a, int b, LL n) { LL p = fpow(p1, a, mod) * fpow(p2, b, mod) % mod; if (p == 1) return n % mod; LL res = (fpow(p, n + 1, mod) - p + mod) % mod * fpow(p - 1, mod - 2, mod) % mod; return res; } int main() { //freopen("in","r",stdin); fac[0] = invfac[0] = 1; for (int i = 1; i <= 100000; ++i) { fac[i] = fac[i-1] * i % mod; invfac[i] = fpow(fac[i], mod - 2, mod); } LL x = find_root(5, mod); LL invx = fpow(x, mod - 2, mod); LL p1 = (LL) (1 + x) * fpow(2, mod - 2, mod) % mod; LL p2 = ((LL) (1 - x) * fpow(2, mod - 2, mod) % mod + mod) % mod; int cases; scanf("%d", &cases); while (cases--) { LL n, k; scanf("%lld %lld", &n, &k); LL res = 0; for (int i = 0; i <= k; ++i) { LL c = C(k, i); if ((k - i) % 2 == 1) c *= -1; res = (res + c * calc(p1, p2, i, k - i, n) % mod + mod) % mod; } printf("%lld\n", res * fpow(invx, k, mod) % mod); } return 0; } // hehe ~
cc7126977583146308263a5cb7211cfc7f310fc5
881b69740834d7b901d025082e265bde9a44e854
/MaBibliotheque/Objet.h
786037c52f9a13a52ea86f19f93d47f346924dbf
[]
no_license
G0nai0Ra0le0P0t1/micro-projetJIN4_l00l
039a2263ae65556ba21e9448a8a8c259201b55bb
f41307dffffd0acb9d0435a005d4744a50b77a3d
refs/heads/master
2020-03-19T01:04:59.531426
2018-06-12T21:28:53
2018-06-12T21:28:53
135,521,299
0
0
null
null
null
null
ISO-8859-2
C++
false
false
399
h
Objet.h
#pragma once #include "Obj.h" class Objet : public Obj { public: Objet(); ~Objet(); Objet(int posX, int posY, int len, int height, char* color); Objet(int posX, int posY, int len, int height); void defilement(int vitesse); void déplacementHaut(); void déplacementBas(); private: int positionX; int positionY; int longueur; int largeur; char* couleur; };
7fe1a47b3cf35d5aa674f8edab2e586bd7ed08fb
b58d58fba2962a15edcb478e69b1c2a2a5aee0c5
/viewer/Viewer.hpp
a73af3279775b2c3489592273dbc575712c528a4
[]
no_license
djgaspa/meshification
c88b339ed27c534ded063c46d2c9deecc8eb2cfb
87ee91e6c8124aca22551b69ffcd2e1f82cfbffa
refs/heads/master
2020-05-17T17:19:40.462302
2013-05-28T12:13:15
2013-05-28T12:13:15
9,019,629
0
1
null
null
null
null
UTF-8
C++
false
false
566
hpp
Viewer.hpp
#pragma once #include <memory> #include <iosfwd> #include <QGLViewer/qglviewer.h> class Model; class Receiver; class Camera; class Viewer : public QGLViewer { Q_OBJECT; const int width, height; std::vector<Receiver*> recv; std::vector<Model*> models; std::unique_ptr<Camera> cam; std::unique_ptr<std::ostream> depth_stream; void init(); void draw(); void keyPressEvent(QKeyEvent* e); void add_recv(); public: Viewer(const int w, const int h, QWidget* parent = 0); ~Viewer(); public slots: void shot(); };
ac41a9fbed8352dba6ab922055a8582f13ef2381
689592b29b9764ac38e46bdb4ee30e3214d42766
/lab2/z3.cpp
6d1b01fea2582e4698cfb800302e30f4f1ae5616
[]
no_license
MilenaGil/jipp2020
b3a7412b235ceafcc14bedd4d967f3c82c16d109
4f67c39154c48f07235b4e3d0cd5abd796874c5e
refs/heads/main
2023-02-21T21:02:59.523420
2021-01-29T11:12:05
2021-01-29T11:12:05
307,428,813
0
0
null
null
null
null
UTF-8
C++
false
false
460
cpp
z3.cpp
#include <iostream> using namespace std; void funkcja(int &a, int *b){ int w = a; a = *b; *b = w; } int main(){ int x, y ; cout<<"Wprowadz liczby: "<<endl; cin >> x >> y; cout<<"Liczba 1 wynosi:"<< x << ",liczba 2 wynosi: "<< y <<endl; int *b = NULL; b = &y; funkcja(x , b); std::cout<<"Po zamianie liczba 1 wynosi:"<< x << ",liczba 2 wynosi: "<< y << endl; return 0; }
83f2b48c758763aa7bf6afebcb3d7814ae84dcf8
09983ce09f4a9336d6c0d860a51950039662d521
/chapter05/HardwareException.h
d43446b71fcf824294dff33bbfbdbf0b85cd23b4
[]
no_license
Handy521/seven-day-become-butterfly
753429485d8eef5a86e98a31039441cfc6bdd82f
a447043afc4516a5037dc792192446eb4bd112c5
refs/heads/master
2020-06-20T01:59:35.693717
2019-07-15T13:12:03
2019-07-15T13:12:03
196,952,094
0
0
null
null
null
null
UTF-8
C++
false
false
180
h
HardwareException.h
#pragma once #include"MyException.h" class HardwareException:public MyException { public: HardwareException(int code,string msg); virtual int getErrorInfo(string &msg); } ;
b2c8f0c113d7f5cdd29ffa4884a83dc4c921420b
415e6f069770649918581d9c4196d34735c1d277
/Modern/CrashCourse/shaderClass.cpp
f6013c1168406922423f4e067e93f1b2ac27dd38
[]
no_license
VarunRamakri7/OpenGL
30e1e7d9278583fddd53c56e88dd91923edcc23c
cfdeaf8786b545d47e7a1cc164b9c07fcdf0369a
refs/heads/main
2022-03-29T07:25:36.344009
2022-02-24T23:58:34
2022-02-24T23:58:34
178,471,636
1
0
null
null
null
null
UTF-8
C++
false
false
2,603
cpp
shaderClass.cpp
#include "shaderClass.h" // Reads a text file and outputs a string with everything in the text file std::string get_file_contents(const char* filename) { std::ifstream in(filename, std::ios::binary); if (in) { std::string contents; in.seekg(0, std::ios::end); contents.resize(in.tellg()); in.seekg(0, std::ios::beg); in.read(&contents[0], contents.size()); in.close(); return(contents); } throw(errno); } Shader::Shader(const char* fragmentFile, const char* vertexFile) { // Get shader code from text files std::string vertexCode = get_file_contents(vertexFile); std::string fragmentCode = get_file_contents(fragmentFile); // Convert the shader source strings into character arrays const char* vertexSource = vertexCode.c_str(); const char* fragmentSource = fragmentCode.c_str(); // Create and compile vertex shader GLuint vertexShader = glCreateShader(GL_VERTEX_SHADER); glShaderSource(vertexShader, 1, &vertexSource, NULL); glCompileShader(vertexShader); // Compile shader into machine code compileErrors(vertexShader, "VERTEX"); //Create and compile fragment shader GLuint fragmentShader = glCreateShader(GL_FRAGMENT_SHADER); glShaderSource(fragmentShader, 1, &fragmentSource, NULL); glCompileShader(fragmentShader); // Compile shader into machine code compileErrors(fragmentShader, "FRAGMENT"); // Create shader program ID = glCreateProgram(); glAttachShader(ID, vertexShader); // Attach vertex shader to program glAttachShader(ID, fragmentShader); // Attach fragment shader to program glLinkProgram(ID); // Link all shaders together into the program compileErrors(ID, "PROGRAM"); // Delete shaders glDeleteShader(vertexShader); glDeleteShader(fragmentShader); } void Shader::Activate() { glUseProgram(ID); // Specify shader ID to use } void Shader::Delete() { glDeleteProgram(ID); } // Checks if the different Shaders have compiled properly void Shader::compileErrors(unsigned int shader, const char* type) { GLint hasCompiled; // Stores status of compilation char infoLog[1024]; // Character array to store error message in if (type != "PROGRAM") { glGetShaderiv(shader, GL_COMPILE_STATUS, &hasCompiled); if (hasCompiled == GL_FALSE) { glGetShaderInfoLog(shader, 1024, NULL, infoLog); std::cout << "SHADER_COMPILATION_ERROR for:" << type << "\n" << infoLog << std::endl; } } else { glGetProgramiv(shader, GL_LINK_STATUS, &hasCompiled); if (hasCompiled == GL_FALSE) { glGetProgramInfoLog(shader, 1024, NULL, infoLog); std::cout << "SHADER_LINKING_ERROR for:" << type << "\n" << infoLog << std::endl; } } }
ac9615a5a6e6ac82e128f796fdee249b2e85a931
1294dc4795ac067d8313fdd4cbca901162a0b25e
/graph.h
5bdb3a92e2e4ceca42a2607b61529e01357894ce
[]
no_license
Stevemario/CSIT-832-SMC-S16-Assignment-2
c3e77cf475e0a56610a51e673e4668a7f9c704d3
2a33b0a20a64eb4cbcb8e848b2aadbf9c1b98a30
refs/heads/master
2021-01-10T15:49:42.467647
2016-03-19T03:11:04
2016-03-19T03:11:04
53,985,677
0
0
null
null
null
null
UTF-8
C++
false
false
4,736
h
graph.h
#ifndef GRAPH_H #define GRAPH_H #include "vertex.h" #include "connection.h" bool canReadALineInto ( std::string&, std::ifstream& ); class graph { protected: unsigned int m_nVertices; protected: graph (); public: unsigned int nVertices () const; public: virtual std::string nameOfVertice ( const unsigned int& ) const = 0; public: virtual bool hasEdge ( const unsigned int&, const unsigned int& ) const = 0; public: virtual void load ( std::ifstream& ) = 0; public: virtual bool hasDirectConnectionBetween ( const unsigned int&, const unsigned int& ) const = 0; public: virtual void addVertices ( const std::vector <std::string>&, std::vector <unsigned int>& ) = 0; public: virtual void addVertice ( const std::string& ) = 0; public: virtual bool contains ( const std::string&, unsigned int& ) const = 0; }; class non_weighted_graph : public graph { enum class string_destinations { DEPARTURE_NAME = 0, DESTINATION_NAME = 1, }; private: std::vector <vertex> vertices; public: std::string nameOfVertice ( const unsigned int& ) const; public: bool hasEdge ( const unsigned int&, const unsigned int& ) const; //Loads, as vertices, cities, and //loads, as edges, connections, //and saves all that information into my graph. public: void load ( std::ifstream& ); public: bool hasDirectConnectionBetween ( const unsigned int&, const unsigned int& ) const; public: bool hasThroughConnectionBetween ( const unsigned int&, const unsigned int&, std::vector <connection>& ) const; private: void addVertices ( const std::vector <std::string>&, std::vector <unsigned int>& ); private: void addVertice ( const std::string& ); private: bool contains ( const std::string&, unsigned int& ) const; private: void findThroughConnectionsTo ( const unsigned int&, std::vector <connection>&, connection& ) const; private: static void parseFile ( std::ifstream&, std::vector <std::string>&, std::vector <std::string>&, std::vector <unsigned int>& ); private: void addDestinationVerticesAndEdges ( const std::vector <std::string>&, const std::vector <unsigned int>&, const std::vector <unsigned int>& ); private: void addEdge ( const unsigned int&, const unsigned int& ); }; template <class weightType> //weighted_graph uses the following weightType classes functions: //1. void setWeight ( // weightType&, // const std::string //); //2. void getWeight ( // std::string&, // const distance& //); //3. void setEmpty ( // distance& //); //4. operator+= for weightType //5. operator< for weightType //SO YOU MUST HAVE THEM! class weighted_graph : public graph { enum class string_destinations { DEPARTURE_NAME = 0, DESTINATION_NAME = 1, DESTINATION_WEIGHT = 2, }; private: std::vector <weighted_vertex <weightType>> vertices; public: std::string nameOfVertice ( const unsigned int& ) const; public: bool hasEdge ( const unsigned int&, const unsigned int& ) const; public: weightType weight ( const unsigned int&, const unsigned int& ) const; //Loads, as vertices, cities, //loads, as edges, connections, and //loads, as weights, distances in miles between two connected cities, //and saves all that information into my graph. public: void load ( std::ifstream& ); public: bool hasDirectConnectionBetween ( const unsigned int&, const unsigned int& ) const; public: bool hasThroughConnectionBetween ( const unsigned int&, const unsigned int&, std::vector <weighted_connection <weightType>>& ) const; private: void addVertices ( const std::vector <std::string>&, std::vector <unsigned int>& ); private: void addVertice ( const std::string& ); private: bool contains ( const std::string&, unsigned int& ) const; private: void findThroughConnectionsTo ( const unsigned int&, std::vector <weighted_connection <weightType>>&, weighted_connection <weightType>& ) const; public: void calculateWeightSums ( std::vector <weighted_connection <weightType>>&, const unsigned int& ) const; private: static void parseFile ( std::ifstream&, std::vector <std::string>&, std::vector <std::string>&, std::vector <weightType>&, std::vector <unsigned int>& ); private: void addDestinationVerticesAndEdges ( const std::vector <std::string>&, const std::vector <weightType>&, const std::vector <unsigned int>&, const std::vector <unsigned int>& ); private: void addEdge ( const unsigned int&, const unsigned int&, const weightType& ); }; #include "graph.tpp" #endif
a430f49b6bc541971ec0a858d31dc8a17f20368c
bdf9b430d9e6302b58cbdd2c2f438f3500ce62e1
/Old Topcoder SRM codes/POstorder.cpp
2699d86845788fb30dcd7356de0258245c270474
[]
no_license
rituraj0/Topcoder
b0e7e5d738dfd6f2b3bee4116ccf4fbb8048fe9c
3b0eca3a6168b2c67b4b209e111f75e82df268ba
refs/heads/master
2021-01-25T05:16:18.768469
2014-12-14T13:47:39
2014-12-14T13:47:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
978
cpp
POstorder.cpp
#include<iostream> using namespace std; #include<vector> #include<stack> struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) {} }; class Solution { public: vector<int> postorderTraversal(TreeNode *root) { stack< TreeNode* > st; vector<int> ans; if( root == NULL) return ans; stack<int> rev; st.push(root); while( !st.empty() ) { TreeNode* curr=st.top() ; st.pop(); rev.push( curr->val); if( curr->right != NULL ) { st.push(curr->right); } if( curr->left !=NULL ) { st.push( curr->left ); } } while( !rev.empty() ) { ans.push_back( rev.top() ); rev.pop(); } return ans; } }; int main() { return 0; }
c38494e11e9f4473cbff9f151c493c6c0b3a76c2
beafd9251c1c69c8126ff5344acb8163d5291dd1
/Computação Gráfica/Trabalho 1/Formas/2D/Mesh/main.cpp
61a03d02e488f6f4a73ca4eab7b02e83c337f43a
[]
no_license
DanielBrito/ufc
18f5a1b6b3542b27ec465d966dd6b48a8cb2f8ac
32004cdc6b708ffda24a0aae24525c6e423dd18e
refs/heads/master
2023-07-19T17:27:11.150306
2022-02-12T03:15:43
2022-02-12T03:15:43
101,405,465
20
6
null
2023-07-16T04:22:11
2017-08-25T13:15:44
C
UTF-8
C++
false
false
1,922
cpp
main.cpp
// Default libraries: #include <GL/glut.h> #include <bits/stdc++.h> using namespace std; // Defining Vertex class for 2D object: class Vertex{ public: double x, y; // Defining the constructor with the proper fields: Vertex(double x, double y){ this->x = x; this->y = y; } // Method to draw the form: void draw(){ glClear(GL_COLOR_BUFFER_BIT); glBegin(GL_POINTS); glColor3f(0, 0, 0); glVertex2f(this->x, this->y); glEnd(); glFlush(); } }; // Defining Edge class: class Edge{ public: Vertex *start, *end; // Defining the constructor with the proper fields: Edge(Vertex* start, Vertex* end){ this->start = start; this->end = end; } // Method to draw the form: void draw(){ glBegin(GL_LINES); glVertex2f(this->start->x, this->start->y); glVertex2f(this->end->x, this->end->y); glEnd(); } }; // Defining Face class: class Face{ // Implemented inside each object }; // Initializing the scene: void init(){ glClearColor(1, 1, 1, 1); glShadeModel(GL_SMOOTH); } // Displaying the scene: void display(){ glClear(GL_COLOR_BUFFER_BIT); Vertex* vertex = new Vertex(0.0, 0.0); vertex->draw(); Vertex* start = new Vertex(-5.0, 0.0); Vertex* end = new Vertex(5.0, 5.0); Edge* edge = new Edge(start, end); edge->draw(); glFlush(); } // Setting the reshape callback for the current window: void reshape(int w, int h){ glViewport(0, 0, (GLsizei) w, (GLsizei) h); glMatrixMode(GL_PROJECTION); glLoadIdentity(); glOrtho(-10.0, 10.0, -10.0, 10.0, -1.0, 1.0); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); } // Main function: int main(int argc, char** argv){ glutInit(&argc, argv); glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB); glutInitWindowSize(600, 600); glutCreateWindow("Mesh"); init(); glutDisplayFunc(display); glutReshapeFunc(reshape); glutMainLoop(); return 0; }
ac635e7e1a5bb34c827b050e5a9d495c58ade2ac
bfbd0b9ec49ce20c7319ca07382c58f8342daee2
/Assignment5/interpreter2.0.cpp
c52fb472e8657069d54e2221c8adec2204cb1aef
[]
no_license
its-sachin/COL216-Collaborate
2b2d914c4aa2008a154b683410d36bd6ca1b00da
f7578a2007e63216ea9d00885d5e7df0db5f2912
refs/heads/master
2023-04-29T04:09:48.793193
2021-05-17T17:56:22
2021-05-17T17:56:22
346,585,544
3
0
null
null
null
null
UTF-8
C++
false
false
9,508
cpp
interpreter2.0.cpp
#include "DRAM.cpp" DRAM ram; unordered_map<int, vector<string>> MIPS::getInstruction(){ return instructions; } int MIPS::getLine(int pc) { return lineCount[pc]; } void MIPS::incInstCount(int instruction){ instCount[instruction] += 1; } // ------------instruction handling-------------------------- int MIPS::getLabelLine(string name){ return labelLine[name]; } vector<string> MIPS::getInst(int line){ unordered_map<int, vector<string>>:: iterator it = instructions.find(line); return (it->second); } void MIPS::setInst(int line, vector<string> input){ instructions[line] = input; } void MIPS::setInstLine(int addressInst, int line) { lineCount[addressInst] = line; } // -------------------------ass4-addition------------------------------------------- void MIPS::setLabel(string name, int address) { labelLine[name] = address; } bool MIPS::isInstPos(string name){ if (labelLine.find(name) == labelLine.end()){ return false; } else if (instructions.find(labelLine[name]) == instructions.end()){ return false; } return true; } // -------------------------------------------------------------------------------------------------------- void MIPS::init(int core){ coreNum = core; } void MIPS::printInstSet(vector<string> v){ for (auto& it : v) { string str = ""; if (it != ")" && it != "(" && it != ",") {str = " ";} regSteps = regSteps + str + it; } } // -------------------------ass4-addition------------------------------------------- void MIPS::printRegSet2(int k, vector<string> v,string p){ string task = v.at(0); regSteps = regSteps + "\n-----------------------------Line: " +to_string(k) + "----------------------------"; if (ram.regSteps != ""){ regSteps += ram.regSteps + "\n"; } regSteps+= "\nClock: " + to_string(ram.clock) +"\n Instruction called: "; printInstSet(v); if (task == "add" || task == "sub" || task == "mul" || task == "addi" || task == "slt"){ regSteps = regSteps+ "\n Register modified : " + v.at(1) + " = " + to_string(allReg[coreNum].getRegValue(v.at(1))); } else { regSteps += "\n" + p; } p = ""; if (ram.isOn) { string a; for (auto& it : ram.currInst) { a = a + " " + it; } p += "\n"; p += "\n [DRAM Execution going on: " + a+ ']'; p += "\n [Row active: " + to_string(ram.rowNum) + "]"; string temp = ""; int total = 0; int curr = 0; for (int i =0; i< 1024; i++) { if (!ram.rowSort[i].isEmpty()) { curr = ram.rowSort[i].size(); total += curr; if (curr!=0) { temp += to_string(i) + ":" + to_string(curr) + " "; } } } p = p + "\n [Instructions in queue: " + to_string(curr) + " (" + temp + ")]"; if (!ram.isEmpty()) { p += "\n [Queue: \n"; p += ram.printQ() + " ]"; } } regSteps = regSteps + p + "\n"; ram.regSteps = ""; } // - ------------------------------------------------------------------------------------------------------- void MIPS::printInstCount() { cout<< "\nExecution count of instructions in core " << to_string(coreNum +1)<< ":"<<endl; for (int i =0; i< 10; i++) { cout << inst[i] << ": "<< instCount[i]<<endl; } allReg[coreNum].printregVal(); } void MIPS::printAll(){ cout << "\n***********************************[CORE: " << to_string(coreNum+1) << "]**************************************" << endl; cout<< regSteps + "\n"<<endl; printInstCount(); cout << "" << endl; } bool MIPS::isError(vector<string> v,int line) { string task = v.at(0); if (task == "add" || task == "sub" || task == "mul" || task =="addi") { if (v.size() != 6){ cout <<"Syntax error at line: "<<line<< " in core " << coreNum +1 << endl; return false; } else if (v.at(2) != "," || v.at(4) != ","){ cout << "Syntax error at line: "<<line<< " in core " << coreNum +1 << endl; return false; } else if (allReg[coreNum].isReg(v.at(1)) ==false || allReg[coreNum].isReg(v.at(3)) ==false || (task != "addi" && allReg[coreNum].isReg(v.at(5)) == false)) { cout << "Syntax error: Invalid register at line: "<<line<< " in core " << coreNum +1 << endl; return false; } else if (v.at(1) == "$zero"){ cout << "Syntax error: Cannot change value of zero register at line: "<<line<< " in core " << coreNum +1 << endl; return false; } else if (task == "addi"){ try{ stoi(v.at(5)); } catch(exception &err) { cout<<"Syntax error: Type mismatch at line: " <<line << " in core " << coreNum +1 << endl; return false; } } return true; } else if (task == "bne" || task == "beq" || task == "slt") { if (v.size() != 6 || v.at(2) != "," || v.at(4) != ",") { cout << "Syntax error at line: "<<line<< " in core " << coreNum +1 << endl; return false; } else if (allReg[coreNum].isReg(v.at(1)) == false || allReg[coreNum].isReg(v.at(3)) == false) { cout << "Syntax error: Invalid register at line: "<<line<< " in core " << coreNum +1 << endl; return false; } else if (task != "slt"){ try { // -----------------------------------ass4-addition------------------------------------------------ string temp = (v.at(5)); // -------------------------------------------------------------------------------------------------------- if (isInstPos(temp) == false){ cout<<"Invalid Instruction to be jumped at line: "<<line<< " in core " << coreNum +1 << endl; return false; } } catch(exception &error){ cout<<"Syntax error: Type mismatch at line: " <<line << " in core " << coreNum +1 << endl; return false; } } else { if (allReg[coreNum].isReg(v.at(5)) ==false){ cout << "Syntax error: Invalid register at line: "<<line<< " in core " << coreNum +1 << endl; return false; } } return true; } else if (task == "j"){ if (v.size() != 2){ cout << "Syntax error at line: "<<line<< " in core " << coreNum +1 << endl; return false; } else{ try { // -----------------------------------ass4-addition------------------------------------------------ string temp = (v.at(1)); // -------------------------------------------------------------------------------------------------------- if (isInstPos(temp) == false){ cout<<"Invalid Instruction to be jumped at line: "<<line<< " in core " << coreNum +1 << endl; return false; } } catch(exception &error){ cout<<"Syntax error: Type mismatch at line: " <<line << " in core " << coreNum +1 << endl; return false; } } return true; } else if (task == "lw" || task == "sw") { if (v.size() <6 || v.size() > 7){ cout << "Syntax error at line: "<<line<< " in core " << coreNum +1 << endl; return false; } if (task == "lw" && v.at(1) == "$zero") { cout << "Syntax error: Cannot load value to zero register at line: "<<line<< " in core " << coreNum +1 << endl; return false; } if (v.size() == 6){ if (v.at(2) != "," || v.at(3) != "(" || v.at(5) != ")"){ cout << "Syntax error at line: "<<line<< " in core " << coreNum +1 << endl; return false; } else if (allReg[coreNum].isReg(v.at(1)) == false || allReg[coreNum].isReg(v.at(4)) == false){ cout << "Syntax error: Invalid register at line: "<<line<< " in core " << coreNum +1 << endl; return false; } return true; } else{ if (v.at(2) != "," || v.at(4) != "(" || v.at(6) != ")"){ cout << "Syntax error at line: "<<line<< " in core " << coreNum +1 << endl; return false; } else if (allReg[coreNum].isReg(v.at(1)) == false || allReg[coreNum].isReg(v.at(5)) == false){ cout << "Syntax error: Invalid register at line: "<<line<< " in core " << coreNum +1 << endl; return false; } else{ try{ stoi(v.at(3)); } catch(exception &err) { cout<<"Syntax error: Type mismatch at line: " <<line << " in core " << coreNum +1 << endl; return false; } } return true; } } cout<<"Instruction not defined at line: " << line << endl; return false; }
f2434a0e5524d0340ea7d38d86045526a34c252d
3f5abeee06b57181e0f308ffb83090a859ef5266
/S_EMTP/src/Selector.cpp
34c863457040c1dd32487b7151e3c0559a0a59bc
[]
no_license
aowd/S_EMTP
d3d339e9a9d7a4030aacf07f7486451a878a6d3b
cc387eb42f6d0e42e6b86415ec90230311227707
refs/heads/master
2021-05-28T04:14:01.519159
2014-03-04T05:06:13
2014-03-04T05:06:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,188
cpp
Selector.cpp
#include "Selector.h" Selector::Selector(int id,int inNodeA,int inNodeB, int selectNode, int outNode,double selectAValue) { type =19; nPort=4; nInPort=3; nOutPort=1; this->id = id; inNode = new int[nInPort]; inNodeValue = new double [nInPort]; inNode[0] = inNodeA; inNode[1] = inNodeB; inNode[2] = selectNode; this->outNode = outNode; this->selectAValue = selectAValue; } void Selector::initializeCtrlBranch() { for (int i=0;i<nInPort;i++) { inNodeValue[i] = 0; } outNodeValue = 0; } void Selector::saveInNodeValue(double* ctrlNodeValue) { for (int i=0;i<nInPort;i++) { inNodeValue[i] = ctrlNodeValue[inNode[i]-1]; } } void Selector::saveOutNodeValue(double* ctrlNodeValue) { ctrlNodeValue[outNode-1]=outNodeValue; } void Selector::calculateOutputValue(double time) { outNodeValue = (inNodeValue[2]==selectAValue)?inNodeValue[0]:inNodeValue[1]; } int Selector::checkCalCondition(int* nodeCalMark) { return nodeCalMark[inNode[0]-1]&&nodeCalMark[inNode[1]-1]&&nodeCalMark[inNode[2]-1]; } void Selector::markOutputNode(int* nodeCalMark) { nodeCalMark[outNode-1] = 1; } void Selector::calculateInitOutputValue(double time) { calculateOutputValue(time); }
aa9d6ed9e7555dfdc81572df7a3ef40dea0c3efb
ddb969820b6e638e3f2e3cfaea8a3ea00bd9dd2f
/src/photoLocation.cpp
0f96e29ac419ef079c142defd11be34206760dd2
[]
no_license
zzXiongFan/smartCity-CAG
cabda0098b0428fe2413a5b4288f28c5fead2ea7
144021298ae085c111739feaf83b20c589d2834b
refs/heads/master
2020-06-09T20:26:31.622915
2019-06-25T02:44:23
2019-06-25T02:44:23
193,500,363
0
0
null
null
null
null
UTF-8
C++
false
false
12,442
cpp
photoLocation.cpp
// c++标准输入输出库 #include <iostream> #include <vector> #include <string> #include <cassert> #include <iomanip> // opencv相关 #include <opencv2/core/core.hpp> #include <opencv2/features2d/features2d.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv2/calib3d/calib3d.hpp> #include <opencv2/xfeatures2d/nonfree.hpp> // SIFT // DBOW #include "DBoW3/DBoW3.h" // ASIFT相关 #include "ASifttDetector.h" #include "utils.h" using namespace std; using namespace cv; // 全局变量定义 // 图片根目录 string rootPath; // 训练集相关信息 vector<Mat> trainImagesData; // 输入训练集图片数据 vector<int> trainImagesID; // 输入训练集图片帧号 vector<Point3d> trainImagesPose; // 输入训练集图片坐标 vector<vector<KeyPoint>> trainKeypoints; // 特征点,二维向量 vector<Mat> trainDescriptors; // 描述子--SURF // 测试集相关信息 vector<Mat> testImagesData; vector<int> testImagesID; vector<Point3d> testImagesPose; vector<vector<KeyPoint>> testKeypoints; // 特征点 vector<Mat> testDescriptors; vector<string> outputName; // 粗略匹配结果 vector<DBoW3::QueryResults> testMatchID; // 记录对应的匹配帧号及结果,与testMatchIDIndex一一对应 vector<vector<int>> testMatchIDIndex; // 记录匹配对应的index,与testMatchID一一对应 // 词袋 DBoW3::Vocabulary vocab(10, 6); // 输出 vector<Point3d> result; // 读取图片内容 void ImageRead( string trainName, string testName); // 特征提取 void FeatureDetect(); // 生成词袋 void GenVoc(string trainName); // 粗略定位 void photoLocation(int level); // 计算并输出结果到文件结果 void ComputeAndOutput(string outputPath); // 关键点定位 void KeyPointLocation(); // 工具 vector<string> split(const string &s, const string &seperator); // clear void vectorClear(); // 程序输入须要指定 trainsName, testName int main ( int argc, char** argv ) { if ( argc != 4 ) { cout<<"usage: triangulation trainName testName"<<endl; return 1; } rootPath = argv[1]; // 输入文件路径 for(int i=1; i<9;i++) { cout<<"rootPath: "<<rootPath<<endl; string trainName = rootPath + '/' + "list/scene" + to_string(i) + "_train.txt"; cout<<"train file Path: "<<trainName<<endl; string testName = rootPath + '/' + "list/scene" + to_string(i) + "_test.txt"; cout<<"test file Path: "<<testName<<endl; // 输出文件路径 string outputPath = rootPath + '/' + "output/result" + ".csv"; // 读入数据 ImageRead( trainName, testName); // 对图片进行特征提取 FeatureDetect(); // 计算SURF词袋 GenVoc("scene" + to_string(i) + "_train"); // 利用词袋进行粗略定位 photoLocation(6); // 精确定位 KeyPointLocation(); // 计算结果并输出 ComputeAndOutput(outputPath); // 清空vector,用以函数迭代循环 vectorClear(); } } // 读取图片内容 void ImageRead( string trainName, string testName) { cout<<"start to read Image!"<<endl; cout<<trainName.data()<<endl; ifstream trainfile(trainName.data()), testfile(testName.data()); assert(trainfile.is_open()); assert(testfile.is_open()); string s; // 读取训练集内容 while (getline(trainfile, s)) { vector<string> s_split = split(s, " "); string imagePath = rootPath + "/undist_image_6-10/" + s_split[0]; Mat image = imread(imagePath.data()); trainImagesData.push_back(image); trainImagesID.push_back(stoi(s_split[1])); // 添加POSE trainImagesPose.push_back( Point3d(stod(s_split[2]), stod(s_split[3]), stod(s_split[4]))); } // 读取测试集内容 while (getline(testfile, s)) { vector<string> s_split = split(s, " "); string imagePath = rootPath + "/undist_image_6-10/" + s_split[0]; Mat image = imread(imagePath.data()); testImagesData.push_back(image); testImagesID.push_back(stoi(s_split[1])); outputName.push_back( s_split[2] ); } trainfile.close(); testfile.close(); cout<<"read Image finish!"<<endl; } // 图片特征提取 void FeatureDetect() { cout<<"start to FeatureDetect!"<<endl; // SURF特征提取 Ptr<FeatureDetector> SURF_detector = xfeatures2d::SURF::create(1500, 4, 3, true); for(int i=0; i<trainImagesData.size(); i++) { Mat desc; vector<KeyPoint> kpt; SURF_detector->detectAndCompute( trainImagesData[i], Mat(), kpt, desc ); trainKeypoints.push_back(kpt); trainDescriptors.push_back(desc); cout<<"\r"<<"train prossing :"<<i+1<<"/"<<trainImagesData.size()<<" "<<desc.size(); } cout<<endl; for(int i=0; i<testImagesData.size(); i++) { Mat desc; vector<KeyPoint> kpt; SURF_detector->detectAndCompute( testImagesData[i], Mat(), kpt, desc ); testKeypoints.push_back(kpt); testDescriptors.push_back(desc); cout<<"\r"<<"test prossing :"<<i+1<<"/"<<testImagesData.size(); } cout<<endl; cout<<"FeatureDetect finish!"<<endl; } // 生成词袋 void GenVoc(string trainName) { // 查询对应的单词文件是否存在 string VocPath = rootPath + "/" + trainName + ".yml.gz"; cout<<VocPath<<endl; ifstream Voc(VocPath.data()); // 单词文件存在,读取即可 if(Voc) { cout<<"Vocabulary has exit! Read it."<<endl; vocab.load(VocPath); cout<<"vocabulary info: "<<vocab<<endl; } // 文件不存在,训练词袋,并保存 else { cout<<"Vocabulary is not exit! Create it."<<endl; vocab.create( trainDescriptors ); cout<<"vocabulary info: "<<vocab<<endl; vocab.save(VocPath.data()); cout<<"done"<<endl; } } // 利用词袋进行粗略定位 void photoLocation(int level) { // 利用数据库的方法进行判定 cout<<"comparing images with database "<<endl; DBoW3::Database db( vocab, false, 0); // 将全部的训练集内容生成对应的单词 for ( int i=0; i<trainDescriptors.size(); i++ ) db.add(trainDescriptors[i]); for ( int i=0; i<testDescriptors.size(); ) { DBoW3::QueryResults ret; vector<int> idIndex; db.query( testDescriptors[i], ret, level); // max result=level // index入组,记录对应的原始的index for(auto r:ret) { idIndex.push_back(r.Id); } // if(i%6 == 0) // { // cout<<"searching for image "<<testImagesID[i]<<endl; // } // 分别输出6张图的结果 // cout<<"Picture "<<i%6+1<<":\t"; for (int y=0;y<6;y++) { ret[y].Id = trainImagesID[ret[y].Id]; // 规范输出 // cout<<ret[y].Id<<'-'<<to_string(idIndex[y]%6+1)<<" "<<fixed<<setprecision(7)<<ret[y].Score<<"\t"; } cout<<endl; testMatchID.push_back(ret); testMatchIDIndex.push_back(idIndex); // 此处对所有的6张图片都进行匹配计算 i ++; } cout<<"词袋定位完成"<<endl; } // 利用关键点进行精确定位 void KeyPointLocation() { // 创建词袋数据库 DBoW3::Database db( vocab, false, 0); // 将全部的训练集内容生成对应的单词 for ( int i=0; i<trainDescriptors.size(); i++ ) db.add(trainDescriptors[i]); // 计算对应的最佳定位点 for(int testIndex = 0; testIndex < testMatchID.size(); testIndex++) { int bestTrainIndex = testMatchIDIndex[testIndex][0]; cout<<"开始计算单张图片特征点,匹配分数: "<<testMatchID[testIndex][0].Score<<endl; cout<<"训练集图片序号: "<<testIndex<<" \t对应的类别: "<<testImagesID[testIndex]<<"-"<<testIndex%6+1<<endl; cout<<"训练集图片序号: "<<bestTrainIndex<<" \t对应的类别: "<<trainImagesID[bestTrainIndex]<<"-"<<bestTrainIndex%6+1<<endl; cout<<"寻找最佳匹配图片的匹配"<<endl; DBoW3::QueryResults ret; db.query( trainDescriptors[bestTrainIndex], ret, 6); // max result=level // 输出匹配结果 for (int y=0;y<6;y++) { // 暂存对应的文件名 int temp = trainImagesID[ret[y].Id]; cout<<temp<<'-'<<to_string(ret[y].Id%6+1)<<" "<<fixed<<setprecision(7)<<ret[y].Score<<"\t"; } cout<<endl; // 规范输出 // 利用5张图恢复3D点 // 在此处引入ASIFT // 显示换行 cout<<endl; } } // 计算并输出结果:result // 此处先默认计算两级 void ComputeAndOutput( string outputPath) { // 输出文件 ofstream outputfile(outputPath.data(), ofstream::app); // 迭代每一个点 for(int i=0; i<testMatchID.size(); i++) { // 此处输出最临近匹配的坐标 Point3d p1 = trainImagesPose[testMatchIDIndex[i][0]]; // cout<<p1<<" "<<testMatchID[i][0].Score<<endl; Point3d p2 = trainImagesPose[testMatchIDIndex[i][1]]; // cout<<p2<<" "<<testMatchID[i][1].Score<<endl; Point3d p3 = trainImagesPose[testMatchIDIndex[i][2]]; // cout<<p3<<" "<<testMatchID[i][2].Score<<endl; Point3d p4 = trainImagesPose[testMatchIDIndex[i][3]]; // cout<<p4<<" "<<testMatchID[i][3].Score<<endl; Point3d p5 = trainImagesPose[testMatchIDIndex[i][4]]; // cout<<p5<<" "<<testMatchID[i][4].Score<<endl; Point3d p6 = trainImagesPose[testMatchIDIndex[i][5]]; // cout<<p6<<" "<<testMatchID[i][5].Score<<endl; // 计算该点权重 double weight = (1/testMatchID[i][0].Score) / (1/testMatchID[i][0].Score + 1/testMatchID[i][1].Score); Point3d result_p = ( p1*testMatchID[i][0].Score + p2*testMatchID[i][1].Score + p3*testMatchID[i][2].Score + p4*testMatchID[i][3].Score + p5*testMatchID[i][4].Score + p6*testMatchID[i][5].Score) / (testMatchID[i][0].Score + testMatchID[i][1].Score + testMatchID[i][2].Score + testMatchID[i][3].Score +testMatchID[i][4].Score + testMatchID[i][5].Score); outputfile<<outputName[i*6]<<","<<result_p.x<<","<<result_p.y<<","<<result_p.z<<"\n"; } outputfile.close(); } // 程序工具 // split函数 vector<string> split(const string &s, const string &seperator){ vector<string> result; typedef string::size_type string_size; string_size i = 0; while(i != s.size()){ //找到字符串中首个不等于分隔符的字母; int flag = 0; while(i != s.size() && flag == 0){ flag = 1; for(string_size x = 0; x < seperator.size(); ++x) if(s[i] == seperator[x]){ ++i; flag = 0; break; } } //找到又一个分隔符,将两个分隔符之间的字符串取出; flag = 0; string_size j = i; while(j != s.size() && flag == 0){ for(string_size x = 0; x < seperator.size(); ++x) if(s[j] == seperator[x]){ flag = 1; break; } if(flag == 0) ++j; } if(i != j){ result.push_back(s.substr(i, j-i)); i = j; } } return result; } void vectorClear() { vector<Mat> trainImagesData_temp; // 输入训练集图片数据 vector<int> trainImagesID_temp; // 输入训练集图片帧号 vector<Point3d> trainImagesPose_temp; // 输入训练集图片坐标 vector<vector<KeyPoint>> trainKeypoints_temp; // 特征点,二维向量 vector<Mat> trainDescriptors_temp; // 描述子--SURF // 测试集相关信息 vector<Mat> testImagesData_temp; vector<int> testImagesID_temp; vector<Point3d> testImagesPose_temp; vector<vector<KeyPoint>> testKeypoints_temp; // 特征点 vector<Mat> testDescriptors_temp; vector<string> outputName_temp; // 粗略匹配结果 vector<DBoW3::QueryResults> testMatchID_temp; // 记录对应的匹配帧号及结果 vector<vector<int>> testMatchIDIndex_temp; // 记录匹配对应的index // 词袋 DBoW3::Vocabulary vocab_temp(10, 6); // 输出 vector<Point3d> result_temp; trainImagesData.swap(trainImagesData_temp); trainImagesID.swap(trainImagesID_temp); trainImagesPose.swap(trainImagesPose_temp); trainKeypoints.swap(trainKeypoints_temp); trainDescriptors.swap(trainDescriptors_temp); testImagesData.swap(testImagesData_temp); testImagesID.swap(testImagesID_temp); testImagesPose.swap(testImagesPose_temp); testKeypoints.swap(testKeypoints_temp); testDescriptors.swap(testDescriptors_temp); outputName.swap(outputName_temp); testMatchID.swap(testMatchID_temp); testMatchIDIndex.swap(testMatchIDIndex_temp); vocab = vocab_temp; result.swap(result_temp); }
60c38bcac4427b2772681adbc42ef328eec4e064
71f59b5d8212e5f00421a44c853c3f21fe2b3e6f
/src/files/InputFile.h
dc06f6e82cd5e2e12c8405ece8a5671943dd73e0
[]
no_license
Xywzel/nes_debugger
7412879eeed368710b71784bb0d313faf8aa7eba
fc6e0deaf5c2c5172a4c4ef88fb0d09cfd907a38
refs/heads/master
2022-11-18T07:03:22.212763
2020-06-20T19:10:30
2020-06-20T19:10:30
255,689,616
0
0
null
null
null
null
UTF-8
C++
false
false
1,177
h
InputFile.h
#pragma once #include <stdint.h> #include <string> #include <vector> class InputFile { public: InputFile(std::string name); ~InputFile(); // Returns false if the file failed to load, // or last stream operation requested more data than was left bool isGood(); // If not enough data is left, returns false, // the target is not changed // In pointer versions, user needs to make sure there is enough room in target bool read(uint8_t* target, size_t length); // In vector versions, vectors length is used, set it first bool read(std::vector<uint8_t>& target); // Stream functions don't change target if there is not enough data to read // asked data type, good flag is set to false, and position will be over the end InputFile& operator>> (int8_t& target); InputFile& operator>> (uint8_t& target); InputFile& operator>> (int16_t& target); InputFile& operator>> (uint16_t& target); InputFile& operator>> (int32_t& target); InputFile& operator>> (uint32_t& target); InputFile& operator>> (int64_t& target); InputFile& operator>> (uint64_t& target); private: std::vector<char> data; size_t position = 0; bool good = false; };
70778b31cfedcdea74713b33f36deb97e801cd42
2c1e1467898b1f73372ea4b07113ebfeb001632a
/utils/include/comm_util.h
252e6c297a6a135a2d04352d74590f723844f1bd
[]
no_license
hhyjiayou/account
ce967d90ef7554b6ad71c54fd1cbe800bc2e1267
95893f75918313d9cc3adac9fbd463dae1df35e4
refs/heads/master
2021-01-01T04:28:16.382660
2017-07-14T01:54:27
2017-07-14T01:54:27
97,180,779
0
0
null
null
null
null
UTF-8
C++
false
false
2,015
h
comm_util.h
/* * comm_util.h * * Created on: 2016年2月17日 * Author: zhongxiankui */ #ifndef UTILS_INCLUDE_COMM_UTIL_H_ #define UTILS_INCLUDE_COMM_UTIL_H_ #define __STDC_FORMAT_MACROS 1 #include <inttypes.h> #include <time.h> #include <string.h> #include <stdio.h> #include <iostream> #include <vector> #include <map> #include <string> #include "openssl/md5.h" #include "account_error.h" #include "zhibo_qua_util.h" using namespace std; //hy_api返回码定义 #define HY_API_RECV_TIMEOUT 3313 #define HY_API_SEND_TIMEOUT 3314 //L5返回码定义 #define MLB_OVERLOAD 3401 #define MLB_UNKONW_ERROR 3403 namespace account { class Util { public: static string uint64ToString(uint64_t val); static string getCurrentDateStr(string format); static string getCurrentDateStr(); static uint64_t getCurrentTimeMillis(); static bool is_all_digit(const string & str); static string long_to_string(long long x); static string int_to_string(int x); static string double_to_string(double x); static uint64_t string_to_ull(const string& x); //注意:当字符串为空时,也会返回一个空字符串 static void splitString(string & s, string & delim, vector<string>* ret); static int ip_s2u(const string& s_ip, unsigned& u_ip); static string ip_u2s(unsigned u_ip); static void getCurrentTimeAsHuman(string& seperator, string& time); static void getBeforeTimeAsHuman(string& seperator, string& timeStr, int beforeDays); static void removeSpecificChHeadTail(string& chr, string& stringin, string& stringout); //替换字符 static void replace_all(string& strin, const string& old_value,const string& new_value); /* * 判断字符串是否全由大写组成 * */ static string strToUpper(const string& passwd); /** * func distinguish device language by qua * return value: 1-zh_cn 2-zh_hant 3-en **/ static int distinguishLangByQua(const string& qua); }; } #endif /* UTILS_INCLUDE_COMM_UTIL_H_ */
e3e4478ff1025c769353b9bc66d2018da5b24eeb
88e8a4e43f851da8de9d0e0fad535d8f40f8fd81
/string/linkstring.cpp
056a1a13b21e0810334e5a26e2829d6d510ed19e
[ "Apache-2.0" ]
permissive
huweihuang/data-structure-code
74a04d285da6a17a1d2c37793a2b88581c3e22ca
dacb3a036d0a4df391ce5fca9ce65f7dc2ab1b69
refs/heads/master
2020-03-29T22:39:46.335282
2018-09-27T13:33:58
2018-09-27T13:33:58
150,433,615
4
0
null
null
null
null
UTF-8
C++
false
false
5,263
cpp
linkstring.cpp
#include <stdio.h> #include <malloc.h> typedef struct node { char data; /*存放字符*/ struct node *next; /*指针域*/ } LinkString; void Assign(LinkString *&s,char t[]) { int i=0; LinkString *q,*tc; s=(LinkString *)malloc(sizeof(LinkString)); /*建立头结点*/ s->next=NULL; tc=s; /*tc指向s串的尾结点*/ while (t[i]!='\0') { q=(LinkString *)malloc(sizeof(LinkString)); q->data=t[i]; tc->next=q;tc=q; i++; } tc->next=NULL; /*终端结点的next置NULL*/ } void StrCopy(LinkString *&s,LinkString *t) /*t=>s*/ { LinkString *p=t->next,*q,*tc; s=(LinkString *)malloc(sizeof(LinkString)); /*建立头结点*/ s->next=NULL; tc=s; /*tc指向s串的尾结点*/ while (p!=NULL) /*复制t的所有结点*/ { q=(LinkString *)malloc(sizeof(LinkString)); q->data=p->data; tc->next=q;tc=q; p=p->next; } tc->next=NULL; /*终端结点的next置NULL*/ } int StrLength(LinkString *s) { int n=0; LinkString *p=s->next; while (p!=NULL) /*扫描串s的所有结点*/ { n++;p=p->next; } return(n); } int StrEqual(LinkString *s,LinkString *t) { LinkString *p=s->next,*q=t->next; while (p!=NULL && q!=NULL) /*比较两串的当前结点*/ { if (p->data!=q->data) /*data域不等时返回0*/ return(0); p=p->next;q=q->next; } if (p!=NULL || q!=NULL) /*两串长度不等时返回0*/ return(0); return(1); } LinkString *Concat(LinkString *s,LinkString *t) { LinkString *p=s->next,*q,*tc,*str; str=(LinkString *)malloc(sizeof(LinkString)); /*建立头结点*/ str->next=NULL; tc=str; /*tc总是指向新链表的尾结点*/ while (p!=NULL) /*将s串复制给str*/ { q=(LinkString *)malloc(sizeof(LinkString)); q->data=p->data; tc->next=q;tc=q; p=p->next; } p=t->next; while (p!=NULL) /*将t串复制给str*/ { q=(LinkString *)malloc(sizeof(LinkString)); q->data=p->data; tc->next=q;tc=q; p=p->next; } tc->next=NULL; return(str); } LinkString *SubStr(LinkString *s,int i,int j) { int k=1; LinkString *p=s->next,*q,*tc,*str; str=(LinkString *)malloc(sizeof(LinkString)); /*建立头结点*/ str->next=NULL; tc=str; /*tc总是指向新链表的尾结点*/ while (k<i && p!=NULL) { p=p->next;k++; } if (p!=NULL) { k=1; while (k<=j && p!=NULL) /*复制j个结点*/ { q=(LinkString *)malloc(sizeof(LinkString)); q->data=p->data; tc->next=q;tc=q; p=p->next; k++; } tc->next=NULL; } return(str); } int Index(LinkString *s,LinkString *t) { LinkString *p=s->next,*p1,*q,*q1; int i=0; while (p!=NULL) /*循环扫描s的每个结点*/ { q=t->next; /*子串总是从第一个字符开始比较*/ if (p->data==q->data)/*判定两串当前字符相等*/ { /*若首字符相同,则判定s其后字符是否与t的依次相同*/ p1=p->next;q1=q->next; while (p1!=NULL && q1!=NULL && p1->data==q1->data) { p1=p1->next; q1=q1->next; } if (q1==NULL) /*若都相同,则返回相同的子串的起始位置*/ return(i); } p=p->next;i++; } return(-1); /*若不是子串,返回-1*/ } int InsStr(LinkString *&s,int i,LinkString *t) { int k; LinkString *q=s->next,*p,*str; StrCopy(str,t); /*将t复制到str*/ p=str;str=str->next; free(p); /*删除str的头结点*/ for (k=1;k<i;k++) /*在s中找到第i-1个结点,由p指向它,q指向下一个结点*/ { if (q==NULL) /*位置参数i错误*/ return(0); p=q; q=q->next; } p->next=str; /*将str链表链接到*p之后*/ while (str->next!=NULL) /*由str指向尾结点*/ str=str->next; str->next=q; /*将*q链接到*str之后*/ return(1); } int DelStr(LinkString *&s,int i,int j) { int k; LinkString *q=s->next,*p,*t; for (k=1;k<i;k++) /*在s中找到第i-1个结点,由p指向它,q指向下一个结点*/ { if (q==NULL) /*位置参数i错误*/ return(0); p=q; q=q->next; } for (k=1;k<=j;k++) /*删除*p之后的j个结点,并由q指向下一个结点*/ { if (q==NULL) /*长度参数j错误*/ return(0); t=q; q=q->next; free(t); } p->next=q; return(1); } LinkString *RepStrAll(LinkString *s,LinkString *s1,LinkString *s2) { int i; i=Index(s,s1); while (i>=0) { DelStr(s,i+1,StrLength(s1)); /*删除串s1*/ InsStr(s,i+1,s2); /*插入串s2*/ i=Index(s,s1); } return(s); } void DispStr(LinkString *s) { LinkString *p=s->next; while (p!=NULL) { printf("%c",p->data); p=p->next; } printf("\n"); } void main() { LinkString *s1,*s2,*s3,*s4,*s5,*s6,*s7; Assign(s1,"abcd"); printf("s1:");DispStr(s1); printf("s1的长度:%d\n",StrLength(s1)); printf("s1=>s2\n"); StrCopy(s2,s1); printf("s2:");DispStr(s2); printf("s1和s2%s\n",(StrEqual(s1,s2)==1?"相同":"不相同")); Assign(s3,"12345678"); printf("s3:");DispStr(s3); printf("s1和s3连接=>s4\n"); s4=Concat(s1,s3); printf("s4:");DispStr(s4); printf("s3[2..5]=>s5\n"); s5=SubStr(s3,2,4); printf("s5:");DispStr(s5); Assign(s6,"567"); printf("s6:");DispStr(s6); printf("s6在s3中位置:%d\n",Index(s3,s6)); printf("从s3中删除s3[3..6]字符\n"); DelStr(s3,3,4); printf("s3:");DispStr(s3); printf("从s4中将s6替换成s1=>s7\n"); s7=RepStrAll(s4,s6,s1); printf("s7:");DispStr(s7); }