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
accce741514433375b48d912dc4437f97bb6a295
3942ec60aa71d077b836515164aa8e3c4cf79236
/graphics/sprites.h
54241d552fa11f7fd2be3fd0c8ec05e95d9d3387
[]
no_license
semihkekul/moving
174c86877335e20873fe398aa7c944ffed429b8e
fd84836c1e5a560911df6b9c4457432ae5f4ffdb
refs/heads/master
2020-04-10T00:39:25.306224
2018-12-06T15:13:36
2018-12-06T15:13:36
160,692,104
0
0
null
null
null
null
UTF-8
C++
false
false
870
h
sprites.h
#ifndef _SPRITES_H #define _SPRITES_H #include <pspdisplay.h> #include <pspctrl.h> #include <pspkernel.h> #include <pspdebug.h> #include <pspgu.h> #include <png.h> #include <stdio.h> #include <iostream> #include <stdlib.h> #include "graphics.h" using namespace std; /** inspred by **************** http://www.psp-programming.com ******************************/ #define RGB(r, g, b) (0xFF000000 | ((b)<<16) | ((g)<<8) | (r)) // #define topBound 0; // #define bottomBound 272; // #define leftBound 0; // #define rightBound 480; // int imageSize = 32; // int dir = 0; // int go = 0; // int speed = 10; // int trail = 0; class Sprite { public: Sprite(string imgFileName,int bufferSize, int width, int height); Sprite(); void loadSprite(string imgFileName,int bufferSize,int width, int height); Image* m_image; char* m_buffer; int w; int h; }; #endif
1c1219a02f46778d8c512649c1b9aeabff8b0040
402e42eaa376a2925731f7fb3b8147f63b219a3f
/src/Plugin.hpp
1f02581a064f530efa2f13b8eaed1161fca2e723
[ "MIT" ]
permissive
cosmoscout/csp-simple-wms-bodies
56a0120c3f5a02596b311c157e597f7d1a87dcd7
04c02dab56c46661548b759309b150eaa5d83ff6
refs/heads/develop
2021-05-19T08:41:54.621358
2020-05-28T18:45:01
2020-05-28T18:45:01
251,609,886
0
0
MIT
2020-07-23T13:27:07
2020-03-31T13:24:44
C++
UTF-8
C++
false
false
3,874
hpp
Plugin.hpp
//////////////////////////////////////////////////////////////////////////////////////////////////// // This file is part of CosmoScout VR // // and may be used under the terms of the MIT license. See the LICENSE file for details. // // Copyright: (c) 2019 German Aerospace Center (DLR) // //////////////////////////////////////////////////////////////////////////////////////////////////// #ifndef CSP_SIMPLE_WMS_BODIES_PLUGIN_HPP #define CSP_SIMPLE_WMS_BODIES_PLUGIN_HPP #include "utils.hpp" #include "../../../src/cs-core/PluginBase.hpp" #include "../../../src/cs-utils/DefaultProperty.hpp" #include <map> #include <string> namespace csp::simplewmsbodies { class SimpleWMSBody; /// This plugin provides the rendering of planets as spheres with a texture and an additional WMS /// based texture. Despite its name it can also render moons :P. It can be configured via the /// applications config file. See README.md for details. class Plugin : public cs::core::PluginBase { public: /// The startup settings of the plugin. struct Settings { /// Specifies whether to interpolate textures between timesteps (does not work when pre-fetch is /// inactive). cs::utils::DefaultProperty<bool> mEnableInterpolation{true}; /// Specifies whether to display timespan. cs::utils::DefaultProperty<bool> mEnableTimespan{false}; /// Path to the map cache folder, can be absolute or relative to the cosmoscout executable. cs::utils::DefaultProperty<std::string> mMapCache{"texture-cache"}; /// A single WMS data set. struct WMSConfig { std::string mCopyright; ///< The copyright holder of the data set (also shown in the UI). std::string mUrl; ///< The URL of the map server including the "SERVICE=wms" parameter. int mWidth; ///< The width of the WMS image. int mHeight; ///< The height of the WMS image. std::optional<std::string> mTime; ///< Time intervals of WMS images. std::string mLayers; ///< A comma,seperated list of WMS layers. std::optional<int> mPrefetchCount; ///< The amount of textures that gets pre-fetched in every time direction. }; /// The startup settings for a planet. struct SimpleWMSBody { std::optional<int> mGridResolutionX; ///< The x resolution of the body grid. std::optional<int> mGridResolutionY; ///< The y resolution of the body gird. std::string mTexture; ///< The path to surface texture. std::string mActiveWMS; ///< The name of the currently active WMS data set. std::map<std::string, WMSConfig> mWMS; ///< The data sets containing WMS data. }; std::map<std::string, SimpleWMSBody> mBodies; ///< A list of bodies with their anchor names. }; void init() override; void deInit() override; private: void onLoad(); Settings::SimpleWMSBody& getBodySettings(std::shared_ptr<SimpleWMSBody> const& body) const; void setWMSSource(std::shared_ptr<SimpleWMSBody> const& body, std::string const& name) const; /// Add bookmarks to the timeline from time intervals of the current data set. void addBookmarks(std::vector<TimeInterval> timeIntervals, std::string wmsName, std::string planetName, std::string frameName); /// Remove the current bookmarks. void removeBookmarks(); std::shared_ptr<Settings> mPluginSettings = std::make_shared<Settings>(); std::map<std::string, std::shared_ptr<SimpleWMSBody>> mSimpleWMSBodies; std::vector<int> mBookmarkIDs; int mActiveBodyConnection = -1; int mOnLoadConnection = -1; int mOnSaveConnection = -1; }; } // namespace csp::simplewmsbodies #endif // CSP_SIMPLE_WMS_BODIES_PLUGIN_HPP
f293e2bc9d7fee07429e32a896dfb8b8a4041415
369cc6049abf46e3ed1c38afce5c51d84bd12784
/src/attribute.h
9ce394fa90e9efee6c802f4364a8626d0f6707c8
[]
no_license
xgc820313/fastget
8f599b17b16acdba1c860355dba867b593b9b1c6
fefc7edcb6a9465a817d2af17ec9f812030e2d8d
refs/heads/master
2021-01-01T15:51:21.406251
2009-07-25T05:58:37
2009-07-25T05:58:37
38,357,653
0
0
null
null
null
null
UTF-8
C++
false
false
3,795
h
attribute.h
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /** * @file attribute.h * @author dragon <chinagnu@gmail.com> * @date Thu Jul 2 10:28:01 2009 * * @brief header define of task attribute * @version 0.1 * * @todo unknow * @bug unknow */ #ifndef ATTRIBUTE_H_INC #define ATTRIBUTE_H_INC #include "dragon.h" typedef enum { UNKNOW_PROTOCOL, HTTP_PROTOCOL, FTP_PROTOCOL, MMS_PROTOCOL, P2P_PROTOCOL }proto_t; typedef enum { START, WAIT, PAUSE, ERROR, CANCEL, FINISH }status_t; class Attribute { public: Attribute(void) { url=0; speed=0; progress=0; time_right=0; target_size=0; file_name=0; hostname=0; dir=0; target_name=0; user=0; passwd=0; } ~Attribute(void) { delete url; delete speed; delete time_right; delete target_size; delete file_name; delete hostname; delete dir; delete target_name; delete user; delete passwd; } /* attribute setting operation */ uint32_t get_size(void) const {return size;} void set_size(const uint32_t file_size){size = file_size;} string* get_target_size(void) const {return target_size;} bool set_target_size(void); unsigned int get_index(void) const { return index;} void set_index(const unsigned int idx){index = idx;} status_t get_status(void) const {return status;} bool set_status(status_t m_status); string* get_url(void) const { return url;} bool set_url(const char* m_url); string* get_hostname(void) const { return hostname;} string* get_dir(void) const { return dir;} string* get_target_name(void) const {return target_name;} unsigned int get_port(void) const { return port;} string* get_user_name(void) const { return user;} bool set_user_name(const char* m_user); string* get_password(void) const { return passwd;} bool set_password(const char* pass); int get_thread_num(void) const { return thread_num;} bool set_thread_num(int num); string* get_file_name(void) const { return file_name;} bool set_file_name(const char *filename); string* get_speed(void) const { return speed;} bool set_speed(const uint32_t total,const uint32_t finish_total); int get_progress(void) const { return progress;} void set_progress(const uint32_t finish_total); string* get_time_right(void) const { return time_right;} bool set_time_right(const uint32_t total,const uint32_t finish_total); /* parse operation */ bool resource_parse(void); double gettime(void); proto_t current_protocol; private: unsigned int index; status_t status; string *url; string *speed; int progress; string *time_right; string *target_size; int retry; string *file_name; string *hostname; string *dir; string *target_name; string *user; string *passwd; unsigned int port; uint32_t size; int thread_num; bool auto_falg; double start_time; bool url_parse(void); bool meta_file_parse(void); /* parse the bitorrent file */ string resource; /* get all information from Bit torrent file */ }; class P2PAttribute:public Attribute { private: public: /* parse the url */ bool url_parse(const string& filename); }; #endif /* */
97dc7d31a7f0a589fa073e80e00af292fc55b07d
ec33bd48223e25c4528e15a2fbd847dd3f85e3bf
/CPP_projects/RapidBackend/sources/mainTest.cpp
6e46e5faf3d3bc118e81ad28acc13feaf597974e
[]
no_license
y-vyrovoy/misc_projects
21b5e07674ceda6cb24696c3ec289fa3d0cb8c68
e2d6db318bd5e24914dfa1212252e32fbb34f0a9
refs/heads/master
2021-10-25T06:27:31.653299
2019-04-02T08:34:11
2019-04-02T08:34:11
93,945,971
0
0
null
null
null
null
UTF-8
C++
false
false
9,831
cpp
mainTest.cpp
#include "stdafx.h" #include <chrono> #include <thread> #include <mutex> #include "ServerFramework.h" #include "MessageException.h" #include "RequestDispatcher.h" #include "WaitSentQueue.h" #include "Logger.h" #define N_SOCKETS 3 RequestDispatcher g_dispatcher; std::atomic<bool> g_stop; std::atomic<unsigned int> g_value; std::mutex g_coutMutex; using namespace std::chrono_literals; RequestPtr getRequest( unsigned int id ) { std::stringstream buf; buf << "[ request " << id << " ]"; RequestPtr request = std::make_unique<RequestData>(); request->setAddress( buf.str() ); return request; } void pushRequestThreadFunc(const std::chrono::milliseconds & sleepDuration) { while ( !g_stop ) { RequestPtr request = getRequest( g_value ); size_t oldW = g_dispatcher.waitingRequestCount(); size_t oldS = g_dispatcher.sentRequestCount(); std::string tempAddr = request->getAddress(); g_dispatcher.registerRequest( ( g_value++ ) % N_SOCKETS, std::move( request ) ); COUT_LOG << " [th id " << std::this_thread::get_id() << " RegReq ]:" << " REQ:" << " register" << " adr: " << tempAddr << " W [" << oldW << " -> " << g_dispatcher.waitingRequestCount() << "]" << " S [" << oldS << " -> " << g_dispatcher.sentRequestCount() << "]"; std::this_thread::sleep_for( sleepDuration ); } } static unsigned int g_pullReqCount = 0; void pullRequestsThreadFunc( const std::chrono::milliseconds & sleepDuration ) { unsigned int funcId = g_pullReqCount++; while ( !g_stop ) { size_t oldW = g_dispatcher.waitingRequestCount(); size_t oldS = g_dispatcher.sentRequestCount(); RequestData * request = g_dispatcher.scheduleNextRequest(); if( !request ) { continue; } COUT_LOG << " [th id " << std::this_thread::get_id() << " PullReq_" << funcId << " ]: " << " REQ:" << " pull" << " id: " << request->getId() << " adr: " << request->getAddress() << " W [" << oldW << " -> " << g_dispatcher.waitingRequestCount() << "]" << " S [" << oldS << " -> " << g_dispatcher.sentRequestCount() << "]"; std::this_thread::sleep_for( sleepDuration ); size_t oldReps = g_dispatcher.responsesCount(); size_t oldQ = g_dispatcher.responsesQueueCount(); ResponsePtr response = std::make_unique<ResponseData>(); response->id = request->getId(); g_dispatcher.registerResponse( std::move( response ) ); COUT_LOG << " [th id " << std::this_thread::get_id() << " PullReq_" << funcId << " ]: " << " RESP:" << " registring response" << " id: " << request->getId() << " resps [" << oldReps << " -> " << g_dispatcher.responsesCount() << "]" << " respQ [" << oldQ << " -> " << g_dispatcher.responsesQueueCount() << "]"; try { { std::unique_lock<std::mutex> lock( g_coutMutex ); g_dispatcher.Dump(); } } catch ( std::exception & ex ) { COUT_LOG << __func__ << ": " << "exception: " << ex.what(); } } } static unsigned int g_pullRespCount = 0; void pullResponseThreadFunc( const std::chrono::milliseconds & sleepDuration ) { unsigned int funcId = g_pullRespCount++; while( !g_stop ) { COUT_LOG << " [th id " << std::this_thread::get_id() << " pullResp_" << funcId << " ]:" << " RESP: Waiting for response"; size_t oldReps = g_dispatcher.responsesCount(); size_t oldQ = g_dispatcher.responsesQueueCount(); ResponseData * p = g_dispatcher.pullResponse(); auto id = p->id; COUT_LOG << " [th id " << std::this_thread::get_id() << " pullResp ]:" << " RESP:" << " pulling response" << " id: " << id << " resps [" << oldReps << " -> " << g_dispatcher.responsesCount() << "]" << " respQ [" << oldQ << " -> " << g_dispatcher.responsesQueueCount() << "]"; g_dispatcher.remove( id ); std::this_thread::sleep_for( sleepDuration ); } } void testAsync() { g_stop = false; std::thread thReqIn1( pushRequestThreadFunc, 190ms ); std::thread thReqOut1( pullRequestsThreadFunc, 320ms ); std::thread thReqOut2( pullRequestsThreadFunc, 370ms ); std::thread thReqOut3( pullRequestsThreadFunc, 350ms ); std::thread thRespOut1( pullResponseThreadFunc, 500ms ); std::thread thRespOut2( pullResponseThreadFunc, 520ms ); for (std::string s; std::cin >> s; ) { if ( s == "exit" ) { g_stop = true; break; } } thReqIn1.join(); thReqOut1.join(); thReqOut2.join(); thReqOut3.join(); thRespOut1.join(); thRespOut2.join(); } void testSync() { RequestPtr request = getRequest( g_value ); g_dispatcher.registerRequest( ( g_value++ ) % N_SOCKETS, std::move( request ) ); COUT_LOG << __func__<< " [th id " << std::this_thread::get_id() << "]:" << " REQ:" << " register" << " W [" << g_dispatcher.waitingRequestCount() << "]" << " S [" << g_dispatcher.sentRequestCount() << "]"; ResponsePtr response = std::make_unique<ResponseData>(); response->id = 0; COUT_LOG << "th id " << std::this_thread::get_id() << ":" << " RESP:" << " registring response" << " id: " << response->id << " responses [" << g_dispatcher.responsesCount() << "]" << " respQueue [" << g_dispatcher.responsesQueueCount() << "]"; g_dispatcher.registerResponse( std::move( response ) ); ResponseData * p = g_dispatcher.pullResponse(); auto respId = p->id; COUT_LOG << "th id " << std::this_thread::get_id() << ":" << " RESP:" << " pulling response" << " id: " << respId << " responses [" << g_dispatcher.responsesCount() << "]" << " respQueue [" << g_dispatcher.responsesQueueCount() << "]"; } void testOne() { RequestDispatcher disp; disp.registerRequest(0, getRequest( g_value++ ) ); disp.registerRequest(1, getRequest( g_value++ ) ); disp.registerRequest(0, getRequest( g_value++ ) ); disp.registerRequest(1, getRequest( g_value++ ) ); disp.registerRequest(0, getRequest( g_value++ ) ); disp.registerRequest(1, getRequest( g_value++ ) ); disp.Dump(); COUT_LOG << "LET'S RUN !" << std::endl << std::endl << " ------ +++++++++++++++++ -----------" << std::endl; try { RequestData * pRequest = disp.scheduleNextRequest(); auto id1 = pRequest->getId(); COUT_LOG << "sending request #" << id1 << std::endl << "-----------------------" << std::endl; disp.Dump(); pRequest = disp.scheduleNextRequest(); auto id2 = pRequest->getId(); COUT_LOG << "sending request #" << id2 << std::endl << "-----------------------" << std::endl; disp.Dump(); disp.rescheduleRequest( id1 ); COUT_LOG << "rescheduling request #" << id1 << std::endl << "-----------------------" << std::endl; disp.Dump(); pRequest = disp.scheduleNextRequest(); id1 = pRequest->getId(); COUT_LOG << "sending request #" << id1 << std::endl << "-----------------------" << std::endl; disp.Dump(); disp.remove( id2 ); COUT_LOG << "removing request #" << id2 << std::endl << "-----------------------" << std::endl; disp.Dump(); pRequest = disp.scheduleNextRequest(); auto id3 = pRequest->getId(); COUT_LOG << "sending request #" << id3 << std::endl << "-----------------------" << std::endl; disp.Dump(); ResponsePtr response0 = std::make_unique<ResponseData>(ResponseData()); response0->id = id1; disp.registerResponse( std::move(response0) ); COUT_LOG << "Register response id #" << id1 << std::endl << "-----------------------" << std::endl; disp.Dump(); try { ResponsePtr response2 = std::make_unique<ResponseData>(); response2->id = id2; disp.registerResponse( std::move( response2 ) ); COUT_LOG << "Register response id #" << id2 << std::endl << "-----------------------" << std::endl; disp.Dump(); } catch ( std::exception & ex ) { COUT_LOG << "Exception. Trying to register response id #" << id2 << ": " << ex.what() ; } ResponsePtr response3 = std::make_unique<ResponseData>(); response3->id = id3; disp.registerResponse(std::move(response3)); COUT_LOG << "Register response id #" << id3 << std::endl << "-----------------------" << std::endl; disp.Dump(); ResponseData * p = disp.pullResponse(); auto respID = p->id; COUT_LOG << "Pull response # " << respID << std::endl << "-----------------------" << std::endl; disp.Dump(); disp.syncPutTopResponseToQueue( disp.getSocket(respID) ); COUT_LOG << "Response failed. Let's try to send it again. putTopResponseToQueue(" << respID << ")" << std::endl << "-----------------------" << std::endl; disp.Dump(); disp.remove( respID ); COUT_LOG << "Response succeeded. removeRequestAndResponse(" << respID << ")" << std::endl << "-----------------------" << std::endl; disp.Dump(); } catch (std::exception & ex) { std::cout << "Exception: " << ex.what() << std::endl; } } void testWaitSentMap() { WaitSentQueue<int> m; m.push( 12 ); m.push( 1 ); m.push( 105 ); int a = 19; m.push( a ); try { int t = m.moveNextToSent(); m.moveToWaiting( t ); t = m.moveNextToSent(); m.remove( t ); } catch ( std::exception & ex ) { std::cout << "Exception: " << ex.what() << std::endl; } } void testParser() { char request[] = "GET HTTP/1.1\r\n" "Host: 127.0.0.1\r" ; std::vector<char> fakeRequest; fakeRequest.assign( request, request + sizeof( request ) ); RequestParser parser; RequestPtr result( new RequestData ); try { parser.Parse( fakeRequest, result ); std::cout << L"Parse() didn't failed processing bad request" << std::endl; } catch( std::exception & ex) { std::stringstream ss; ss << "Parse() is ok. Caught exception: " << ex.what(); std::cout << ss.str().data() << std::endl; } } void mainTest( ) { fileLogger::initStaticInstance( "d:\\rb_log.txt" ); //testOne(); //testSync(); //testAsync(); //testWaitSentMap(); testParser(); }
60ecf0d107ff6e0455d0b879ff634341331c924a
ba14e6c0c2905ba46d83ded2e84d4d71be0125b9
/src/device/nrf/nrf24l01p/nrf24l01p.cpp
478d081f3117f2c2984061a49b71ad715bc3b320
[]
no_license
TheSeven/firmware
d3861a33811090b3a79c41bae9caf523133edb23
6937673c677da86a5b6008962e9e60e32404217e
refs/heads/master
2021-01-17T11:16:24.663819
2017-02-05T21:02:33
2017-02-05T21:02:33
27,391,134
4
4
null
null
null
null
UTF-8
C++
false
false
2,725
cpp
nrf24l01p.cpp
#include "global.h" #include "device/nrf/nrf24l01p/nrf24l01p.h" #include "sys/time.h" #include "sys/util.h" void NRF_OPTIMIZE NRF::NRF24L01P::configure(const Configuration* config) { NRF::NRF24L01P::Config configOff(Role_PTX, false, CrcMode_None, true, true, true); bool old = stayAwake(true); writeReg(Reg_Config, &configOff, sizeof(configOff)); configOff.d8 = config->config.d8; configOff.b.powerUp = false; flushTx(); Status status = flushRx(); writeReg(Reg_Status, &status, sizeof(status)); writeReg(Reg_FeatureCtl, &config->featureCtl, sizeof(config->featureCtl)); writeReg(Reg_AutoAckCtl, &config->autoAckCtl, sizeof(config->autoAckCtl)); writeReg(Reg_RxPipeEnable, &config->rxPipeEnable, sizeof(config->rxPipeEnable)); writeReg(Reg_AddressCtl, &config->addressCtl, sizeof(config->addressCtl)); writeReg(Reg_RetransCtl, &config->retransCtl, sizeof(config->retransCtl)); writeReg(Reg_RfChannel, &config->rfChannel, sizeof(config->rfChannel)); writeReg(Reg_RfSetup, &config->rfSetup, sizeof(config->rfSetup)); writeReg(Reg_DynLengthCtl, &config->dynLengthCtl, sizeof(config->dynLengthCtl)); writeReg(Reg_Config, &configOff, sizeof(configOff)); writeReg(Reg_Config, &config->config, sizeof(config->config)); stayAwake(old); } NRF::SPI::Status NRF_OPTIMIZE NRF::NRF24L01P::handleIRQ() { stayAwake(true); Status status = getStatus(); Status result = status; uint8_t length = 0; uint8_t data[32]; TxObserve txObserve; if (packetTransmitted && (status.b.maxRetrans || status.b.dataSent)) result = readReg(Reg_TxObserve, &txObserve, sizeof(txObserve)); if (status.b.maxRetrans || status.b.dataSent || status.b.dataReceived) result = writeReg(Reg_Status, &status, sizeof(status)); if (status.b.dataReceived) while (true) { stayAwake(true); FifoStatus fifoStatus; result = readReg(Reg_FifoStatus, &fifoStatus, sizeof(fifoStatus)); if (fifoStatus.b.rxEmpty) break; getRxPacketSize(&length); readPacket(data, length); stayAwake(false); if (packetReceived) packetReceived(result.b.rxPipe, data, length); } stayAwake(false); if (packetTransmitted && (status.b.maxRetrans || status.b.dataSent)) packetTransmitted(!status.b.maxRetrans, txObserve.b.retransCount); return result; } NRF::SPI::Status NRF_OPTIMIZE NRF::NRF24L01P::enablePipe(int pipe, bool on) { uint8_t enabled; readReg(Reg_RxPipeEnable, &enabled, sizeof(enabled)); enabled = (enabled & (~(1 << pipe))) | (on << pipe); return writeReg(Reg_RxPipeEnable, &enabled, sizeof(enabled)); }
eed79512c28ebfff11bcb0ffa26599ee5bdfd7fc
0ac44ae44d2aefe7a3a0186c6335ab285f0ac14c
/source/main.cpp
5711176e7ca294e379b215a9fc31ec7170ffd1a0
[]
no_license
drankinmacup/spaceduel
8b6f980ad6093a8d4da264f61608f964d582f468
bf8d55e56d7fcb345ce4f317ed522bc19a7e5a9f
refs/heads/master
2021-01-01T16:50:38.405347
2013-01-27T23:24:13
2013-01-27T23:24:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,992
cpp
main.cpp
/*=========================================== Space Duel - Initial Testing Based on GRRLIB (GX Version) Template Minimum Code To Use GRRLIB ============================================*/ #include <grrlib.h> #include <stdlib.h> #include <cmath> #include <wiiuse/wpad.h> #include "Ship.h" #include "classicbody_png.h" #include "classicaccent_png.h" #include "classicshield_png.h" #define IMGSIZE 64 int const screenW = 640; int const screenH = 480; f32 const scale = 0.2; // Scales size of ships since the resolution is small int main(int argc, char **argv) { // Initialise the Graphics & Video subsystem GRRLIB_Init(); GRRLIB_texImg *clbody = GRRLIB_LoadTexture(classicbody_png); GRRLIB_texImg *claccent = GRRLIB_LoadTexture(classicaccent_png); GRRLIB_texImg *clshield = GRRLIB_LoadTexture(classicshield_png); GRRLIB_SetMidHandle(clbody, true); GRRLIB_SetMidHandle(claccent, true); GRRLIB_SetMidHandle(clshield, true); // Initialize the Wiimotes WPAD_Init(); Ship p1ship(56 * scale, 0xFF00FFFF, 0xFFFFFFFF); // Loop forever while(1) { // Check for controller input WPAD_ScanPads(); // Scan the Wiimotes u16 buttonsDown = WPAD_ButtonsHeld(0); // Checks if any buttons are held (tutorials did it this way) if (buttonsDown & WPAD_BUTTON_RIGHT) { p1ship.rotate(1);} if (buttonsDown & WPAD_BUTTON_LEFT) { p1ship.rotate(-1);} if (buttonsDown & WPAD_BUTTON_UP) { p1ship.thrust();} // If [HOME] was pressed on the first Wiimote, break out of the loop if (WPAD_ButtonsDown(0) & WPAD_BUTTON_HOME) break; //string vXstr = static_cast<ostringstream*>( &(ostringstream() << p1ship.getVx()) )->str(); //string vYstr = static_cast<ostringstream*>( &(ostringstream() << p1ship.getVy()) )->str(); if ((p1ship.getX() - p1ship.getR()) < 0) { p1ship.collide(fabs(p1ship.getVx()), p1ship.getVy()); } if ((p1ship.getX() + p1ship.getR()) > screenW) { p1ship.collide(-1.0 * fabs(p1ship.getVx()), p1ship.getVy()); } if ((p1ship.getY() - p1ship.getR()) < 0) { p1ship.collide(p1ship.getVx(), fabs(p1ship.getVy())); } if ((p1ship.getY() + p1ship.getR()) > screenH) { p1ship.collide(p1ship.getVx(), -1.0 * fabs(p1ship.getVy())); } p1ship.advance(1); // Draw everything (adding the 3rd line breaks the program) GRRLIB_DrawImg(p1ship.getX(), p1ship.getY(), clbody, p1ship.getTheta(), scale, scale, p1ship.getScolor()); GRRLIB_DrawImg(p1ship.getX(), p1ship.getY(), claccent, p1ship.getTheta(), scale, scale, p1ship.getAccentColor()); GRRLIB_DrawImg(p1ship.getX(), p1ship.getY(), clshield, 0, 2 * p1ship.getR() / IMGSIZE, 2 * p1ship.getR() / IMGSIZE, p1ship.getShieldColor()); //GRRLIB_(p1ship.getX(), p1ship.getY(), R, 0xFFFFFFFF, true); GRRLIB_Render(); // Render the frame buffer to the TV } GRRLIB_Exit(); // Be a good boy, clear the memory allocated by GRRLIB exit(0); // Use exit() to exit a program, do not use 'return' from main() }
31c5d916b381323f05aee4107768cde595e9c3fd
a20b95ef719adaac9e9d9a1478428407ecdbdd25
/src/FightScreenEnemy.h
692c0d0044355d81bf9532e66687908f8ca31c7c
[]
no_license
ani300/1714game
4523d8212206153b7279fb0b213573050356cb7c
dcd5b09271692fe40894ff291fb1e8107d52e9aa
refs/heads/master
2016-09-06T11:27:03.991136
2015-01-25T05:11:07
2015-01-25T05:11:17
17,917,886
0
0
null
null
null
null
UTF-8
C++
false
false
713
h
FightScreenEnemy.h
/******************************FightScreenEnemy.h**********************************/ #ifndef FIGHTSCREENENEMY #define FIGHTSCREENENEMY #include "Utils.h" #include "MovileObject.h" #include "ResourceHolder.h" #include "ResourceIdentifiers.h" class FightScreenEnemy: public MovileObject { public: //Constructor FightScreenEnemy(const sf::Texture& texture); sf::Vector2f getSize(); void setSize(sf::Vector2u desiredSize); private: virtual void drawCurrent(sf::RenderTarget& target, sf::RenderStates states) const; virtual void updateCurrent(sf::Time dt); sf::Sprite mSprite; sf::Clock spriteTimmer; }; #endif // FIGHTSCREENENEMY
3e7eb6b0470f2e5bc0b7254ac27956d5d1f7a9cd
5b5d53dd0d1593f2c2475d493f664d34e4858ee2
/Liste/Ornek2/main.cpp
a699455b560c5382f200097a9bdf7f7eeb4c8358
[]
no_license
yapbenzet/Modern_Cpp_WebSite
bf51a84ec6587631d1cee80354989759f200ec8e
526d558490a8676d13330b80f34ec872d779f7d4
refs/heads/master
2023-04-04T17:30:17.150606
2023-03-22T06:34:43
2023-03-22T06:34:43
98,210,300
6
5
null
null
null
null
UTF-8
C++
false
false
1,055
cpp
main.cpp
#include <list> #include <iostream> /** * Listenin kapasitesi icin islemler */ using namespace std; int main() { list<char> karakter; karakter.assign(5, 'a'); //5 tane char degeri atar. //assing(): Atama islemi yapar. for (char c : karakter) { //Karakter sayisi kadar döngü döner. cout << c << '\n'; } list<int> sayilar; cout << "Bos mu? " << sayilar.empty() << '\n'; //Boş ise 1 dondurur. //empty(): Map in boslugunu kontrol eder. sayilar.push_back(33); //push_basck(): Sona eleman ekleme. sayilar.push_back(27); cout << "Bos mu? " << sayilar.empty() << '\n'; //Dolu ise 0 dondurur. list<int> sayilar2 {1, 3, 5, 7}; cout << "sayilar2'nin eleman sayisi: " << sayilar2.size() << " elements.\n"; //Listenin eleman sayisini dondurur. //size(): Map in boyutunu dondurur. list<int> s; cout << "Tanimlanabilecek en buyuk boyut: " << s.max_size() << "\n"; //Tanimlanabilecek en buyuk boyuttur. //max_size(): Map in tanimlanabilecegi en buyuk boyut. return 0; }
d8eb9c1c4d1481e858a0f1aa70997c0fbd956b4b
204c5937cdea475f5c3dafde6d770a74ae9b8919
/UVA/Chapter 3. Data Structures/Fundamental Data Structures/Examples/11911.cpp
cf00e4f6b2f0ad0d82ba3d9a8effe784e0e0ed45
[]
no_license
mlz000/Algorithms
ad2c35e4441bcbdad61203489888b83627024b7e
495eb701d4ec6b317816786ad5b38681fbea1001
refs/heads/master
2023-01-04T03:50:02.673937
2023-01-02T22:46:20
2023-01-02T22:46:20
101,135,823
7
1
null
null
null
null
UTF-8
C++
false
false
459
cpp
11911.cpp
#include<cstdio> #include<iostream> #include<algorithm> #include<cstring> #include<vector> using namespace std; const int N=1000005; int n,m; vector<int> a[N]; int main(){ while(scanf("%d%d",&n,&m)!=EOF){ for(int i=1;i<=n;++i) a[i].clear(); for(int i=1,x;i<=n;++i){ scanf("%d",&x); a[x].push_back(i); } for(int i=1,k,v;i<=m;++i){ scanf("%d%d",&k,&v); if(a[v].size()<k) printf("0\n"); else printf("%d\n",a[v][k-1]); } } return 0; }
2726567c0c7e811cf00bd568b9e69596a1ef8d74
25b36236d90aa38deb0e28db06f5f5ee5264d931
/NPLib/Core/NPImage.h
de1a3a63affcacd0da3777862e4323f10a811b6e
[]
no_license
adrien-matta/nptool
54b5ea6fe2d8c226e7422a948d3ecc94d62d1ff2
415ad50066f715ca1de312da1202201f9381e87e
refs/heads/NPTool.2.dev
2021-04-18T23:52:44.645407
2019-09-02T12:38:49
2019-09-02T12:38:49
13,268,020
36
20
null
2016-12-05T11:46:35
2013-10-02T10:11:22
C++
UTF-8
C++
false
false
3,211
h
NPImage.h
#ifndef NPIMAGE #define NPIMAGE /***************************************************************************** * Copyright (C) 2009-2016 this file is part of the NPTool Project * * * * For the licensing terms see $NPTOOL/Licence/NPTool_Licence * * For the list of contributors see $NPTOOL/Licence/Contributors * *****************************************************************************/ /***************************************************************************** * Original Author: Adrien Matta contact address: matta@lpccaen.in2p3.fr * * * * Creation Date : * * Last update : * *---------------------------------------------------------------------------* * Decription: * * This class is wrapper of root TASImage to manipulate and generate * * detector pixel map * * * *---------------------------------------------------------------------------* * Comment: * * * * * *****************************************************************************/ // ROOT #include"TASImage.h" //STL #include<string> namespace NPL{ class Image{ public: Image(); Image(std::string filename,double Xscalling,double Yscalling); ~Image(); public: void Open(std::string filename); void Print(double scale=0); // print mockup in terminal void Draw(); // draw in a new canvas (interactive only) void Save(std::string filename); // save the image public: // Get the value based on coordinate unsigned int GetRedAtCoordinate(double x, double y); unsigned int GetGreenAtCoordinate(double x, double y); unsigned int GetBlueAtCoordinate(double x, double y); unsigned int GetAlphaAtCoordinate(double x, double y); unsigned int GetPixelAtCoordinate(double x, double y); public: // Get the value based on pixel unsigned int PixelToIndex(unsigned int x, unsigned int y); unsigned int GetRedAtPixel(unsigned int x, unsigned int y); unsigned int GetGreenAtPixel(unsigned int x, unsigned int y); unsigned int GetBlueAtPixel(unsigned int x, unsigned int y); unsigned int GetAlphaAtPixel(unsigned int x, unsigned int y); public: void GenerateStrip(unsigned int Nbr, double x, double y , double interstrip , unsigned int pixel); private: TASImage* m_Image; // the image itself unsigned int* m_ARGB; // the alpha red green blue array of pixel value double m_Xscaling; // pixel per mm double m_Yscaling; // pixel per mm unsigned int m_Width; unsigned int m_Height; }; } #endif
0c070df6095bc29a119e732f31504109ff8fb948
eb6cce2a882226e1090b33d7c7b4a9cc4d802a05
/Circle.ino
9e6626101eed9651f4b9936871aa9e2acd4e3972
[]
no_license
Jessebeau2001/Hexonizer
0c98f04bec7e4161681390fd65508dd284d7b9ef
580b3f312a3655124f084015a8d26516fd32f837
refs/heads/master
2020-07-23T14:18:09.741370
2019-09-13T00:53:53
2019-09-13T00:53:53
207,589,272
0
0
null
null
null
null
UTF-8
C++
false
false
1,462
ino
Circle.ino
#include <Wire.h> #include <LiquidCrystal_I2C.h> LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE); const int buttonPin = 2; const int switchPin = 3; int buttonState = 0; int lastButtonState = 0; int clicks = 0; int circle= 0; int drawNum[] = {10, 4, 4, 1}; int totalHexAmount[] = {18, 12, 6, 6, 6}; int randNum; bool stop = false; void setup() { lcd.begin(16,2); lcd.backlight(); lcd.print("Press button!"); Serial.begin(9600); pinMode(buttonPin, INPUT); pinMode(switchPin, INPUT); randomSeed(analogRead(0)); } void loop() { if (digitalRead(switchPin) == HIGH) { stop = true; } else { stop = false; } buttonState = digitalRead(buttonPin); if (buttonState != lastButtonState) { if (buttonState == HIGH) { if (stop == false) { clicks++; } randNum = random(1, totalHexAmount[circle]); lcd.setCursor(0,0); lcd.print("You clicked: "); lcd.print(" "); lcd.setCursor(13, 0); lcd.print(clicks); lcd.setCursor(0, 1); lcd.print(" "); lcd.setCursor(0, 1); lcd.print(randNum); } delay (50); } lastButtonState = buttonState; if (circle >= 4 && clicks >= 1 ) { stop = true; } else if (clicks == drawNum[circle] && stop == false) { clicks = 0; circle++; } }
985a6db8a617e4e7176e42efb81d166d49420a68
4254c31acc7fc4f5ade20e79607d2bf609f96361
/src/controls/controls.ino
9592905b9d08a49b5fc419b3dc2062de51dbfc98
[ "MIT" ]
permissive
tomaskraus/ArduinoTank
481f35c6c9476068250ad91fa04cfbc0469cb7a1
4a7bc059812240d2ac89c5fdcccf53f357bafdad
refs/heads/master
2020-06-06T18:24:02.711812
2019-06-21T14:32:49
2019-06-21T14:32:49
192,821,146
1
0
null
null
null
null
UTF-8
C++
false
false
1,360
ino
controls.ino
#define PWMA 9 #define DIRA 8 #define PWMB 6 #define DIRB 7 #define CH1_PIN 2 #define CH2_PIN 3 #define P_TIMEOUT 40000 #define CH_MIN 980 #define CH_MAX 1940 #define DEADZONE_LOW 1450 #define DEADZONE_HIGH 1550 #define LOOP_DELAY 20 //how much delay add to one loop int v1; void setup() { Serial.begin(9600); //Setup Channel A pinMode(PWMA, OUTPUT); //Initiates Motor Channel A pin pinMode(DIRA, OUTPUT); //Initiates Brake Channel A pin //pinMode(LED, OUTPUT); pinMode(CH1_PIN, INPUT); } int readAndGetOutput(int pin) { int ch = pulseIn(pin, HIGH, P_TIMEOUT); //Serial.println(ch); int v1 = map(ch, CH_MIN, CH_MAX, -255, 255); if (v1 < -255 || v1 > 255) { v1 = 0; } if (ch >= DEADZONE_LOW && ch < DEADZONE_HIGH) { v1 = 0; } //v1 = constrain(v1, -255, 255); Serial.println(v1); return v1; } void runMotor(int PWMThrottlePin, int ReversePin, int value) { int valueFinal; if (value >= 0) { digitalWrite(ReversePin, HIGH); //Establishes forward direction valueFinal = value; } else { digitalWrite(ReversePin, LOW); valueFinal = -value; } analogWrite(PWMThrottlePin, valueFinal); //Spins the motor } void loop(){ runMotor(PWMA, DIRA, readAndGetOutput(CH1_PIN)); runMotor(PWMB, DIRB, readAndGetOutput(CH2_PIN)); //Serial.println(v1); delay(LOOP_DELAY); }
b7be88f061c34bbf59d92499d26fa58ca1253214
901872989c010a987cebbf6430ad5adfd54b7b5c
/src/runtime/ios_io.cpp
57a72f381fe49bb29586985943fb528933cb684e
[ "MIT" ]
permissive
202198/Halide
802b232a2700de775baa2aa08803b08ad48eaa85
1e9efbef744847d29cbbf3c6dc75e1fc2bb98ebe
refs/heads/master
2021-01-15T23:06:59.251380
2013-09-18T23:16:19
2013-09-18T23:16:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,099
cpp
ios_io.cpp
#include "HalideRuntime.h" #include <stdarg.h> #include <stdint.h> #define WEAK __attribute__((weak)) typedef void *objc_id; typedef void *objc_sel; extern "C" objc_id objc_getClass(const char *name); extern "C" objc_sel sel_getUid(const char *str); extern "C" objc_id objc_msgSend(objc_id self, objc_sel op, ...); extern "C" void NSLogv(objc_id fmt, va_list args); // To allocate a constant string, use: __builtin___CFStringMakeConstantString extern "C" { WEAK int halide_printf(const char * fmt, ...) { va_list args; va_start(args, fmt); // Buy an autorelease pool because this is not perf critical and it is the // really safe thing to do. objc_id pool = objc_msgSend(objc_msgSend(objc_getClass("NSAutoreleasePool"), sel_getUid("alloc")), sel_getUid("init")); objc_id ns_fmt = objc_msgSend(objc_msgSend(objc_getClass("NSString"), sel_getUid("alloc")), sel_getUid("initWithUTF8String:"), fmt); NSLogv(ns_fmt, args); objc_msgSend(ns_fmt, sel_getUid("release")); objc_msgSend(pool, sel_getUid("drain")); va_end(args); return 1; // TODO: consider changing this routine to be void. } extern "C" void *fopen(const char *path, const char *mode); extern "C" size_t fwrite(const void *ptr, size_t size, size_t n, void *file); extern "C" int fclose(void *f); static bool write_stub(const void *bytes, size_t size, void *f) { int count = fwrite(bytes, size, 1, f); return (count == 1); } WEAK int32_t halide_debug_to_file(const char *filename, uint8_t *data, int32_t s0, int32_t s1, int32_t s2, int32_t s3, int32_t type_code, int32_t bytes_per_element) { void *f = fopen(filename, "wb"); if (!f) return -1; int result = halide_write_debug_image(filename, data, s0, s1, s2, s3, type_code, bytes_per_element, write_stub, (void *)f); fclose(f); return result; } }
80083fe7a31201490c026a4da108397bddac34db
c3dee1d04b2a4a530a9aaedf1ef839aa9206b50f
/opengl_3_3engine/RigidBody.h
1813bbcf5e3638230db69659950d7d0549fca96f
[]
no_license
jjzhang166/OpenGL-3.3-Engine-project
96b2cacce95d38815558b7ef2929ebc77fe6f8ee
8468e648f5c0af53d3be40a6c0db682f5b438cb7
refs/heads/master
2023-04-15T12:45:21.421351
2013-03-16T12:45:58
2013-03-16T12:45:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,147
h
RigidBody.h
//RigidBody.h - class for RigidBody type #pragma once #include <glm/glm.hpp> #include <glm\gtx\quaternion.hpp> #include <glm\gtc\matrix_transform.hpp> #include <glm\gtx\inertia.hpp> #include <assert.h> using glm::vec3; using glm::quat; using glm::mat3x3; class RigidBody { public: virtual ~RigidBody(){}; const vec3& GetLinearMomentum()const {return m_linearMomentum;} const vec3& GetAngularMomentum()const {return m_angularMomentum;} const mat3x3& GetOrientation()const {return m_orientation;} const vec3& GetPosition()const {return m_position;} const vec3& GetTorque()const {return m_torque;} void SetAngularMomentum(const vec3& newMomentum) {m_angularMomentum = newMomentum;} void SetLinearMomentum(const vec3& newMomentum) {m_linearMomentum = newMomentum;} void Update(float dt); void ApplyForce(vec3& force,vec3& contactPoint); protected: RigidBody(float mass,vec3& position,mat3x3& orientation); float m_mass; vec3 m_position; vec3 m_linearMomentum; vec3 m_angularMomentum; mat3x3 m_orientation; mat3x3 m_inertiaTensor; mat3x3 m_inverseInertiaTensor; vec3 m_force; vec3 m_torque; };
b3f8c2be44234a15e96d1e96b042db247bc385cc
ae936fb07d9478152cb998e94b9937d625f5c3dd
/Codeforces/CF621C.cpp
33231b98f19e02aefc5044a62a59388dc9d24f79
[]
no_license
Jorgefiestas/CompetitiveProgramming
f035978fd2d3951dbd1ffd14d60236ef548a1974
b35405d6be5adf87e9a257be2fa0b14f5eba3c83
refs/heads/master
2021-06-12T06:28:20.878137
2021-04-21T01:32:37
2021-04-21T01:32:37
164,651,348
0
0
null
null
null
null
UTF-8
C++
false
false
784
cpp
CF621C.cpp
#include <bits/stdc++.h> using namespace std; using ld = long double; const int N = 1e5 + 100; int n, p, l[N], r[N]; int cnt(int i) { return r[i] - l[i] + 1 - r[i] / p + (l[i] - 1) / p; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); cin >> n >> p; for (int i = 1; i <= n; i++) { cin >> l[i] >> r[i]; } ld ev = 0; for (int i = 1; i < n; i++) { int cnt1 = cnt(i); int cnt2 = cnt(i + 1); ld p1 = (ld) cnt1 / (r[i] - l[i] + 1); ld p2 = (ld) cnt2 / (r[i + 1] - l[i + 1] + 1); ev += (ld) (1.0 - p1 * p2) * 1000.0; } int cnt1 = cnt(n); int cnt2 = cnt(1); ld p1 = (ld) cnt1 / (r[n] - l[n] + 1); ld p2 = (ld) cnt2 / (r[1] - l[1] + 1); ev += (ld) (1.0 - p1 * p2) * 1000.0; cout << fixed << setprecision(15) << (ld) 2.0 * ev << '\n'; return 0; }
21bacbd6b6bd81f221e1d9995a6e3dee395191ed
04dbef37f3c53635336f2326e73f4e37f3fc7a64
/第一课/第四周/练习代码/module4/B.cpp
8841aa5ffa560840c1cf57bbc51a0e4bbcd8bd9c
[]
no_license
cloveq6/Yandex-Course
ac3922c751f4ac734c0e27bc374992b7ce6e3bf4
906702917749b1d2c5cf5dae6558edb48fa21ae4
refs/heads/master
2020-04-15T14:50:45.935931
2019-01-09T03:03:17
2019-01-09T03:03:17
null
0
0
null
null
null
null
GB18030
C++
false
false
2,343
cpp
B.cpp
#include <iostream> #include <exception> using namespace std; int GreatestCommonDivisor(int a, int b){ a = abs(a); b = abs(b); while (a > 0 && b > 0){ if (a > b){ a = a % b; } else { b = b % a; } } return a + b; } class Rational { public: Rational() { data_numerator = 0; data_denominator = 1; } Rational(int numerator, int denominator) { if (denominator == 0){ //throw exception(); throw invalid_argument("Error"); } if (numerator == 0){ data_numerator = 0; data_denominator = 1; } else{ int divisor = GreatestCommonDivisor(numerator, denominator); //求出p,q的最大公约数。 data_denominator = denominator / divisor; data_numerator = numerator / divisor; if (data_numerator * data_denominator > 0){ data_numerator = abs(numerator / divisor); data_denominator = abs(denominator / divisor); } //依据要求,同号保证分子分母都是正。 if (data_numerator * data_denominator < 0){ data_numerator = abs(numerator / divisor) * -1; data_denominator = abs(denominator / divisor); } //依据要求,异号保证分子为负,分母为正。 } } int Numerator() const { // Реализуйте этот метод return data_numerator; } int Denominator() const { // Реализуйте этот метод return data_denominator; } private: // Добавьте поля int data_numerator; int data_denominator; }; Rational operator * (const Rational& lhs, const Rational& rhs) { return{ lhs.Numerator() * rhs.Numerator(), lhs.Denominator() * rhs.Denominator() }; } Rational operator / (const Rational& lhs, const Rational& rhs) { if (rhs.Numerator() == 0){ throw domain_error("Error"); } return lhs * Rational(rhs.Denominator(), rhs.Numerator()); } // Вставьте сюда реализацию operator / для класса Rational int main() { try { Rational r(1, 0); cout << "Doesn't throw in case of zero denominator" << endl; return 1; } catch (invalid_argument&) { } try { auto x = Rational(1, 2) / Rational(0, 1); cout << "Doesn't throw in case of division by zero" << endl; return 2; } catch (domain_error&) { } cout << "OK" << endl; return 0; }
47172e2b48e7881d5e70fd6c252730cb2d58d9b7
dcde867b666e52e8ab253e6d5dbfa64a2bb49d67
/PuzzlePlatform/Source/PuzzlePlatform/PuzzlePlatformGameInstance.cpp
c64bb9ad3c0c43a8a947773e845352136699cf5a
[]
no_license
sting1219/PuzzlePlatformProject
2c06143d539e07eacea407bc13bffdd15c978636
b46b9a78e2e6fc245c36f77f3fbc7395209a22e8
refs/heads/master
2022-12-25T08:48:03.153886
2020-10-07T09:44:51
2020-10-07T09:44:51
235,301,056
0
0
null
null
null
null
UTF-8
C++
false
false
5,135
cpp
PuzzlePlatformGameInstance.cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "PuzzlePlatformGameInstance.h" #include "Engine/Engine.h" #include "UObject/ConstructorHelpers.h" #include "Blueprint/UserWidget.h" #include "OnlineSubsystem.h" #include "PlatformTrigger.h" #include "MenuSystem/MainMenu.h" #include "MenuSystem/MenuWidget.h" #include "PuzzlePlatformPlayerController.h" UPuzzlePlatformGameInstance::UPuzzlePlatformGameInstance(const FObjectInitializer & ObjectInitializer) { static ConstructorHelpers::FClassFinder<UUserWidget> MenuBPClass(TEXT("/Game/MenuSystem/WBP_MainMenu")); if (!ensure(MenuBPClass.Class != nullptr)) return; MenuClass = MenuBPClass.Class; static ConstructorHelpers::FClassFinder<UUserWidget> InGameMenuBPClass(TEXT("/Game/MenuSystem/WBP_InGameMenu")); if (!ensure(InGameMenuBPClass.Class != nullptr)) return; InGameMenuClass = InGameMenuBPClass.Class; //UE_LOG(LogTemp, Warning, TEXT("GameInstance Constructor - Found class %s"), *MenuBPClass.Class->GetName()); //////////////////// Replay ////////////////////////// RecordingName = "MyReplay"; FriendlyRecordingName = "My Replay"; //////////////////// Replay ////////////////////////// } void UPuzzlePlatformGameInstance::Init() { IOnlineSubsystem* Subsystem = IOnlineSubsystem::Get(); if (Subsystem != nullptr) { UE_LOG(LogTemp, Warning, TEXT("Found subsystem %s"), *Subsystem->GetSubsystemName().ToString()); } CurrentStage_Number = 0; IsFinish = false; RemainTime = 0; UE_LOG(LogTemp, Warning, TEXT("GameInstance Init!!")); } void UPuzzlePlatformGameInstance::Host() { UE_LOG(LogTemp, Warning, TEXT("Host")); if (Menu != nullptr) { Menu->Teardown(); UE_LOG(LogTemp, Warning, TEXT("menu tear down")); } UEngine* Engine = GetEngine(); if (!ensure(Engine != nullptr)) return; UWorld* World = GetWorld(); if (!ensure(World != nullptr)) return; World->ServerTravel("/Game/ThirdPersonCPP/Maps/ThirdPersonExampleMap?listen"); } void UPuzzlePlatformGameInstance::Join(const FString& Address) { UEngine* Engine = GetEngine(); if (!ensure(Engine != nullptr)) return; APlayerController* PlayerController = GetFirstLocalPlayerController(); if (!ensure(PlayerController != nullptr)) return; PlayerController->ClientTravel(Address, ETravelType::TRAVEL_Absolute); } void UPuzzlePlatformGameInstance::LoadMenuWidget() { if (!ensure(MenuClass != nullptr)) return; Menu = CreateWidget<UMainMenu>(this, MenuClass); if (!ensure(Menu != nullptr)) return; Menu->Setup(); Menu->SetMenuInterface(this); } void UPuzzlePlatformGameInstance::InGameLoadMenu() { if (!ensure(InGameMenuClass != nullptr)) return; UMenuWidget* GameMenu = CreateWidget<UMenuWidget>(this, InGameMenuClass); if (!ensure(GameMenu != nullptr)) return; GameMenu->Setup(); GameMenu->SetMenuInterface(this); } void UPuzzlePlatformGameInstance::LoadMainMenu() { APlayerController* PlayerController = GetFirstLocalPlayerController(); if (!ensure(PlayerController != nullptr)) return; PlayerController->ClientTravel("/Game/MenuSystem/MainMenu", ETravelType::TRAVEL_Absolute); } void UPuzzlePlatformGameInstance::GoStage(int stagenum) { UE_LOG(LogTemp, Warning, TEXT("NextLevel")); if (Menu != nullptr) { Menu->Teardown(); UE_LOG(LogTemp, Warning, TEXT("menu tear down")); } UEngine* Engine = GetEngine(); if (!ensure(Engine != nullptr)) return; UWorld* World = GetWorld(); if (!ensure(World != nullptr)) return; FString str_num = FString::FromInt(stagenum); if (stagenum < 10) str_num = FString::Printf(TEXT("0%d"),stagenum); const FString map_name = FString::Printf(TEXT("%s%s%s%s"), STAGE_PATH, STAGE_NAME, *str_num, TEXT("?listen")); World->ServerTravel(map_name); } void UPuzzlePlatformGameInstance::NextLevel() { UE_LOG(LogTemp, Warning, TEXT("NextLevel")); if (Menu != nullptr) { Menu->Teardown(); UE_LOG(LogTemp, Warning, TEXT("menu tear down")); } UEngine* Engine = GetEngine(); if (!ensure(Engine != nullptr)) return; UWorld* World = GetWorld(); if (!ensure(World != nullptr)) return; if (IsFinish) return; ++CurrentStage_Number; IsFinish = true; FString str_num = FString::FromInt(CurrentStage_Number); if (CurrentStage_Number < 10) str_num = FString::Printf(TEXT("0%d"), CurrentStage_Number); const FString map_name = FString::Printf(TEXT("%s%s%s%s"), STAGE_PATH, STAGE_NAME, *str_num, TEXT("?listen")); World->ServerTravel(map_name); } void UPuzzlePlatformGameInstance::StartRecording() { /*TArray<FString> URLOption; URLOption.Add("ReplayStreamerOverride=InMemotyNetworkReplayStreaming");*/ StartRecordingReplay(RecordingName, FriendlyRecordingName); } void UPuzzlePlatformGameInstance::StopRecording() { StopRecordingReplay(); } void UPuzzlePlatformGameInstance::StartReplay() { PlayReplay(RecordingName, nullptr); } void UPuzzlePlatformGameInstance::TestReplayRecording() { APlayerController* PlayerController = GetFirstLocalPlayerController(); if (!ensure(PlayerController != nullptr)) return; APuzzlePlatformPlayerController* pc = Cast< APuzzlePlatformPlayerController>(PlayerController); if (pc) { pc->RestartRecording(); } }
ccd9fd464b42ced585d671d15bd6aacf93615c80
a33aac97878b2cb15677be26e308cbc46e2862d2
/program_data/PKU_raw/6/13.c
8bb8ce1ace921f673144957981ead04841d26f03
[]
no_license
GabeOchieng/ggnn.tensorflow
f5d7d0bca52258336fc12c9de6ae38223f28f786
7c62c0e8427bea6c8bec2cebf157b6f1ea70a213
refs/heads/master
2022-05-30T11:17:42.278048
2020-05-02T11:33:31
2020-05-02T11:33:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
854
c
13.c
int calcSum(int *matrix, int row, int col); int main() { int k; scanf("%d", &k); int *result = (int *)malloc(k * sizeof(int)); int i = 0; int row ,col; int sum; int m, n; int *matrix; for (i = 0; i < k; i++) { scanf("%d %d", &m, &n); matrix = (int *)malloc(m * n * sizeof(int)); for (row = 0; row < m; row++) for (col = 0; col < n; col++) scanf("%d", matrix + row * n + col); *(result + i) = calcSum(matrix, m, n); free(matrix); } for (i = 0; i < k - 1; i++) { printf("%d\n", *(result + i)); } printf("%d", *(result + i)); return 0; } int calcSum(int *matrix, int row, int col) { int sum = 0; int i, j; for (i = 0; i < row; i++) for (j = 0; j < col; j++) { if (i == 0 || i == row - 1 || j == 0 || j == col - 1) sum += *(matrix + i * col + j); } return sum; }
4863b30e1f1074b81e6542dae6039651ac7af0ec
2e951e5d002b87812ff0e5408923e31c3b6a7b88
/libs/ma_helpers/include/ma/io_context_helpers.hpp
d13caf5a331825ba641551459f978ee684f62dee
[ "BSL-1.0" ]
permissive
mabrarov/asio_samples
382cf8fdc5fe76dfd359c600bb04bea69ef0deed
e2dc9f81f359dc5b2e568ef419662431fdd0ea0c
refs/heads/master
2023-04-28T23:00:02.074513
2023-04-20T21:33:58
2023-04-20T21:33:58
6,457,964
265
73
BSL-1.0
2023-04-20T21:33:59
2012-10-30T13:50:37
C++
UTF-8
C++
false
false
1,727
hpp
io_context_helpers.hpp
// // Copyright (c) 2018 Marat Abrarov (abrarov@gmail.com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt) // #ifndef MA_IO_CONTEXT_HELPERS_HPP #define MA_IO_CONTEXT_HELPERS_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1020) #pragma once #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) #include <cstddef> #include <boost/version.hpp> #include <boost/asio.hpp> #include <ma/config.hpp> #if defined(MA_ASIO_IO_CONTEXT_INT_CONCURRENCY_HINT) #include <boost/numeric/conversion/cast.hpp> #endif namespace ma { #if defined(MA_ASIO_IO_CONTEXT_INT_CONCURRENCY_HINT) typedef int io_context_concurrency_hint; #else typedef std::size_t io_context_concurrency_hint; #endif inline io_context_concurrency_hint to_io_context_concurrency_hint(std::size_t hint) { #if defined(MA_ASIO_IO_CONTEXT_INT_CONCURRENCY_HINT) if (1 == hint) { return BOOST_ASIO_CONCURRENCY_HINT_UNSAFE_IO; } return boost::numeric_cast<io_context_concurrency_hint>(hint); #else return hint; #endif } inline boost::asio::io_service& get_io_context(boost::asio::io_service::work& work) { #if BOOST_VERSION >= 107000 return work.get_io_context(); #else return work.get_io_service(); #endif } inline boost::asio::io_service& get_io_context(boost::asio::io_service::strand& strand) { #if BOOST_VERSION >= 107000 return strand.context(); #else return strand.get_io_service(); #endif } inline boost::asio::io_service& get_io_context(boost::asio::io_service::service& service) { #if BOOST_VERSION >= 107000 return service.get_io_context(); #else return service.get_io_service(); #endif } } // namespace ma #endif // MA_IO_CONTEXT_HELPERS_HPP
edb5a82afd526b9f079b740790adc4fcbd2d0d39
0e55f4d261c7873fe9dc4b613c612c824843f459
/Node.h
4c17a89a13162230f96f0883bcc379bab687e3e3
[]
no_license
gaurav324/PageRank-MPI
ed163012c6a782eb43215c2a01eb8d4d3ea2c66f
0ba8c5309fbae19cd51b2a8d69a11267a273a8cf
refs/heads/master
2020-05-21T11:39:33.230424
2015-05-13T23:50:35
2015-05-13T23:50:35
34,239,362
4
4
null
null
null
null
UTF-8
C++
false
false
1,211
h
Node.h
/** * Node.h * * Node represents a vertex in the graph. * * Created on: May 3, 2015 * Author: Gaurav Nanda */ #ifndef _MPI_NODE_H_ #define _MPI_NODE_H_ #include <vector> #include <utility> using namespace std; class Node { private: // Total number of edges going out of the edge. int out_degree; // Each node maintains which all cores it would have to send updates to. vector<pair<short, int> > out_cores; // Store all of the incoming nodes. Each node is represented vector<pair<short, int> > in_nodes; public: // Constructor. Node(); // Destructor. virtual ~Node(); // Return the number of out going edges from the node. int getOutDegree(); // Sets out degree. void setOutDegree(int out_degree); // Get the vector having list of cores, to which page rank // would need to send updates. vector<pair<short, int> >& getOutCores(); // Add mpi node to the out_core. void addOutCore(short core_no, int index); // Get list of all the incoming nodes. vector< pair<short, int> >& getIncomingNodes(); // Add one incoming node. void addIncomingNode(short core, int rank); }; #endif /* NODE_H_ */
d2d73e0dcef5642f67e8dbe4f8f969122aadfb8b
181b8b6de693d7b46880cfb56c6d26cedf188f21
/hamming/hamming.cpp
0c408ccd9387337f0cef131d34f22f3a9b1c9c46
[]
no_license
alphatee/Exercism
6c7de6148199d4dc57d27fcc6a5a683c6023da31
4e2c39140a07e1d8ba6f79ee157df94e20dfd1e1
refs/heads/main
2023-05-31T13:56:10.694560
2021-06-10T23:03:01
2021-06-10T23:03:01
375,658,456
0
0
null
null
null
null
UTF-8
C++
false
false
410
cpp
hamming.cpp
#include "hamming.h" #include <stdexcept> namespace hamming { std::size_t compute(std::string a, std::string b) { std::size_t n = 0; if(a.length() != b.length()) { throw std::domain_error("a and b must be of equal length"); } for(std::size_t i = 0; i <= a.length(); ++i){ n += a[i] != b[i]; } return n; } } // namespace hamming
c4c6e6fde8aabd6274486c12495253d873c3ea40
3364af2547f9dc2e8ef59826afe64fef8ac9997f
/generating functions/I.cpp
269d240cb0da0e1d42f2a3b928b5847a90a2e880
[]
no_license
RomaA2000/some_cpp_programs
d8eb03174e508b042b3febb76fc13d5fc0a80a5a
447cd33bda7c66d9c2bf947882b03fff65aa2dea
refs/heads/master
2021-07-06T23:02:35.777716
2020-08-29T00:11:08
2020-08-29T00:11:08
181,204,659
0
0
null
null
null
null
UTF-8
C++
false
false
4,530
cpp
I.cpp
#include <iostream> #include <vector> #include <algorithm> #include <future> class gen_func { std::vector<int64_t> data; int64_t static safe_get(std::vector<int64_t> v, size_t i) { return i >= v.size() ? 0 : v[i]; } int64_t safe_get(size_t i) const { return safe_get(data, i); } static int64_t pow_mod(int64_t i, uint64_t num) { if (num == 0) { return 1; } int64_t ans = 0; if (num % 2 == 1) { ans = i * pow_mod(i, num - 1); } else { int64_t t = pow_mod(i, num >> 1u); ans = t * t; } ans %= mod; return ans; } static int64_t inverse(int64_t i) { return pow_mod(i, mod - 2); } public: static void make_pos(int64_t &i) { if (i < 0) { i += mod; } } static const int64_t mod = 104857601; gen_func(std::vector<int64_t> data) : data(std::move(data)) {} gen_func &operator+=(gen_func const &in) { size_t max_size = std::max(size(), in.size()); data.resize(max_size, 0); size_t min_size = std::min(size(), in.size()); for (size_t i = 0; i < min_size; ++i) { data[i] += in.data[i]; data[i] %= mod; } return *this; } gen_func &operator*=(gen_func const &in) { std::vector<int64_t> ans(size() + in.size()); for (size_t i = 0; i < size(); ++i) { for (size_t j = 0; j < in.size(); ++j) { int64_t k = ans[i + j]; k += (data[i] * in.data[j] % mod); k %= mod; make_pos(k); ans[i + j] = k; } } shrink_to_fit(ans); data = ans; return *this; } size_t size() const { return data.size(); } static std::vector<int64_t> &shrink_to_fit(std::vector<int64_t> &in) { while (!in.empty() && in.back() == 0) { in.pop_back(); } return in; } gen_func &shrink_to_fit() { shrink_to_fit(data); return *this; } bool empty() const { return data.empty(); } int64_t back() const { return data.back(); } gen_func &div_(gen_func const &s, size_t num) { std::vector<int64_t> ans(num, 0); for (size_t i = 0; i < num; ++i) { ans[i] = safe_get(i); for (size_t j = 0; j < i; ++j) { ans[i] -= (ans[j] * s.safe_get(i - j)) % mod; make_pos(ans[i]); } ans[i] /= s.safe_get(0); } data = ans; return *this; } static void get_tmp_prod(std::vector<int64_t> &f, std::vector<int64_t> &s, size_t k) { for (size_t i = k; i < (k << 1u); ++i) { f[i] = 0; for (size_t j = 1; j < k + 1; ++j) { f[i] -= s[j] * f[i - j]; f[i] %= gen_func::mod; make_pos(f[i]); } } } friend std::ostream &operator<<(std::ostream &, const gen_func &); }; std::ostream &operator<<(std::ostream &s, gen_func const &in) { for (auto i : in.data) { s << i << " "; } return s; } int main() { std::cout.tie(nullptr); std::cin.tie(nullptr); std::ios_base::sync_with_stdio(false); size_t k = 0; uint64_t need_number = 0; std::cin >> k >> need_number; std::vector<int64_t> a; std::vector<int64_t> q; std::vector<int64_t> q_minus, q_new; q_minus.resize(k + 1, 0); q_new.resize(k + 1, 0); q.reserve(k + 1); a.resize(k << 1u, 0); q.push_back(1); --need_number; int64_t w; for (size_t i = 0; i < k; ++i) { std::cin >> a[i]; } for (size_t i = 0; i < k; ++i) { std::cin >> w; q.push_back((gen_func::mod - w) % gen_func::mod); } while (need_number >= k) { gen_func::get_tmp_prod(a, q, k); std::copy(q.begin(), q.end(), q_minus.begin()); std::vector<std::future<void>> result; for (size_t i = 1; i < k + 1; i += 2) { result.push_back(std::move( std::async(std::launch::deferred, [i, &q, &q_minus] () {q_minus[i] = (gen_func::mod - q[i]) % gen_func::mod;} ))); } for (auto & i : result) { i.get(); } for (size_t i = 0; i < k + 1; ++i) { q_new[i] = 0; for (size_t j = 0; j < (i << 1u) + 1; ++j) { if (((i << 1u) < (k + j + 1)) && (j < k + 1)) { q_new[i] += q[j] * q_minus[(i << 1u) - j]; q_new[i] %= gen_func::mod; gen_func::make_pos(q_new[i]); } } } std::copy(q_new.begin(), q_new.end(), q.begin()); std::vector<int64_t> new_a{a}; size_t last_idx = 0; for (size_t i = need_number % 2u; i < (k << 1u); i += 2) { new_a[last_idx] = a[i]; ++last_idx; } std::swap(a, new_a); need_number >>= 1u; } std::cout << a[need_number] << std::endl; } /* 4 10000 1 8 10 12 4 1 10 90 */
450e962e3ccde36779fc41d96ea0df9977d49a08
8848c655bde2c0fd2229d334ca1919a985d14ad2
/Sun's bachelor thesis project/GraduateClient/Project/Classes/SqlLite3Utils.cpp
c39e82cf3d6bfb4df6d7abced83a86561e058fd9
[]
no_license
Sunjiawei58/NEUPlanningIOS
9d80208a5d17e39cdc06156345eb55529202c4a0
d938ad338d9438863d9a67e192f1a342aef871a8
refs/heads/master
2016-09-05T22:39:40.821247
2015-08-04T01:52:44
2015-08-04T01:52:44
40,034,461
0
0
null
null
null
null
UTF-8
C++
false
false
2,718
cpp
SqlLite3Utils.cpp
// // SqlLite3Utils.cpp // Project // // Created by sunjiawei on 15/5/21. // // #include "SqlLite3Utils.h" #include "stdio.h" #include <iostream> using namespace std; #define DB_NAME "graduate.db3" sqlite3* SqlLite3Utils::getDBBase() { sqlite3* database = nullptr; std::string db= FileUtils::getInstance()->getWritablePath()+DB_NAME; // 获取可写的路径,这个很重要 int ret= sqlite3_open(db.c_str(), &database); if (ret == SQLITE_OK) { log("打开数据库成功"); } return database; } void SqlLite3Utils::closeDB(sqlite3 * db) { if(db!=nullptr) { sqlite3_close(db); db=nullptr; } } /** 创建一个表 **/ bool SqlLite3Utils::create_table(std::string sql, sqlite3* db) { CCASSERT(db!=nullptr, "数据库指针为空,请检查问题"); int ret = sqlite3_exec(db, sql.c_str(), nullptr, nullptr, nullptr); if(ret == SQLITE_OK) { return true; } return false; } bool SqlLite3Utils::insertDataIntoDBBase (std::string sql,sqlite3* db) { CCASSERT(db!=nullptr, "数据库指针为空,请检查问题"); int ret = sqlite3_exec(db, sql.c_str(), nullptr, nullptr, nullptr); if(ret == SQLITE_OK) { //std::cout<<"数据插入成功"<<endl; return true; } //else std::cout<<"插入失败"<<endl; return false; } bool SqlLite3Utils::deleteDataFromDBBase (std::string sql,sqlite3* db) { CCASSERT(db!=nullptr, "数据库指针为空,请检查问题"); int ret = sqlite3_exec(db, sql.c_str(), nullptr, nullptr, nullptr); if(ret == SQLITE_OK) { return true; } return false; } bool SqlLite3Utils::updateDataFromDBBase (std::string sql,sqlite3* db) { CCASSERT(db!=nullptr, "数据库指针为空,请检查问题"); int ret = sqlite3_exec(db, sql.c_str(), nullptr, nullptr, nullptr); if(ret == SQLITE_OK) { return true; } return false; } /** 根据传入的sql语句来去获取相应的查询结果集 **/ sqlite3_stmt* SqlLite3Utils::getQueryStatementFromDBBase(std::string sql,sqlite3* db) { CCASSERT(db!=nullptr, "数据库指针为空,请检查问题"); sqlite3_stmt * stmt = nullptr; int ret = sqlite3_prepare_v2(db, sql.c_str(), (int)strlen(sql.c_str()), &stmt, nullptr); if(ret == SQLITE_OK) { log("获取结果集成功"); } //CCASSERT(stmt!=nullptr, "结果集获取为空,请检查问题"); return stmt; } /** 释放查询结果集的指针 **/ void SqlLite3Utils::closeStatement(sqlite3_stmt* stmt) { if(stmt!=nullptr) { sqlite3_finalize(stmt); stmt=nullptr; } }
d00c18ff0a5c0539adc644d982aa54d7370702e6
04f25ac243e50ec14d1e87a9bd92e073d62c4a77
/92_Reverse_Linked_List_II.cpp
a17433739e8f67224437049c807fa1621f0273c5
[]
no_license
indrajeet95/LeetCode-Problems
e0ea837da888e5e42fd3bfd28c4afe8726e20943
6cd5383b10172fec645909115cf37b135c93a60c
refs/heads/master
2020-03-19T23:33:57.658437
2019-04-12T16:38:42
2019-04-12T16:38:42
137,010,414
1
0
null
null
null
null
UTF-8
C++
false
false
746
cpp
92_Reverse_Linked_List_II.cpp
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: ListNode* reverseBetween(ListNode* head, int m, int n) { ListNode* prev = new ListNode(0); prev->next = head; ListNode* ans = prev; int nm = n - m; while(m>1) { prev = prev->next; m--; } ListNode* curr = prev->next; while(nm>0) { ListNode* forward = curr->next; curr->next = curr->next->next; forward->next = prev->next; prev->next = forward; nm--; } return ans->next; } };
2bb106b4f2622a7235d13ed1999e4bcf2160f34a
29ebd7974c755d820cafc7099819e01382546fc6
/TPReseau3/TPReseau3/src/ReplicationManager.cpp
63254749bdbef6c454fdaa0a05ee0e11f85b8c07
[]
no_license
cualquiercosa327/TP_Reseau_3
a083e2174f3d638abf9e6d9a674d78ee80ae3cf1
a0592b95a0db4f548e1ade7142231d88aace10bb
refs/heads/main
2023-08-25T23:38:51.071794
2021-11-06T18:47:01
2021-11-06T18:47:01
null
0
0
null
null
null
null
ISO-8859-1
C++
false
false
2,879
cpp
ReplicationManager.cpp
#include "ReplicationManager.h" #include "ClassRegistry.h" namespace uqac::replication { ReplicationManager::ReplicationManager() { this->serializer = uqac::serializer::Serializer(); linkingContext = LinkingContext(); } // Write std::vector<char> ReplicationManager::Update(int protocol) { // Clear serializer précédent serializer.ClearBuffer(); // Serialiser identifiant protocol serializer.Serialize(protocol); // Serialiser identifiant paquet replicationID++; serializer.Serialize(replicationID); for (auto elem : objectsReplicated) { // Serialiser identifiant objet (le int de linking context) if (auto str = linkingContext.GetObject(elem)) { serializer.Serialize(str.value()); } else { std::cout << "Houston on a un problème"; } // Serialiser identifiant de classe (classID) uint8_t classID = static_cast<uint8_t>(elem->classID); serializer.Serialize(classID); // Serialiser l'objet elem->Write(serializer); } return serializer.GetBuffer(); } void ReplicationManager::Read(std::string buffer) { size_t maxSize = buffer.size(); std::vector<char> data(buffer.begin(), buffer.end()); // Modifié deserializer pour que le buffer soit un string Deserializer deserializer(data, maxSize); // Serialiser identifiant protocol int protocol = deserializer.Read<int>(); // Serialiser identifiant paquet int id = deserializer.Read<int>(); if (id < replicationID) // On ignore si le paquet est trop vieux return; replicationID = id; while (deserializer.GetIndex() < maxSize) { // DeSerialiser identifiant objet (le int de linking context) int objectID = deserializer.Read<int>(); // DeSerialiser identifiant de classe (classID) ClassID classID = static_cast<ClassID>(deserializer.Read<uint8_t>()); // Check si l'id de l'objet est déjà dans le linking context if (auto obj = linkingContext.GetObject(objectID)) { // Si oui on l'update obj.value()->Read(deserializer); } else { // Si non on le rajoute GameObject* objReplica = ClassRegistry::GetInstance()->Create(classID); objReplica->Read(deserializer); linkingContext.AddGameObject(objectID, objReplica); objectsReplicated.insert(objReplica); } } } void ReplicationManager::AddObject(GameObject* obj) { linkingContext.AddGameObject(obj); objectsReplicated.insert(obj); } void ReplicationManager::RemoveObject(GameObject* obj) { linkingContext.DeleteGameObject(obj); objectsReplicated.erase(obj); } void ReplicationManager::RandomizeAll() { for (auto elem : objectsReplicated) elem->Randomize(); } void ReplicationManager::DisplayAll() { for (auto elem : objectsReplicated) elem->Display(); } }
4029c516ee67f8d88178249ad45a0f421055d07f
66e543354585a77510e39e88c9edc048c3d86bcd
/common/SoapyRPCSocket.cpp
c77ed56ba75f35621805e2e7a4503953f41f5c62
[ "BSL-1.0" ]
permissive
pothosware/SoapyRemote
9928d82f2285c47efc52991becb9321504879e52
3aadac60f42dcf987804b49e8f2a8bd96996ad2f
refs/heads/master
2023-08-10T16:51:46.320739
2023-07-15T14:14:47
2023-07-15T14:14:47
42,284,267
108
28
BSL-1.0
2022-11-27T04:43:05
2015-09-11T03:02:01
C++
UTF-8
C++
false
false
16,859
cpp
SoapyRPCSocket.cpp
// Copyright (c) 2015-2020 Josh Blum // SPDX-License-Identifier: BSL-1.0 #include "SoapySocketDefs.hpp" #include "SoapyRPCSocket.hpp" #include "SoapyURLUtils.hpp" #include <SoapySDR/Logger.hpp> #include <cstring> //strerror #include <cerrno> //errno #include <algorithm> //max #include <mutex> static std::mutex sessionMutex; static size_t sessionCount = 0; SoapySocketSession::SoapySocketSession(void) { std::lock_guard<std::mutex> lock(sessionMutex); sessionCount++; if (sessionCount > 1) return; #ifdef _MSC_VER WORD wVersionRequested; WSADATA wsaData; wVersionRequested = MAKEWORD(2, 2); int ret = WSAStartup(wVersionRequested, &wsaData); if (ret != 0) { SoapySDR::logf(SOAPY_SDR_ERROR, "SoapySocketSession::WSAStartup: %d", ret); } #endif } SoapySocketSession::~SoapySocketSession(void) { std::lock_guard<std::mutex> lock(sessionMutex); sessionCount--; if (sessionCount > 0) return; #ifdef _MSC_VER WSACleanup(); #endif } void SoapyRPCSocket::setDefaultTcpSockOpts(void) { if (this->null()) return; int one = 1; int ret = ::setsockopt(_sock, IPPROTO_TCP, TCP_NODELAY, (const char *)&one, sizeof(one)); if (ret != 0) { this->reportError("setsockopt(TCP_NODELAY)"); } #ifdef TCP_QUICKACK ret = ::setsockopt(_sock, IPPROTO_TCP, TCP_QUICKACK, (const char *)&one, sizeof(one)); if (ret != 0) { this->reportError("setsockopt(TCP_QUICKACK)"); } #endif //TCP_QUICKACK } SoapyRPCSocket::SoapyRPCSocket(void): _sock(INVALID_SOCKET) { return; } SoapyRPCSocket::SoapyRPCSocket(const std::string &url): _sock(INVALID_SOCKET) { SoapyURL urlObj(url); SockAddrData addr; const auto errorMsg = urlObj.toSockAddr(addr); if (not errorMsg.empty()) { this->reportError("getaddrinfo("+url+")", errorMsg); } else { _sock = ::socket(addr.addr()->sa_family, urlObj.getType(), 0); } } SoapyRPCSocket::~SoapyRPCSocket(void) { if (this->close() != 0) { SoapySDR::logf(SOAPY_SDR_ERROR, "SoapyRPCSocket::~SoapyRPCSocket: %s", this->lastErrorMsg()); } } bool SoapyRPCSocket::null(void) { return _sock == INVALID_SOCKET; } bool SoapyRPCSocket::status(void) { int opt = 0; socklen_t optlen = sizeof(opt); ::getsockopt(_sock, SOL_SOCKET, SO_ERROR, (char *)&opt, &optlen); if (opt != 0) this->reportError("getsockopt(SO_ERROR)", opt); return opt == 0; } int SoapyRPCSocket::close(void) { if (this->null()) return 0; int ret = ::closesocket(_sock); _sock = INVALID_SOCKET; if (ret != 0) this->reportError("closesocket()"); return ret; } int SoapyRPCSocket::bind(const std::string &url) { SoapyURL urlObj(url); SockAddrData addr; const auto errorMsg = urlObj.toSockAddr(addr); if (not errorMsg.empty()) { this->reportError("getaddrinfo("+url+")", errorMsg); return -1; } if (this->null()) _sock = ::socket(addr.addr()->sa_family, urlObj.getType(), 0); if (this->null()) { this->reportError("socket("+url+")"); return -1; } //setup reuse address int one = 1; int ret = ::setsockopt(_sock, SOL_SOCKET, SO_REUSEADDR, (const char *)&one, sizeof(one)); if (ret != 0) { this->reportError("setsockopt(SO_REUSEADDR)"); } #ifdef __APPLE__ ret = ::setsockopt(_sock, SOL_SOCKET, SO_REUSEPORT, (const char *)&one, sizeof(one)); if (ret != 0) { this->reportError("setsockopt(SO_REUSEPORT)"); } #endif //__APPLE__ if (urlObj.getType() == SOCK_STREAM) this->setDefaultTcpSockOpts(); ret = ::bind(_sock, addr.addr(), addr.addrlen()); if (ret == -1) this->reportError("bind("+url+")"); return ret; } int SoapyRPCSocket::listen(int backlog) { int ret = ::listen(_sock, backlog); if (ret == -1) this->reportError("listen()"); return ret; } SoapyRPCSocket *SoapyRPCSocket::accept(void) { struct sockaddr_storage addr; socklen_t addrlen = sizeof(addr); int client = ::accept(_sock, (struct sockaddr*)&addr, &addrlen); if (client == INVALID_SOCKET) this->reportError("accept()"); if (client == INVALID_SOCKET) return NULL; SoapyRPCSocket *clientSock = new SoapyRPCSocket(); clientSock->_sock = client; clientSock->setDefaultTcpSockOpts(); return clientSock; } int SoapyRPCSocket::connect(const std::string &url) { SoapyURL urlObj(url); SockAddrData addr; const auto errorMsg = urlObj.toSockAddr(addr); if (not errorMsg.empty()) { this->reportError("getaddrinfo("+url+")", errorMsg); return -1; } if (this->null()) _sock = ::socket(addr.addr()->sa_family, urlObj.getType(), 0); if (this->null()) { this->reportError("socket("+url+")"); return -1; } if (urlObj.getType() == SOCK_STREAM) this->setDefaultTcpSockOpts(); int ret = ::connect(_sock, addr.addr(), addr.addrlen()); if (ret == -1) this->reportError("connect("+url+")"); return ret; } int SoapyRPCSocket::connect(const std::string &url, const long timeoutUs) { SoapyURL urlObj(url); SockAddrData addr; const auto errorMsg = urlObj.toSockAddr(addr); if (not errorMsg.empty()) { this->reportError("getaddrinfo("+url+")", errorMsg); return -1; } if (this->null()) _sock = ::socket(addr.addr()->sa_family, urlObj.getType(), 0); if (this->null()) { this->reportError("socket("+url+")"); return -1; } if (urlObj.getType() == SOCK_STREAM) this->setDefaultTcpSockOpts(); //enable non blocking int ret = this->setNonBlocking(true); if (ret != 0) return ret; //non blocking connect, check for non busy ret = ::connect(_sock, addr.addr(), addr.addrlen()); if (ret != 0 and SOCKET_ERRNO != SOCKET_EINPROGRESS) { this->reportError("connect("+url+")"); return ret; } //fill in the select structures struct timeval tv; tv.tv_sec = timeoutUs / 1000000; tv.tv_usec = timeoutUs % 1000000; fd_set fds; FD_ZERO(&fds); FD_SET(_sock, &fds); //wait for connect or timeout ret = ::select(_sock+1, NULL, &fds, NULL, &tv); if (ret != 1) { this->reportError("connect("+url+")", SOCKET_ETIMEDOUT); return -1; } //get the error code from connect() int opt = 0; socklen_t optlen = sizeof(opt); ::getsockopt(_sock, SOL_SOCKET, SO_ERROR, (char *)&opt, &optlen); if (opt != 0) { this->reportError("connect("+url+")", opt); return opt; } //revert non blocking on socket ret = this->setNonBlocking(false); if (ret != 0) return ret; return opt; } int SoapyRPCSocket::setNonBlocking(const bool nonblock) { int ret = 0; #ifdef _MSC_VER u_long mode = nonblock?1:0; // 1 to enable non-blocking socket ret = ioctlsocket(_sock, FIONBIO, &mode); #else int mode = fcntl(_sock, F_GETFL, 0); if (nonblock) mode |= O_NONBLOCK; else mode &= ~(O_NONBLOCK); ret = fcntl(_sock, F_SETFL, mode); #endif if (ret != 0) this->reportError("setNonBlocking("+std::string(nonblock?"true":"false")+")"); return ret; } int SoapyRPCSocket::multicastJoin(const std::string &group, const std::string &sendAddr, const std::vector<std::string> &recvAddrs, const bool loop, const int ttl) { /* * Multicast join docs: * http://www.tldp.org/HOWTO/Multicast-HOWTO-6.html * http://www.tenouk.com/Module41c.html */ //lookup group url SoapyURL urlObj(group); SockAddrData addr; auto errorMsg = urlObj.toSockAddr(addr); if (not errorMsg.empty()) { this->reportError("getaddrinfo("+group+")", errorMsg); return -1; } //lookup send url SockAddrData sendAddrData; errorMsg = SoapyURL("", sendAddr).toSockAddr(sendAddrData); if (not errorMsg.empty()) { this->reportError("getaddrinfo("+sendAddr+")", errorMsg); return -1; } //create socket if null if (this->null()) _sock = ::socket(addr.addr()->sa_family, SOCK_DGRAM, 0); if (this->null()) { this->reportError("socket("+group+")"); return -1; } int ret = 0; int loopInt = loop?1:0; switch(addr.addr()->sa_family) { case AF_INET: { //setup IP_MULTICAST_LOOP ret = ::setsockopt(_sock, IPPROTO_IP, IP_MULTICAST_LOOP, (const char *)&loopInt, sizeof(loopInt)); if (ret != 0) { this->reportError("setsockopt(IP_MULTICAST_LOOP)"); return -1; } //setup IP_MULTICAST_TTL ret = ::setsockopt(_sock, IPPROTO_IP, IP_MULTICAST_TTL, (const char *)&ttl, sizeof(ttl)); if (ret != 0) { this->reportError("setsockopt(IP_MULTICAST_TTL)"); return -1; } //setup IP_MULTICAST_IF auto *send_addr_in = (const struct sockaddr_in *)sendAddrData.addr(); ret = ::setsockopt(_sock, IPPROTO_IP, IP_MULTICAST_IF, (const char *)&send_addr_in->sin_addr, sizeof(send_addr_in->sin_addr)); if (ret != 0) { this->reportError("setsockopt(IP_MULTICAST_IF, "+sendAddr+")"); return -1; } //setup IP_ADD_MEMBERSHIP auto *addr_in = (const struct sockaddr_in *)addr.addr(); for (const auto &recvAddr : recvAddrs) { SockAddrData recvAddrData; errorMsg = SoapyURL("", recvAddr).toSockAddr(recvAddrData); if (not errorMsg.empty()) { this->reportError("getaddrinfo("+sendAddr+")", errorMsg); return -1; } struct ip_mreq mreq; mreq.imr_multiaddr = addr_in->sin_addr; mreq.imr_interface = ((const struct sockaddr_in *)recvAddrData.addr())->sin_addr; ret = ::setsockopt(_sock, IPPROTO_IP, IP_ADD_MEMBERSHIP, (const char *)&mreq, sizeof(mreq)); if (ret != 0) { this->reportError("setsockopt(IP_ADD_MEMBERSHIP, "+recvAddr+")"); return -1; } } break; } case AF_INET6: { //setup IPV6_MULTICAST_LOOP ret = ::setsockopt(_sock, IPPROTO_IPV6, IPV6_MULTICAST_LOOP, (const char *)&loopInt, sizeof(loopInt)); if (ret != 0) { this->reportError("setsockopt(IPV6_MULTICAST_LOOP)"); return -1; } //setup IPV6_MULTICAST_HOPS ret = ::setsockopt(_sock, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, (const char *)&ttl, sizeof(ttl)); if (ret != 0) { this->reportError("setsockopt(IPV6_MULTICAST_HOPS)"); return -1; } //setup IPV6_MULTICAST_IF auto *send_addr_in6 = (const struct sockaddr_in6 *)sendAddrData.addr(); ret = ::setsockopt(_sock, IPPROTO_IPV6, IPV6_MULTICAST_IF, (const char *)&send_addr_in6->sin6_scope_id, sizeof(send_addr_in6->sin6_scope_id)); if (ret != 0) { this->reportError("setsockopt(IPV6_MULTICAST_IF, "+sendAddr+")"); return -1; } //setup IPV6_ADD_MEMBERSHIP auto *addr_in6 = (const struct sockaddr_in6 *)addr.addr(); for (const auto &recvAddr : recvAddrs) { SockAddrData recvAddrData; errorMsg = SoapyURL("", recvAddr).toSockAddr(recvAddrData); if (not errorMsg.empty()) { this->reportError("getaddrinfo("+sendAddr+")", errorMsg); return -1; } struct ipv6_mreq mreq6; mreq6.ipv6mr_multiaddr = addr_in6->sin6_addr; mreq6.ipv6mr_interface = ((const struct sockaddr_in6 *)recvAddrData.addr())->sin6_scope_id;; ret = ::setsockopt(_sock, IPPROTO_IPV6, IPV6_ADD_MEMBERSHIP, (const char *)&mreq6, sizeof(mreq6)); if (ret != 0) { this->reportError("setsockopt(IPV6_ADD_MEMBERSHIP, "+recvAddr+")"); return -1; } } break; } default: break; } return 0; } int SoapyRPCSocket::send(const void *buf, size_t len, int flags) { int ret = ::send(_sock, (const char *)buf, int(len), flags | MSG_NOSIGNAL); if (ret == -1) this->reportError("send()"); return ret; } int SoapyRPCSocket::recv(void *buf, size_t len, int flags) { int ret = ::recv(_sock, (char *)buf, int(len), flags); if (ret == -1) this->reportError("recv()"); return ret; } int SoapyRPCSocket::sendto(const void *buf, size_t len, const std::string &url, int flags) { SockAddrData addr; SoapyURL(url).toSockAddr(addr); int ret = ::sendto(_sock, (char *)buf, int(len), flags, addr.addr(), addr.addrlen()); if (ret == -1) this->reportError("sendto("+url+")"); return ret; } int SoapyRPCSocket::recvfrom(void *buf, size_t len, std::string &url, int flags) { struct sockaddr_storage addr; socklen_t addrlen = sizeof(addr); int ret = ::recvfrom(_sock, (char *)buf, int(len), flags, (struct sockaddr*)&addr, &addrlen); if (ret == -1) this->reportError("recvfrom()"); else url = SoapyURL((struct sockaddr *)&addr).toString(); return ret; } bool SoapyRPCSocket::selectRecv(const long timeoutUs) { struct timeval tv; tv.tv_sec = timeoutUs / 1000000; tv.tv_usec = timeoutUs % 1000000; fd_set readfds; FD_ZERO(&readfds); FD_SET(_sock, &readfds); int ret = ::select(_sock+1, &readfds, NULL, NULL, &tv); if (ret == -1) this->reportError("select()"); return ret == 1; } int SoapyRPCSocket::selectRecvMultiple(const std::vector<SoapyRPCSocket *> &socks, std::vector<bool> &ready, const long timeoutUs) { struct timeval tv; tv.tv_sec = timeoutUs / 1000000; tv.tv_usec = timeoutUs % 1000000; fd_set readfds; FD_ZERO(&readfds); int maxSock(socks.front()->_sock); for (const auto &sock : socks) { maxSock = std::max(sock->_sock, maxSock); FD_SET(sock->_sock, &readfds); } int ret = ::select(maxSock+1, &readfds, NULL, NULL, &tv); if (ret == -1) return ret; int count = 0; for (size_t i = 0; i < socks.size(); i++) { ready[i] = FD_ISSET(socks[i]->_sock, &readfds); if (ready[i]) count++; } return count; } static std::string errToString(const int err) { char buff[1024]; #ifdef _MSC_VER FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, err, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPTSTR)&buff, sizeof(buff), NULL); return buff; #else //http://linux.die.net/man/3/strerror_r #ifdef STRERROR_R_XSI strerror_r(err, buff, sizeof(buff)); #else //this version may decide to use its own internal string return strerror_r(err, buff, sizeof(buff)); #endif return buff; #endif } void SoapyRPCSocket::reportError(const std::string &what) { this->reportError(what, SOCKET_ERRNO); } void SoapyRPCSocket::reportError(const std::string &what, const int err) { if (err == 0) _lastErrorMsg = what; else this->reportError(what, std::to_string(err) + ": " + errToString(err)); } void SoapyRPCSocket::reportError(const std::string &what, const std::string &errorMsg) { _lastErrorMsg = what + " [" + errorMsg + "]"; } std::string SoapyRPCSocket::getsockname(void) { struct sockaddr_storage addr; socklen_t addrlen = sizeof(addr); int ret = ::getsockname(_sock, (struct sockaddr *)&addr, &addrlen); if (ret == -1) this->reportError("getsockname()"); if (ret != 0) return ""; return SoapyURL((struct sockaddr *)&addr).toString(); } std::string SoapyRPCSocket::getpeername(void) { struct sockaddr_storage addr; socklen_t addrlen = sizeof(addr); int ret = ::getpeername(_sock, (struct sockaddr *)&addr, &addrlen); if (ret == -1) this->reportError("getpeername()"); if (ret != 0) return ""; return SoapyURL((struct sockaddr *)&addr).toString(); } int SoapyRPCSocket::setBuffSize(const bool isRecv, const size_t numBytes) { int opt = int(numBytes); int ret = ::setsockopt(_sock, SOL_SOCKET, isRecv?SO_RCVBUF:SO_SNDBUF, (const char *)&opt, sizeof(opt)); if (ret == -1) this->reportError("setsockopt("+std::string(isRecv?"SO_RCVBUF":"SO_SNDBUF")+")"); return ret; } int SoapyRPCSocket::getBuffSize(const bool isRecv) { int opt = 0; socklen_t optlen = sizeof(opt); int ret = ::getsockopt(_sock, SOL_SOCKET, isRecv?SO_RCVBUF:SO_SNDBUF, (char *)&opt, &optlen); if (ret == -1) this->reportError("getsockopt("+std::string(isRecv?"SO_RCVBUF":"SO_SNDBUF")+")"); if (ret != 0) return ret; //adjustment for linux kernel socket buffer doubling for bookkeeping #ifdef __linux opt = opt/2; #endif return opt; }
2369fea5b2eed755769828c0c932d11dbbfdc100
3f923f4778748fc065189acadd141a1c74e7ce23
/P1/P1S3/FiltroPrioridad.h
be08765726be8b36151e4ef4c7fad18eee50be20
[]
no_license
Olasergiolas/DS-2021-UGR
080d555484f02895fb4ef78d70001bcb9e1851d6
307d052fc9ebe3925727052407a21d463360c535
refs/heads/master
2023-05-06T19:35:13.363815
2021-06-06T12:29:32
2021-06-06T12:29:32
347,339,226
0
0
null
null
null
null
UTF-8
C++
false
false
313
h
FiltroPrioridad.h
// // Created by ines on 8/4/21. // #ifndef DSP1_S3_FILTROPRIORIDAD_H #define DSP1_S3_FILTROPRIORIDAD_H #include "Filtro.h" #include "Formulario.h" class FiltroPrioridad: public Filtro { public: FiltroPrioridad(); void procesar(Formulario &formulario) override; }; #endif //DSP1_S3_FILTROPRIORIDAD_H
d6cd3fa3c423e9927f85d95d30b20bf05681853a
32e3edb0487d3de63cd30601e542fc8472be397c
/ML/linear_regression.hpp
bbcd401ab242d6f007fe3db7146c1b59e4beb889
[]
no_license
sesiria/Algs
d5d1f7f40a861932cb4a746f4fea743965159489
4c7a3c63a84830c2d2919892d16fa71b30f67938
refs/heads/master
2023-05-10T13:21:53.425351
2021-06-04T02:26:40
2021-06-04T02:26:40
68,062,966
15
4
null
null
null
null
UTF-8
C++
false
false
1,039
hpp
linear_regression.hpp
#ifndef NN_LINEAR_REGRESSION_HPP_ #define NN_LINEAR_REGRESSION_HPP_ #include <memory> #include <string> #include <ostream> namespace ANN { typedef enum { LEAST_SQUARES = 0, GRADIENT_DESCENT } regression_method; template<typename T> class LinearRegression { template<typename U> friend std::ostream& operator << (std::ostream& out, const LinearRegression<U>& lr); public: LinearRegression() = default; void set_regression_method(regression_method method); int init(const T* x, const T* y, int length); int train(const std::string& model, T learning_rate = 0, int iterations = 0); int load_model(const std::string& model) const; T predict(T x) const; // y = wx+b private: int gradient_descent(); int least_squares(); int store_model() const; regression_method method; std::unique_ptr<T[]> x, y; std::string model = ""; int iterations = 1000; int length = 0; T learning_rate = 0.001f; T weight = 0; T bias = 0; }; } // namespace ANN #endif // NN_LINEAR_REGRESSION_HPP_
c5e18fed5bf365ee0e40dd1404ea53e7285246ca
4f528cec29d12c29214fb84796666ab1b1432d6e
/utils/UtAssert.cpp
27c19d2de3def1cfc07a71500c08178ec478f464
[]
no_license
intech6045/intechPdf
3961e0bec02539eb8cc3233cbc0a033526c2db05
1027e8b27ad7668e9862373fa15eec5e192091c6
refs/heads/master
2022-11-20T02:34:02.581454
2020-07-24T03:10:05
2020-07-24T03:10:05
282,106,003
0
0
null
null
null
null
UTF-8
C++
false
false
1,158
cpp
UtAssert.cpp
/* Copyright 2013 the SumatraPDF project authors (see AUTHORS file). License: Simplified BSD (see COPYING.BSD) */ #include "BaseUtil.h" #include "UtAssert.h" static int g_nTotal = 0; static int g_nFailed = 0; #define MAX_FAILED_ASSERTS 32 struct FailedAssert { const char *exprStr; const char *file; int lineNo; }; static FailedAssert g_failedAssert[MAX_FAILED_ASSERTS]; void utassert_func(bool ok, const char *exprStr, const char *file, int lineNo) { ++g_nTotal; if (ok) return; if (g_nFailed < MAX_FAILED_ASSERTS) { g_failedAssert[g_nFailed].exprStr = exprStr; g_failedAssert[g_nFailed].file = file; g_failedAssert[g_nFailed].lineNo = lineNo; } ++g_nFailed; } int utassert_print_results() { if (0 == g_nFailed) { printf("Passed all %d tests\n", g_nTotal); return 0; } fprintf(stderr, "Failed %d (of %d) tests\n", g_nFailed, g_nTotal); for (int i=0; i < g_nFailed && i < MAX_FAILED_ASSERTS; i++) { FailedAssert *a = &(g_failedAssert[i]); fprintf(stderr, "'%s' %s@%d\n", a->exprStr, a->file, a->lineNo); } return g_nFailed; }
749edf025f103d13bd01ba4b8f783a999f259e4e
c3a424748ca2a3bc8604d76f1bf70ff3fee40497
/alternatives/pol-099-core/icrontic/scripts/include/cliloc.inc
143acd359bcbb19f131f368c78edb8a34e2b0a2b
[]
no_license
polserver/legacy_scripts
f597338fbbb654bce8de9c2b379a9c9bd4698673
98ef8595e72f146dfa6f5b5f92a755883b41fd1a
refs/heads/master
2022-10-25T06:57:37.226088
2020-06-12T22:52:22
2020-06-12T22:52:22
23,924,142
4
0
null
null
null
null
UTF-8
C++
false
false
1,675
inc
cliloc.inc
// Cliloc function v3.0 // By BlahGoD and Kiwi // Not for the faint of heart :) use uo; use basic; function Cliloc(sendto, subject, color, messageID, system := 1, name := 1) if(name = 1) name := subject.name; endif if(color = "03b2") color := 996; endif var length := 18; var namehex := ""; var tester; var message := fixpacketlength(hex(messageID),3); if(system) tester := "ffffffffffff07"; else tester := fixpacketlength(hex(subject.serial),4) + fixpacketlength(hex(subject.graphic),2) + "07"; endif var count := len(name); length := length + count; length := fixpacketlength(hex(length), 2); var loopcount := 1; name := CAscZ(name); while(loopcount < count + 1) namehex := namehex + cstr(fixpacketlength(hex(name[loopcount]), 1)); loopcount := loopcount + 1; endwhile var msgCol := fixpacketlength(Hex(color),2); var packet := "c1" + length + tester + msgCol + "000200" + message + namehex; SendPacket(sendto, packet); endfunction // Thanks to Max for this function :=) function fixPacketLength( packetString, byteLength ) if( !packetString || packetString == error ) packetString := 0; endif packetString := cStr(packetString); if( packetString[1,2] == "0x" ) packetString := cStr(packetString[3,len(packetString)]); endif if( len(packetString) > byteLength * 2 ) var extraBytes := (byteLength*2) - len(packetString); return cStr(packetString[extraBytes,len(packetString)]); endif while( len(packetString) < byteLength * 2 ) packetString := "0" + packetString; endwhile return packetString; endfunction
84ed254acf87c8fd3843bb7a9271d1f66d55affe
5f4ea9dd63eb40740c89fbaa045c7083db469d83
/source/Utility/KeyboardInput.cpp
2ed47bffa3bb78710033501f6051de4305968447
[]
no_license
Numkn644/BlackJack
d48d31caccf895ab46b11187f21f72ddffc3404b
93830ff9f54d1e1afaf6d2129e660838ffc9dae9
refs/heads/master
2016-08-12T15:40:47.667802
2015-12-17T15:30:51
2015-12-17T15:30:51
45,117,662
0
0
null
null
null
null
UTF-8
C++
false
false
431
cpp
KeyboardInput.cpp
#include "KeyboardInput.h" KeyboardInput::KeyboardInput() { } KeyboardInput::~KeyboardInput() { } int KeyboardInput::update() { GetHitKeyStateAll(keyboardBuffer_m); for (int keycode = 0; keycode < 256; ++keycode){ keyboard_m[keycode] = keyboardBuffer_m[keycode] == 1 ? ++keyboard_m[keycode] : 0; } return 0; } int KeyboardInput::get(int keycode) { return (0 <= keycode && keycode < 256) ? keyboard_m[keycode] : 0; }
ff62a9589d88a6643c7f752789b5e107f4ffec36
4fc10b326682128ff6a92a927c8ec44d71d08824
/src/developer/debug/zxdb/symbols/dwarf_location.cc
e5aa5f38f0ce5d61cf601cce54d61368b9dcb45e
[ "BSD-2-Clause" ]
permissive
dahliaOS/fuchsia-pi4
f93dc1e0da5ed34018653c72ceab0c50e1d0c1e4
5b534fccefd918b5f03205393c1fe5fddf8031d0
refs/heads/main
2023-05-01T22:57:08.443538
2021-05-20T23:53:40
2021-05-20T23:53:40
367,988,554
5
2
null
null
null
null
UTF-8
C++
false
false
4,677
cc
dwarf_location.cc
// Copyright 2019 The Fuchsia 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 "src/developer/debug/zxdb/symbols/dwarf_location.h" #include <limits> #include "llvm/DebugInfo/DWARF/DWARFContext.h" #include "llvm/DebugInfo/DWARF/DWARFDebugLoc.h" #include "llvm/DebugInfo/DWARF/DWARFSection.h" #include "llvm/DebugInfo/DWARF/DWARFUnit.h" #include "src/developer/debug/zxdb/common/data_extractor.h" namespace zxdb { VariableLocation DecodeVariableLocation(const llvm::DWARFUnit* unit, const llvm::DWARFFormValue& form, const UncachedLazySymbol& source) { if (form.isFormClass(llvm::DWARFFormValue::FC_Block) || form.isFormClass(llvm::DWARFFormValue::FC_Exprloc)) { // These forms are both a block of data which is interpreted as a DWARF expression. There is no // validity range for this so assume the expression is valid as long as the variable is in // scope. llvm::ArrayRef<uint8_t> block = *form.getAsBlock(); return VariableLocation(block.data(), block.size(), source); } if (!form.isFormClass(llvm::DWARFFormValue::FC_SectionOffset)) return VariableLocation(); // Unknown type. // This form is a "section offset" reference to a block in the .debug_loc table that contains a // list of valid ranges + associated expressions. llvm::DWARFContext& context = unit->getContext(); const llvm::DWARFObject& object = context.getDWARFObj(); const llvm::DWARFSection& debug_loc_section = object.getLocSection(); if (debug_loc_section.Data.empty()) { // LLVM dumpLocation() falls back on the DWARFObject::getLocDWOSection() call in this case. We // don't support DWOs yet so just fail. return VariableLocation(); } uint32_t offset = *form.getAsSectionOffset(); if (offset >= debug_loc_section.Data.size()) return VariableLocation(); // Off the end. containers::array_view<uint8_t> section_data( reinterpret_cast<const uint8_t*>(debug_loc_section.Data.data()), debug_loc_section.Data.size()); // Interpret the resulting list. auto base_address = const_cast<llvm::DWARFUnit*>(unit)->getBaseAddress(); return DecodeLocationList(base_address ? base_address->Address : 0, section_data.subview(offset), source); } VariableLocation DecodeLocationList(TargetPointer unit_base_addr, containers::array_view<uint8_t> data, const UncachedLazySymbol& source) { DataExtractor ext(data); std::vector<VariableLocation::Entry> entries; // These location list begin and end values are "relative to the applicable base address of the // compilation unit referencing this location list." // // The "applicable base address" is either the unit's base address, or, if there was a "base // address selection entry", the nearest preceeding one. // // This value tracks the current applicable base address. TargetPointer base_address = unit_base_addr; // Base address selection entries are identifier by a start address with the max value. constexpr TargetPointer kBaseAddressSelectionTag = std::numeric_limits<TargetPointer>::max(); while (!ext.done()) { auto begin = ext.Read<TargetPointer>(); if (!begin) return VariableLocation(); auto end = ext.Read<TargetPointer>(); if (!end) return VariableLocation(); if (*begin == kBaseAddressSelectionTag) { // New base address, read it and we're done with this entry. base_address = *end; continue; } if (*begin == 0 && *end == 0) break; // End-of-list entry. // Non-"base address selection entries" are followed by a 2-byte length, followed by the // DWARF expression of that length. auto expression_len = ext.Read<uint16_t>(); if (!expression_len) return VariableLocation(); // Empty expressions are valid and just mean to skip this entry, so we don't bother adding it. if (*expression_len == 0) continue; // Expression data. std::vector<uint8_t> expression; expression.resize(*expression_len); if (!ext.ReadBytes(*expression_len, &expression[0])) return VariableLocation(); if (*begin == *end) continue; // Empty range, don't bother adding. VariableLocation::Entry& dest = entries.emplace_back(); dest.begin = base_address + *begin; dest.end = base_address + *end; dest.expression = DwarfExpr(std::move(expression), source); } return VariableLocation(std::move(entries)); } } // namespace zxdb
5123e948a804f641d9010e4ea6ec8d0bc733bf1a
407949cf89b4483528f7c8e684d094db44942c92
/Volcano/Runtime/RHI/Vulkan/VulkanUtils.cpp
4bb296062f139233563e7c0da6636154df8b7169
[]
no_license
auchan/VolcanoEngine
30648845356e4e3b126423072016bb4cc3f63a3b
dbdaaca351f541caa8d4278415688494b8481776
refs/heads/master
2023-07-02T00:01:59.410483
2021-08-08T16:46:54
2021-08-08T16:46:54
238,983,887
0
0
null
null
null
null
UTF-8
C++
false
false
25
cpp
VulkanUtils.cpp
#include "VulkanUtils.h"
2156c15673eadd760a2da85902b0a54cc44afaa9
0fad34977a5180e29db57495652af995ef484105
/Console_2_1_52/GUI/src/EnterTime.cc
c2c1576605b17720555b11520abb26dab97ee9ce
[]
no_license
Wenguangliu/Hello
5759c237c37ffaf7f9d2cdc18ba6f2895557dda9
3801697e51eddb4b03c05924cb5e776ec46e18ae
refs/heads/master
2020-12-11T20:56:05.865805
2020-01-30T22:24:33
2020-01-30T22:24:33
233,956,105
0
0
null
2020-01-14T23:41:25
2020-01-14T23:26:41
null
UTF-8
C++
false
false
8,126
cc
EnterTime.cc
/* * FILENAME * EnterTime.cc * * MODULE DESCRIPTION * Class method definitions for the EnterTime class, which manages the Enter * Time subscreen. * * AUTHOR * Greg De Hoogh */ /* Standard headers */ #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <string.h> /* Local headers */ #include "ablibs.h" #include "Global.h" #include "abimport.h" #include "Sound.h" const long int TIMER_INTERVAL = 100; // 100 milliseconds char EnterTime::twentyFourHourFormat = 0; /* * FUNCTION * Start * * DESCRIPTION * Sets the time displayed to the current time and starts the timer that * updates the display periodically. */ void EnterTime::Start() { Update( 0, 0, 0 ); PtSetResource( ABW_ptTimerEnterTime, Pt_ARG_TIMER_INITIAL, TIMER_INTERVAL, 0 ); } /* * FUNCTION * Stop * * DESCRIPTION * Stops updates to the displayed time. */ void EnterTime::Stop() { PtSetResource( ABW_ptTimerEnterTime, Pt_ARG_TIMER_INITIAL, 0, 0 ); } /* * FUNCTION * SetFormat * * DESCRIPTION * Sets the time display format to either 12- or 24-hour mode. * * PARAMETERS * format - flag to indicate 12- or 24-hour format. */ void EnterTime::SetFormat( char format ) { twentyFourHourFormat = format; } /* * FUNCTION * HourUp * * DESCRIPTION * Callback handler for the Hour Up button. Increments the current hour by * one. Does not cause the day to increment when the hour is incremented past * midnight. * * PARAMETERS * cbinfo - Callback info, which contains information on the newly-input text. * widget, apinfo - Standard Photon callback parameters - ignored. * * RETURNS * Pt_CONTINUE - Standard Photon callback return value. */ int EnterTime::HourUp( PtWidget_t *widget, ApInfo_t *apinfo, PtCallbackInfo_t *cbinfo ) { struct timespec stime; clock_gettime( CLOCK_REALTIME, &stime ); int minSec = stime.tv_sec % (60*60); int hour = (stime.tv_sec / (60*60) ) % 24; hour += 1; if ( hour > 23 ) { hour = 0; } stime.tv_sec =(stime.tv_sec / (60*60*24) ) * (60*60*24) + (hour * 60*60) + minSec; clock_settime( CLOCK_REALTIME, &stime ); Update( 0, 0, 0 ); Click(); return( Pt_CONTINUE ); } /* * FUNCTION * HourDown * * DESCRIPTION * Callback handler for the Hour Down button. Decrements the current hour by * one. Does not day to decrement when the hour is decremented past midnight. * * PARAMETERS * cbinfo - Callback info, which contains information on the newly-input text. * widget, apinfo - Standard Photon callback parameters - ignored. * * RETURNS * Pt_CONTINUE - Standard Photon callback return value. */ int EnterTime::HourDown( PtWidget_t *widget, ApInfo_t *apinfo, PtCallbackInfo_t *cbinfo ) { struct timespec stime; clock_gettime( CLOCK_REALTIME, &stime ); int minSec = stime.tv_sec % (60*60); int hour = (stime.tv_sec / (60*60) ) % 24; hour -= 1; if ( hour < 0 ) { hour = 23; } stime.tv_sec =(stime.tv_sec / (60*60*24) ) * (60*60*24) + (hour * 60*60) + minSec; clock_settime( CLOCK_REALTIME, &stime ); Update( 0, 0, 0 ); Click(); return( Pt_CONTINUE ); } /* * FUNCTION * MinuteUp * * DESCRIPTION * Callback handler for the Minute Up button. Increments the current minute * by one. Does not increment the current hour when the minute is incremented * past 59. * * PARAMETERS * cbinfo - Callback info, which contains information on the newly-input text. * widget, apinfo - Standard Photon callback parameters - ignored. * * RETURNS * Pt_CONTINUE - Standard Photon callback return value. */ int EnterTime::MinuteUp( PtWidget_t *widget, ApInfo_t *apinfo, PtCallbackInfo_t *cbinfo ) { struct timespec stime; clock_gettime( CLOCK_REALTIME, &stime ); int sec = stime.tv_sec % 60; int min = (stime.tv_sec / 60) % 60; min += 1; if ( min > 59 ) { min = 0; } stime.tv_sec = (stime.tv_sec / (60*60) ) * (60*60) + (min * 60) + sec; clock_settime( CLOCK_REALTIME, &stime ); Update( 0, 0, 0 ); Click(); return( Pt_CONTINUE ); } /* * FUNCTION * MinuteDown * * DESCRIPTION * Callback handler for the Minute Down button. Decrements the current minute * by one. Does not decrement the current hour when the minute is decremented * past zero. * * PARAMETERS * cbinfo - Callback info, which contains information on the newly-input text. * widget, apinfo - Standard Photon callback parameters - ignored. * * RETURNS * Pt_CONTINUE - Standard Photon callback return value. */ int EnterTime::MinuteDown( PtWidget_t *widget, ApInfo_t *apinfo, PtCallbackInfo_t *cbinfo ) { struct timespec stime; clock_gettime( CLOCK_REALTIME, &stime ); int sec = stime.tv_sec % 60; int min = (stime.tv_sec / 60) % 60; min -= 1; if ( min < 0 ) { min = 59; } stime.tv_sec =(stime.tv_sec / (60*60) ) * (60*60) + (min * 60) + sec; clock_settime( CLOCK_REALTIME, &stime ); Update( 0, 0, 0 ); Click(); return( Pt_CONTINUE ); } /* * FUNCTION * Format * * DESCRIPTION * Callback handler for the Format button. Toggles the data display between * 12- and 24-hour formats. * * PARAMETERS * cbinfo - Callback info, which contains information on the newly-input text. * widget, apinfo - Standard Photon callback parameters - ignored. * * RETURNS * Pt_CONTINUE - Standard Photon callback return value. */ int EnterTime::Format( PtWidget_t *widget, ApInfo_t *apinfo, PtCallbackInfo_t *cbinfo ) { twentyFourHourFormat = ! twentyFourHourFormat; Update( 0, 0, 0 ); Click(); return( Pt_CONTINUE ); } /* * FUNCTION * ZeroSec * * DESCRIPTION * Callback handler for the Zero Seconds button. Sets the current seconds * value to zero. * * PARAMETERS * cbinfo - Callback info, which contains information on the newly-input text. * widget, apinfo - Standard Photon callback parameters - ignored. * * RETURNS * Pt_CONTINUE - Standard Photon callback return value. */ int EnterTime::ZeroSec( PtWidget_t *widget, ApInfo_t *apinfo, PtCallbackInfo_t *cbinfo ) { struct timespec stime; clock_gettime( CLOCK_REALTIME, &stime ); stime.tv_sec = (stime.tv_sec / 60 ) * 60; stime.tv_nsec = 0; clock_settime( CLOCK_REALTIME, &stime ); Click(); return( Pt_CONTINUE ); } /* * FUNCTION * Update * * DESCRIPTION * Callback handler for the update timer button. Also called at screen start- * up to set the display to the current time. * * PARAMETERS * cbinfo - Callback info, which contains information on the newly-input text. * widget, apinfo - Standard Photon callback parameters - ignored. * * RETURNS * Pt_CONTINUE - Standard Photon callback return value. */ int EnterTime::Update( PtWidget_t *widget, ApInfo_t *apinfo, PtCallbackInfo_t *cbinfo ) { static int prevHour = 0; static int prevMin = 0; static int prevSec = 0; // Get the current time. time_t t = time( 0 ); struct tm *currentTime = gmtime( &t ); if ( prevHour != currentTime->tm_hour || prevMin != currentTime->tm_min || prevSec != currentTime->tm_sec ) { // Save the time. prevHour = currentTime->tm_hour; prevMin = currentTime->tm_min; prevSec = currentTime->tm_sec; // Update the display. SetTimeDisplay( currentTime->tm_hour, currentTime->tm_min, currentTime->tm_sec, twentyFourHourFormat ); } return Pt_CONTINUE; } /* * FUNCTION * SetTimeDisplay * * DESCRIPTION * Sets the displayed time to the value passed. * * PARAMETERS * hour - Hour value to display. * minute - Minute value to display. * second - Second value to diplay. * twentyFourHourFormat - Boolean: true->24-hour format, false->12-hour format. */ void EnterTime::SetTimeDisplay( int hour, int minute, int second, char twentyFourHourFormat ) { char buff[ 12 ]; const char * suffix; if ( twentyFourHourFormat == 0 ) { if ( hour >= 12 ) { suffix = " PM"; if ( hour > 12 ) { hour -= 12; } } else { suffix = " AM"; if ( hour == 0 ) { hour = 12; } } } else { suffix = ""; } sprintf( buff, "%2.2d:%2.2d:%2.2d%s", hour, minute, second, suffix ); PtSetResource( ABW_ptTextEnterTime, Pt_ARG_TEXT_STRING, buff, 0 ); }
e7e20808e5287c4c358df8d756f3f15662cc8263
3d807ea8a5b78001e4616bf687886b9d234d6756
/Online Judge Sloutions/Spoj/ZSUM.cpp
33faf69693446730026813bd5bce3ee88d53a824
[]
no_license
aman97kalra/Competitive-Programming
ca336d61d25d0fa318e292bea76199732501ad78
0f257d7e2036c6a09589eb1f36461dcb560a1810
refs/heads/master
2020-04-02T02:43:04.445652
2017-07-03T18:29:31
2017-07-03T18:29:31
153,923,831
0
0
null
2018-10-20T16:11:38
2018-10-20T16:11:38
null
UTF-8
C++
false
false
679
cpp
ZSUM.cpp
#include<iostream> #include<algorithm> using namespace std; long long int power(long long int x,long long int y, long long int p) { long long int res = 1; x = x % p; while (y > 0) { if (y & 1) res = (res*x) % p; y = y>>1; // y = y/2 x = (x*x) % p; } return res; } int main() { while(1){ long long int n,k; cin>>n>>k; if(n==0 && k==0) break; long long int p=power(n,k,10000007); long long int q=power(n,n,10000007); long long int r=power(n-1,k,10000007); long long int s=power(n-1,n-1,10000007); cout<<((p+q+2*r+2*s)%10000007)<<endl; } return 0; }
515045047d37fc9be5dab4e4d9015a7f8c94e4d3
4afd28b2ad891569cfd82ae59d9f9a65ac4ee05b
/examples/hashmap/src/atomicmap_workload.cc
ea951da63a0e130ec3699b8ce90fbd7e5a20283f
[]
no_license
graydon/FuzzyLog-apps
e2a0eee49c7f34ea425c7229494ab94e6e46111e
0ba6f69dd4e137183d782ff3d6e8229f2f307a04
refs/heads/master
2020-08-29T18:21:10.832091
2018-09-13T21:14:56
2018-09-13T21:14:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,760
cc
atomicmap_workload.cc
#include <atomicmap_workload.h> #include <cassert> #include <random> #include <iostream> #include <atomicmap.h> void ycsb_insert::Run() { uint64_t key, value; assert(m_map != NULL); // key = (start, end) key = rand() % (m_end - m_start); value = rand(); m_map->put(key, value, m_color, m_dep_color); // increment executed count m_context->inc_num_executed(); } write_id ycsb_insert::AsyncRun() { uint64_t key, value; assert(m_map != NULL); assert(m_dep_color == NULL); // XXX: in AtomicMap, do not support cross-color put at the moment // key = (start, end) key = rand() % (m_end - m_start); value = rand(); return m_map->async_put(key, value, m_color); } write_id ycsb_insert::AsyncRemoteRun() { assert(false); } write_id ycsb_insert::AsyncStronglyConsistentRun() { assert(false); } write_id ycsb_insert::AsyncWeaklyConsistentRun() { assert(false); } void ycsb_read::Run() { uint64_t key; assert(m_map != NULL); // key = (start, end) key = rand() % (m_end - m_start); m_map->get(key); } write_id ycsb_read::AsyncRun() { uint64_t key; assert(m_map != NULL); // key = (start, end) key = rand() % (m_end - m_start); m_map->get(key); return WRITE_ID_NIL; } write_id ycsb_read::AsyncRemoteRun() { assert(false); } write_id ycsb_read::AsyncStronglyConsistentRun() { assert(false); } write_id ycsb_read::AsyncWeaklyConsistentRun() { assert(false); } Txn** atomicmap_workload_generator::Gen() { uint64_t i; uint64_t total_op_count; double r; // percent of single operations total_op_count = 0; for (auto w : *m_workload) { total_op_count += w.op_count; } Txn **txns = (Txn**)malloc(sizeof(Txn*) * total_op_count); // make transactions vector<double> proportions; vector<uint64_t> allocations; uint64_t n = 0; for (auto w : *m_workload) { n += w.op_count; double p = static_cast<double>(n) / total_op_count; proportions.push_back(p); allocations.push_back(w.op_count); } i = 0; while (i < total_op_count) { // dice r = static_cast<double>(rand()) / (RAND_MAX); for (auto j = 0; j < proportions.size(); j++) { if (proportions[j] > r && allocations[j] > 0) { std::string op_type = (*m_workload)[j].op_type; struct colors* color = &(*m_workload)[j].first_color; uint64_t start = 0; uint64_t end = m_range; if (op_type == "get") { txns[i] = new ycsb_read(m_map, color, start, end, m_context, Txn::optype::GET); } else if (op_type == "put") { struct colors* dep_color = (*m_workload)[j].has_dependency ? &(*m_workload)[j].second_color : NULL; bool is_strong = (*m_workload)[j].is_strong; txns[i] = new ycsb_insert(m_map, color, dep_color, start, end, m_context, Txn::optype::PUT, is_strong); } allocations[j] = allocations[j] - 1; i++; break; } } } return txns; }
28791c04c5ca1eaf26eb46af3a85f95c76a19928
5e9f39500eddbf17de003051fde34caffe64a4b2
/MSERobot/MSERobot.ino
71bc398562f09831a3fe167abe4b9df358123161
[]
no_license
daxinman/MSERobot_mode_2
36dee521f913ef38e9a9660d6f728fcc783dd03b
52f9a06fffe43b4bbd3ec7b381dcce4dc7621467
refs/heads/master
2020-12-03T10:27:31.241851
2016-04-01T18:57:47
2016-04-01T18:57:47
55,186,517
0
0
null
null
null
null
UTF-8
C++
false
false
40,560
ino
MSERobot.ino
#include <PID_v1.h> //PID library #include <uSTimer2.h> #include <I2CEncoder.h> #include <Servo.h> #include <EEPROM.h> #include <uSTimer2.h> #include <Wire.h> #include <I2CEncoder.h> Servo servo_FrontRightMotor; Servo servo_FrontLeftMotor; Servo servo_BackLeftMotor; Servo servo_BackRightMotor; Servo servo_BaseArmMotor; Servo servo_TopArmMotor; Servo servo_GripMotor; Servo left_grip_servo; //these two are for the grip to open and close Servo right_grip_servo; I2CEncoder encoder_FrontRightMotor; I2CEncoder encoder_FrontLeftMotor; I2CEncoder encoder_BackRightMotor; I2CEncoder encoder_BackLeftMotor; I2CEncoder encoder_GripMotor; // Uncomment keywords to enable debugging output //#define DEBUG_MODE_DISPLAY //#define DEBUG_MOTORS //#define DEBUG_LINE_TRACKERS //#define DEBUG_ENCODERS //#define DEBUG_ULTRASONIC //#define DEBUG_LINE_TRACKER_CALIBRATION //#define DEBUG_MOTOR_CALIBRATION boolean bt_Motors_Enabled = true; //port pin constants const int ci_Mode_Button = 7000; //place the port pins here (ultrasonic, motors) const int ci_FrontRight_Motor = 12; const int ci_FrontLeft_Motor = 13; const int ci_BackRight_Motor = 10; const int ci_BackLeft_Motor = 11; //problem pins are 4 and 5 const int ci_Front_Ultrasonic_Data = 3; const int ci_Back_Ultrasonic_Data = 5; //DONT CHANGE const int ci_Left_Ultrasonic_Data = 7; const int ci_Right_Ultrasonic_Data = 8; const int ci_Front_Ultrasonic_Ping = 2; const int ci_Back_Ultrasonic_Ping = 4; //DONT CHANGE const int ci_Left_Ultrasonic_Ping = 6; const int ci_Right_Ultrasonic_Ping = 9; const int ci_Grip_Motor = 11; //const int ci_Motor_Enable_Switch = 12; const int ci_Right_Line_Tracker = A0; const int ci_Middle_Line_Tracker = A1; const int ci_Left_Line_Tracker = A2; const int ci_Light_Sensor = A3; const int ci_I2C_SDA = A4; // I2C data = white const int ci_I2C_SCL = A5; // I2C clock = yellow //<<< <<< < HEAD //== == == = //might have to go on seperate board int ISRPin = 13; // Charlieplexing LED assignments const int ci_Heartbeat_LED = 1; const int ci_Indicator_LED = 10; /*const int ci_Right_Line_Tracker_LED = 6; const int ci_Middle_Line_Tracker_LED = 9; const int ci_Left_Line_Tracker_LED = 12;*/ //constants // EEPROM addresses const int ci_Front_Left_Motor_Offset_Address_L = 12; const int ci_Front_Left_Motor_Offset_Address_H = 13; const int ci_Front_Right_Motor_Offset_Address_L = 14; const int ci_Front_Right_Motor_Offset_Address_H = 15; const int ci_Back_Left_Motor_Offset_Address_L = 16; const int ci_Back_Left_Motor_Offset_Address_H = 17; //not sure if 16-19 are correct const int ci_Back_Right_Motor_Offset_Address_L = 18; const int ci_Back_Right_Motor_Offset_Address_H = 19; //used for line tracking code (mode 1) boolean pauseHere; int stageCounter = 0; const int ci_Front_Left_Motor_Stop = 1500; // 200 for brake mode; 1500 for stop const int ci_Front_Right_Motor_Stop = 1500; const int ci_Back_Left_Motor_Stop = 1500; const int ci_Back_Right_Motor_Stop = 1500; const int ci_Grip_Motor_Stop = 1500; const int ci_Grip_Motor_Open = 180; // Experiment to determine appropriate value const int ci_Grip_Motor_Zero = 80; // " const int ci_Grip_Motor_Closed = 80; // " const int ci_BaseArm_Servo_Retracted = 55; // " const int ci_BaseArm_Servo_Extended = 120; // " const int ci_TopArm_Servo_Retracted = 55; // " const int ci_TopArm_Servo_Extended = 120; const int ci_Display_Time = 500; /*const int ci_Line_Tracker_Calibration_Interval = 100; const int ci_Line_Tracker_Cal_Measures = 20; const int ci_Line_Tracker_Tolerance = 100; // May need to adjust this const int ci_Motor_Calibration_Time = 5000;*/ //variables byte b_LowByte; byte b_HighByte; unsigned long ul_Echo_Time; /*unsigned int ui_Left_Line_Tracker_Data; unsigned int ui_Middle_Line_Tracker_Data; unsigned int ui_Right_Line_Tracker_Data;*/ unsigned int ui_Motors_Speed = 1900; // Default run speed unsigned int ui_Front_Left_Motor_Speed; unsigned int ui_Front_Right_Motor_Speed; unsigned int ui_Back_Right_Motor_Speed; unsigned int ui_Back_Left_Motor_Speed; unsigned long ul_Front_Left_Motor_Position; unsigned long ul_Front_Right_Motor_Position; unsigned long ul_Back_Left_Motor_Position; unsigned long ul_Back_Right_Motor_Position; unsigned long ul_Grip_Motor_Position; unsigned long ul_3_Second_timer = 0; unsigned long ul_Display_Time; unsigned long ul_Calibration_Time; unsigned long ui_Front_Left_Motor_Offset; unsigned long ui_Front_Right_Motor_Offset; unsigned long ui_Back_Left_Motor_Offset; unsigned long ui_Back_Right_Motor_Offset; /*unsigned int ui_Cal_Count; unsigned int ui_Left_Line_Tracker_Dark; unsigned int ui_Left_Line_Tracker_Light; unsigned int ui_Middle_Line_Tracker_Dark; unsigned int ui_Middle_Line_Tracker_Light; unsigned int ui_Right_Line_Tracker_Dark; unsigned int ui_Right_Line_Tracker_Light; unsigned int ui_Line_Tracker_Tolerance;*/ unsigned int ui_Robot_State_Index = 0; //0123456789ABCDEF unsigned int ui_Mode_Indicator[6] = { 0x00, //B0000000000000000, //Stop 0x00FF, //B0000000011111111, //Run 0x0F0F, //B0000111100001111, //Calibrate line tracker light level 0x3333, //B0011001100110011, //Calibrate line tracker dark level 0xAAAA, //B1010101010101010, //Calibrate motors 0xFFFF //B1111111111111111 //Unused }; unsigned int ui_Mode_Indicator_Index = 0; //display Bits 0,1,2,3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 int iArray[16] = { 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 65536 }; int iArrayIndex = 0; boolean bt_Heartbeat = true; boolean bt_3_S_Time_Up = false; boolean bt_Do_Once = false; boolean bt_Cal_Initialized = false; boolean grab_object_mode = false; //used for lab04, sets robot into target aquisition mode boolean target_aquired = false; //usef for lab04, to determine which stage of target aquisition bot is in boolean coarse_target_direction = false; //used for lab04, coarse grain direction to target int x_degrees_turn_position = 10; //value associated with reading a 90 degree turn int light_sensor_data = 0; //globabl variable to hold light sensor output data int light_tolerance = 0; //might need to change this int light_sensor_bright = 300; int distance_to_object = 10; //EXPERIMENTAL VALUE int arm_target_length = 20; //value of arm length unsigned long max_light_position = 0; int which_case = 0; unsigned long current_position = 0; ///////////////////////////////////////////////////////////// //JULIAN'S GLOBAL VARIABLES ///////////////////////////////////////////////////////////// //for opening and closing the grip int open_pos = 40; //angle associated with claw open int closed_pos = 160; //angle associated with claw closed //for navigation int current_pos[3]; //0th position is x coordinate, 1st is y, 2nd is directionality register int last_known_cube_pos [3]; int home_pos[2]; //no directuionality b/c we know always pointing in the positive direction //just x and y coordinates {[x][y]} int cubesCollected; //keeps track of how many cubes have been collected const int sideLength = 200; //total side length of track in cm //for pinging: int cmFront, cmBack, cmLeft, cmRight; //variables hold distances of ultrasonic sensors int rightDuration, leftDuration, frontDuration, backDuration; //used to send a length of pings out const int delayTime = 10; //milisecond time //for checking cube: const int NOFIELD = 0; //have to change this int numberOfPasses; //keeps track of how many times we've driven in the y-direction int distance[7]; //array to hold the distances coming serially from board 2 /////////////// //PID CONTROL SYSTEM VARIABLES double Setpoint, Input, Output; //pass pointers so we the pid can modify and read updated values PID motorControl(&Input, &Output, &Setpoint, 2, 5, 1, DIRECT); //the values are P, I, D, currently are default, we need to tune these void setup() { //////////////////////// //SETTING UP PID CONTROL //////////////////////// motorControl.SetMode(AUTOMATIC); motorControl.SetSampleTime(50); //pid updates every 50ms (default is 200, Arduino recommends shorter for robotics) Setpoint = 0; /////////////////////// //setting up ISR ////////////////////// pinMode(ISRPin, OUTPUT); // attachInterrupt(digitalPinTOInterrupt(ISRPin), CheckCube(), RISING); //setting up ISR from LOW to HIGH on ISRPin pauseHere = true; ///////////////////////////////////////////////// //initializing navigational functions and variables cubesCollected = 0; numberOfPasses = 1; //initPos(); //initialze the home position only when the robot starts each round current_pos[2] = 0; //sets the direction to positive y orientation // TURN 180 FUNCTION SHOULD FLIP THIS VALUE TO 1 //TO INDICATE TRAVELLING IN THE NEGATIVE DIRECTION //cubeFound = false; ///////////////////////////////////////////////////// Wire.begin(); // Wire library required for I2CEncoder library Serial.begin(9600); // set up ultrasonic pinMode(ci_Front_Ultrasonic_Ping, OUTPUT); pinMode(ci_Front_Ultrasonic_Data, INPUT); pinMode(ci_Back_Ultrasonic_Ping, OUTPUT); pinMode(ci_Back_Ultrasonic_Data, INPUT); pinMode(ci_Left_Ultrasonic_Ping, OUTPUT); pinMode(ci_Left_Ultrasonic_Data, INPUT); pinMode(ci_Right_Ultrasonic_Ping, OUTPUT); pinMode(ci_Right_Ultrasonic_Data, INPUT); // set up drive motors, need to reinitialize names pinMode(ci_FrontRight_Motor, OUTPUT); servo_FrontRightMotor.attach(ci_FrontRight_Motor); pinMode(ci_FrontLeft_Motor, OUTPUT); servo_FrontLeftMotor.attach(ci_FrontLeft_Motor); pinMode(ci_BackRight_Motor, OUTPUT); servo_BackRightMotor.attach(ci_BackRight_Motor); pinMode(ci_BackRight_Motor, OUTPUT); servo_BackLeftMotor.attach(ci_BackLeft_Motor); /////////////////////////////////////////////////////// // setting up grip servos left_grip_servo.attach(4); //the pins here are arbitrary and can be changed right_grip_servo.attach(5); /////////////////////////////////////////////////////// /////////////////////////////////////////////////////// /////////////////////////////////////////////////////// //NOTE FOR WHOEEVR SETS UP TEH ARM SERVOS: //THE PINS NEED TO BE SET FOR EACH SERVO LINK // set up arm motors // pinMode(ci_Base_Arm_Motor, OUTPUT); // servo_ArmMotor.attach(ci_Base_Arm_Motor); //pinMode(ci_Top_Arm_Motor, OUTPUT); //servo_ArmMotor.attach(ci_Top_Arm_Motor); //pinMode(ci_Grip_Motor, OUTPUT); // servo_GripMotor.attach(ci_Grip_Motor); //servo_GripMotor.write(ci_Grip_Motor_Zero); // set up motor enable switch //pinMode(ci_Motor_Enable_Switch, INPUT); //digitalWrite(ci_Motor_Enable_Switch, HIGH); //pullup resistor // set up encoders. Must be initialized in order that they are chained together, // starting with the encoder directly connected to the Arduino. See I2CEncoder docs // for more information encoder_FrontLeftMotor.init(1.0 / 3.0 * MOTOR_393_SPEED_ROTATIONS, MOTOR_393_TIME_DELTA); encoder_FrontLeftMotor.setReversed(false); // adjust for positive count when moving forward encoder_FrontRightMotor.init(1.0 / 3.0 * MOTOR_393_SPEED_ROTATIONS, MOTOR_393_TIME_DELTA); encoder_FrontRightMotor.setReversed(true); // adjust for positive count when moving forward encoder_BackLeftMotor.init(1.0 / 3.0 * MOTOR_393_SPEED_ROTATIONS, MOTOR_393_TIME_DELTA); encoder_BackLeftMotor.setReversed(false); // adjust for positive count when moving forward encoder_BackRightMotor.init(1.0 / 3.0 * MOTOR_393_SPEED_ROTATIONS, MOTOR_393_TIME_DELTA); encoder_BackRightMotor.setReversed(false); // adjust for positive count when moving forward //encoder_GripMotor.init(MOTOR_393_SPEED_ROTATIONS, MOTOR_393_TIME_DELTA); // read saved values from EEPROM //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// //EEPROM NEEDS TO BE SORTED OUT ASAP SO WE CAN CALIBRATE THE 2 IR SENSORS /* b_LowByte = EEPROM.read(ci_Left_Line_Tracker_Dark_Address_L); <<<<<<< HEAD b_HighByte = EEPROM.read(ci_Left_Line_Tracker_Dark_Address_H); ui_Left_Line_Tracker_Dark = word(b_HighByte, b_LowByte); b_LowByte = EEPROM.read(ci_Left_Line_Tracker_Light_Address_L); b_HighByte = EEPROM.read(ci_Left_Line_Tracker_Dark_Address_H); ui_Left_Line_Tracker_Light = word(b_HighByte, b_LowByte); b_LowByte = EEPROM.read(ci_Middle_Line_Tracker_Dark_Address_L); b_HighByte = EEPROM.read(ci_Left_Line_Tracker_Dark_Address_H); ui_Middle_Line_Tracker_Dark = word(b_HighByte, b_LowByte); b_LowByte = EEPROM.read(ci_Middle_Line_Tracker_Light_Address_L); b_HighByte = EEPROM.read(ci_Left_Line_Tracker_Dark_Address_H); ui_Middle_Line_Tracker_Light = word(b_HighByte, b_LowByte); b_LowByte = EEPROM.read(ci_Right_Line_Tracker_Dark_Address_L); b_HighByte = EEPROM.read(ci_Left_Line_Tracker_Dark_Address_H); ui_Right_Line_Tracker_Dark = word(b_HighByte, b_LowByte); b_LowByte = EEPROM.read(ci_Right_Line_Tracker_Light_Address_L); b_HighByte = EEPROM.read(ci_Left_Line_Tracker_Dark_Address_H); ui_Right_Line_Tracker_Light = word(b_HighByte, b_LowByte); b_LowByte = EEPROM.read(ci_Left_Motor_Offset_Address_L); b_HighByte = EEPROM.read(ci_Left_Motor_Offset_Address_H); ui_Left_Motor_Offset = word(b_HighByte, b_LowByte); b_LowByte = EEPROM.read(ci_Right_Motor_Offset_Address_L); b_HighByte = EEPROM.read(ci_Right_Motor_Offset_Address_H); ui_Right_Motor_Offset = word(b_HighByte, b_LowByte); */ /* b_HighByte = EEPROM.read(ci_Left_Line_Tracker_Dark_Address_H); ui_Left_Line_Tracker_Dark = word(b_HighByte, b_LowByte); b_LowByte = EEPROM.read(ci_Left_Line_Tracker_Light_Address_L); b_HighByte = EEPROM.read(ci_Left_Line_Tracker_Dark_Address_H); ui_Left_Line_Tracker_Light = word(b_HighByte, b_LowByte); b_LowByte = EEPROM.read(ci_Middle_Line_Tracker_Dark_Address_L); b_HighByte = EEPROM.read(ci_Left_Line_Tracker_Dark_Address_H); ui_Middle_Line_Tracker_Dark = word(b_HighByte, b_LowByte); b_LowByte = EEPROM.read(ci_Middle_Line_Tracker_Light_Address_L); b_HighByte = EEPROM.read(ci_Left_Line_Tracker_Dark_Address_H); ui_Middle_Line_Tracker_Light = word(b_HighByte, b_LowByte); b_LowByte = EEPROM.read(ci_Right_Line_Tracker_Dark_Address_L); b_HighByte = EEPROM.read(ci_Left_Line_Tracker_Dark_Address_H); ui_Right_Line_Tracker_Dark = word(b_HighByte, b_LowByte); b_LowByte = EEPROM.read(ci_Right_Line_Tracker_Light_Address_L); b_HighByte = EEPROM.read(ci_Left_Line_Tracker_Dark_Address_H); ui_Right_Line_Tracker_Light = word(b_HighByte, b_LowByte); b_LowByte = EEPROM.read(ci_Left_Motor_Offset_Address_L); b_HighByte = EEPROM.read(ci_Left_Motor_Offset_Address_H); ui_Left_Motor_Offset = word(b_HighByte, b_LowByte); b_LowByte = EEPROM.read(ci_Right_Motor_Offset_Address_L); b_HighByte = EEPROM.read(ci_Right_Motor_Offset_Address_H); ui_Right_Motor_Offset = word(b_HighByte, b_LowByte); */ /////////////////////////////////////////////// //ADDING THIS TO SEE IF THE CODE IS BEING KEPT IN THE SETUP FUNCTION Serial.println("code reaching this point"); } void loop() { if ((millis() - ul_3_Second_timer) > 3000) { bt_3_S_Time_Up = true; } // button-based mode selection if (ci_Mode_Button) //chanmged from: CharliePlexM::ui_Btn { if (bt_Do_Once == false) { bt_Do_Once = true; ui_Robot_State_Index++; ui_Robot_State_Index = ui_Robot_State_Index & 7; ul_3_Second_timer = millis(); bt_3_S_Time_Up = false; bt_Cal_Initialized = false; } } else { bt_Do_Once = LOW; } // check if drive motors should be powered //bt_Motors_Enabled = digitalRead(ci_Motor_Enable_Switch); // modes // 0 = default after power up/reset // 1 = Press mode button once to enter. Run robot. - // 2 = Press mode button twice to enter. Calibrate line tracker light level. - Won't need // 3 = Press mode button three times to enter. Calibrate line tracker dark level. - Won't need // 4 = Press mode button four times to enter. Calibrate motor speeds to drive straight. - Might need switch (ui_Robot_State_Index) { case 0: //Robot stopped { //readLineTrackers(); //Ping(); //servo_LeftMotor.writeMicroseconds(ci_Left_Motor_Stop); //servo_RightMotor.writeMicroseconds(ci_Right_Motor_Stop); //servo_ArmMotor.write(ci_Arm_Servo_Retracted); //servo_GripMotor.writeMicroseconds(ci_Grip_Motor_Stop); //encoder_LeftMotor.zero(); //encoder_RightMotor.zero(); //encoder_GripMotor.zero(); ui_Mode_Indicator_Index = 0; Serial.print("light: "); Serial.println(analogRead(A3)); break; } case 1: //Robot Run after 3 seconds { if (bt_3_S_Time_Up) { //not declared in this scope //readLineTrackers(); #ifdef DEBUG_ENCODERS ul_Front_Left_Motor_Position = encoder_FrontLeftMotor.getPosition(); ul_Front_Right_Motor_Position = encoder_FrontRightMotor.getPosition(); ul_Back_Left_Motor_Position = encoder_BackLeftMotor.getPosition(); ul_Back_Right_Motor_Position = encoder_BackRightMotor.getPosition(); ul_Grip_Motor_Position = encoder_GripMotor.getPosition(); Serial.print("Encoders FL: "); Serial.print(encoder_FrontLeftMotor.getPosition()); Serial.print(", FR: "); Serial.print(encoder_FrontRightMotor.getPosition()); Serial.print(", BR: "); Serial.print(encoder_BackRightMotor.getPosition()); Serial.print(", BL: "); Serial.print(encoder_BackLeftMotor.getPosition()); Serial.print(", G: "); Serial.println(ul_Grip_Motor_Position, DEC); #endif // set motor speeds ui_Front_Left_Motor_Speed = constrain(ui_Motors_Speed - ui_Front_Left_Motor_Offset, 1600, 2100); ui_Front_Right_Motor_Speed = constrain(ui_Motors_Speed - ui_Front_Right_Motor_Offset, 1600, 2100); ui_Back_Left_Motor_Speed = constrain(ui_Motors_Speed - ui_Back_Left_Motor_Offset, 1600, 2100); ui_Back_Right_Motor_Speed = constrain(ui_Motors_Speed - ui_Back_Right_Motor_Offset, 1600, 2100); /*************************************************************************************** THIS IS MODE 1 FOR MSE FINAL DESIGN ROBOT /*************************************************************************************/ rotateClockwise(150,90); // assume started facing positive y direction while(cmFront > 99) // 99 will need to be changed { forward(150); } extend_arm(); wait_for_cube(); pick_up_cube(); rotateClockwise(150, 90); // should be facing the platform now (negative y) go_to_platform(); place_cube_to_platform(); drive_to_starting_position(); // after this it loops to the top of the code again #ifdef DEBUG_MOTORS Serial.print("Motors: Default: "); Serial.print(ui_Motors_Speed); Serial.print(" , Front Left = "); Serial.print(ui_Front_Left_Motor_Speed); Serial.print(" . Front Right = "); Serial.println(ui_Front_Right_Motor_Speed); Serial.print(" . Back Right = "); Serial.println(ui_Back_Right_Motor_Speed); Serial.print(" . Back Left = "); Serial.println(ui_Back_Left_Motor_Speed); #endif // ui_Mode_Indicator_Index = 1; // remember to chage this back to 1 for logiacal flow which_case = 0; } break; } }//end switch if ((millis() - ul_Display_Time) > ci_Display_Time) { ul_Display_Time = millis(); #ifdef DEBUG_MODE_DISPLAY Serial.print("Mode: "); Serial.println(ui_Robot_State_Index, DEC); #endif bt_Heartbeat = !bt_Heartbeat; digitalWrite(13, bt_Heartbeat); Indicator(); } } // set mode indicator LED state void Indicator() { //display routine, if true turn on led iArrayIndex++; iArrayIndex = iArrayIndex & 15; } #ifdef DEBUG_LINE_TRACKERS Serial.print("Trackers: Left = "); Serial.print(ui_Left_Line_Tracker_Data, DEC); Serial.print(", Middle = "); Serial.print(ui_Middle_Line_Tracker_Data, DEC); Serial.print(", Right = "); Serial.println(ui_Right_Line_Tracker_Data, DEC); #endif //*****Driving Functions*****/////////////////////////////////////////////////////////// void forward(int speed) { //zero encoders before we do anything encoder_FrontRightMotor.zero(); encoder_FrontLeftMotor.zero(); servo_FrontLeftMotor.writeMicroseconds(1500 + speed); //forward servo_FrontRightMotor.writeMicroseconds(1500 - speed); //forward servo_BackLeftMotor.writeMicroseconds(1500 + speed); //forward servo_BackRightMotor.writeMicroseconds(1500 - speed); //forward //add negative casue its rotating backwards when going forward Input = (-encoder_FrontRightMotor.getRawPosition() - encoder_FrontLeftMotor.getRawPosition()); //input to PID ios dif between encoders //output is the return of the PID, it is a pwm signal //we can't write this directly to a wheel motorControl.Compute(); //calls a change or something to the PID //in this statement if right is more than left, ie: right turning more than left, ie need to correct right if (Output > 0) { //correcting to turn slightly right servo_FrontLeftMotor.writeMicroseconds(1500 + speed + 100); //forward servo_FrontRightMotor.writeMicroseconds(1500 - speed + 50); //forward servo_BackLeftMotor.writeMicroseconds(1500 + speed); //forward servo_BackRightMotor.writeMicroseconds(1500 - speed); //forward } //IF PID WORKS, WRITE THE REST OF THE PID CONTROL CODE HERE ////////////////////////////////// //added from searchForCubes() //THIS CODE ALLOWS THE ROBOT TO TRAVEL IN A STRAIGHT LINE ////////////////////////////////////////////////////////////////////// //NOTE: MIGHT HAVE TO USE PINGFORWARD HALFWAY THROUGH OUR INCREASE OF Y COORDINATE ////////////////////////////////////////////////////////////////////// //if travelling in positive y-direction if (current_pos[2] == 0) { //pingBack(); //pingLeft(); getDistance(); //FUNCTION CALL TO READ SERAIL COMM PORTS-> NO IDEA HOW LONG THIS WILL ACTUALLY TAKE current_pos[1] = distance[1]; //update y coordinate (might not even need this) current_pos[0] = (distance[2] + distance[3]) / 2; //updates current x-coordinate (acverages the 2 left ultrasonics) //veerLeft() and veerRight() keep us driving relatively straight in y-direction //brings robot towards left wall if drifting right if ( current_pos[0] > ((10 * numberOfPasses) + 3)) { //comparative value is standard robot width * number of passes getDistance; //pingLeft(); veerLeft(150, (distance[2] + distance[3]) / 2); //new function to steer slightly to the left //THIS NEW FUNCTION SHOULD USE ENCODER POSITIONS TO ONLY VEER LEFT FOR A LITTLE AMOUNT //THEN GO ABCK TO DRIVING FORWARD BEFORE EXITING AND PASSING CONTROL BACK //TO THIS PART OF THE CODE servo_FrontLeftMotor.writeMicroseconds(1500 + speed); //forward servo_FrontRightMotor.writeMicroseconds(1500 - speed); //forward servo_BackLeftMotor.writeMicroseconds(1500 + speed); //forward servo_BackRightMotor.writeMicroseconds(1500 - speed); //forward }//end if //brings robot away from left wall if drifting left if ( current_pos[0] < ((10 * numberOfPasses)) - 3) { getDistance; //pingLeft(); veerRight(150, (distance[2] + distance[3]) / 2); //new function to steer slightly to the left //THIS NEW FUNCTION SHOULD USE ENCODER POSITIONS TO ONLY VEER RIGHT FOR A LITTLE AMOUNT //THEN GO ABCK TO DRIVING FORWARD BEFORE EXITING AND PASSING CONTROL BACK //TO THIS PART OF THE CODE servo_FrontLeftMotor.writeMicroseconds(1500 + speed); //forward servo_FrontRightMotor.writeMicroseconds(1500 - speed); //forward servo_BackLeftMotor.writeMicroseconds(1500 + speed); //forward servo_BackRightMotor.writeMicroseconds(1500 - speed); //forward }//end if /////////////////////////////////////////////////// //adding theses two cases to keep the robot parallel with the edge of the course /////////////////////////////////////////////////// //if the front of the robot is facing away from the left wall, //we adjust by turning counter clockwise (ccw) if (distance[2] > distance[3]) { while (distance[2] > distance[3] - 1) //-1 is for tolerance { rotateCounterClockwise(200, 1); //rotates the robot one degree at a time (rotate func uses encoders not ultras }//end while }//end if //if robot is turning towards left wall if (distance[2] < distance[3]) { while (distance[2] < distance[3] + 1) //+1 is for tolerance { rotateCounterClockwise(200, 1); //rotates the robot one degree at a time (rotate func uses encoders not ultras }//end while }//end if }//end if(current_pos[2] == 0) /////////////////////////////////////////////////////////////////// //HAVE TO REWRITE ALL THE ABOVE CODE FOR WHEN WE TRAVEL IN NEGATIVE Y-DIRECTION /////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///CHECK SERIAL COMMUNICATION ON POSITIVE Y DIRECTION BEFORE i FINISH WRITING ALL THE SAME CODE BUT FOR THE NEGATIOVE Y DIRECTION //USING THE RIGHT ULTRASONIC SENSORS //if travelling in negative y-direction if (current_pos[2] == 1) { pingBack(); pingRight(); current_pos[1] = cmBack; //update y coordinate (might not even need this) current_pos[0] = cmRight; //the added value accounts for width of robot MIGHT NOT NEED TO ACCOUTN FOR ROBOT WIDTH //veerLeft() and veerRight() keep us driving relatively straight in y-direction //robot drifting left away from wall if ( current_pos[0] > (10 * numberOfPasses)) { pingRight(); //FUNCTION NOT WRITTEN YET, AS OF MARCH 27, 2016 veerRight(150, cmRight); //new function to steer slightly to the left //THIS NEW FUNCTION SHOULD USE ENCODER POSITIONS TO ONLY VEER LEFT FOR A LITTLE AMOUNT //THEN GO ABCK TO DRIVING FORWARD BEFORE EXITING AND PASSING CONTROL BACK //TO THIS PART OF THE CODE servo_FrontLeftMotor.writeMicroseconds(1500 + speed - 10); //forward servo_FrontRightMotor.writeMicroseconds(1500 - speed); //forward servo_BackLeftMotor.writeMicroseconds(1500 + speed); //forward servo_BackRightMotor.writeMicroseconds(1500 - speed); //forward } //brings drifting towards wall if ( current_pos[0] < (10 * numberOfPasses)) { pingLeft(); veerLeft(150, cmLeft); //new function to steer slightly to the left //THIS NEW FUNCTION SHOULD USE ENCODER POSITIONS TO ONLY VEER RIGHT FOR A LITTLE AMOUNT //THEN GO ABCK TO DRIVING FORWARD BEFORE EXITING AND PASSING CONTROL BACK //TO THIS PART OF THE CODE servo_FrontLeftMotor.writeMicroseconds(1500 + speed); //forward servo_FrontRightMotor.writeMicroseconds(1500 - speed); //forward servo_BackLeftMotor.writeMicroseconds(1500 + speed); //forward servo_BackRightMotor.writeMicroseconds(1500 - speed); //forward } }//end if(current_pos[2] == 1) }//END FORWARD() void reverse(int speed) { servo_FrontLeftMotor.writeMicroseconds(1500 - speed); //reverse servo_FrontRightMotor.writeMicroseconds(1500 - speed); //reverse servo_BackLeftMotor.writeMicroseconds(1500 - speed); //reverse servo_BackRightMotor.writeMicroseconds(1500 - speed); //reverse } void moveLeft(int speed) { servo_FrontLeftMotor.writeMicroseconds(1500 - speed); //reverse servo_FrontRightMotor.writeMicroseconds(1500 + speed); //forward servo_BackLeftMotor.writeMicroseconds(1500 + speed); //forward servo_BackRightMotor.writeMicroseconds(1500 - speed); //reverse } void moveRight(int speed) { servo_FrontLeftMotor.writeMicroseconds(1500 + speed); //forward servo_FrontRightMotor.writeMicroseconds(1500 - speed); //reverse servo_BackLeftMotor.writeMicroseconds(1500 - speed); //reverse servo_BackRightMotor.writeMicroseconds(1500 + speed); //forward } void rotateClockwise(int speed, int angle) { //change the numbers accordingly encoder_FrontRightMotor.zero(); //MIGHT HAVE TO AVERAGE THE 4 ENCODER VALUES AND COMPARE THEM TO ANGLE PASSED while (encoder_FrontRightMotor.getRawPosition() > -(9 * angle)) //9 encoder ticks per degree { Serial.print("right encoder:"); Serial.println(encoder_FrontRightMotor.getRawPosition()); servo_FrontLeftMotor.writeMicroseconds(1500 + speed); //forward servo_FrontRightMotor.writeMicroseconds(1500 + speed); //forward servo_BackLeftMotor.writeMicroseconds(1500 + speed); //forward servo_BackRightMotor.writeMicroseconds(1500 + speed); //forward } } void forwardLeftDiagonal(int speed) { servo_FrontRightMotor.writeMicroseconds(1500 + speed); //forward servo_BackLeftMotor.writeMicroseconds(1500 + speed); //forward } void forwardRightDiagonal (int speed) { servo_FrontLeftMotor.writeMicroseconds(1500 + speed); //forward servo_BackRightMotor.writeMicroseconds(1500 + speed); //forward } void reverseRightDiagonal(int speed) { servo_FrontRightMotor.writeMicroseconds(1500 - speed); //reverse servo_BackLeftMotor.writeMicroseconds(1500 - speed); //reverse } void reverseLeftDiagonal(int speed) { servo_FrontLeftMotor.writeMicroseconds(1500 - speed); //reverse servo_BackRightMotor.writeMicroseconds(1500 - speed); //reverse } void stop_motors() { servo_FrontLeftMotor.writeMicroseconds(1500); servo_FrontRightMotor.writeMicroseconds(1500); servo_BackLeftMotor.writeMicroseconds(1500); servo_BackRightMotor.writeMicroseconds(1500); } //*****Pinging Functions***** //allow the user to ping the front ultrasonic sensor void pingFront() { //took "int delayTime" out of argument list digitalWrite(ci_Front_Ultrasonic_Ping, HIGH); //giving a short pulse before hand to ensure a clean high pulse delayMicroseconds(10); digitalWrite(ci_Front_Ultrasonic_Ping, LOW); //keep in mind name for ultrasonic sensor might be different for other people frontDuration = pulseIn(ci_Front_Ultrasonic_Data, HIGH, 10000); cmFront = microsecondsToCentimeters(frontDuration); Serial.print("Front distance = "); Serial.print(cmFront); Serial.print("cm "); //Serial.println(); } void pingBack() { digitalWrite(ci_Back_Ultrasonic_Ping, HIGH); //giving a short pulse before hand to ensure a clean high pulse delayMicroseconds(10); digitalWrite(ci_Back_Ultrasonic_Ping, LOW); //keep in mind name for ultrasonic sensor might be different for other people backDuration = pulseIn(ci_Back_Ultrasonic_Data, HIGH, 10000); cmBack = microsecondsToCentimeters(backDuration); Serial.print("Back distance = "); Serial.print(cmBack); Serial.print("cm "); //Serial.println(); } void pingLeft() { digitalWrite(ci_Left_Ultrasonic_Ping, HIGH); //giving a short pulse before hand to ensure a clean high pulse delayMicroseconds(10); digitalWrite(ci_Left_Ultrasonic_Ping, LOW); //keep in mind name for ultrasonic sensor might be different for other people leftDuration = pulseIn(ci_Left_Ultrasonic_Data, HIGH, 10000); cmLeft = microsecondsToCentimeters(leftDuration); Serial.print("Left distance = "); Serial.print(cmLeft); Serial.print("cm "); //Serial.println(); } void pingRight() { digitalWrite(ci_Right_Ultrasonic_Ping, HIGH); //giving a short pulse before hand to ensure a clean high pulse delayMicroseconds(10); digitalWrite(ci_Right_Ultrasonic_Ping, LOW); //keep in mind name for ultrasonic sensor might be different for other people rightDuration = pulseIn(ci_Right_Ultrasonic_Data, HIGH, 10000); cmRight = microsecondsToCentimeters(rightDuration); Serial.print("Right distance = "); Serial.print(cmRight); Serial.print("cm "); Serial.println(); } long microsecondsToCentimeters(long microseconds) { return microseconds / 29 / 2; } //used to convert microseconds (the data inputted) into centimeters so distances can be better gauged when pinging ////////////////////////////////////// //MARCH 20, 2016 //JULIAN ZANE //function takes open and closed positions of grip //closes the grip ////////////////////////////////////// void grip_close(int open_pos, int closed_pos) { for ( int n = open_pos; n < closed_pos; n++) { right_grip_servo.write(n); left_grip_servo.write(180 - n); //180-n makes this one count move backwards delay(15); Serial.println(right_grip_servo.read()); } } ////////////////////////////////////// //MARCH 20, 2016 //JULIAN ZANE //function takes open and closed positions of grip //opens the grip ////////////////////////////////////// void grip_open(int open_pos, int closed_pos) { for ( int n = closed_pos; n > open_pos; n--) { right_grip_servo.write(n); left_grip_servo.write(180 - n); //180-n makes this one count move backwards delay(15); //Serial.println(n); } } //////////////////////////////////* //JULIAN ZANE //MARCH 19, 2016 //function initialzes the home position //of the robot for future navigational use //*///////////////////////////////// void initPos() { //ping left and read 10 times to let values stabilize for (int i = 0; i < 10; i++) { pingLeft(); pingBack(); home_pos[0] = cmLeft; //sets x coordinate home_pos[1] = cmBack; //sets y coordinate } } //end function ////////////////////////////////////* //JULIAN ZANE //MARCH 19, 2016 //function takes care of driving around //and trying to find a cube //DOES NOT CONCERN ITSELF IF THE CUBE //IS REAL OR NOT JSUT YET (SEPERATE FUNCTION) //*//////////////////////////////////// //rotate counterclock wise with the speed and angle void rotateCounterClockwise(int speed, int angle) { //change and test numbers accordingly encoder_FrontRightMotor.zero(); //MIGHT HAVE TO AVERAGE THE 4 ENCODER VALUES AND COMPARE THEM TO ANGLE PASSED while (encoder_FrontRightMotor.getRawPosition() > -(9 * angle)) //9 encoder ticks per degree { Serial.print("right encoder:"); Serial.println(encoder_FrontRightMotor.getRawPosition()); servo_FrontLeftMotor.writeMicroseconds(1500 - speed); //forward servo_FrontRightMotor.writeMicroseconds(1500 - speed); //forward servo_BackLeftMotor.writeMicroseconds(1500 - speed); //forward servo_BackRightMotor.writeMicroseconds(1500 - speed); //forward } // if the robot rotates 180 degrees, change the directionality register to // the opposite of whatever it currently is if (angle == 180) { if (current_pos[2] == 1) { current_pos[2] = 0; } else if (current_pos[2] == 0) { current_pos[2] = 1; } } } ////////////////////////////////////////////////* //JULIAN ZANE //MARCH 25, 2016 //FUNCTION STARTS WHEN BOT IS FACING THE SIDE WALL AND STOPPED //RETURNS NOTHING //TAKES NO ARGUMENTS //EXITS INTO INDEXING FUNCTION WHEN LINE TRACKER READS THE FIRST DARK LINE //*//////////////////////////////////////////////// ////////////////////////////////////* //JULIAN ZANE //INITAL CREATION: MARCH 25, 2016 //ROBOT ENTERS FUNCTION WHEN IT DROPS OFF THE CUBE AT HOME AND RETURNS ARM TO "DRIVING POSITION" //RETURNS NOTHING //TAKES NO ARGUMENTS //GENERAL PLAN: //-->ROTATE TO MATCH DIRECTION OF DIRECTIONALITY REGISTER //-->DRIVE IN X AND Y DIRECTIONS UNTIL CURRENT UPDATES MATCH LAST KNOWN POSITION //*//////////////////////////////////// ///////////////////////////////////////////////////** //JULIAN ZANE //INITIAL CREATION: MARCH 25, 2016 //FUNCTION RETURNS NOTHING //FUNCTION TAKES NO ARGUMENT //DRIVES BACKWARDS TO THE EDGE OF THE TRACK AND TURNS AROUND, DUMPING THE CUBE OUTSIDE OF THE TRACK //THEN RETURNING TO IT'S LAST KNOWN POSITION //--> RESUSE CODE FOR THIS PART //ROBOT ENTERS THIS FUNCTION STOPPED AND WITH A CUBE READY TO BE PICKED UP //**//////////////////////////////////////////////////// //ADD SIMILAR CODE AS IN FOWARD() TO REVERSE() TO ALLOW THE ROBOT TO MOVE BACKWARD IN A "STRAIGHT" LINE void veerRight(int speedy, int xDistance) { int slower = speedy - 50; int leftDistance = xDistance + 1; // may need to change the +3 // for veerLeft, the right side motors are operating faster than the left side // this is done until we get to our set x distance away + a small value (2-3cm) // this is used to drive straight and correct the drift for the omniwheels getDistance(); //pingLeft(); while ((distance[2] + distance[3]) / 2 < leftDistance) { //average the two left readings servo_FrontLeftMotor.writeMicroseconds(1500 + speedy); // the difference in the veerRight and left servo_FrontRightMotor.writeMicroseconds(1500); // is the speed of the wheels and the servo_BackLeftMotor.writeMicroseconds(1500); // distance of the left wall to the ultrasonic servo_BackRightMotor.writeMicroseconds(1500 - slower); //pingLeft(); getDistance(); } } void veerLeft(int speedy, int xDistance) { int slower = speedy - 50; int leftDistance = xDistance - 1; // may need to change the +3 // for veerLeft, the right side motors are operating faster than the left side // this is done until we get to our set x distance away + a small value (2-3cm) // this is used to drive straight and correct the drift for the omniwheels getDistance(); //pingLeft(); while ( (distance[2] + distance[3]) / 2 > leftDistance) { servo_FrontLeftMotor.writeMicroseconds(1500); servo_FrontRightMotor.writeMicroseconds(1500 - speedy); servo_BackLeftMotor.writeMicroseconds(1500 + speedy); servo_BackRightMotor.writeMicroseconds(1500); getDistance(); //pingLeft(); } } ///////////////////////////////////////////////////////////////// //JULIAN ZANE //INITIALLY CREATED: MARCH 31, 2016 //FUNCTION TAKES NO ARGUMENTSRETURNS NOTHING, //SERIAL COMM WITH BOARD 2, TO UPDATE distance[] AND GET //"CURRENT" DISTANCE VALUES OF ALL UILTRASONIC SENSORS ///////////////////////////////////////////////////////////////// void getDistance() { ///NOTE: FOR THIS METHOD, WE MAY RUN INTO ERRORS WHERE THJE SERIAL BUFFER IS NOT BEING //CLEARED. AS SUCH, WE MAY BE READING DISTANCE VALUES FROM FAR BACK IN THE FUTURE, OR THE //BUFFER MAY JUST FILL UP ENTIRELY //availabl() returns how many bits are ready to be read from the serial buffer //I assume the way the buffer works is that the bits stay in the buffer //until they are read() gfrom it, then they are cleared, making room for other bits if (Serial.available() > 5) //if there is at least 6 bits in the buffer ready to be read { for (int n = 0; n < 7; n++) { //read the values of each array from the buffer and hope that the two arrays sync up with one another distance[n] = Serial.read(); } //this tries to give warning if the arrays are not synched up, if that is the case, the boards need to be reset //as far as I can tell (march 31, 2016), there is no other way of resynching the serial comm's if (distance[6] != -1) { Serial.println("ERROR! COMMUNICATION ARRAYS NOT SYNCED. PLEASE RESET BOARDS AND TRY AGAIN!"); } } } void extend_arm() { // extend arm so ultrasonic is pointed at first holding spot } void wait_for_cube() // reads to grip ultrasonic to see if robot has come to drop off cube yet { while(1) { if(gripCM < 20) //this means the other robot has come to the loading area break; } } void pick_up_cube() { //extend arm down and grip cube } void go_to_platform() { while(!(whiskers)) // assume whiskers return true when triggered { forward(150); } // may have to reverse a bit more after whiskers are triggered // ^ will be tested experimentally } void place_cube_to_platform() { // extend arm fully upward and release grip } void drive_to_starting_position() { rotateClockwise(150, 90); // should be facing positive y now while(!(whiskers)) { forward(150); } // may have to drive forward more a set distance after this }
66a6d1d64a9c4f7da85da3d7e8d437c50f14e8ad
87eb38731a93809e72388b67f9f607df4ee9148b
/hashes/HasherAdapter.h
8efe7644f867869e4353578e1cb7d2d13e795a66
[]
no_license
Egor2001/hash-lab
c633aff9aa57dd400c41c4b57cbca57076fb8559
4568573017a4b9ed646fbf777ca65c7a3207d981
refs/heads/master
2023-04-06T12:09:51.524406
2021-03-29T19:00:36
2021-03-29T19:00:36
322,920,231
0
0
null
null
null
null
UTF-8
C++
false
false
1,016
h
HasherAdapter.h
#ifndef HASHER_ADAPTER_H_ #define HASHER_ADAPTER_H_ #include <cstdint> #include <string_view> namespace { template<typename THasher> class CHasherAdapter { public: CHasherAdapter() = default; explicit CHasherAdapter(const THasher& hasher): hasher_(hasher) {} explicit CHasherAdapter(THasher&& hasher): hasher_(std::move(hasher)) {} [[nodiscard]] size_t operator()(size_t key) const { return hasher_(reinterpret_cast<const uint8_t*>(&key), sizeof(key)); } [[nodiscard]] size_t operator()(std::string_view key) const { return hasher_(reinterpret_cast<const uint8_t*>(key.data()), key.size()); } template<typename TKey> [[nodiscard]] size_t operator()(const TKey& key) const { return hasher_(reinterpret_cast<const uint8_t*>(&key), sizeof(key)); } private: THasher hasher_; }; } // namespace #endif // HASHER_ADAPTER_H_
25a922bfdf8054144bf0fba88b4f343fe670d2f6
20e040173463c28e5d4210af72cb364375fe15de
/imports/Stack.h
ec6b2e76eae5d92a8f58d8ba0473971813e5b9d9
[]
no_license
joeySchentrup/Map_Project
005eeda2e6639cd1ccf64b6a71651fa01e3cf4ed
522d55393ada20c07e71f0b511fa48e68e9bdc99
refs/heads/master
2021-09-04T10:12:50.458258
2018-01-17T21:47:35
2018-01-17T21:47:35
112,235,965
0
0
null
2018-01-17T20:00:01
2017-11-27T19:00:27
C++
UTF-8
C++
false
false
689
h
Stack.h
#ifndef STACK_H #define STACK_H template < class T > class Stack { private: T array [10]; int pointer; public: Stack() { pointer = 0; }; void push(T object); T pop(); bool isEmpty(); void clear(); }; template < class T > void Stack< T > ::push(T object) { if(!(pointer + 1 == sizeof(array))) array[++pointer] = object; }; template < class T > T Stack < T > ::pop() { return array[pointer--]; }; template < class T > bool Stack < T > ::isEmpty() { return pointer == 0; }; template < class T > void Stack < T > ::clear() { pointer = 0; }; #endif
b1348e3b046e6a935aecba06673ba36c232e3f89
894f0ace214183fd27d2f9cea6dbb9c2074adcbb
/DBCP and SPICi/Experimentation/Codes/Upload/greedy_SPICi.cpp
2019c5b802ca50c3c23ea0526e454d36e68faad6
[]
no_license
talhaibnaziz/research
7c637620a8f8d981c57db5b6535ed4108aaa4f7f
ce0a97a9cf7d892b474cbcfd6ed5f1ee5ec715c8
refs/heads/master
2023-06-04T19:42:42.221331
2021-07-01T05:22:44
2021-07-01T05:22:44
105,381,772
2
0
null
null
null
null
UTF-8
C++
false
false
4,840
cpp
greedy_SPICi.cpp
#include <bits/stdc++.h> using namespace std; int n, m; vector <pair<int,double> > graph[1000]; int clusters[1000]; double cost[1000][1000]; int cluster_cnt; double Ts=0.5, Td=0.0; void take_input() { memset(cost, 0, sizeof cost); cout<<"Enter no of nodes and vertices:"<<endl; cin>>n>>m; cout<<"Enter connecting edges:"<<endl; double max_cost = 0; for(int i=0; i<m; i++) { int u, v; double w; cin>>u>>v>>w; pair <int, double> p; p.first = v; p.second = w; graph[u].push_back(p); p.first = u; graph[v].push_back(p); cost[u][v] = w; cost[v][u] = w; max_cost = max(max_cost, w); } if(max_cost>1) { for(int i=1; i<=n; i++) { for(int j=0; j<graph[i].size(); j++) { graph[i][j].second/=max_cost; cost[i][graph[i][j].first]/=max_cost; } } } } pair <int, double> find_max_wdeg() { int node=-1; double max_wdeg = -1; for(int i=1; i<=n; i++) { if(clusters[i]==-1) { double wdeg = 0; for(int j=0; j<graph[i].size(); j++) { int nxtnode = graph[i][j].first; if(clusters[nxtnode]!=-1) continue; wdeg += graph[i][j].second; } if(wdeg>max_wdeg) { max_wdeg = wdeg; node = i; } } } pair <int, double> ret(node,max_wdeg); return ret; } double density(vector <int> S, int addnode) { if(addnode!=-1) S.push_back(addnode); double ret = 0; double s = S.size(); for(int i=0; i<S.size()-1; i++) for(int j=i+1; j<S.size(); j++) ret += cost[S[i]][S[j]]; if(s>1) ret = ret / (s*(s-1)/2.0); return ret; } double support(int t, vector <int> S) { double ret = 0; for(int i=0; i<S.size(); i++) ret += cost[S[i]][t]; return ret; } void SPICi() { int cnt = 0; //while all nodes not clustered while(cnt<n) { //find max weighted degree of unclustered nodes pair <int,double> p = find_max_wdeg(); int u = p.first; cout<<"max weighted unclustered node: "; cout<<u<<'('<<p.second<<')'<<endl; cluster_cnt++; double cluster_size = 1.0; clusters[u] = cluster_cnt; cnt++; vector <int> S; S.push_back(u); set <int> Candidates; set <int> :: iterator itr; //insert adjacent unclustered nodes into set Candidates for(int j=0; j<graph[u].size(); j++) { int nxtnode = graph[u][j].first; if(clusters[nxtnode]!=-1) continue; Candidates.insert(nxtnode); } while(!Candidates.empty()) { //Find Candidate with maximum support value int t; double max_sup = -1; for(itr=Candidates.begin(); itr!=Candidates.end(); ++itr) { int node = *itr; double sup = support(node, S); cout<<"Candidates are: "<<node<<"=>"<<sup<<endl; if(sup>max_sup) { max_sup = sup; t = node; } } //insert into Set of Candidates or stop expanding cluster cout<<"Working with Candidate: "; cout<<t<<'('<<max_sup<<')'<<endl; //very inefficient but to debug cout<<"condition values: c_size=>"<<cluster_size<<" density=>"<<density(S,-1)<<' '<<density(S,t)<<endl; if(max_sup>=Ts*cluster_size*density(S,-1) && density(S,t)>Td) { S.push_back(t); cluster_size++; cnt++; clusters[t] = cluster_cnt; Candidates.erase(t); for(int j=0; j<graph[t].size(); j++) { int nxtnode = graph[t][j].first; if(clusters[nxtnode]!=-1) continue; Candidates.insert(nxtnode); } cout<<"inserted into cluster: "<<t<<endl; } else break; } } } void print() { cout<<"Cluster Count: "<<cluster_cnt<<endl; cout<<"Nodes and their Clusters:"<<endl; for(int i=1; i<=n; i++) cout<<i<<'('<<clusters[i]<<')'<<endl; } int main() { cluster_cnt = 0; memset(clusters, -1, sizeof clusters); take_input(); SPICi(); print(); return 0; } /* graph input 10 11 1 2 1 1 3 1 1 9 1 1 10 0.4 2 4 1 2 3 1 1 6 0.6 6 5 0.5 6 7 1 6 8 1 7 8 0.4 */
2de2b92f5931b4b7aed3ced05422fc562d892116
f0112b769cde772225d3b7e70f3741caf445cc11
/src/Views/Console/ModelsViews/BoardView.h
be553096f5acba7e8feba31bea1aca02951deb9e
[]
no_license
HectorHernandezMarques/NoobSolitarie
ca449185cd22ff13882fbb2efa7fdedb898c4e6f
195f6f1883c6b00e9322cae927e681aa3e62943f
refs/heads/master
2021-09-25T02:42:26.757528
2018-10-17T10:02:06
2018-10-17T10:02:06
105,853,621
0
0
null
null
null
null
UTF-8
C++
false
false
609
h
BoardView.h
#ifndef VIEWS_CONSOLE_MODELS_BOARDVIEW_H_ #define VIEWS_CONSOLE_MODELS_BOARDVIEW_H_ #include "../../ModelView.h" #include "./FoundationView.h" #include "./TableauView.h" #include "./StockView.h" #include "../../../Models/Board.h" #include "../../../Utils/IO.h" namespace Views { namespace Console { namespace ModelsViews { class BoardView : public ModelView{ private: Models::Board &board; public: BoardView(Models::Board &board); virtual ~BoardView(); void write(); }; } /* namespace ModelsViews */ } /* namespace Console */ } /* namespace Views */ #endif /* VIEWS_CONSOLE_MODELS_BOARDVIEW_H_ */
7b318303ea3168cbd2318d49182bd7cdb95ee8c7
2b9e6917ca8090f56160957d9a5357101dca84ea
/advait_sandbox/point_cloud_ros/src/pcd_read.cpp
d0d82459b6ec874b92034911f81c02ae36e292e1
[]
no_license
wklharry/hrl
8c48aa3cadfb2f501059ef00b13e337ae6883ff0
b2cc6fc19c143ac6dc7f83af02a94c3833820b6e
refs/heads/master
2021-01-13T09:59:01.920618
2015-12-07T21:31:25
2015-12-07T21:31:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
874
cpp
pcd_read.cpp
/* Copied from pcl tutorial. */ #include "pcl/io/pcd_io.h" #include "pcl/point_types.h" int main (int argc, char** argv) { sensor_msgs::PointCloud2 cloud_blob; pcl::PointCloud<pcl::PointXYZ> cloud; if (pcl::io::loadPCDFile ("test_pcd.pcd", cloud_blob) == -1) { ROS_ERROR ("Couldn't read file test_pcd.pcd"); return (-1); } ROS_INFO ("Loaded %d data points from test_pcd.pcd with the following fields: %s", (int)(cloud_blob.width * cloud_blob.height), pcl::getFieldsList (cloud_blob).c_str ()); // Convert to the templated message type point_cloud::fromMsg (cloud_blob, cloud); std::cout << "Size of point cloud:" << cloud.points.size() << std::endl; // for (size_t i = 0; i < cloud.points.size (); ++i) // std::cerr << " " << cloud.points[i].x << " " << cloud.points[i].y << " " << cloud.points[i].z << std::endl; return (0); }
b3274f55025146d24ab9a56fb4ba48f000095e53
814c4f37cc3947d4bab78df781ae81e17d82f50a
/CN1/FileManager.cpp
587ba54948902895b63938c6e6b551bc6ca4ffea
[ "MIT" ]
permissive
HUST432/JetHet
ec7632b0acd13456f431b8c8e4ee091622b4f6bb
7e54abf847664d4d5a6b3387981485346e8aad55
refs/heads/main
2022-12-29T14:37:39.986139
2020-10-15T11:35:43
2020-10-15T11:35:43
303,740,096
0
0
null
null
null
null
UTF-8
C++
false
false
867
cpp
FileManager.cpp
#include "FileManager.h" #include "PreDefinations.h" #include "Buffer.h" #include <fstream> FileManager::FileManager(Configuration& conf):homeDir(conf.homeDir),conf(&conf) { } unsigned long int FileManager::ReadToEnd(string file, Buffer& buffer) { auto loc = locale::global(locale("")); string fullPath = homeDir + file; fullPath = preDef.UrlDecode(fullPath); ifstream fs; wstring str = preDef.string2wstring(fullPath); fs.open(str, ios::binary | ios::in); locale::global(loc); if (!fs) { fs.close(); throw FileNotFoundException(fullPath); } fs.seekg(0, std::ios::end); unsigned long len =(unsigned long) fs.tellg()+1; fs.seekg(0, std::ios::beg); char* buf = new char[len]; fs.read(buf, len); buffer =buffer+Buffer(buf,len); delete[] buf; fs.close(); return len; }
ae612e188cf852e9b01d79c63f2da8e66ffe9700
9931c3c12a4b77e2b09de0ff68e4885f1bcc02e1
/SimG4Core/CustomPhysics/src/G4muDarkBremsstrahlung.cc
1d136dd3222fe7b196443c7298e99be283f07296
[]
no_license
revering/DarkPhoton
ced71333373ac7e6260a90654beec12440574a58
0d601f0b29e1a43227ff47d5276d17abf71e7c41
refs/heads/master
2021-07-13T10:14:31.449511
2020-06-17T19:18:47
2020-06-17T19:18:47
167,438,907
0
0
null
2019-01-24T21:15:37
2019-01-24T21:15:37
null
UTF-8
C++
false
false
1,838
cc
G4muDarkBremsstrahlung.cc
#include "SimG4Core/CustomPhysics/interface/G4muDarkBremsstrahlung.h" #include "G4LossTableManager.hh" using namespace std; G4muDarkBremsstrahlung::G4muDarkBremsstrahlung(const G4String& name): G4VEnergyLossProcess(name), isInitialised(false) { G4int subtype = 63; SetProcessSubType(subtype); SetSecondaryParticle(G4APrime::APrime()); SetIonisation(false); } G4muDarkBremsstrahlung::~G4muDarkBremsstrahlung() {} G4bool G4muDarkBremsstrahlung::IsApplicable(const G4ParticleDefinition& p) { return (&p == G4MuonPlus::MuonPlus() || &p == G4MuonMinus::MuonMinus()); } void G4muDarkBremsstrahlung::InitialiseEnergyLossProcess(const G4ParticleDefinition*, const G4ParticleDefinition*) { if(!isInitialised) { //SetEmModel(new G4muDarkBremsstrahlungModel(),1); //if(!EmModel()) {SetEmModel(new G4muDarkBremsstrahlungModel());} G4VEmFluctuationModel* fm = 0; AddEmModel(0, new G4muDarkBremsstrahlungModel(), fm); //EmModel(0)->SetLowEnergyLimit(MinKinEnergy()); //EmModel(0)->SetHighEnergyLimit(energyLimit); //AddEmModel(1, EmModel(1), fm); isInitialised = true; isEnabled = true; } //EmModel(0)->SetSecondaryThreshold(eth); //EmModel(0)->SetLPMFlag(false); } void G4muDarkBremsstrahlung::PrintInfo() { if(EmModel(1)) { // G4cout << " LPM flag: " << "false " << " for E > " << EmModel(1)->HighEnergyLimit()/GeV<< " GeV"; // G4cout << G4endl; } } void G4muDarkBremsstrahlung::SetMethod(std::string method_in) { ((G4muDarkBremsstrahlungModel*)EmModel(1))->SetMethod(method_in); return; } G4bool G4muDarkBremsstrahlung::IsEnabled() { return isEnabled; } void G4muDarkBremsstrahlung::SetEnable(bool state) { isEnabled = state; return; }
cbcfd5ad8ff6086dc4f165a6fd06063476328cee
ae1298ae7c0e7a053ea6fe778db89cbb9375070c
/Juez/Backtracking/CompraDeLaSemana.cpp
1863e10486dfa1e04b912f0258b0bcd233583283
[]
no_license
KillerKing18/Estructuras-de-Datos-y-Algoritmos
afb283e45bc2bfee09accd2d069dff89b1cca7d1
45f7a0dafb4b3544557f515c1e0efe7cade3bbea
refs/heads/master
2020-03-20T14:20:35.296604
2018-06-15T12:21:15
2018-06-15T12:21:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,587
cpp
CompraDeLaSemana.cpp
#include<iostream> using namespace std; void solveCase(); void supermercados(int k, int n, int m,int sol[], int mejor_caso[], int &coste,int sol_mejor[], int &coste_min, int supers[], int costes[][21], bool &solucion); int main() { solveCase(); return 0; } void solveCase() { int m, num_supers, productos, coste, coste_min; bool solucion; int costes[60][21]; int sol[60]; int sol_mejor[60]; int mejor_caso[60]; // Utilizado en la mejor poda para almacenar el sumatorio del precio minimo de los productos que quedan por comprar int supers[21]; int precio; //int min; // Precio minimo de caulquier producto de cualquier supermercado en la primera poda cin >> m; for (int i = 0; i < m; i++) { cin >> num_supers >> productos; solucion = false; coste = 0; coste_min = 0; for (int j = 0; j < num_supers + 1; j++) supers[j] = 0; for (int l = 1; l < num_supers + 1; l++) { for (int k = 0; k < productos; k++) { cin >> precio; //if (l == 1 && k == 0) //min = precio; //else //if (precio < min) //min = precio; if (l == 1) mejor_caso[k] = precio; else if (precio < mejor_caso[k]) mejor_caso[k] = precio; costes[k][l] = precio; coste_min += precio; } } for (int x = productos - 2; x >= 0; x--) { mejor_caso[x] = mejor_caso[x] + mejor_caso[x + 1]; }// En cada nivel, el array tendra el sumatorio del precio minimo de los productos desde el nivel en el que esta hasta el ultimo nivel supermercados(0, productos, num_supers, sol, mejor_caso, coste, sol_mejor, coste_min, supers, costes, solucion); if (solucion) cout << coste_min << endl; else cout << "Sin solucion factible" << endl; } } void supermercados(int k, int n, int m, int sol[], int mejor_caso[], int &coste, int sol_mejor[], int &coste_min, int supers[], int costes[][21], bool &solucion) { for (int i = 1; i <= m; i++) { if (supers[i] < 3) { sol[k] = i; supers[i]++; coste = coste + costes[k][i]; if (k == n - 1) { // EsValido if (coste < coste_min) { // EsMejorSolucion coste_min = coste; solucion = true; for (int j = 0; j < n; j++) sol_mejor[j] = sol[j]; } } else { //if (coste + (n - (k + 1)) * min < coste_min) // Poda if (coste + mejor_caso[k + 1] < coste_min) // Mejor poda supermercados(k + 1, n, m, sol, mejor_caso, coste, sol_mejor, coste_min, supers, costes, solucion); } supers[i]--; coste = coste - costes[k][i]; } } }
497783362b364efc3426b14d9397ef6a358b1f6b
327c8d0a42e42ffc15284c42078fe5b2e91b7358
/cpp/724.FindPivotIndex/doubleScan.cpp
16d5db3d17e6ccc0dbd8bb7d10a0c34d687df4fa
[]
no_license
HONGJICAI/LeetCode
90f969f1fd5c33ed5d9202e1898019484dd78f00
7170ddea769f9fbcceb1be4d3bad1c4d1fc11db0
refs/heads/master
2021-01-19T09:00:57.302687
2019-06-30T15:25:05
2019-06-30T15:25:05
87,710,391
0
0
null
2020-10-03T09:24:58
2017-04-09T13:26:54
C++
UTF-8
C++
false
false
325
cpp
doubleScan.cpp
class Solution { public: int pivotIndex(vector<int>& nums) { nums.push_back(0); int n=nums.size()-1,i=0,right=accumulate(nums.begin()+1,nums.end(),0),left=0; while(i<n&&left!=right){ left+=nums[i++]; right-=nums[i]; } return left==right&&i<n?i:-1; } };
8ccb101d3f734a065bc6cb4d209199271f7f883c
e7309cf38a690e0d41d99347a5a23adc388a8a3b
/project/synctool/clientsync/Clientsync.cpp
ccf185f01b75f3f8868de8cbca345a3529f8204c
[]
no_license
zhangxiangsong/some_work
ce49e3aaaef5ae5a066c1d1339853c28dccea164
4df7053894f7571bd9a6477dc80809d246fae07c
refs/heads/master
2020-04-06T04:30:10.032253
2016-10-14T05:53:44
2016-10-14T05:53:44
38,622,938
0
0
null
null
null
null
GB18030
C++
false
false
6,263
cpp
Clientsync.cpp
// clientsync.cpp : 定义控制台应用程序的入口点。 // #ifdef WIN32 #include "stdafx.h" #else #include <fcntl.h> #include <signal.h> #include <unistd.h> #endif #include "Clientsync.h" #include <curl/curl.h> #include <time.h> #include "Device_Control.h" #include "SyncControl.h" #include "log.h" #ifdef WIN32 #pragma warning(disable:4099) #endif #ifdef WIN32 #ifdef _DEBUG #define new DEBUG_NEW #endif #endif // 唯一的应用程序对象 #ifdef WIN32 CWinApp theApp; #endif using namespace std; /// 线程是否继续运行 static int running = 0; void sigint_handler(int signalId) { Log_Print0(PRINT_STOR,"all work_thread will over.\n"); curl_global_cleanup(); exit(0); running = 0; } #ifdef WIN32 int _tmain(int argc, TCHAR* argv[], TCHAR* envp[]) { int nRetCode = 0; // 初始化 MFC 并在失败时显示错误 if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0)) { // TODO: 更改错误代码以符合您的需要 _tprintf(_T("错误: MFC 初始化失败\n")); nRetCode = 1; } else { // TODO: 在此处为应用程序的行为编写代码。 } MCD_STR devicefile = MCD_T("E:/work_dir/PQ_E8000/doc/Subject/synctool/bin/devicelist.xml"); #else int main(int argc, char *argv[]) { int nRetCode = 0; if(argc < 2) { return 0; } MCD_STR devicefile = MCD_STR(argv[1]); SetCurrentPath(devicefile); devicefile += MCD_STR("devicelist.xml"); #endif exDeviceControl* mDeviceControl = exDeviceControl::Instance(); if(!mDeviceControl->Load_DeviceFile(devicefile)) { Log_Print1(PRINT_STOR,"load devicelist.xml file failed (%s).\n",MCD_2PCSZ(devicefile)); return nRetCode; } CURLcode code = curl_global_init(CURL_GLOBAL_DEFAULT); if (code != CURLE_OK) { Log_Print0(PRINT_STOR,"curl_global_init failed.\n"); return nRetCode; } running = 1; exSyncTools localSyncTools; localSyncTools.Server_Init(mDeviceControl); localSyncTools.Server_Start(); return nRetCode; } exSyncTools::exSyncTools() { memset(m_threadparam,0,sizeof(ThreadParam)*MAX_THREAD_COUNT); #ifdef WIN32 memset(m_threadgroup,0,sizeof(HANDLE)*MAX_THREAD_COUNT); #else memset(m_threadgroup,0,sizeof(pthread_t)*MAX_THREAD_COUNT); #endif m_fact_workthread_count = 0; } bool exSyncTools::Server_Init(exDeviceControl* devicectrl) { if (!devicectrl) { return false; } size_t max_station_count = devicectrl->GetStation_Count(); int per_thread_dostation_count = devicectrl->GetPerThreadDostationCount(); if (max_station_count % per_thread_dostation_count == 0) { m_fact_workthread_count = max_station_count / per_thread_dostation_count; } else { m_fact_workthread_count = max_station_count / per_thread_dostation_count + 1; } if (m_fact_workthread_count > MAX_THREAD_COUNT) { m_fact_workthread_count = MAX_THREAD_COUNT; } RemoteStationList stationlist; devicectrl->GetStationList(stationlist); if (max_station_count != stationlist.size()) { return false; } for (size_t i = 0 ; i < stationlist.size() ; i++) { m_deviceinfo_list[i/per_thread_dostation_count].push_back(stationlist[i]); } /// 创建线程 #ifdef WIN32 for (int i = 0 ; i < m_fact_workthread_count ; i++) { m_threadparam[i].pthis = this; m_threadparam[i].index = i; m_threadgroup[i] = DelCreateThread(NULL,0,WorkThread,&m_threadparam[i],0,0); if (m_threadgroup[i] == INVALID_HANDLE_VALUE) { Log_Print0(PRINT_STOR,"create work_thread failed.\n"); return false; } } #else for (int i = 0 ; i < m_fact_workthread_count ; i++) { m_threadparam[i].pthis = this; m_threadparam[i].index = i; if (pthread_create(&m_threadgroup[i],NULL,WorkThread,&m_threadparam[i]) != 0) { Log_Print0(PRINT_STOR,"create work_thread failed.\n"); return false; } } #endif return true; } bool exSyncTools::Server_Start() { Log_Print0(PRINT_STOR,"synctools server begin.\n"); #ifdef WIN32 Sleep(INFINITE); #else signal(SIGINT,sigint_handler); for (int i = 0 ; i < m_fact_workthread_count ; i++) { int error = 0; if ((error = pthread_join(m_threadgroup[i],NULL)) != 0) { Log_Print2(PRINT_STOR,"wait work_thread over failed,error code : %d ,work_thread (index : %d).\n",error,i); } } #endif return true; } #define BUFFER_SIZE 1024*80 #ifdef WIN32 DWORD exSyncTools::WorkThread( PVOID pArg ) #else void* exSyncTools::WorkThread( void* pArg ) #endif { ThreadParam* threadParam = (ThreadParam*)pArg; exSyncTools* pthis = (exSyncTools*)threadParam->pthis; RemoteStationList localstationlist; localstationlist.assign(pthis->m_deviceinfo_list[threadParam->index].begin(),pthis->m_deviceinfo_list[threadParam->index].end()); int count = 0; int default_circle = exDeviceControl::Instance()->GetCheckCircle(); const int buffer_size = 1024*80; char* buffer = new char[buffer_size]; memset(buffer,0,buffer_size); while(running) { Log_Print1(PRINT_ONLY,"[work_thread %d ] beg sync event and history data.\n",threadParam->index); time_t begtime; time(&begtime); CURL* mCurlcontrol = curl_easy_init(); if (mCurlcontrol == NULL) { continue; } for (size_t i = 0 ; i < localstationlist.size() ; i++) { for (int m = 0 ; m < localstationlist[i].device_count ; m++) { RemoteDevice& remote_device = localstationlist[i].device_list[m]; DeviceInfo deviceinfo; deviceinfo.ip = remote_device.device_ip; deviceinfo.port = remote_device.virtualport; deviceinfo.device_name = remote_device.device_name; deviceinfo.local_name = remote_device.local_name; deviceinfo.local_name += MCD_T("/"); exSyncControl syncobj(deviceinfo,MANAGER_EVENT); syncobj.DeviceSync(mCurlcontrol,buffer,buffer_size); syncobj.SetHandleMode(MANAGER_STATI); syncobj.DeviceSync(mCurlcontrol,buffer,buffer_size); TMSleep(100); ///< sleep 100ms } } Log_Print2(PRINT_ONLY,"[work_thread %d ] end sync event and history data(%.6d).\n",threadParam->index,count++); curl_easy_cleanup(mCurlcontrol); mCurlcontrol = NULL; time_t endtime; time(&endtime); /// 同步一遍耗时多少s int alltime = int(endtime - begtime); if (alltime < default_circle) { TSleep(default_circle - alltime); } } delete [] buffer; Log_Print1(PRINT_ONLY,"[work_thread %d ] normal over.\n",threadParam->index); return 0; }
9e0f6d019fc50251f7ae66e753104080f18c09c7
aee7d21690aa925262a1beaa68ba730c9b96e39a
/test/SamplePlatformer/Tiles/TileStone.cpp
26e73a4e5dcf0f6d505d9974563b83bb3e4356e5
[]
no_license
powanjuanshu/glowy2d
8dc153fc22cf00898cb1a8e2055186900d0db5d1
0d6633e2a3255da583c5948d9d760053ea7ad302
refs/heads/master
2020-03-26T10:43:36.833942
2017-01-03T23:51:47
2017-01-03T23:51:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
234
cpp
TileStone.cpp
#include "TileStone.h" namespace game { bool TileStone::isSolid() const { return true; } bool TileStone::isTextureSet() const { return true; } std::string TileStone::textureName() const { return "Tiles/stone.png"; } }
f3dbd018902049b5fbd40e36317aa864a709ead1
61f81f1d0c79a06ea7acfbfabd8c76bd4a5355e0
/OpenWAM/Source/1DPipes/LaxWendroff.hpp
e168f2241f04f1e6e12d4f699751f6482fa6d074
[]
no_license
Greeeder/Program
8e46d46fea6afd61633215f4e8f6fd327cc0731f
b983df23d18a7d05a7fab693e7a9a3af067d48a5
refs/heads/master
2020-05-21T22:15:32.244096
2016-12-02T08:38:05
2016-12-02T08:38:08
63,854,561
3
0
null
null
null
null
UTF-8
C++
false
false
8,977
hpp
LaxWendroff.hpp
/* --------------------------------------------------------------------------------*\ ==========================| \\ /\ /\ // O pen | OpenWAM: The Open Source 1D Gas-Dynamic Code \\ | X | // W ave | \\ \/_\/ // A ction | CMT-Motores Termicos / Universidad Politecnica Valencia \\/ \// M odel | ---------------------------------------------------------------------------------- License This file is part of OpenWAM. OpenWAM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OpenWAM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenWAM. If not, see <http://www.gnu.org/licenses/>. \*--------------------------------------------------------------------------------*/ /*! * \file LaxWendroff.hpp * \author Francisco Jose Arnau <farnau@mot.upv.es> * \author Luis Miguel Garcia-Cuevas Gonzalez <luiga12@mot.upv.es> * * \section LICENSE * * This file is part of OpenWAM. * * OpenWAM is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * OpenWAM is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OpenWAM. If not, see <http://www.gnu.org/licenses/>. * * \section DESCRIPTION * This file declares a Lax Wendroff finite-differences integrator for * one-dimensional pipes. */ #ifndef LaxWendroff_hpp #define LaxWendroff_hpp #include "TPipe.hpp" #include "PipeMethod.hpp" #include "Math_wam.h" /*! * \brief A Lax Wendroff integrator. * * \author L.M. García-Cuevas <luiga12@mot.upv.es> * * A two-steps Lax Wendroff integrator. It is second order-accurate in both * time and space. */ class TLaxWendroff: public TPipeMethod { protected: RowVector Fhi12; ///< Internal heat transfer coefficient at half time-step. RowVector Frho12; ///< Density at half time-step. [kg / m ** 3] RowVector FRe12; ///< Reynolds number at half time-step. RowVector FTWPipe12; ///< Wall temperature at half time-step. [K] RowVector FGamma12; ///< Heat capacities ratio at half time-step. RowVector FR12; ///< Gas constant at half time-step. [J / (kg * K)] RowVector FGamma1_12; ///< Gamma - 1. RowVector FDerLinArea_12; ///< Area derivative at half time-step. [m] RowVector FArea_12; ///< Area at half cell. [m ** 2] RowVector FQint_12; ///< Heat transfer at half cell [W] RowVector FFric_12; ///< Friction coefficient at half cell [-] RowArray Fx1; RowArray Fx2; RowArray Fx3; RowArray Fx4; RowArray Fx1_12; RowArray Fx2_12; RowArray Fx3_12; RowArray Fx4_12; RowArray FW; ///< Flux vector; RowArray FUY; RowArray FY; RowArray FUY_12; RowArray FWY; RowArray FVY; RowArray FV1; ///< Source terms due to area. RowArray FV2; ///< Source terms due to friction and heat. RowArray FU_12; ///< State vector at half time-step. RowArray FW_12; ///< Flux vector at half time-step. RowArray FV1_12; ///< Source terms due to area at half time-step. RowArray FV2_12; ///< Source terms due to friction and heat at half time-step. /*! * \brief Computes the maximum allowable time-step. * * \author L.M. García-Cuevas <luiga12@mot.upv.es> */ virtual void ComputeMaxTimeStep(); public: /*! * \brief Default constructor. * * \author L.M. García-Cuevas <luiga12@mot.upv.es> * * Initialises the propagator with default values. */ TLaxWendroff(); /*! * \brief Constructor. * * \author L.M. García-Cuevas <luiga12@mot.upv.es> * * Initialises the propagator and attaches it to a pipe. * * \param pipe Pipe to attach to. */ TLaxWendroff(const Pipe_ptr & pipe); /*! * \brief Destructor. * * \author L.M. García-Cuevas <luiga12@mot.upv.es> * \date 2016/03/22 * * Destructs the object. * */ virtual ~TLaxWendroff(); /*! * \brief Computes the flux vector. * * \author L.M. García-Cuevas <luiga12@mot.upv.es> * * \param U State vector. * \param W Flux vector. * \param Gamma Specific heat capacities ratio. * \param Gamma1 Specific heat capacities ratio minus 1. */ void ComputeFlux(const RowArray & U, RowArray & W, const RowVector & Gamma, const RowVector & Gamma1); /*! * \brief Computes the source terms due to area change. * * \author L.M. García-Cuevas <luiga12@mot.upv.es> * * \param U State vector. * \param V Source terms. * \param A Area. [m ** 2] * \param Gamma1 Gamma - 1. */ void ComputeSource1(const RowArray & U, RowArray & V, const RowVector & A, const RowVector & Gamma1); /*! * \brief Computes the source terms due to friction and heat transfer. * * \author L.M. García-Cuevas <luiga12@mot.upv.es> * * \param U State vector. * \param V Source terms. * \param A Area. [m ** 2] * \param q Heat transfer [W] * \param f Friction coefficient [-] */ void ComputeSource2(const RowArray & U, RowArray & V, const RowVector & A, const RowVector &q, const RowVector &f); /*! * \brief Connects the Lax Wendroff integrator to a pipe. * * \author L.M. García-Cuevas <luiga12@mot.upv.es> * * \param pipe Pipe to connect to. */ virtual void Connect(const Pipe_ptr & pipe); /*! * \brief Returns the already computed fluxes between nodes. * * \author L.M. García-Cuevas <luiga12@mot.upv.es> * * \return Fluxes between nodes. */ virtual RowArray getFluxes() const; /*! * \brief Integrates one time-step without updating the state vector. * * \author L.M. García-Cuevas <luiga12@mot.upv.es> * \date 2016/03/15 */ virtual void IntegrateWithoutUpdating(); /*! * \brief Integrate the flow. * * \author L.M. García-Cuevas <luiga12@mot.upv.es> * * Integrates the flow evolution inside the duct. */ virtual void Solve(); /*! * \brief Integrates the central nodes of the pipe. * * \author L.M. García-Cuevas <luiga12@mot.upv.es> */ void SolveCentralNodes(); void SolveCentralNodesSpecies(); /*! * \brief Sets the state vector. * * \author L.M. García-Cuevas <luiga12@mot.upv.es> * * Sets the state vector with a given pressure, temperature and flow speed. * * \param p Pressure. [Pa] * \param T Temperature. [K] * \param u Flow speed. [m / s] */ virtual void setPTU(double p, double T, double u); /*! * \brief Sets the state vector in a given cell. * * \author L.M. García-Cuevas <luiga12@mot.upv.es> * * Sets the state vector with a given pressure, temperature and flow speed, * but only for a given cell. * * \param p Pressure. [Pa] * \param T Temperature. [K] * \param u Flow speed. [m / s] * \param i Cell number. */ virtual void setPTU(double p, double T, double u, unsigned int i); /*! * \brief Sets the updated state vector in a given cell. * * \author L.M. García-Cuevas <luiga12@mot.upv.es> * * Sets the updated state vector with a given pressure, temperature and flow speed, * but only for a given cell. * * \param p Pressure. [Pa] * \param T Temperature. [K] * \param u Flow speed. [m / s] * \param i Cell number. */ virtual void setPTU1(double p, double T, double u, unsigned int i); /*! * \brief Sets the state vector. * * \author L.M. García-Cuevas <luiga12@mot.upv.es> * * Sets the state vector with a given pressure, temperature and flow speed, * one set of values for each node/cell. * * \param p Pressure. [Pa] * \param T Temperature. [K] * \param u Flow speed. [m / s] */ void setPTU(const RowVector& p, const RowVector& T, const RowVector& u); /*! * \brief Updates the composition (to do). * * \author F.J. Arnau (farnau@mot.upv.es) * \date 18/05/2016 */ virtual void UpdateComposition(){}; /*! * \brief Updates the flow variables with the current state vector values. * * \author L.M. García-Cuevas <luiga12@mot.upv.es> */ virtual void UpdateFlowVariables(); /*! * \brief Updates R, gamma and company. * * \author L.M. García-Cuevas <luiga12@mot.upv.es> */ virtual void UpdateGasProperties(); }; /*! * \brief Sets TLaxWendroff as the computational method for a pipe. * * \author L.M. García-Cuevas <luiga12@mot.upv.es> * * \param pipe Pipe that will be computed using a TGodunov object. */ void use_laxwendroff(const Pipe_ptr & pipe); #endif
5ccefd6f77f88781e54ee0dd1a85b94d53f4327c
450f7be4dca55a6d06505684d954c5a65757bd58
/include/Compucolor/Smc5027/ISmc5027Emulator.h
e745078a945ecb46f9b5d3b4de1e1dfb58a45589
[ "MIT" ]
permissive
nathanmentley/cc2emulator
5abb563a4f1c68052e64bd3ff9221badf0d9dbf3
2eccca0ab7a8f306d21a2516106ef687d2b8e065
refs/heads/main
2023-05-08T03:26:14.175292
2021-05-28T18:19:14
2021-05-28T18:19:14
298,163,056
0
0
null
null
null
null
UTF-8
C++
false
false
1,128
h
ISmc5027Emulator.h
#pragma once #include <Compucolor/Common/IEmulatable.h> #include <Compucolor/Common/IInputDevice.h> #include <Compucolor/Common/IOutputDevice.h> #include <Compucolor/Common/IResetable.h> #include <Compucolor/Common/IPlugin.h> namespace Compucolor::Smc5027 { /** * @brief * @note * @retval None */ class ISmc5027Emulator: public Common::IPlugin, public Common::IEmulatable, public Common::IInputDevice, public Common::IOutputDevice, public Common::IResetable { public: /** * @brief * @note * @retval None */ virtual ~ISmc5027Emulator() {} /** * @brief * @note * @retval */ virtual uint8_t GetCursorX() = 0; /** * @brief * @note * @retval */ virtual uint8_t GetCursorY() = 0; /** * @brief * @note * @retval */ virtual uint8_t FirstDisplayRow() = 0; }; }
b90e1053acd3d6640fdfc5c72e0feb0b069cd012
2b7cd629d53d8e3b6009574e11f395301e156ca0
/COMMON/SRC/SOC/HD64465_MS_V1/WAVEDEV/wavepdd.cpp
2a0471565fc03512b65e02f782979ac4a39cdced
[]
no_license
zizilala/projects_etest
8b6a5782b9e2f6c1c05e508356a7f835dce29d92
84fa95bd0017b06dfbf15b861c179d4d8da1a475
refs/heads/master
2020-12-30T11:14:52.899545
2014-03-13T09:54:27
2014-03-13T09:54:27
15,964,924
1
0
null
null
null
null
UTF-8
C++
false
false
9,203
cpp
wavepdd.cpp
// // Copyright (c) Microsoft Corporation. All rights reserved. // // // Use of this sample source code is subject to the terms of the Microsoft // license agreement under which you licensed this sample source code. If // you did not accept the terms of the license agreement, you are not // authorized to use this sample source code. For the terms of the license, // please see the license agreement between you and Microsoft or, if applicable, // see the LICENSE.RTF on your install media or the root of your tools installation. // THE SAMPLE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES. // /* Copyright(c) 1998,1999 Renesas Technology Corp. Module Name: wavepdd.cpp Revision History: 26th April 1999 Released */ // Functions: // PDD_AudioGetInterruptType // PDD_AudioMessage // PDD_AudioInitialize // PDD_AudioDeinitialize // PDD_AudioPowerHandler // PDD_WaveProc #include <windows.h> #include <types.h> #include <memory.h> #include <excpt.h> #include <waveddsi.h> #include <wavedbg.h> #include <mmsystem.h> #include "wavepdd.h" #include "waveOutpdd.h" #include "waveInpdd.h" #include "cc.h" //#include "oalintr.h" BOOL g_fInUse; // TRUE when in/out in use PWAVEFORMATEX g_pwfx[2]; PCM_TYPE g_pcmtype[2]; /***************************************************************************** * FUNCTION : PDD_AudioGetInterruptType * DESCRIPTION : decodes type of audio interrupt * INPUTS : None * OUTPUTS : interrupt type * DESIGN NOTES : * CAUTIONS : returned value contains both audio-in and -out states *****************************************************************************/ AUDIO_STATE PDD_AudioGetInterruptType( VOID ) { // An audio interrupt has occured. We need to tell the MDD who owns it // and what state that puts us in. // // Note: return value represents both an audio-in and an audio-out state // (AUDIO_STATE stores audio-in and audio-out in separate nybbles) return (private_AudioInGetInterruptType() & AUDIO_STATE_IN_MASK) | (private_AudioOutGetInterruptType() & AUDIO_STATE_OUT_MASK) ; } /***************************************************************************** * FUNCTION : PDD_AudioInitialize * DESCRIPTION : intializes system for audio-in and audio-out * INPUTS : None * OUTPUTS : TRUE * DESIGN NOTES : tries to initialize the other, even if one fails * CAUTIONS : *****************************************************************************/ BOOL PDD_AudioInitialize( DWORD dwIndex ) { BOOL inSuccess, outSuccess; // BOOL outSuccess; FUNC_WPDD("+PDD_AudioInitialize"); inSuccess = private_AudioInInitialize(); outSuccess = private_AudioOutInitialize(false); g_fInUse = false; FUNC_WPDD("-PDD_AudioInitialize"); return inSuccess && outSuccess; } /***************************************************************************** * FUNCTION : PDD_AudioPowerHandler * DESCRIPTION : power-down/power-up (after power-down) for audio-in/out * INPUTS : TRUE means power down, FALSE means power up * OUTPUTS : None * DESIGN NOTES : * CAUTIONS : *****************************************************************************/ VOID PDD_AudioPowerHandler( BOOL power_down ) { private_AudioOutPowerHandler( power_down ); } /***************************************************************************** * FUNCTION : PDD_AudioMessage * DESCRIPTION : Handle any custom WAVEIN or WAVEOUT messages here * INPUTS : None * OUTPUTS : None * DESIGN NOTES : * CAUTIONS : *****************************************************************************/ DWORD PDD_AudioMessage( UINT uMsg, DWORD dwParam1, DWORD dwParam2 ) { return(MMSYSERR_NOTSUPPORTED); } /***************************************************************************** * FUNCTION : PDD_AudioDeinitialize * DESCRIPTION : Reset audio devices to original state * INPUTS : None * OUTPUTS : None * DESIGN NOTES : * CAUTIONS : *****************************************************************************/ VOID PDD_AudioDeinitialize( VOID ) { FUNC("+PDD_AudioDeinitialize"); private_AudioInDeinitialize(); private_AudioOutDeinitialize(false); FUNC("-PDD_AudioDeinitialize"); } MMRESULT private_WaveGetDevCaps( WAPI_INOUT apidir, PVOID pCaps, UINT wSize ) { PWAVEOUTCAPS pwc = (PWAVEOUTCAPS)pCaps; MMRESULT mmRet = MMSYSERR_NOERROR; FUNC_WPDD("+PDD_WaveGetDevCaps"); if (pCaps == NULL) { return(MMSYSERR_NOERROR); } pwc->wMid = MM_MICROSOFT; pwc->wPid = (apidir == WAPI_OUT ? 24 : 23); // generic in or out... pwc->vDriverVersion = 0x0001; wsprintf (pwc->szPname, TEXT("Audio (%hs)"), __DATE__); pwc->dwFormats = WAVE_FORMAT_1M08 | WAVE_FORMAT_1M16 | WAVE_FORMAT_1S08 | WAVE_FORMAT_1S16 | WAVE_FORMAT_2M08 | WAVE_FORMAT_2M16 | WAVE_FORMAT_2S08 | WAVE_FORMAT_2S16 | WAVE_FORMAT_4M08 | WAVE_FORMAT_4M16 | WAVE_FORMAT_4S08 | WAVE_FORMAT_4S16; pwc->wChannels = 2; if (apidir == WAPI_OUT) { pwc->dwSupport = WAVECAPS_VOLUME; } FUNC_WPDD("-PDD_WaveGetDevCaps"); return(mmRet); } MMRESULT PDD_WaveProc( WAPI_INOUT apidir, DWORD dwCode, DWORD dwParam1, DWORD dwParam2 ) { MMRESULT mmRet = MMSYSERR_NOERROR; switch (dwCode) { case WPDM_CLOSE: if (apidir == WAPI_IN) private_WaveInClose(); else private_WaveOutClose(); break; case WPDM_CONTINUE: if (apidir == WAPI_IN) private_WaveInContinue((PWAVEHDR) dwParam1); else private_WaveOutContinue((PWAVEHDR) dwParam1); break; case WPDM_GETDEVCAPS: mmRet = private_WaveGetDevCaps(apidir, (PVOID) dwParam1, (UINT) dwParam2); break; case WPDM_OPEN: if (apidir == WAPI_IN) mmRet = private_WaveInOpen((LPWAVEFORMATEX) dwParam1, (BOOL) dwParam2); else mmRet = private_WaveOutOpen((LPWAVEFORMATEX) dwParam1, (BOOL) dwParam2); break; case WPDM_STANDBY: if (apidir == WAPI_IN) private_WaveInStandby(); else private_WaveOutStandby(); break; case WPDM_START: if (apidir == WAPI_IN) private_WaveInStart((PWAVEHDR) dwParam1); else private_WaveOutStart((PWAVEHDR) dwParam1); break; case WPDM_STOP: if (apidir == WAPI_IN) private_WaveInStop(); else private_WaveOutStop(); break; case WPDM_PAUSE: if (apidir == WAPI_OUT) private_WaveOutPause(); else mmRet = MMSYSERR_NOTSUPPORTED; break; case WPDM_ENDOFDATA: if (apidir == WAPI_OUT) private_WaveOutEndOfData(); else mmRet = MMSYSERR_NOTSUPPORTED; break; case WPDM_RESTART: if (apidir == WAPI_OUT) private_WaveOutRestart((PWAVEHDR) dwParam1); else mmRet = MMSYSERR_NOTSUPPORTED; break; case WPDM_GETVOLUME: *((PULONG) dwParam1) = private_AudioGetVolume(); break; case WPDM_SETVOLUME: private_AudioSetVolume( (ULONG) dwParam1 ); break; default : mmRet = MMSYSERR_NOTSUPPORTED; break; } return(mmRet); } // ----------------------------------------------------------------------------- // Debugging aid... // ----------------------------------------------------------------------------- void PrintBuffer(short* pbuf) { PRINTMSG(1, (TEXT("\r\n-------------Print Buffer @0x%08X\r\n"), pbuf)); } /***************************************************************************** * FUNCTION : FreeAllocatedVirtualMemory * DESCRIPTION : Returns allocated virtual memory to operating system * INPUTS : Virtual address returned by VirtualAlloc * Size of region to reserved by VirtualAlloc * OUTPUTS : None * DESIGN NOTES : * CAUTIONS : *****************************************************************************/ VOID FreeAllocatedVirtualMemory( PBYTE virtualAddress ) { if( virtualAddress ) VirtualFree((PVOID)virtualAddress, 0, MEM_RELEASE); } /***************************************************************************** * FUNCTION : GetVirtualAddressOfUncachedMemory * DESCRIPTION : Associates virtual addr with physical memory region * INPUTS : Physical adddress of memory region (page aligned) * Size of region to be reserved * String identifying point of invocation (for error msgs) * OUTPUTS : Virtual address associated (or NULL, if failure occurs) * DESIGN NOTES : * CAUTIONS : *****************************************************************************/ extern "C" PBYTE GetVirtualAddressOfUncachedMemory( PBYTE physicalAddress, DWORD size, char* callerID) { PBYTE virtualAddress; #define here "GetVirtualAddressOfUncachedMemory" FUNC(here); if ((ULONG)physicalAddress % PAGE_SIZE) { ERRMSG2((TEXT(here "%s: Physical Addr (0x%x) Not Page-Aligned\r\n")), callerID, physicalAddress); } virtualAddress = (PBYTE)VirtualAlloc( NULL, size, MEM_RESERVE, PAGE_NOACCESS); if (virtualAddress == NULL) { ERRMSG1((TEXT(here "%s: Virtual Alloc Failed\r\n")), callerID); return NULL; } if (!VirtualCopy((PVOID) virtualAddress, (PVOID) physicalAddress, size, PAGE_READWRITE | PAGE_NOCACHE)) { ERRMSG1((TEXT(here "%s: Virtual Copy Failed\r\n")), callerID); FreeAllocatedVirtualMemory( virtualAddress ); return NULL; } return virtualAddress; }
8274bbbba88cb418af3edaf039c23558db475c0e
bb426c9347726f8de9779c1e6d13441abd925028
/src/frontend/gui.cpp
9b728099869f9a3a1d8b9c50822c1ddf3f1e9e8a
[]
no_license
luisclaudio26/renderer2.0
6458751c393c03a8f1c469e8b66d687e958e2e65
3d0628756c97442feaff6662299633c001bab644
refs/heads/master
2021-09-14T11:29:49.508621
2018-05-12T21:36:43
2018-05-12T21:36:43
123,207,853
0
0
null
null
null
null
UTF-8
C++
false
false
3,870
cpp
gui.cpp
#include "../include/frontend/gui.h" #include <nanogui/button.h> #include <nanogui/layout.h> #include <iostream> #include "../3rdparty/json.hpp" #include "../include/core/sceneloader.h" #include "../include/core/integrator.h" #include <fstream> GUI::GUI() : nanogui::Screen(Eigen::Vector2i(100, 100), "Andaluz renderer", false) { using namespace nanogui; // TODO: disable window resizeability so we won't have // to deal with buffer reallocation Window* window = new Window(this, "Options"); window->setPosition(Vector2i(0, 0)); window->setLayout(new GroupLayout()); performLayout(); // TODO: initFromFiles is looking for path relative to the // first .cpp that is including gui.h. Report to github?! shader.initFromFiles("passthrough", "../include/frontend/passthrough.vs", "../include/frontend/passthrough.fs"); // upload the triangles we'll use to draw onto Eigen::MatrixXf quad(2, 6); quad.col(0)<<-1.0f, -1.0f; //lower triangle quad.col(1)<<+1.0f, -1.0f; quad.col(2)<<+1.0f, +1.0f; quad.col(3)<<-1.0f, -1.0f; //upper triangle quad.col(4)<<+1.0f, +1.0f; quad.col(5)<<-1.0f, +1.0f; Eigen::MatrixXf uv(2, 6); uv.col(0)<<0.0f, 1.0f; //lower triangle uv.col(1)<<1.0f, 1.0f; uv.col(2)<<1.0f, 0.0f; uv.col(3)<<0.0f, 1.0f; //upper triangle uv.col(4)<<1.0f, 0.0f; uv.col(5)<<0.0f, 0.0f; shader.bind(); shader.uploadAttrib<Eigen::MatrixXf>("pos", quad); shader.uploadAttrib<Eigen::MatrixXf>("uv_vertex", uv); // --------- initialize renderer ----------- //read input file std::fstream in( "../data/cornellbox.json" ); nlohmann::json j; in >> j; //load data SceneLoader loader; loader.load_scene_from_json( j ); this->integrator = Integrator::load_from_json( j ); //preprocess scene loader.generate_scene(this->scene); scene.preprocess(); // --------- set GUI parameters ---------- //resize according to scene this->setSize( Eigen::Vector2i(scene.cam->hRes, scene.cam->vRes) ); // initialize color_buffer in CPU int n_pixels = this->width() * this->height(); color_buffer_cpu.resize(n_pixels); for(Eigen::Vector4f &p : color_buffer_cpu) p<<0.1f, 0.1f, 0.1f, 1.0f; // initialize texture which will hold image glGenTextures(1, &color_buffer_gpu); glBindTexture(GL_TEXTURE_2D, color_buffer_gpu); glTexStorage2D(GL_TEXTURE_2D, 1, GL_RGBA8, this->width(), this->height()); }; void GUI::drawContents() { //---------- request samples --------- std::vector<float> samples; integrator->render(scene, samples, this->width(), this->height()); this->push_samples(samples); //---------- displaying ---------- shader.bind(); glActiveTexture(GL_TEXTURE0); glBindTexture(GL_TEXTURE_2D, color_buffer_gpu); //TODO: SegFault comes from this call! Problem with color_buffer_cpu?? glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, this->width(), this->height(), GL_RGBA, GL_FLOAT, (void*)color_buffer_cpu.data()); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); shader.setUniform("color_buffer", 0); shader.drawArray(GL_TRIANGLES, 0, 6); } void GUI::draw(NVGcontext *ctx) { Screen::draw(ctx); } void GUI::push_samples(std::vector<float>& pixel_data) { static int n_samples = 0; n_samples++; RGBA *rgba_data = reinterpret_cast<RGBA*>(pixel_data.data()); // to compute the average: // (a1 + a2 + ... + an) / n // avg * n + (an+1) / (n+1) for(int i = 0; i < pixel_data.size(); i += 4) { RGBA new_sample; new_sample<<pixel_data[i], pixel_data[i+1], pixel_data[i+2], pixel_data[i+3]; RGBA &p = color_buffer_cpu[i/4]; p = ( (n_samples-1.0f) * p + new_sample) / n_samples; } //color_buffer_cpu = std::vector<RGBA>(rgba_data, rgba_data + pixel_data.size() / 4); }
550688c568e91b2cd9cb808da41bbf7c1ab5136e
fb6d75545c90f41021f8fad7d638087a3881e53f
/Problem1.cpp
1f12c9ca27b405569c8c39fd6d1d43c3207143a1
[]
no_license
prateekdesai04/Competitive-Coding-7
4d933718514803ec69b41e8e696639037a823b11
fa994a785dfdd8719e5803494d89494d459ccdd6
refs/heads/master
2023-06-21T04:42:07.945614
2021-07-13T17:37:56
2021-07-13T17:37:56
385,678,675
0
0
null
null
null
null
UTF-8
C++
false
false
960
cpp
Problem1.cpp
// Time Complexity : O(n log k) // Space Complexity : O(1) // Did this code successfully run on Leetcode : Yes // Any problem you faced while coding this : No // K-th smallest element in a matrix #include<vector> #include<iostream> using namespace std; class Solution { public: int kthSmallest(vector<vector<int>>& matrix, int k) { int n = matrix.size(); int low = matrix[0][0]; int high = matrix[n-1][n-1]; int mid, count, temp; while (low < high) { mid = low + (high - low) / 2; temp = n - 1; count = 0; for (int i = 0; i < n; i++) { // check number of elements smallert than mid and count while (temp >= 0 && matrix[i][temp] > mid) temp--; count += temp + 1; } if (count < k) low = mid + 1; else high = mid; } return low; } };
bcfe63c83d752d1c2a552f4db4cc708b5fe01fed
111219da37854d0099922e3ef697a7fc9df346c3
/Source/Amaranth/AmaranthGameMode.cpp
d18f49bf5447a47aa78c761e203ec589b4aa616e
[]
no_license
Samhayne/Amaranth
93fa31b8020a0fe2b36d3c44c3e84d0d07f94f3e
73f8c5d7f78982605478c4b82da50ea4858e1440
refs/heads/master
2021-01-10T15:31:27.158808
2015-08-16T21:06:15
2015-08-16T21:06:15
36,551,719
0
0
null
null
null
null
UTF-8
C++
false
false
461
cpp
AmaranthGameMode.cpp
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved. #include "Amaranth.h" #include "AmaranthGameMode.h" #include "AmaranthCharacter.h" AAmaranthGameMode::AAmaranthGameMode() { // set default pawn class to our Blueprinted character static ConstructorHelpers::FClassFinder<APawn> PlayerPawnBPClass(TEXT("/Game/ThirdPerson/Blueprints/ThirdPersonCharacter")); if (PlayerPawnBPClass.Class != NULL) { DefaultPawnClass = PlayerPawnBPClass.Class; } }
84da1fa626b12c9f08c0c8702ae224da27896027
c1720c81612dbd512dce413618d3cd246faa0a74
/Tools/Src/CreatorIDE/EngineAPI/App/AppStateEditor.cpp
540b8bddb1c48bdcd6010748cf9043a3ad018f8e
[ "MIT" ]
permissive
moltenguy1/deusexmachina
307ba62a863034437cd77a6599c191ffe8ae953c
134f4ca4087fff791ec30562cb250ccd50b69ee1
refs/heads/master
2021-01-23T21:35:42.122378
2012-10-03T23:33:16
2012-10-03T23:33:16
35,931,317
2
0
null
null
null
null
UTF-8
C++
false
false
6,463
cpp
AppStateEditor.cpp
#include "AppStateEditor.h" //#include <Story/Quests/QuestSystem.h> //#include <Story/Dlg/DlgSystem.h> //#include <UI/UISystem.h> //#include <UI/IngameScreen.h> #include <Events/EventManager.h> #include <Time/TimeServer.h> #include <Loading/LoaderServer.h> //???unload level here? #include <Game/GameServer.h> #include <Audio/AudioServer.h> #include <Gfx/GfxServer.h> #include <AI/AIServer.h> #include <Physics/PhysicsServer.h> #include <Input/InputServer.h> #include <Input/Events/MouseBtnDown.h> #include <Input/Events/MouseBtnUp.h> #include <particle/nparticleserver.h> #include <particle/nparticleserver2.h> #include <scene/nsceneserver.h> #include <App/CIDEApp.h> //!!!now only for click cb! namespace App { ImplementRTTI(App::CAppStateEditor, App::CStateHandler); //ImplementFactory(App::CAppStateEditor); CAppStateEditor::CAppStateEditor(CStrID StateID): CStateHandler(StateID), RenderDbgAI(false), RenderDbgPhysics(false), RenderDbgGfx(false), RenderDbgEntities(false) { PROFILER_INIT(profCompleteFrame, "profMangaCompleteFrame"); PROFILER_INIT(profParticleUpdates, "profMangaParticleUpdates"); PROFILER_INIT(profRender, "profMangaRender"); } //--------------------------------------------------------------------- CAppStateEditor::~CAppStateEditor() { } //--------------------------------------------------------------------- void CAppStateEditor::OnStateEnter(CStrID PrevState, PParams Params) { // Loaded from db, not reset. TimeMgr now auto-reset timers if can't load them. //TimeSrv->ResetAll(); TimeSrv->Update(); GameSrv->PauseGame(); RenderDbgPhysics = false; RenderDbgGfx = false; //InputSrv->EnableContext(CStrID("Game")); InputSrv->EnableContext(CStrID("Editor")); SUBSCRIBE_INPUT_EVENT(MouseBtnDown, CAppStateEditor, OnMouseBtnDown, Input::InputPriority_Raw); SUBSCRIBE_INPUT_EVENT(MouseBtnUp, CAppStateEditor, OnMouseBtnUp, Input::InputPriority_Raw); SUBSCRIBE_PEVENT(ToggleGamePause, CAppStateEditor, OnToggleGamePause); SUBSCRIBE_PEVENT(ToggleRenderDbgAI, CAppStateEditor, OnToggleRenderDbgAI); SUBSCRIBE_PEVENT(ToggleRenderDbgPhysics, CAppStateEditor, OnToggleRenderDbgPhysics); SUBSCRIBE_PEVENT(ToggleRenderDbgGfx, CAppStateEditor, OnToggleRenderDbgGfx); SUBSCRIBE_PEVENT(ToggleRenderDbgScene, CAppStateEditor, OnToggleRenderDbgScene); SUBSCRIBE_PEVENT(ToggleRenderDbgEntities, CAppStateEditor, OnToggleRenderDbgEntities); } //--------------------------------------------------------------------- void CAppStateEditor::OnStateLeave(CStrID NextState) { UNSUBSCRIBE_EVENT(MouseBtnDown); UNSUBSCRIBE_EVENT(MouseBtnUp); UNSUBSCRIBE_EVENT(ToggleGamePause); UNSUBSCRIBE_EVENT(ToggleRenderDbgAI); UNSUBSCRIBE_EVENT(ToggleRenderDbgPhysics); UNSUBSCRIBE_EVENT(ToggleRenderDbgGfx); UNSUBSCRIBE_EVENT(ToggleRenderDbgScene); UNSUBSCRIBE_EVENT(ToggleRenderDbgEntities); //InputSrv->DisableContext(CStrID("Game")); InputSrv->DisableContext(CStrID("Editor")); } //--------------------------------------------------------------------- CStrID CAppStateEditor::OnFrame() { PROFILER_START(profCompleteFrame); bool Running = true; TimeSrv->Update(); GfxSrv->Trigger(); EventMgr->ProcessPendingEvents(); //QuestSys->Trigger(); //DlgSys->Trigger(); AudioSrv->BeginScene(); GameSrv->OnFrame(); AudioSrv->EndScene(); PROFILER_START(profParticleUpdates); nParticleServer::Instance()->Trigger(); nParticleServer2::Instance()->SetTime(TimeSrv->GetTime()); nParticleServer2::Instance()->Trigger(); PROFILER_STOP(profParticleUpdates); PROFILER_START(profRender); if (GfxSrv->BeginRender()) { GfxSrv->Render(); //UISys->Render(); if (RenderDbgGfx) GfxSrv->RenderDebug(); if (RenderDbgPhysics) PhysicsSrv->RenderDebug(); if (RenderDbgEntities) GameSrv->RenderDebug(); if (RenderDbgAI) AISrv->RenderDebug(); GfxSrv->EndRender(); } PROFILER_STOP(profRender); //!!!to some method of memory/core server! nMemoryStats memStats = n_dbgmemgetstats(); CoreSrv->SetGlobal<int>("MemHighWaterSize", memStats.highWaterSize); CoreSrv->SetGlobal<int>("MemTotalSize", memStats.totalSize); CoreSrv->SetGlobal<int>("MemTotalCount", memStats.totalCount); // Editor window receives window messages outside the frame, so clear input here, not in the beginning InputSrv->Trigger(); PROFILER_STOP(profCompleteFrame); return (Running) ? GetID() : APP_STATE_EXIT; } //--------------------------------------------------------------------- bool CAppStateEditor::OnMouseBtnDown(const Events::CEventBase& Event) { if (!CIDEApp->MouseCB) FAIL; const Event::MouseBtnDown& Ev = ((const Event::MouseBtnDown&)Event); CIDEApp->MouseCB(Ev.X, Ev.Y, (int)Ev.Button, Down); OK; } //--------------------------------------------------------------------- bool CAppStateEditor::OnMouseBtnUp(const Events::CEventBase& Event) { if (!CIDEApp->MouseCB) FAIL; const Event::MouseBtnUp& Ev = ((const Event::MouseBtnUp&)Event); CIDEApp->MouseCB(Ev.X, Ev.Y, (int)Ev.Button, Up); OK; } //--------------------------------------------------------------------- bool CAppStateEditor::OnToggleGamePause(const Events::CEventBase& Event) { GameSrv->ToggleGamePause(); OK; } //--------------------------------------------------------------------- bool CAppStateEditor::OnToggleRenderDbgAI(const Events::CEventBase& Event) { RenderDbgAI = !RenderDbgAI; OK; } //--------------------------------------------------------------------- bool CAppStateEditor::OnToggleRenderDbgPhysics(const Events::CEventBase& Event) { RenderDbgPhysics = !RenderDbgPhysics; OK; } //--------------------------------------------------------------------- bool CAppStateEditor::OnToggleRenderDbgGfx(const Events::CEventBase& Event) { RenderDbgGfx = !RenderDbgGfx; OK; } //--------------------------------------------------------------------- bool CAppStateEditor::OnToggleRenderDbgScene(const Events::CEventBase& Event) { nSceneServer::Instance()->SetRenderDebug(!nSceneServer::Instance()->GetRenderDebug()); OK; } //--------------------------------------------------------------------- bool CAppStateEditor::OnToggleRenderDbgEntities(const Events::CEventBase& Event) { RenderDbgEntities = !RenderDbgEntities; OK; } //--------------------------------------------------------------------- } // namespace Application
6708b65a1daf4bcba28830613059b6ce9292e714
76ecc74a460bc6f6856ebd7397b13a5754dc8da2
/1st task/Makefile1/zing.cpp
57ff200c4f73c0e0d7057ae524e68e81348a9394
[]
no_license
marialymperaiou/Operating-systems
d006b9a69bd6c5b6ec8c4845c621ed3d867afaaf
d32176466c2af2a0872ff9502d767961fb9f391f
refs/heads/master
2021-01-01T15:22:43.795985
2018-04-29T14:06:00
2018-04-29T14:06:00
97,607,195
0
0
null
null
null
null
UTF-8
C++
false
false
54
cpp
zing.cpp
#include "zing.h" int main(){ zing(); return 0; }
97262b78c1cc3155a0fddfca29a2ea4c81f7a963
4a51cbfd9605b19464e003d3615b1d02680a5942
/Projects/Vulkan06_VKProject/src/graphics/include/VulkanSwapChain.hpp
42c423a11231451a117ebea963a2405ebb4571a1
[]
no_license
robmcrosby/FelixEngine
9fa57f2ff2232c58a019ad168ad884f086370d64
3a6ab3128f2afad429adc4504e76f3596dd5e98a
refs/heads/master
2023-01-11T20:50:30.529861
2022-12-29T02:15:19
2022-12-29T02:15:19
43,473,021
2
0
null
2018-09-28T04:30:33
2015-10-01T01:43:40
C
UTF-8
C++
false
false
1,694
hpp
VulkanSwapChain.hpp
#include <VulkanTypes.hpp> #include <VulkanImage.hpp> #ifndef VulkanSwapChain_hpp #define VulkanSwapChain_hpp #define MAX_FRAMES_IN_FLIGHT 2 class SDL_Window; class VulkanSwapChain { private: VulkanDevice* mDevice; SDL_Window* mSdlWindow; VkSurfaceKHR mVkSurface; VkSwapchainKHR mVkSwapChain; uint32_t mImageCount; uint32_t mCurrentFrame; VulkanImagePtr mPresentImage; VkSurfaceFormatKHR mVkSurfaceFormat; VkPresentModeKHR mVkPrsentMode; public: VulkanSwapChain(VulkanDevice* device); ~VulkanSwapChain(); void setToWindow(SDL_Window *window); VkSurfaceCapabilitiesKHR getVkSurfaceCapabilities() const; VkSurfaceFormats getVkSurfaceFormats() const; VkPresentModes getVkPresentModes() const; VkSurfaceFormatKHR pickSurfaceFormat() const; VkPresentModeKHR pickPresentMode() const; uint32_t pickImageCount() const; VkExtent2D getExtent() const; uint32_t frames() const {return !mPresentImage ? 0 : mPresentImage->frames();} VulkanImagePtr getPresentImage(); int getNextFrame(VkSemaphore semaphore); int getNextFrame(VulkanFrameSyncPtr frameSync); void presentFrame(uint32_t frame, VkSemaphore semaphore, VulkanQueuePtr queue); void presentFrame(VulkanFrameSyncPtr frameSync, VulkanQueuePtr queue); void rebuild(); void destroy(); private: void createSwapChain(); VkSwapchainKHR createVkSwapChain( VkSurfaceFormatKHR surfaceFormat, VkPresentModeKHR presentMode, uint32_t imageCount, VkExtent2D extent, VkSwapchainKHR oldSwapchain ) const; void destroySwapChain(); void destroySurface(); }; #endif /* VulkanSwapChain_hpp */
9e4e7906ee6b313e7e883f0768cc7aa897aa7ce4
d8886fd1f5e39d655325b2eee0d47fbc79d23039
/CS551A2/CS551A2LoopDependency.cpp
c7a41f096b07ce75c2eda11d63e8f69928999df9
[]
no_license
mld55/cs551
1db21bc048d44b87a1a480341ad4d7d883a00716
a4cecc7810735695ef03c74289097ab5ee3ee47c
refs/heads/master
2021-01-01T17:48:01.200584
2012-03-16T14:35:17
2012-03-16T14:35:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
28,080
cpp
CS551A2LoopDependency.cpp
#define DEBUG_TYPE "cs551a1" #include "llvm/Module.h" #include "llvm/Pass.h" #include "llvm/PassSupport.h" #include "llvm/Type.h" #include "llvm/ADT/DenseSet.h" #include "llvm/ADT/FoldingSet.h" #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/Statistic.h" #include "llvm/Analysis/AliasAnalysis.h" #include "llvm/Analysis/LoopInfo.h" #include "llvm/Analysis/LoopPass.h" #include "llvm/Analysis/ScalarEvolution.h" #include "llvm/Support/Allocator.h" #include "llvm/Support/Debug.h" #include "llvm/Support/raw_ostream.h" // IMPL {{{ #include "llvm/Instructions.h" #include "llvm/Operator.h" #include "llvm/Analysis/ScalarEvolutionExpressions.h" #include "llvm/Analysis/ValueTracking.h" #include "llvm/Assembly/Writer.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Target/TargetData.h" // IMPL }}} #include <sstream> #include <fstream> using namespace llvm; namespace { /* class Assignment2 { enum DirectionType { LT, EQ, GT, STAR }; struct DirectionV { std::vector<DirectionType> dir; }; struct DistanceV { std::vector<int> distance; }; bool isSeparable(Subscript* S); bool isZIV(Subscript* S); bool isSIV(Subscript* S); bool isMIV(Subscript* S); DirectionV *getDirectionVector(Subscript* S); DistanceV *getDistanceVector(Subscript* S); void partition(std::vector<Subscript*> S, std::vector< std::vector<Subscript*> > *P, int *nP); void delta_test(std::vector<Subscript*> &subscripts, std::vector<DirectionV*> *DVset, std::vector<DistanceV*> *dVset); }; */ class CS551A2 : public LoopPass { public: struct Affine { /// contains the loop index coefficient, or 1 int coefficient; const Value *index; /// contains the constant added to the operand above, or 0 int constant; }; struct Subscript { const Affine *A; const Affine *B; }; public: // BEGIN COPY-PASTE {{{ /// TODO: doc enum DependenceResult { Independent = 0, Dependent = 1, Unknown = 2 }; enum DependenceType { True = 0, Anti = 1, Output = 2}; /// DependencePair - Represents a data dependence relation between to memory /// reference instructions. struct DependencePair : public FastFoldingSetNode { Value *A; Value *B; DependenceResult Result; bool Type[3]; DependencePair(const FoldingSetNodeID &ID, Value *a, Value *b) : FastFoldingSetNode(ID), A(a), B(b), Result(Unknown) { Type[True] = false; Type[Anti] = false; Type[Output] = false; } }; /// findOrInsertDependencePair - Return true if a DependencePair for the /// given Values already exists, false if a new DependencePair had to be /// created. The third argument is set to the pair found or created. bool findOrInsertDependencePair(Value*, Value*, DependencePair*&); /// getLoops - Collect all loops of the loop nest L in which /// a given SCEV is variant. void getLoops(const SCEV*, DenseSet<const Loop*>*) const; /// isLoopInvariant - True if a given SCEV is invariant in all loops of the /// loop nest starting at the innermost loop L. bool isLoopInvariant(const SCEV*) const; /// isAffine - An SCEV is affine with respect to the loop nest starting at /// the innermost loop L if it is of the form A+B*X where A, B are invariant /// in the loop nest and X is a induction variable in the loop nest. bool isAffine(const SCEV*) const; Affine* getAffine(const Value *); /// TODO: doc bool isZIVPair(const SCEV*, const SCEV*) const; bool isSIVPair(const SCEV*, const SCEV*) const; DependenceResult analyseZIV(const SCEV*, const SCEV*) const; DependenceResult analyseSIV(const SCEV*, const SCEV*) const; DependenceResult analyseMIV(const SCEV*, const SCEV*) const; DependenceResult analyseSubscript(const SCEV*, const SCEV*) const; DependenceResult analysePair(DependencePair*); void getMemRefInstrs(const Loop *, SmallVectorImpl<Instruction*> &); Value *getPointerOperand(Value *); const SCEV *getZeroSCEV(ScalarEvolution *); bool isMemRefInstr(const Value *); bool isLoadOrStoreInst(Value *); bool isDependencePair(const Value *A, const Value *B); bool depends(Value *, Value *); AliasAnalysis::AliasResult underlyingObjectsAlias(AliasAnalysis *, const Value *, const Value *); void PrintLoopInfo(raw_ostream &OS, CS551A2 *, const Loop*); void partition(); // END COPY-PASTE }}} static char ID; public: CS551A2() : LoopPass(ID) {} virtual bool runOnLoop(Loop *LP, LPPassManager &LPM); virtual void print(raw_ostream &O, const Module *M) const; virtual void releaseMemory(); virtual void getAnalysisUsage(AnalysisUsage&) const; private: FoldingSet<DependencePair> Pairs; BumpPtrAllocator PairAllocator; AliasAnalysis *AA; /*! @brief Contains the Scalar Evaluator */ ScalarEvolution *SE; LoopInfo *LI; Loop *L; /* store vertices and edges of dependency graph */ std::set<std::string> vertices; SmallVector<std::string, 8> edges; }; } // I do not understand what this does; // it is just copy-and-pasted from the example :-( char CS551A2::ID = 0; static RegisterPass<CS551A2> X("cs551a2", "Loop Dependency Magick"); void CS551A2::partition() { // S := set(subscript pairs) // P[out] := set(separable or minimal coupled) // Np := len(P) } void CS551A2::print(raw_ostream &O, const Module *M) const { O << "hello, I am a CS551a2 module\n"; // we have to throw away the const qualifier in order // to get back into the function graph where everything // is NOT declared "const". We have no control over the // signature of _this_ function because it is coming from LoopPass CS551A2 *nonConst = (CS551A2*)this; nonConst->PrintLoopInfo(O, nonConst, this->L); } ////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////// /* INITIALIZE_PASS_BEGIN(LoopDependenceAnalysis, "lda", "Loop Dependence Analysis", false, true) INITIALIZE_PASS_DEPENDENCY(ScalarEvolution) INITIALIZE_AG_DEPENDENCY(AliasAnalysis) INITIALIZE_PASS_END(LoopDependenceAnalysis, "lda", "Loop Dependence Analysis", false, true) char LoopDependenceAnalysis::ID = 0; */ //===----------------------------------------------------------------------===// // Utility Functions //===----------------------------------------------------------------------===// bool CS551A2::isMemRefInstr(const Value *V) { const Instruction *I = dyn_cast<const Instruction>(V); return I && (I->mayReadFromMemory() || I->mayWriteToMemory()); } void CS551A2::getMemRefInstrs(const Loop *L, SmallVectorImpl<Instruction*> &Memrefs) { for (Loop::block_iterator b = L->block_begin(), be = L->block_end(); b != be; ++b) for (BasicBlock::iterator i = (*b)->begin(), ie = (*b)->end(); i != ie; ++i) if (isMemRefInstr(i)) Memrefs.push_back(i); } /*! @brief Decides if the presented Value is a Load or Store instruction. */ bool CS551A2::isLoadOrStoreInst(Value *I) { // Returns true if the load or store can be analyzed. Atomic and volatile // operations have properties which this analysis does not understand. if (LoadInst *LI = dyn_cast<LoadInst>(I)) return LI->isUnordered(); else if (StoreInst *SI = dyn_cast<StoreInst>(I)) return SI->isUnordered(); return false; } /*! @brief Returns the pointer operand of the given Load or Store instruction. If you provide an instruction that is neither a Load or Store, you'll be sorry. */ Value * CS551A2::getPointerOperand(Value *I) { if (LoadInst *i = dyn_cast<LoadInst>(I)) return i->getPointerOperand(); if (StoreInst *i = dyn_cast<StoreInst>(I)) return i->getPointerOperand(); llvm_unreachable("Value is no load or store instruction!"); // Never reached. return 0; } AliasAnalysis::AliasResult CS551A2::underlyingObjectsAlias(AliasAnalysis *AA, const Value *A, const Value *B) { const Value *aObj = GetUnderlyingObject(A); const Value *bObj = GetUnderlyingObject(B); return AA->alias(aObj, AA->getTypeStoreSize(aObj->getType()), bObj, AA->getTypeStoreSize(bObj->getType())); } const SCEV * CS551A2::getZeroSCEV(ScalarEvolution *SE) { return SE->getConstant(Type::getInt32Ty(SE->getContext()), 0L); } //===----------------------------------------------------------------------===// // Dependence Testing //===----------------------------------------------------------------------===// bool CS551A2::findOrInsertDependencePair(Value *A, Value *B, DependencePair *&P) { void *insertPos = 0; FoldingSetNodeID id; id.AddPointer(A); id.AddPointer(B); P = this->Pairs.FindNodeOrInsertPos(id, insertPos); if (P) return true; P = new (PairAllocator)DependencePair(id, A, B); this->Pairs.InsertNode(P, insertPos); return false; } /*! @brief Gets the Loops where "S" is a Loop invariant, returning the answer in "Loops". */ void CS551A2::getLoops(const SCEV *S, DenseSet<const Loop*>* Loops) const { // Refactor this into an SCEVVisitor, if efficiency becomes a concern. for (const Loop *L = this->L; L != 0; L = L->getParentLoop()) { if (!SE->isLoopInvariant(S, L)) { Loops->insert(L); } } } bool CS551A2::isLoopInvariant(const SCEV *S) const { DenseSet<const Loop*> loops; getLoops(S, &loops); return loops.empty(); } bool CS551A2::isAffine(const SCEV *S) const { const SCEVAddRecExpr *rec = dyn_cast<SCEVAddRecExpr>(S); bool invar = isLoopInvariant(S); DEBUG(dbgs() << "SCEV[" << *S << "]:isLoopInvariant? " << invar << "\n"); bool isAddRecExpr = NULL != rec; DEBUG(dbgs() << "SCEV[" << *S << "]:isAndRecExpr? " << isAddRecExpr << "\n"); bool isAffine = (rec && rec->isAffine()); DEBUG(dbgs() << "SCEV[" << *S << "]:is SE Affine? " << isAffine << "\n"); bool result = (invar || isAffine); DEBUG(dbgs() << "::isAffine(" << *S << ") <- " << result << "\n"); return result; } CS551A2::Affine* CS551A2::getAffine(const Value *V) { /// use a tmp because we are going to reassign it a lot const Value *tmpV = V; Affine* result = new Affine; result->coefficient = 1; result->constant = 0; while (NULL != tmpV) { const Instruction *bI = dyn_cast<const Instruction>(tmpV); if (! bI) { dbgs() << "getAffine bottomed out on " << *tmpV << "\n"; break; } dbgs() << "switching on " << *bI << "\n"; if (const SExtInst *sext = dyn_cast<const SExtInst>(tmpV)) { dbgs() << "sign-ext!\n"; tmpV = sext->getOperand(0); } else if (const AddOperator *addOp = dyn_cast<const AddOperator>(tmpV)) { const Value *op1 = addOp->getOperand(0); const Value *op2 = addOp->getOperand(1); dbgs() << "add! OP("<< *op1 << "),OP(" << *op2 << ")\n"; /// kill the iteration unless we figure something out tmpV = NULL; bool nextOp1 = false; bool nextOp2 = false; if (const ConstantInt *ci = dyn_cast<const ConstantInt>(op1)) { dbgs() << "op1 is constant: " << *ci << "\n"; result->constant = ci->getLimitedValue(); } else if (const MulOperator *mulOp = dyn_cast<const MulOperator>(op1)) { dbgs() << "op1 is a mult" << *mulOp <<"\n"; nextOp1 = true; } else if (const LoadInst *li = dyn_cast<const LoadInst>(op1)) { dbgs() << "op1 is loaded" << *li <<"\n"; nextOp1 = true; } if (const ConstantInt *ci = dyn_cast<const ConstantInt>(op2)) { dbgs() << "op2 is constant: " << *ci << "\n"; result->constant = ci->getLimitedValue(); } else if (const MulOperator *mulOp = dyn_cast<const MulOperator>(op2)) { dbgs() << "op2 is a mult" << *mulOp <<"\n"; nextOp2 = true; } else if (const LoadInst *li = dyn_cast<const LoadInst>(op2)) { dbgs() << "op2 is loaded" << *li <<"\n"; nextOp2 = true; } if (nextOp1 && !nextOp2) { dbgs() << "Looks like we'll proceed with op1\n"; tmpV = op1; } else if (!nextOp1 && nextOp2) { dbgs() << "Looks like we'll proceed with op2\n"; tmpV = op2; } } else if (const MulOperator *mulOp = dyn_cast<const MulOperator>(tmpV)) { const Value *op1 = mulOp->getOperand(0); const Value *op2 = mulOp->getOperand(1); dbgs() << "multiply! OP("<< *op1 << "),OP(" << *op2 << ")\n"; /// my kingdom for a lambda here :-( /// kill the iteration unless we figure something out tmpV = NULL; bool nextOp1 = false; bool nextOp2 = false; if (const ConstantInt *ci = dyn_cast<const ConstantInt>(op1)) { dbgs() << "op1 is constant: " << *ci << "\n"; result->coefficient = ci->getLimitedValue(); } else if (const AddOperator *addOp = dyn_cast<const AddOperator>(op1)) { dbgs() << "op1 is an add" << *addOp <<"\n"; nextOp1 = true; } else if (const LoadInst *li = dyn_cast<const LoadInst>(op1)) { dbgs() << "op1 is loaded" << *li <<"\n"; nextOp1 = true; } if (const ConstantInt *ci = dyn_cast<const ConstantInt>(op2)) { dbgs() << "op2 is constant: " << *ci << "\n"; result->coefficient = ci->getLimitedValue(); } else if (const AddOperator *addOp = dyn_cast<const AddOperator>(op2)) { dbgs() << "op2 is an add" << *addOp <<"\n"; nextOp2 = true; } else if (const LoadInst *li = dyn_cast<const LoadInst>(op2)) { dbgs() << "op2 is loaded" << *li <<"\n"; nextOp2 = true; } if (nextOp1 && !nextOp2) { dbgs() << "Looks like we'll proceed with op1\n"; tmpV = op1; } else if (!nextOp1 && nextOp2) { dbgs() << "Looks like we'll proceed with op2\n"; tmpV = op2; } } else if (const LoadInst *li = dyn_cast<const LoadInst>(tmpV)) { const Value *theVar = li->getOperand(0); dbgs() << "Victory, we hit a memory inst with " << *li << " with variable: "<< *theVar << "\n\n"; result->index = theVar; tmpV = NULL; } else { dbgs() << "Sorry, I don't know what to make of " << *tmpV << "\n"; tmpV = NULL; } } if (result->index) { return result; } else { /// we didn't find an index variable, so not affine return NULL; } } bool CS551A2::isZIVPair(const SCEV *A, const SCEV *B) const { DEBUG(dbgs() << "isZIVPair(" << *A << "," << *B << ") ...\n"); bool result; result = isLoopInvariant(A) && isLoopInvariant(B); DEBUG(dbgs() << "isZIVPair(" << *A << "," << *B << ") <- " << result << "\n"); return result; } bool CS551A2::isSIVPair(const SCEV *A, const SCEV *B) const { DenseSet<const Loop*> loops; getLoops(A, &loops); getLoops(B, &loops); return loops.size() == 1; } CS551A2::DependenceResult CS551A2::analyseZIV(const SCEV *A, const SCEV *B) const { assert(isZIVPair(A, B) && "Attempted to ZIV-test non-ZIV SCEVs!"); return A == B ? Dependent : Independent; } CS551A2::DependenceResult CS551A2::analyseSIV(const SCEV *A, const SCEV *B) const { return Unknown; // TODO: Implement. } CS551A2::DependenceResult CS551A2::analyseMIV(const SCEV *A, const SCEV *B) const { return Unknown; // TODO: Implement. } CS551A2::DependenceResult CS551A2::analyseSubscript(const SCEV *A, const SCEV *B) const { DEBUG(dbgs() << "\n\nTesting subscript: A(" << *A << "), B(" << *B << ")\n"); if (A == B) { DEBUG(dbgs() << " -> [D] same SCEV\n"); return Dependent; } if (!isAffine(A)) { DEBUG(dbgs() << " -> [?] A is not affine\n"); return Unknown; } if (!isAffine(B)) { DEBUG(dbgs() << " -> [?] B is not affine\n"); return Unknown; } if (isZIVPair(A, B)) return analyseZIV(A, B); if (isSIVPair(A, B)) return analyseSIV(A, B); return analyseMIV(A, B); } static bool isStrongSIV(CS551A2::Subscript *S) { if (S->A->index != S->B->index) { dbgs() << "Not SIV due to differing indices\n"; return false; } bool result = S->A->coefficient == S->B->coefficient; return result; } /// This *might* be safe to just implement as !isStrong(S) static bool isWeakSIV(CS551A2::Subscript *S) { if (S->A->index != S->B->index) { dbgs() << "Not SIV due to differing indices\n"; return false; } bool result = S->A->coefficient != S->B->coefficient; return result; } /* /// This makes no sense, given that a zero-coefficient /// means it is just "+C" and thus doesn't /// fit into our model of Affine static bool isWeakZeroSIV(CS551A2::Subscript *S) { if (S->A->index != S->B->index) { dbgs() << "Not SIV due to differing indices\n"; return false; } bool result = (S->A->coefficient != 0 && 0 == S->B->coefficient) || (S->A->coefficient == 0 && 0 != S->B->coefficient); return result; } */ CS551A2::DependenceResult CS551A2::analysePair(DependencePair *P) { DEBUG(dbgs() << "Analysing:\n" << *P->A << "\n" << *P->B << "\n"); // We only analyse loads and stores but no possible memory accesses by e.g. // free, call, or invoke instructions. if (!isLoadOrStoreInst(P->A) || !isLoadOrStoreInst(P->B)) { DEBUG(dbgs() << "--> [?] no load/store\n"); return Unknown; } Value *aPtr = getPointerOperand(P->A); Value *bPtr = getPointerOperand(P->B); switch (underlyingObjectsAlias(AA, aPtr, bPtr)) { case AliasAnalysis::MayAlias: case AliasAnalysis::PartialAlias: // We can not analyse objects if we do not know about their aliasing. DEBUG(dbgs() << "---> [?] may alias\n"); return Unknown; case AliasAnalysis::NoAlias: // If the objects noalias, they are distinct, accesses are independent. DEBUG(dbgs() << "---> [I] no alias\n"); return Independent; case AliasAnalysis::MustAlias: break; // The underlying objects alias, test accesses for dependence. } /// GEP is a Get Element Ptr instruction const GEPOperator *aGEP = dyn_cast<GEPOperator>(aPtr); const GEPOperator *bGEP = dyn_cast<GEPOperator>(bPtr); if (!aGEP || !bGEP) return Unknown; DEBUG(dbgs() << "GEP-A := " << *aGEP << "\n" << "GEP-B := " << *bGEP << "\n"); // FIXME: Is filtering coupled subscripts necessary? // Collect GEP operand pairs (FIXME: use GetGEPOperands from BasicAA), adding // trailing zeroes to the smaller GEP, if needed. const SCEV *SCEV_ZERO = getZeroSCEV(SE); for(GEPOperator::const_op_iterator aIdx = aGEP->idx_begin(), aEnd = aGEP->idx_end(), bIdx = bGEP->idx_begin(), bEnd = bGEP->idx_end(); aIdx != aEnd && bIdx != bEnd; aIdx += (aIdx != aEnd), bIdx += (bIdx != bEnd)) { const Value *aValue = *aIdx; const Value *bValue = *bIdx; DEBUG(dbgs() << "aIdx := " << *aValue << "\tType:" << *(aValue->getType()) << "\n"); const SCEV* aSCEV = (aIdx != aEnd) ? SE->getSCEV(*aIdx) : SCEV_ZERO; DEBUG(dbgs() << "bIdx := " << *bValue << "\tType:" << *(bValue->getType()) << "\n"); const SCEV* bSCEV = (bIdx != bEnd) ? SE->getSCEV(*bIdx) : SCEV_ZERO ; if (aSCEV == SCEV_ZERO && bSCEV == SCEV_ZERO) { DEBUG(dbgs() << "skipping this round because both SCEV are ZERO\n"); continue; } DEBUG(dbgs() << "SCEV-A := " << *aSCEV << "\n" << "SCEV-B := " << *bSCEV << "\n"); if (SE->isLoopInvariant(aSCEV, this->L)) { dbgs() << "Hey, aSCEV is loop-invariant\n"; } if (SE->isLoopInvariant(bSCEV, this->L)) { dbgs() << "Hey, bSCEV is loop-invariant\n"; } const Affine *aAffine; const Affine *bAffine; if (aSCEV != SCEV_ZERO) { if ((aAffine = getAffine(aValue))) { dbgs() << "Successfully affined aValue := " << aAffine->coefficient << aAffine->index->getName() << "+" << aAffine->constant << "\n"; } } if (bSCEV != SCEV_ZERO) { if ((bAffine = getAffine(bValue))) { dbgs() << "Successfully affined bValue := " << bAffine->coefficient << bAffine->index->getName() << "+" << bAffine->constant << "\n"; } } // assuming both are same variable if (dyn_cast<StoreInst>(P->A) && dyn_cast<StoreInst>(P->B)) { dbgs()<<"both A and B store: output dependence\n"; P->Type[Output] = true; } else if (dyn_cast<StoreInst>(P->A) && dyn_cast<LoadInst>(P->B)) { dbgs()<<"A stores and B loads: "; if (aAffine->coefficient < bAffine->coefficient || aAffine->constant < bAffine->constant) { dbgs()<<"anti dependence "; P->Type[Anti] = true; } if (aAffine->coefficient > bAffine->coefficient || aAffine->constant > bAffine->constant) { dbgs()<<"true dependence "; P->Type[True] = true; } dbgs()<<"\n"; } else if (dyn_cast<LoadInst>(P->A) && dyn_cast<StoreInst>(P->B)) { dbgs()<<"A loads and B stores: "; if (bAffine->coefficient < aAffine->coefficient || bAffine->constant < aAffine->constant) { dbgs()<<"anti dependence "; P->Type[Anti] = true; } if (bAffine->coefficient > aAffine->coefficient || bAffine->constant > aAffine->constant) { dbgs()<<"true dependence "; P->Type[True] = true; } dbgs()<<"\n"; } /* add necessary vertices and edges to dependency graph */ std::string v1, v2; raw_string_ostream OS1(v1); raw_string_ostream OS2(v2); OS1 << *(P->A); OS2 << *(P->B); v1 = "\"" + v1 + "\""; v2 = "\"" + v2 + "\""; vertices.insert(v1); vertices.insert(v2); std::string edge; std::string label; if (P->Type[True]) label = label + "ẟ"; if (P->Type[Anti]) { if (label.length() > 0) { label = label + ","; } label = label + "ẟ(-1)"; } if (P->Type[Output]) { if (label.length() > 0) { label = label + ","; } label = label + "ẟ(0)"; } edge = edge + v1 + "->" + v2; edge = edge + " [label=\"" + label + "\"];\n"; edges.push_back(edge); Subscript *sub; if (aAffine && bAffine) { sub = new Subscript; sub->A = aAffine; sub->B = bAffine; if (sub->A->index == sub->B->index) { dbgs() << "Delta(" << sub->A->index->getName() << ")=" << (sub->B->constant - sub->A->constant) << "\n"; dbgs() << "Strong? " << ::isStrongSIV(sub) << "\n"; dbgs() << "Weak? " << ::isWeakSIV(sub) << "\n"; return Dependent; } else { return Independent; } } } // We successfully analysed all subscripts but failed to prove independence. return Dependent; } bool CS551A2::depends(Value *A, Value *B) { assert(isDependencePair(A, B) && "Values form no dependence pair!"); DependencePair *p; if (!findOrInsertDependencePair(A, B, p)) { switch (p->Result = analysePair(p)) { case Dependent: errs() << "DPair("<< *A <<","<< *B <<") is Dependent\n"; break; case Independent: errs() << "DPair("<< *A <<","<< *B <<") is IN-dependent\n"; break; case Unknown: errs() << "DPair("<< *A <<","<< *B <<") is UNKNOWN\n"; break; } } return p->Result != Independent; } //===----------------------------------------------------------------------===// // LoopDependenceAnalysis Implementation //===----------------------------------------------------------------------===// bool CS551A2::runOnLoop(Loop *L, LPPassManager &) { this->L = L; AA = &getAnalysis<AliasAnalysis>(); SE = &getAnalysis<ScalarEvolution>(); DEBUG(this->dump()); return false; } void CS551A2::releaseMemory() { Pairs.clear(); PairAllocator.Reset(); } void CS551A2::getAnalysisUsage(AnalysisUsage &AU) const { AU.setPreservesAll(); AU.addRequiredTransitive<AliasAnalysis>(); AU.addRequiredTransitive<ScalarEvolution>(); } bool CS551A2::isDependencePair(const Value *A, const Value *B) { return isMemRefInstr(A) && isMemRefInstr(B) && (cast<const Instruction>(A)->mayWriteToMemory() || cast<const Instruction>(B)->mayWriteToMemory()); } void CS551A2::PrintLoopInfo(raw_ostream &OS, CS551A2 *self, const Loop* LP) { if (!LP || !LP->empty()) return; // ignore non-innermost loops SmallVector<Instruction*, 8> memrefs; getMemRefInstrs(LP, memrefs); OS << "Loop at depth " << LP->getLoopDepth() << ", header block: "; WriteAsOperand(OS, LP->getHeader(), false); OS << "\n"; OS << " Load/store instructions: " << memrefs.size() << "\n"; for (SmallVector<Instruction*, 8>::const_iterator x = memrefs.begin(), end = memrefs.end(); x != end; ++x) OS << "\t" << (x - memrefs.begin()) << ": " << **x << "\n"; OS << " Pairwise dependence results:\n"; for (SmallVector<Instruction*, 8>::const_iterator x = memrefs.begin(), end = memrefs.end(); x != end; ++x) for (SmallVector<Instruction*, 8>::const_iterator y = x + 1; y != end; ++y) if (isDependencePair(*x, *y)) OS << "\t" << (x - memrefs.begin()) << "," << (y - memrefs.begin()) << ": " << (depends(*x, *y) ? "dependent" : "independent") << "\n"; /* print dependence graph as .dot file and convert to .tex and .jpg */ std::ofstream f("dependgraph.dot"); f<<"digraph G {\n"; for (std::set<std::string>::const_iterator v = vertices.begin(); v != vertices.end(); ++v) { f<<*v<<";\n"; } for (SmallVector<std::string, 8>::const_iterator e = edges.begin(); e != edges.end(); ++e) { f<<*e; } f<<"}\n"; f.close(); std::system("dot2tex test.dot > dependgraph.tex"); std::system("dot -Tjpg dependgraph.dot -o dependgraph.jpg"); }
d8a63c8f89ad8539e91bd5469758d73ceba999a7
12f997123299faf90829b411ab38e8bfec3dcbae
/module 00/ex01/PhoneBook.hpp
b014bef24155131c58671e3b14668a91ced1b26f
[]
no_license
Null37/42_Piscine_Cpp
1a2ac7f70974883e642ff871d6390e15302f7cf8
9f2a0af5960fe1b52f5226576465712a9115375e
refs/heads/main
2023-08-29T10:23:42.807071
2021-11-16T10:31:20
2021-11-16T10:31:20
383,921,309
1
0
null
null
null
null
UTF-8
C++
false
false
416
hpp
PhoneBook.hpp
#ifndef _PHONEBOOK_HPP #define _PHONEBOOK_HPP #include <iostream> #include <iomanip> #include "Contact.hpp" class PhoneBook { private: Contact users[8]; public: void promt( void ); Contact& get_contact(int index); }; void clear_all(std::string *f_n, std::string *l_n, std::string *ds, std::string *nk_n, std::string *ph_n); std::string subnoalloc(std::string s);; // subster but not use alloc #endif
c8e35503ea771393da9fcda5da65f06c2e43f06b
1fa9bbd3297cbf8f0aef46360720204c6eb945f7
/ArkanoidGL/Mesh/MeshFactory.cpp
7096cdc65e82668cb63e0786dc9e1030a4aa3559
[]
no_license
LeonovOstap/Arkanoid
a2adda8bd9883a95b4c56610144746e53a05aa72
fe5d781f9f3f40c95ca857a8eeb4d033f866cdf8
refs/heads/master
2023-04-16T08:58:12.792265
2021-04-27T12:33:48
2021-04-27T12:33:48
362,100,513
0
0
null
null
null
null
UTF-8
C++
false
false
1,306
cpp
MeshFactory.cpp
#include "MeshFactory.h" #include <primport/q1mdl.hpp> Mesh MeshFactory::ConstructObject(prcore::String Path) { primport::ImportQ1MDL* Model = new primport::ImportQ1MDL(Path); GLuint Tex = CreateTexture(Model); collision::CollisionGeometry geom = CalculateBounds(Model); //cout << Path.c_str() << endl; return Mesh(Tex, Model, geom, Path); } collision::CollisionGeometry MeshFactory::CalculateBounds(primport::ImportQ1MDL* MDL) { collision::CollisionGeometry Geom; Geom.boxElements.push_back(MDL->frames[0].box); return Geom; } GLuint MeshFactory::CreateTexture(primport::ImportQ1MDL* MDL) { prcore::Bitmap map = MDL->skin; int nlog = prcore::log2i(map.GetWidth()); int size = 1 << nlog; map.ReformatImage(prcore::PixelFormat(32, 0x0000ff, 0x00ff00, 0xff0000, 0xff000000)); map.ResizeImage(size, size); GLuint itx = 0; glGenTextures(1, &itx); glBindTexture(GL_TEXTURE_2D, itx); for (int j = 0; j < (nlog + 1); ++j) { prcore::Bitmap mip = CreateMipLevel(map, j); glTexImage2D(GL_TEXTURE_2D, j,GL_RGBA8, mip.GetWidth(), mip.GetHeight(), 0,GL_RGBA,GL_UNSIGNED_BYTE, mip.GetImage()); } return itx; }
49da405838c9cd9bc8015e43353cf563e2bb8226
f47f4f4bed499cb2a49ee05f7fac000cbbf80c71
/ex5.cpp
13c2f0e13c719fd655d6c7338bce953bcc91fd50
[]
no_license
gbrl-exe/ifsp
e7f0c076e9faabd5325d11eb9b6407e2c98d504f
0ec0c9f12775189babe3086d79aa3a6316050818
refs/heads/master
2023-06-27T01:19:29.494296
2021-07-12T22:11:31
2021-07-12T22:11:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
198
cpp
ex5.cpp
#include <stdio.h> int main () { int inteira = 10; float decimal = 10.5; char caractere = 'a'; printf("%i\n", inteira); printf("%f\n", decimal); printf("%c\n", caractere); return 0; }
1c0f8927e1728d603549689ffee17816052eb4da
217a213027b6e9c281b29821a43984cd20359c69
/python/python.cpp
ec7407b9b4f578c1a9417e95790bb6dc24a643dd
[ "MIT" ]
permissive
starcraftman/boostEx
c9826e77b18b82fef845d79fe91dd5014c724955
5ffa4c008c184a3e4641b90d578cbd8aa14bc039
refs/heads/master
2022-12-04T08:41:38.589552
2014-11-03T23:47:56
2014-11-03T23:47:56
24,301,901
0
1
null
null
null
null
UTF-8
C++
false
false
3,040
cpp
python.cpp
/** * Filesystem lib from boost. * See http://www.boost.org/doc/libs/1_56_0/libs/filesystem/doc/tutorial.html */ /********************* Header Files ***********************/ /* C++ Headers */ #include <iostream> /* Input/output objects. */ //#include <fstream> /* File operations. */ //#include <sstream> /* String stream. */ #include <string> /* C++ String class. */ //#include <new> /* Defines bad_malloc exception, new functions. */ //#include <typeinfo> /* Casting header. */ //#include <exception> /* Top level exception header. */ //#include <stdexcept> /* Derived exception classes. */ /* STL Headers */ #include <vector> //#include <list> //#include <deque> //#include <stack> //#include <queue> //#include <priority_queue> //#include <bitset> //#include <set> // multiset for multiple keys allowed. //#include <map> // multimap for multiple keys allowed. //#include <utility> // Has pair for map. //#include <algorithm> //#include <numeric> //#include <functional> // Functional objects. //#include <iterator> // Contains back_inserter function and like. /* C Headers */ //#include <cstdlib> //#include <cstddef> //#include <cctype> //#include <cstring> //#include <cstdio> //#include <climits> //#include <cassert> /* Project Headers */ #include <boost/foreach.hpp> #include <boost/python.hpp> /******************* Constants/Macros *********************/ /**************** Namespace Declarations ******************/ using std::cin; using std::cout; using std::endl; using std::string; /******************* Type Definitions *********************/ /* For enums: Try to namesapce the common elements. * typedef enum { * VAL_, * } name_e; */ /* For structs: * typedef struct name_s { * int index; * } name_t; */ /****************** Class Definitions *********************/ class World { public: World(string msg) : msg(msg) {} inline void set(string msg) { this->msg = msg; } inline string greet() { return msg; } private: string msg; }; class Var { public: Var(std::string name) : name(name), val(0) {} string const name; float val; }; class ClassProp { public: ClassProp() : val(0) {}; float get() const { return val; } void setV(float value) { val = value; } private: float val; }; /****************** Global Functions **********************/ char const * greet() { return "hello, world"; } BOOST_PYTHON_MODULE(libBoost) { boost::python::def("greet", greet); boost::python::class_<World>("World", boost::python::init<string>()) .def("greet", &World::greet) .def("set", &World::set) ; boost::python::class_<Var>("Var", boost::python::init<string>()) .def_readonly("name", &Var::name) .def_readwrite("value", &Var::val) ; boost::python::class_<ClassProp>("ClassProp") .add_property("rovalue", &ClassProp::get) .add_property("value", &ClassProp::get, &ClassProp::setV) ; } /* Notes: * Force call to use another version of virtual function: baseP->Item_base::net_price(42); * */
b3eeb827e91eff5e127221cd20def85791f241d1
986b7841f72eb24616be8d5fc7defcc3a308db94
/src/utils/library.cc
80729fa5d3f4e3531a6643aff9666bab91e1ad71
[ "MIT" ]
permissive
zeroeffects/TempestRenderer
e783065fecdb1a5ffbe7945044453c6a8fb7e7b4
698e974dbeee89e3ca1258e2601b85e9cbfbfc8b
refs/heads/master
2021-01-23T22:15:31.970201
2016-12-05T19:14:48
2016-12-05T19:14:48
25,295,700
7
0
null
null
null
null
UTF-8
C++
false
false
2,700
cc
library.cc
/* The MIT License * * Tempest Engine * Copyright (c) 2009 2010 2011 2012 Zdravko Velinov * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ #include "tempest/utils/library.hh" #include "tempest/utils/logging.hh" #include <cassert> #include <cerrno> #include <cstring> namespace Tempest { #ifdef _WIN32 std::string GetLastErrorString(); #else std::string GetLastErrorString() { return strerror(errno); } #endif Library::Library() : m_Lib(0) {} Library::Library(const std::string& name) : m_Lib(LoadLibrary(name.c_str())) { } Library::~Library() { if(m_Lib) FreeLibrary(m_Lib); } bool Library::load(const std::string& name) { this->free(); m_Lib = LoadLibrary(name.c_str()); if(m_Lib == nullptr) { Log(LogLevel::Error, "Failed to find symbol within library ", name, ": ", GetLastErrorString()); return false; } return true; } void Library::free() { if(m_Lib) FreeLibrary(m_Lib); m_Lib = 0; } ProcType Library::getProcAddress(const std::string& str) { if(!m_Lib) return ProcType(); union { ProcType proc; void* symbol; } ptr; #ifdef _WIN32 ptr.proc = GetProcAddress(m_Lib, str.c_str()); #elif defined(LINUX) ptr.symbol = GetProcAddress(m_Lib, str.c_str()); #else # error "Unsupported platform" #endif if(ptr.proc == nullptr) { Log(LogLevel::Error, "Failed to find symbol within library ", str, ": ", GetLastErrorString()); return nullptr; } return ptr.proc; } }
1a056fd8b16cacd158ecb404929770ec75e73d2f
655aa5c301e1cb67ea1a88947f4cfa63fb516d43
/src/core/Matrix.cpp
0648083c49ef02fe27d6594623030c1ee2eb537d
[]
no_license
trihfan/lighting
5c9a814a4f684ca212ae75a684023c30ed0b8fc3
db415e9df3eec0833ba81ad1a35436b95c6be528
refs/heads/main
2023-03-28T11:09:58.470749
2021-03-28T17:43:31
2021-03-28T17:43:31
326,024,171
0
0
null
null
null
null
UTF-8
C++
false
false
4,918
cpp
Matrix.cpp
#include "Matrix.h" using namespace lighting; template <typename MatrixA, typename MatrixB> void submatrixImpl(const MatrixA& matrixA, MatrixB& matrixB, size_t rowToRemove, size_t colToRemove) { size_t currentRow = 0, currentCol = 0; for (size_t row = 0; row < matrixA.rowCount(); row++) { if (row != rowToRemove) { currentCol = 0; for (size_t col = 0; col < matrixA.colCount(); col++) { if (col != colToRemove) { matrixB(currentRow, currentCol) = matrixA(row, col); currentCol++; } } currentRow++; } } } Matrix2x2::Matrix2x2() : Matrix<2, 2>({ 1, 0, 0, 1 }) { } Matrix2x2::Matrix2x2(double a11, double a12, double a21, double a22) : Matrix<2, 2>({ a11, a12, a21, a22 }) { } double Matrix2x2::determinant() const { return data[0] * data[3] - data[1] * data[2]; } Matrix3x3::Matrix3x3() : Matrix<3, 3>({ 1, 0, 0, 0, 1, 0, 0, 0, 1 }) { } Matrix3x3::Matrix3x3(double a11, double a12, double a13, double a21, double a22, double a23, double a31, double a32, double a33) : Matrix<3, 3>({ a11, a12, a13, a21, a22, a23, a31, a32, a33 }) { } Matrix2x2 Matrix3x3::submatrix(size_t rowToRemove, size_t colToRemove) const { Matrix2x2 sub; submatrixImpl(*this, sub, rowToRemove, colToRemove); return sub; } double Matrix3x3::minor(size_t rowToRemove, size_t colToRemove) const { return submatrix(rowToRemove, colToRemove).determinant(); } double Matrix3x3::cofactor(size_t rowToRemove, size_t colToRemove) const { double m = minor(rowToRemove, colToRemove); return (rowToRemove + colToRemove) % 2 == 0 ? m : -m; } double Matrix3x3::determinant() const { return data[0] * cofactor(0, 0) + data[1] * cofactor(0, 1) + data[2] * cofactor(0, 2); } Matrix4x4::Matrix4x4() : Matrix<4, 4>({ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 }) { } Matrix4x4::Matrix4x4(double a11, double a12, double a13, double a14, double a21, double a22, double a23, double a24, double a31, double a32, double a33, double a34, double a41, double a42, double a43, double a44) : Matrix<4, 4>({ a11, a12, a13, a14, a21, a22, a23, a24, a31, a32, a33, a34, a41, a42, a43, a44 }) { } Matrix3x3 Matrix4x4::submatrix(size_t rowToRemove, size_t colToRemove) const { Matrix3x3 sub; submatrixImpl(*this, sub, rowToRemove, colToRemove); return sub; } double Matrix4x4::minor(size_t rowToRemove, size_t colToRemove) const { return submatrix(rowToRemove, colToRemove).determinant(); } double Matrix4x4::cofactor(size_t rowToRemove, size_t colToRemove) const { double m = minor(rowToRemove, colToRemove); return (rowToRemove + colToRemove) % 2 == 0 ? m : -m; } double Matrix4x4::determinant() const { return data[0] * cofactor(0, 0) + data[1] * cofactor(0, 1) + data[2] * cofactor(0, 2) + data[3] * cofactor(0, 3); } bool Matrix4x4::isInvertible() const { return determinant() != 0; } Matrix4x4& Matrix4x4::inverse() { *this = inverted(); return *this; } Matrix4x4 Matrix4x4::inverted() const { Matrix4x4 invertedMatrix; double det = determinant(); if (det != 0) { for (size_t row = 0; row < rowCount(); row++) { for (size_t col = 0; col < colCount(); col++) { double c = cofactor(row, col); invertedMatrix(col, row) = c / det; } } } return invertedMatrix; } Matrix4x4 Matrix4x4::translation(const Tuple& value) { return translation(value.x(), value.y(), value.z()); } Matrix4x4 Matrix4x4::translation(double x, double y, double z) { Matrix4x4 m; m(0, 3) = x; m(1, 3) = y; m(2, 3) = z; return m; } Matrix4x4 Matrix4x4::scale(const Tuple& value) { return scale(value.x(), value.y(), value.z()); } Matrix4x4 Matrix4x4::scale(double x, double y, double z) { Matrix4x4 m; m(0, 0) = x; m(1, 1) = y; m(2, 2) = z; return m; } Matrix4x4 Matrix4x4::rotateX(double radians) { Matrix4x4 m; m(1, 1) = std::cos(radians); m(1, 2) = -std::sin(radians); m(2, 1) = std::sin(radians); m(2, 2) = std::cos(radians); return m; } Matrix4x4 Matrix4x4::rotateY(double radians) { Matrix4x4 m; m(0, 0) = std::cos(radians); m(0, 2) = std::sin(radians); m(2, 0) = -std::sin(radians); m(2, 2) = std::cos(radians); return m; } Matrix4x4 Matrix4x4::rotateZ(double radians) { Matrix4x4 m; m(0, 0) = std::cos(radians); m(0, 1) = -std::sin(radians); m(1, 0) = std::sin(radians); m(1, 1) = std::cos(radians); return m; } Matrix4x4 Matrix4x4::shearing(double xy, double xz, double yx, double yz, double zx, double zy) { Matrix4x4 m; m(0, 1) = xy; m(0, 2) = xz; m(1, 0) = yx; m(1, 2) = yz; m(2, 0) = zx; m(2, 10) = zy; return m; }
903bbf458f428f14321b94c8dc8401f7e4f28790
93aa75b26bb4b3c2cd55a06607d96931ec0f9b69
/main.cpp
31bd21f38cea9d4437114a38152b8270d8dc7642
[]
no_license
lichangyg/ChessGame
474d80922459263a1b25ff649a6fba39d88940c7
6e651a94852fd14ed207328613b8989d42e5e987
refs/heads/master
2021-01-11T21:35:33.175871
2017-03-10T14:30:34
2017-03-10T14:30:34
78,812,662
15
9
null
null
null
null
UTF-8
C++
false
false
176
cpp
main.cpp
#include <iostream> #include "NetWork.h" using namespace std; int main() { gNetWork->connection("192.168.1.101", 9001); gNetWork->sendData("ddddd"); getchar(); return 1; }
98496a6c212b2b55cdec94eeff5de6d6127f33a7
a9bd84f598aed1e6495106762bdbbeedf541de0f
/CsAcademy - Online Gcd.cpp
aac199911d2ff3cedd47dcc147c704883a63afc8
[]
no_license
smhemel/CsAcademy-Online-Judge
689735a339f692874c0688ca372fc45e0c34b84e
a5b5d78ced56f4a82debe03686c37ac2b15dbcd9
refs/heads/master
2020-04-04T16:07:24.590749
2018-11-11T06:02:49
2018-11-11T06:02:49
156,065,556
0
0
null
null
null
null
UTF-8
C++
false
false
585
cpp
CsAcademy - Online Gcd.cpp
// // main.cpp // CsAcademy - Online Gcd // // Created by S M HEMEL on 21/9/17. // Copyright © 2017 S M HEMEL. All rights reserved. // #include <iostream> #include <algorithm> #include <cmath> #include <numeric> using namespace std; int a[100011]; int main() { int g = 0,n,m,x,y; cin >> n >> m; cin >> a[0]; g = a[0]; for(int i=1; i<n; i++){ cin >> a[i]; g = __gcd(g,a[i]); } for(int i=0; i<m; i++){ cin >> x >> y; x--; a[x] = a[x]/y; g = __gcd(g,a[x]); cout << g << endl; } return 0; }
e08e6119566853089587078b492725727e731c41
a33aac97878b2cb15677be26e308cbc46e2862d2
/program_data/PKU_raw/87/132.c
698dc92539f513e84008313ab7a1cf6b74e1dc60
[]
no_license
GabeOchieng/ggnn.tensorflow
f5d7d0bca52258336fc12c9de6ae38223f28f786
7c62c0e8427bea6c8bec2cebf157b6f1ea70a213
refs/heads/master
2022-05-30T11:17:42.278048
2020-05-02T11:33:31
2020-05-02T11:33:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
504
c
132.c
int main(){ int h1[MAX],h2[MAX],m1[MAX],m2[MAX],s1[MAX],s2[MAX]; int second[MAX]; int a,b,c; int i,p=0; for(i=0;i<MAX;i++){ scanf("%d %d %d %d %d %d",&h1[i],&m1[i],&s1[i],&h2[i],&m2[i],&s2[i]); if(h1[i]==0&&m1[i]==0&&s1[i]==0&&h2[i]==0&&m2[i]==0&&s2[i]==0){ break; } h2[i]=h2[i]+12; a=(h2[i]-h1[i]-1)*60*60; b=(60-m1[i]-1)*60; c=60-s1[i]; second[i]=a+b+c+(m2[i]*60)+s2[i]; p++; } for(i=0;i<p;i++){ printf("%d\n",second[i]); } return 0; }
3f2d673bd5c93fd89cf1355ca0e9d5dc329f55d2
00541afd25636d6c940aaefc9fc2ab96a6a242ae
/STL常用算法/count.cpp
61a2b06905e81a1e6541379f30fad212e54619f0
[]
no_license
yufengzhe66/mygit
7f8c46c688c8fa4081dcf4b7b6129dfbe54ea8c2
a84a253917423def3a0b43878f8795fc06817626
refs/heads/master
2021-07-09T23:36:17.598898
2021-04-26T15:34:00
2021-04-26T15:34:00
64,114,920
2
0
null
null
null
null
GB18030
C++
false
false
1,198
cpp
count.cpp
#include<iostream> using namespace std; #include<vector> #include<algorithm> /* count(iterator beg, iterator end, value); // 统计元素出现次数 // beg 开始迭代器 // end 结束迭代器 // value 统计的元素 */ class Person3 { public: Person3(string name, int age) { this->name = name; this->age = age; } //重载== bool operator==(const Person3& p) { if (this->age == p.age) { return true; } else { return false; } } string name; int age; }; void test07() { vector<int> v1; v1.push_back(1); v1.push_back(2); v1.push_back(4); v1.push_back(5); v1.push_back(3); v1.push_back(4); v1.push_back(4); int num1 = count(v1.begin(), v1.end(), 4); cout << "4的个数为: " << num1 << endl; vector<Person3> v2; Person3 p1("刘备", 35); Person3 p2("关羽", 35); Person3 p3("张飞", 35); Person3 p4("赵云", 30); Person3 p5("曹操", 25); v2.push_back(p1); v2.push_back(p2); v2.push_back(p3); v2.push_back(p4); v2.push_back(p5); Person3 p("诸葛亮", 35); int num2 = count(v2.begin(),v2.end(),p); cout << "num2的个数为: " << num2 << endl; }
f5feb36b2def2df72b4f2b79e96754473132d03b
21fd14092cce30661610987a477ab71050914bf4
/Problem1.cpp
d49caa96118b575b9345954e79f39c13b04bb69d
[]
no_license
FrankEntriken/CPSC298_Assignment1
d62546c3f94aa516e1375c22afc7bc6c26234fb4
a06832b64342f5ce0d7000db51d02cd9ed0a73d2
refs/heads/master
2020-12-19T22:50:43.091182
2020-01-23T20:07:24
2020-01-23T20:07:24
235,875,100
0
0
null
null
null
null
UTF-8
C++
false
false
577
cpp
Problem1.cpp
/* Frank Entriken 2298368 entriken@chapman.edu CPSC 298 Problem 1 */ #include <iostream> #include <string> using namespace std; int main() { double weightOunces; double weightMetric; cout << "Enter the weight of a package of breakfast cereal in ounces..."; cin >> weightOunces; //convert ounces to metric tons weightMetric = weightOunces / 35273.92; double boxes = 1 / weightMetric; cout << "The weight of the cereal in metric tons is: " << weightMetric << endl; cout << "The number of cereal boxes needed to weigh a metric ton is: " << boxes << endl; }
9abfb614408628ebc16d57543fbfbc6d090ecbf6
fce4d33e2ab58106d876155056a3683e7cef4ace
/lowsum.cpp
68cb12c3dc26888620889d2b2071c39885ccf4b0
[]
no_license
Rohithyeravothula/codechef
9e64fbfa9dcd2b3e6e63bee8029099ac6d9c3eab
00715ca053439693c048d9985e0a74d105039305
refs/heads/master
2016-09-05T11:19:04.430575
2014-09-27T19:21:44
2014-09-27T19:21:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
620
cpp
lowsum.cpp
#include<iostream> #include<stdio.h> #include<stdio.h> #include<algorithm> using namespace std; int main() { int t; scanf("%d",&t); while(t--) { int n,i,j,q,m,x,y; scanf("%d %d",&n,&q); long long int a[n],b[n],c[2*n]; for(i=0;i<n;i++) scanf("%lld",&a[i]); for(i=0;i<n;i++) scanf("%lld",&b[i]); i=0; j=0; sort(a,a+n); sort(b,b+n); reverse(a,a+n); reverse(b,b+n); for(i=0;i<q;i++) { scanf("%d",&m); } } return 0; }
741cd57be95e6234214387503cd2cadbf1935c50
6a03645710d94f33a108995cb080c619d66c7d0c
/Old School/Shape Burst.CPP
3692fb03505a321a00e58904d5e1046d4c17cf81
[]
no_license
Tushark21/Games
80d66c4e3fcaf181d3282220f6754bf2570826cb
dd003297c897dd7617c7326651be9b2956aebfab
refs/heads/master
2023-03-17T07:30:12.354921
2021-03-05T05:35:44
2021-03-05T05:35:44
105,809,118
0
0
null
null
null
null
UTF-8
C++
false
false
4,693
cpp
Shape Burst.CPP
#include<iostream.h> #include<conio.h> #include<graphics.h> #include<dos.h> #include<process.h> #include<stdlib.h> void fig(int a[7][7],int i,int j); void main() {clrscr(); int gd=DETECT,gm; initgraph(&gd,&gm,"c:\\tc\\bgi"); int a[7][7],x=0,y=0,q,temp=-1,x1,y1,x2,x3[6],n=0,h=0,t,v=1 ; int s=0; //Layout rectangle(100,100,340,340); for(int j=0;j<5;j++) { for(int i=0;i<5;i++) { line(140+(i*40),100,140+(i*40),340); line(100,140+(i*40),340,140+(i*40)); } } settextstyle(0,0,2); setcolor(4); outtextxy(150,80,"SCORE:"); gotoxy(32,6); cout<<s; //Initial Figures srand(time(0)); for(j=0;j<6;j++) { for(int i=0;i<6;i++) { a[i][j]=rand()%5; fig(a,i,j); } } delay(300); for(int i=0;i<7;i++) { a[i][6]=-10; a[6][i]=-10; } again: // //Checking while(v>0) { v=0; for(j=0;j<6;j++) { for(int i=0;i<6;i++) { //horizontal check if(a[i][j]==a[i+1][j]) { x3[n]=i; x3[n+1]=i+1; n++; } else if(n<2) { n=0; } if((n>=2 && a[i][j]!=a[i+1][j]) || (n>=2 && i==5)) { for(int l=j;l>=0;l--) { for(int k=0;k<=n;k++) { if(l==0) { a[x3[k]][l]=rand()%5; if(j==l) { setfillstyle(1,0); bar(101+(x3[k]*40),101+(l*40),139+(x3[k]*40),139+(l*40)); s++; } } else { a[x3[k]][l]=a[x3[k]][l-1]; if(j==l) { setfillstyle(1,0); bar(101+(x3[k]*40),101+(l*40),139+(x3[k]*40),139+(l*40)); s++; } } }//loop in if with k ends }//loop in if with l ends delay(500); // for(l=j;l>=0;l--) { for(int k=0;k<=n;k++) { if(l==0) { setfillstyle(1,0); bar(101+(x3[k]*40),101+(l*40),139+(x3[k]*40),139+(l*40)); fig(a,x3[k],l); } else { setfillstyle(1,0); bar(101+(x3[k]*40),101+(l*40),139+(x3[k]*40),139+(l*40)); fig(a,x3[k],l); } }//loop in if with k ends }//loop in if with l ends delay(300); j=0; n=0; h=1; v=1; }//if loop ends // }//Loop with i ends n=0; setcolor(4); outtextxy(150,80,"SCORE:"); gotoxy(32,6); cout<<s; //vertical check for(i=0;i<6;i++) { if(a[j][i]==a[j][i+1]) { n++; } else if(n<2) { n=0; } if((n>=2 && a[j][i]!=a[j][i+1]) || (n>=2 && i==5)) { for(int k=i;k>=i-n;k--) { setfillstyle(1,0); bar(101+(j*40),101+(k*40),139+(j*40),139+(k*40)); s++; } delay(500); for(k=i;k>=0;k--) { if(k-n>0) { a[j][k]=a[j][k-n-1]; setfillstyle(1,0); bar(101+(j*40),101+(k*40),139+(j*40),139+(k*40)); } else { a[j][k]=rand()%5; setfillstyle(1,0); bar(101+(j*40),101+(k*40),139+(j*40),139+(k*40)); } }//loop in if with k ends // for(k=i;k>=0;k--) { if(k-n>0) { fig(a,j,k); } else { fig(a,j,k); } }//loop in if with k ends delay(300); n=0; j=0; h=1; v=1; }//if loop ends }//Loop with i ends n=0; }//Loop with j ends setcolor(4); outtextxy(150,80,"SCORE:"); gotoxy(32,6); cout<<s; }//While Loop ends // if(h==0 && q==13 && temp==-1) { setfillstyle(1,0); t=a[x1][y1]; a[x1][y1]=a[x][y]; bar(101+(x1*40),101+(y1*40),139+(x1*40),139+(y1*40)); fig(a,x1,y1); setfillstyle(1,0); a[x][y]=t; bar(101+(x*40),101+(y*40),139+(x*40),139+(y*40)); fig(a,x,y); } v=1; //Selector while(!kbhit()) { x=x>5?5:x; x=x<0?0:x; y=y>5?5:y; y=y<0?0:y; setcolor(4); rectangle(101+(x*40),101+(y*40),139+(x*40),139+(y*40)); rectangle(102+(x*40),102+(y*40),138+(x*40),138+(y*40)); rectangle(103+(x*40),103+(y*40),137+(x*40),137+(y*40)); } setcolor(0); rectangle(101+(x*40),101+(y*40),139+(x*40),139+(y*40)); rectangle(102+(x*40),102+(y*40),138+(x*40),138+(y*40)); rectangle(103+(x*40),103+(y*40),137+(x*40),137+(y*40)); q=getch(); h=0; if(q==72) { y--; } else if(q==80) { y++; } else if(q==75) { x--; } else if(q==77) { x++; } else if(q==27) { exit(0); } else if(q==13) { if(temp==-1) { temp=a[x][y]; x1=x; y1=y; setcolor(4); rectangle(105+(x*40),105+(y*40),135+(x*40),135+(y*40)); rectangle(106+(x*40),106+(y*40),134+(x*40),134+(y*40)); } else if((x1-x==0 && y1-y==0) || (x1-x==-1 && y1-y==0) || (x1-x==1 && y1-y==0) || (x1-x==0 && y1-y==-1) || (x1-x==0 && y1-y==1)) { setfillstyle(1,0); a[x1][y1]=a[x][y]; bar(101+(x1*40),101+(y1*40),139+(x1*40),139+(y1*40)); fig(a,x1,y1); setfillstyle(1,0); a[x][y]=temp; bar(101+(x*40),101+(y*40),139+(x*40),139+(y*40)); fig(a,x,y); temp=-1; delay(300); } } goto again; } void fig(int a[7][7],int i,int j) { switch(a[i][j]) { case 0: setfillstyle(1,2); setcolor(2); fillellipse(120+(i*40),120+(j*40),6,9); //Ellipse break; case 1: setfillstyle(1,11); setcolor(11); pieslice(120+(i*40),120+(j*40),0,360,10); //Ring setfillstyle(1,0); setcolor(0); pieslice(120+(i*40),120+(j*40),0,360,7); break; case 2: setfillstyle(1,12); setcolor(12); fillellipse(120+(i*40),120+(j*40),8,9); //Circle break; case 3: setfillstyle(1,14); setcolor(14); pieslice(120+(i*40),130+(j*40),45,135,18); //Diamond break; case 4: setfillstyle(1,1); setcolor(1); fillellipse(120+(i*40),120+(j*40),6,9); //+ fillellipse(120+(i*40),120+(j*40),9,6); break; } } //K21
c408fb9b28dcf324d7cfe967e806ad778b0d6f35
5945a028f932c200880ea171a1c37fba8d6c897b
/LeetCode/MinStack.cpp
28e0b18e4aad76effd8ce828f3709b711169c943
[]
no_license
godsay1983/LeetCode
aef63e28d258d3a31b5b536059e930c462095079
42ffd9dd875fb5c5f8c15b0ab39a808d1781839e
refs/heads/master
2021-05-13T21:25:27.201127
2018-05-12T08:46:34
2018-05-12T08:46:34
116,464,083
0
0
null
null
null
null
UTF-8
C++
false
false
374
cpp
MinStack.cpp
#include "MinStack.h" MinStack::MinStack() { } MinStack::~MinStack() { } void MinStack::push(int number) { data.push_back(number); } int MinStack::pop() { int last = data.back(); data.pop_back(); return last; } int MinStack::min() { int min = data.front(); for (int i = 1; i < data.size(); ++i) { if (min > data[i]) { min = data[i]; } } return min; }
493b4a3a45e03b5fed997244d1269ecc07270337
b9eaf3bdcdff1c42d17dc0ad6e0e1e771befaaf4
/advanced-cpp/scratch/t4.cpp
4870f63da8243560eb7efc98e3b7a6b52dad8cff
[]
no_license
goyalankit/notes
bff90cb641344f0e1a6f1c8bd54b26eeffa942e5
da5552fc95ffbf632c7927a939d6a928f55aa677
refs/heads/master
2021-09-17T04:10:51.266201
2021-09-07T12:11:41
2021-09-07T12:11:41
14,844,400
0
0
null
null
null
null
UTF-8
C++
false
false
113
cpp
t4.cpp
#include<iostream> template<typename T> void myFun(void){ T::var_name = 42; } int main(void){ return 0; }
3a40616ba53e47dd458a16f08baa709a3142e0b3
4a34e242e0230c01dc9e9bea5b00863484aa0049
/filesystem.cpp
57b57438214c0c48e7bc1455beceed1a1131ffaf
[]
no_license
omartrausta/styrikerfi
0c4ab930cf10fb0f0813399ea04ced965f11974c
6cf97a498c6c24e87031eaa866bdf13c7812dee9
refs/heads/master
2021-01-25T05:23:07.863993
2009-11-29T23:36:57
2009-11-29T23:36:57
34,031,258
0
0
null
null
null
null
UTF-8
C++
false
false
10,458
cpp
filesystem.cpp
#include <cstdio> #include <iostream> #include <cstdlib> #include <string.h> using namespace std; const int BLOCK_SIZE = 1024; const int BLOCK_QTY = 256; const int EMPTY_ENTRY = -1; // Indicates block is empty and available const int LAST_FAT_ENTRY = -2; // Indicator for FAT table, last block holding given file const int MAX_FILES = 35; // the maximum number of files the filesystem can hold bool fileIsOpen = false; int numberOfSavedFiles = 0; int numberOfUsedBlocks = 0; // entry in fileDirectory typedef struct { char name[20]; int firstBlock; int fileSize; } fileEntry; // entry in fatTable typedef struct { int nextBlock; } fatEntry; FILE *virtualDiskSpace = NULL; fatEntry *fatTable; fileEntry *fileDirectory; char *dataBuffer; // Helper functions for reading and writing FAT and File Directory to and from filesystem // For use in other functions not main program void readFat() { //fatTable = (fatEntry*) calloc(1,sizeof(fatEntry)*BLOCK_QTY); fseek(virtualDiskSpace,0,SEEK_SET); fread(fatTable,BLOCK_SIZE,1,virtualDiskSpace); } void writeFat() { fseek(virtualDiskSpace,0,SEEK_SET); fwrite(fatTable,BLOCK_SIZE,1,virtualDiskSpace); //free(fatTable); } void readDir() { //fileDirectory = (fileEntry*) calloc(1,sizeof(fileEntry)*MAX_FILES); fseek(virtualDiskSpace,1*BLOCK_SIZE,SEEK_SET); fread(fileDirectory,BLOCK_SIZE,1,virtualDiskSpace); } void writeDir() { fseek(virtualDiskSpace,1*BLOCK_SIZE,SEEK_SET); fwrite(fileDirectory,BLOCK_SIZE,1,virtualDiskSpace); //free(fileDirectory); } //Functions for use in main program // Sets up virtual disk, if file exsits its opened // otherwise it is created, diskname is submitted as input parameter // Initilaze memory location for fatTable and fileDirectory void vinit(char* diskname) { virtualDiskSpace = fopen(diskname,"rb+"); if (virtualDiskSpace == NULL) { printf("new file %s created\n",diskname); virtualDiskSpace = fopen(diskname,"wb+"); } //Initilazing FAT table for entry into Block 0 in virtudalDiskspace fatTable = (fatEntry*) calloc(1,sizeof(fatEntry)*BLOCK_QTY); //Initilazing File Directory table for entry into Block 1 in virtudalDiskspace fileDirectory = (fileEntry*) calloc(1,sizeof(fileEntry)*MAX_FILES); //Initilazing Data Buffer dataBuffer = (char*) calloc(1,sizeof(char)*BLOCK_SIZE); } // Formats the virtual disk, if disk is not open it is created using defult filename // also sets up the FAT table and file directory and saves them into first two blocks void vformat() { int i; char* buffer; if (virtualDiskSpace == NULL) { printf("virtual disk has not been initalized\n"); printf("Initilazing virtualDisk.data\n"); vinit("virtualDisk.data"); printf("Initalization complete\n"); } //Empty all blocks in filesystem buffer = (char*) calloc(1,BLOCK_SIZE); for (i=0; i < BLOCK_QTY; i++) { fseek(virtualDiskSpace,i*BLOCK_SIZE,SEEK_SET); fwrite(buffer,BLOCK_SIZE,1,virtualDiskSpace); } free(buffer); fatTable[0].nextBlock = LAST_FAT_ENTRY; // Stores FAT table fatTable[1].nextBlock = LAST_FAT_ENTRY; // Stores file directory for(i=2; i < BLOCK_QTY; i++) { fatTable[i].nextBlock = EMPTY_ENTRY; } for(i=0; i < MAX_FILES; i++) { fileDirectory[i].firstBlock = EMPTY_ENTRY; } //Write FAT Table and File Directory into Virtual Disk writeFat(); numberOfUsedBlocks++; writeDir(); numberOfUsedBlocks++; } // Opens a saved file on the virtual disk and prepares for reading or writing int vopen(char* filename) { int i=0; int fileNumber; bool fileNotFound = true; if(virtualDiskSpace == NULL) { printf("Virtual disk not initilized, please set up disk\n"); return -1; } if(fileIsOpen) { printf("A file is already open, please close current open file\n"); return -2; } //open file directory saved on virtual disk readDir(); readFat(); //check if filenname is found in file directory while(i < MAX_FILES && fileNotFound) { if(strcmp(fileDirectory[i].name,filename) == 0) { //printf("file %s found\n",fileDirectoryBuffer[i].name); fileNumber = i; fileNotFound = false; } i++; } if(fileNotFound) { printf("File could not be found\n"); return -3; } //return file number reference for location of file within filesystem, mark file as open fileIsOpen = true; return fileNumber; } // Saves a new file to virtual disk // filename and size of file as input parameters bool vsave(char *filename, int filesize) { int i = 2; int j = 0; bool firstBlockNotFound = true; bool fileDirEntryNotFound = true; int fileDirEntry = -1; int lastBlock = 0; //how many blocks are required for file int nBlocksNeeded = (float)filesize/(float)BLOCK_SIZE+0.9; //check if a disk is initilized if(virtualDiskSpace == NULL) { printf("Virtual disk not initilized, please set up disk\n"); //return false indicating file was unable to be saved succesfully return false; } //check if enough space or number of blocks are available on virtual disk if(nBlocksNeeded > BLOCK_QTY-numberOfUsedBlocks) { printf("not enough space available on disk to save file\n"); return false; } //check if file directory is full and more files cannot be added if(MAX_FILES == numberOfSavedFiles) { printf("file directory full, cannot save more files to directory\n"); return false; } //open fat table saved on virtual disk readFat(); //open file directory saved on virtual disk readDir(); //check if file already exists with same filename for(j=0;j < MAX_FILES; j++) { if(strcmp(fileDirectory[j].name,filename) == 0) { printf("filename already exists\n"); return false; } } //find first empty file directory element j = 0; while (j < MAX_FILES && fileDirEntryNotFound) { if(fileDirectory[j].firstBlock == EMPTY_ENTRY) { fileDirEntry = j; fileDirEntryNotFound = false; } j++; } //find first empty block for start of file, marsk as first block in FAT table while (i < BLOCK_QTY && firstBlockNotFound) { if(fatTable[i].nextBlock == EMPTY_ENTRY) { fileDirectory[fileDirEntry].firstBlock = i; fileDirectory[fileDirEntry].fileSize = filesize; memcpy(fileDirectory[fileDirEntry].name,filename,sizeof(fileDirectory[fileDirEntry].name)); firstBlockNotFound = false; nBlocksNeeded--; lastBlock = i; } i++; } //find next available blocks and note block order in FAT table, note last block as LAST_FAT_ENTRY while (i < BLOCK_QTY && nBlocksNeeded >= 0) { if(fatTable[i].nextBlock == EMPTY_ENTRY && nBlocksNeeded > 0) { fatTable[lastBlock].nextBlock = i; lastBlock = i; } if(nBlocksNeeded == 0) { fatTable[lastBlock].nextBlock = LAST_FAT_ENTRY; } numberOfUsedBlocks++; nBlocksNeeded--; i++; } //save FAT table and file directory to file writeFat(); writeDir(); numberOfSavedFiles++; //return true inicating file was saved succesfully return true; } // Close a open file void vclose(int fd) { fileIsOpen = false; } int vread(int fd, int n, char *buffer) { int i = 0; int readFromBlock; bool continueRead = true; //check if a file is open if(!fileIsOpen) { printf("No file is open to read from\n"); return -1; } //check if number of bytes in buffer is more than the size of file if(fileDirectory[fd].fileSize > n) { printf("Dataset to read is larger than file\n"); return -2; } readFromBlock = fileDirectory[fd].firstBlock; //read buffer block by block from virtual disk while(continueRead) { //write data buffer to specified block on virtual disk fseek(virtualDiskSpace,readFromBlock*BLOCK_SIZE,SEEK_SET); fread(dataBuffer,BLOCK_SIZE,1,virtualDiskSpace); //fill dataBuffer with first 1024 char for first block strncpy(buffer+i*BLOCK_SIZE,dataBuffer,BLOCK_SIZE); //find next block to write readFromBlock = fatTable[readFromBlock].nextBlock; //check if current block is the last block to write if(readFromBlock == LAST_FAT_ENTRY) { continueRead = false; } i++; } return 0; } int vwrite(int fd, int n, char *buffer) { int i = 0; int writeToBlock; bool continueWrite = true; //check if a file is open if(!fileIsOpen) { printf("No file is open to write into\n"); return -1; } //check if number of bytes in buffer is more than the size of file if(fileDirectory[fd].fileSize > n) { printf("Dataset to write is larger than file can hold\n"); return -2; } writeToBlock = fileDirectory[fd].firstBlock; //write buffer block by block to virtual disk while(continueWrite) { //fill dataBuffer with first 1024 char for first block strncpy(dataBuffer,buffer+i*BLOCK_SIZE,BLOCK_SIZE); //write data buffer to specified block on virtual disk fseek(virtualDiskSpace,writeToBlock*BLOCK_SIZE,SEEK_SET); fwrite(dataBuffer,BLOCK_SIZE,1,virtualDiskSpace); //find next block to write writeToBlock = fatTable[writeToBlock].nextBlock; //check if current block is the last block to write if(writeToBlock == LAST_FAT_ENTRY) { continueWrite = false; } i++; } return 0; } // Displays all filenames in filesystem void vlist() { int i; printf("Files saved in filesystem:\n\n"); for(i=0;i < MAX_FILES; i++) { if(strcmp(fileDirectory[i].name,"") != 0) { printf("%s\n",fileDirectory[i].name); } } } //Cleans up and frees allocated memory void exit() { free(fatTable); free(fileDirectory); free(dataBuffer); } // Testing filesystem functions int main() { int i; char *input; input = (char*) calloc(1,sizeof(char)*2041); for (i=0; i < 2040; i++) { input[i]='A'; } char *output; output = (char*) calloc(1,sizeof(char)*2041); int filePos = -1; printf("starting filesystem\n"); vinit("disk2.data"); vformat(); vsave("file1.data",2040); vsave("file2.data",400); vsave("file3.data",400); filePos = vopen("file1.data"); printf("File is found at: %i\n",filePos); vlist(); vwrite(filePos,2040,input); vread(filePos,2040,output); printf("output : %s\n",output); printf("\npress ENTER to exit filesystem\n"); exit(); getchar(); return EXIT_SUCCESS; }
314e7cff095a334f67114955c7aeb7c0f6522a89
056b7da1972c4283661c955df361a1e9d573c770
/CCS/CSLogger.cpp
3ab5d73cb2b0b577fcb8a76462cacc15a22193a2
[]
no_license
demonreturn/CplusplusExtend
42c465e26c02bf8f534b1e73f0888f4257e750e1
11869df98850104a9850b6d930f8d225ff092056
refs/heads/master
2016-09-02T02:51:23.505303
2014-06-15T07:01:41
2014-06-15T07:01:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,890
cpp
CSLogger.cpp
#include "CSLogger.h" #include "CSChannel.h" #include "CSLogMessage.h" #include "CCSOS.h" #include <assert.h> #include <string> CCSLogger* CCSLogger::Instance() { static CCSLogger s_logger; return &s_logger; } CCSString GetLoggerToken() { char buffer[256] = { 0 }; CCS_OS::OSSprintf( buffer, 256, "log_%s_%d", CCS_OS::GetProcessName(), CCS_OS::GetProcessID() ); return CCSString( buffer ); } CCSLogger::CCSLogger() : m_logLevel( GetLoggerToken().c_str(), CCSLogMessage::LOG_WARNING ) { } void CCSLogger::Init( const CCSString& strConfig ) { Reset(); CCSString::size_type pos = strConfig.find( ';' ); if ( pos >= strConfig.size() ) { return; } CCSString level = strConfig.substr( 0, pos ); SetLoggerLevel( level ); CCSString::size_type old = pos + 1; while ( ( pos = strConfig.find( ';', old)) < strConfig.size()) { AttachChannel( strConfig.substr( old, pos - old)); old = ++pos; } if ( old < strConfig.size() ) { AttachChannel( strConfig.substr(old) ); } } void CCSLogger::Register( CCSChannel* pchannel ) { assert( m_channels.find(pchannel->ChannelName()) == m_channels.end()); m_channels.insert( Name2ChannelMap::value_type( pchannel->ChannelName(), pchannel)); } int CCSLogger::GetLoggerLevel() const { return m_logLevel; } bool CCSLogger::SetLoggerLevel( int level ) { if ( CCSLogMessage::LOG_LEVEL_SIZE <= level || CCSLogMessage::LOG_FATAL > level ) { return false; } m_logLevel = level; return true; } bool CCSLogger::SetLoggerLevel( const CCSString& levelName ) { int level = GetLevelName( levelName ); if ( 0 == level ) { return false; } m_logLevel = level; return true; } bool CCSLogger::AttachChannel( const CCSString & channelName ) { Name2ChannelMap::iterator itor = m_channels.find( channelName ); if ( m_channels.end() != itor ) { if ( channelName == itor->second->ChannelName()) { return itor->second->Open(); } } return false; } void CCSLogger::DetachChannel( const CCSString& channelName ) { Name2ChannelMap::iterator itor = m_channels.find( channelName ); if ( m_channels.end() != itor ) { if ( itor->second->ChannelName() == channelName ) { itor->second->Close(); } } } CCSChannel* CCSLogger::FindChannel( const CCSString& channelName ) const { Name2ChannelMap::const_iterator itor = m_channels.find( channelName ); if ( m_channels.end() != itor ) { return itor->second; } return NULL; } int CCSLogger::GetLevelName( const CCSString& levelName ) { for (int index = 0; index < CCSLogMessage::LOG_LEVEL_SIZE; ++index) { if ( levelName == CCSLogMessage::GetLevelName( index )) { return index; } } return 0; } CCSString CCSLogger::GetLevelName() const { return CCSLogMessage::GetLevelName( m_logLevel ); } CCSLogger::~CCSLogger() { Reset(); m_channels.clear(); } void CCSLogger::Reset() { m_logLevel = CCSLogMessage::LOG_ERROR; for ( auto itor = m_channels.begin(); itor != m_channels.end(); ++itor ) { itor->second->Close(); } } void CCSLogger::LogMsg( const CCSLogMessage& msg ) { if ( m_logLevel >= msg.GetLevel() ) { Name2ChannelMap::iterator itor = m_channels.begin(); for (; itor != m_channels.end(); ++itor ) { if ( itor->second->IsOpend() ) { itor->second->Log( msg ); } } } } CCSLogger::ChannelNameVec CCSLogger::GetAllChannelNames() const { ChannelNameVec namses; namses.reserve( m_channels.size() ); for ( Name2ChannelMap::const_iterator itor = m_channels.cbegin(); itor != m_channels.cend(); ++itor ) { namses.push_back( itor->first ); } return namses; } CCSLogger::ChannelNameVec CCSLogger::GetOpendChannelNames() const { ChannelNameVec namses; for ( Name2ChannelMap::const_iterator itor = m_channels.cbegin(); itor != m_channels.cend(); ++itor ) { if ( itor->second->IsOpend() ) { namses.push_back( itor->first ); } } return namses; }
dbd6675d8ec5fc90e97010518deb8806f40f3511
97452319399c70c07ae5bf985bfe33ae514e72cf
/EvilHangman/EvilHangman.h
b4ca42660c4a6d6cdbfdc412c83a37c2d04972d3
[ "MIT" ]
permissive
maanjum95/EvilHangman
f9494c769d93c044cfcef9222ec021fb7aa7aac6
5deaba215802d25b03f85d397358cf656eb33d64
refs/heads/master
2021-05-28T06:15:57.272183
2015-01-12T19:13:13
2015-01-12T19:13:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,973
h
EvilHangman.h
#ifndef EVILHANGMAN_H #define EVILHANGMAN_H #include <iostream> #include <string> #include <vector> #include <conio.h> #include <stdlib.h> #include <fstream> #include "../EvilNode/EvilNode.h" #include "../Dictionary/Dict/Dict.h" using namespace std; class EvilHangman { Dict *dict; // our pointer to the dictionary EvilNode **arr; // our hashtable array bool is_loaded; // bool that stores whether the wordList is loaded int letters; // the number of letters of our game int guesses; // the number of guesses the user is allowed to have int numHashTables; // the number of hashtables char *displayArray; // our display array which shows the word to be guessed vector<char> guessed; // our vector to store the already guessed characters temporarily vector<string> *wordList; // our vector to store the words of required length /* * This method recursively deletes the nodes * It calls recursively to the next pointer */ void recDel(EvilNode *ptr); /* * This method caculates hash of a word depending upon the character 'ch' * It calculates hash like a binary number, the character is like 1 in a binary number */ int hash(string word, char ch); /* * This method creates a hash table from the 'word' vector depending upon the character 'ch' * Each words hash is calculated and that word is added to that index of the hashtable */ void createHashTable(vector<string> *words, char ch); /* * This method inserts the word into a hashtable that is calculated from the 'word' and the character 'ch' * It is called on each word by the method 'createHashTable' */ void insertInHashTable(string word, char ch); /* * This method finds the largest index of hashtable with the max count. * Then we create a vector of string with all the items in that index and then * it updates the 'displayArray' * Then delete the wordList and set it to the new vector just created */ bool checkAndUpdateWordList(char guess); /* * This method updates the 'displayArray' char array depending upon the current index of the hashtable * Its like binary number and put all ch in the location where there is 1 in that binary number */ void updateDisplayArray(char ch, int hash); public: /* * The parametric method which we pass the pointer to the dictionary * This dict pointer will be used to get all the words with the length of 'letters'. * The guesses are the number of 'guesses' */ EvilHangman(Dict *dict, int letters, int guesses); /* * Destructor * calls the recDel function for removing the allocated space */ ~EvilHangman(); /* * Consructs the entire interface * calls the display array function, arr reset function, word family function * contains check for winning */ bool evilInterface(char guess); /* * displays the array which shows the current status of our word to be guessed */ char *returnDisplayArray(); /* * This method returns the number of guesses remaining */ int returnGuesses(); /* * This method returns a bool depending upon if the user has won or not * It method checks if the number of guesses are less than 0 we return false * Then we check if there are any '_' left. */ bool winCheck(); /* * This method returns the final word which was to show the user which was supposed to guessed * This word is the first word in the wordList but it was never the word the user was supposed to guess. */ string returnFinalWord(); /* * This method returns a character which have already been guessed. */ vector<char> returnGuessed(); /* * This method return a boolean which returns whether there is a wordList or not */ bool isLoaded(void); }; #endif // EVILHANGMAN_H
814bf9872b2d49e5ce9ed4349828b626ca0b5835
c4cc0f0a2a8f15fbc54bfbbd5129393cfb36eb9e
/src/pyramidworks/geometry/circle.cc
8862367711485faf43c2a63d38d33862ad17450b
[]
no_license
rfguimaraes/horus_eye
6009d9cbaecf94ecacf24e55592e2f70255f173c
5a41bc913fe6a75169569d6ec4ae713adc7ad842
refs/heads/master
2021-01-18T05:42:42.764582
2012-01-17T19:39:51
2012-01-17T19:39:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
544
cc
circle.cc
#include "circle.h" #include "rect.h" namespace pyramidworks { namespace geometry { using namespace ugdk; bool Circle::Intersects (const Rect *rect) const { return rect->Intersects(this); } bool Circle::Intersects (const Circle *circle) const { Vector2D distance = circle->position() - this->position(); return distance.length() <= circle->radius_ + this->radius_; } bool Circle::Intersects (const GeometricShape *coll_obj) const { return coll_obj->Intersects(this); } } // namespace geometry } // namespace pyramidworks
f4dc10a9bfde10fdf9e4297a7317ba42bb35d40d
e965e026ac5f454ab0751d53c3a4f6464ca7d920
/rush00/Bullet.hpp
f6160cd6eab1ea2261a4d6ebea0a71090c3fdae8
[]
no_license
AnnyDanny/cpp_piscine_gdanylov
84188f9e8e52b293253ecd58cf1e77edd5549233
e39e667209b23130000c2e737906e0c46f5a57a4
refs/heads/master
2022-01-17T01:07:00.920987
2019-07-05T16:25:36
2019-07-05T16:25:36
193,541,113
0
0
null
null
null
null
UTF-8
C++
false
false
333
hpp
Bullet.hpp
#ifndef Bullet_HPP_ #define Bullet_HPP_ #include "Array.hpp" #include "Enemy.hpp" #include "Entity.hpp" #include "Ptr.hpp" class Bullet : public Entity { public: Bullet(); Bullet(Visual *vis, int x, int y); ~Bullet(); bool move(); bool checkCollisions(Array<Ptr<Enemy> > &enemies); }; #endif // Bullet_HPP_
a27fee0e6a30befab7bcca8f9987b453d2b50822
39fe085377f3c7327e82d92dcb38083d039d8447
/core/sql/optimizer/RelScan.h
b63c71843bed3dfacb479f07041ce907017ed4e0
[ "Apache-2.0" ]
permissive
naveenmahadevuni/incubator-trafodion
0da8d4c7d13a47d3247f260b4e67618c0fae1539
ed24b19436530b2c214e4bf73280bc8e3f419669
refs/heads/master
2021-01-22T04:40:52.402291
2015-07-16T00:02:50
2015-07-16T00:02:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
67,616
h
RelScan.h
/********************************************************************** // @@@ START COPYRIGHT @@@ // // (C) Copyright 1994-2015 Hewlett-Packard Development Company, L.P. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // // @@@ END COPYRIGHT @@@ **********************************************************************/ #ifndef RELSCAN_H #define RELSCAN_H /* -*-C++-*- ****************************************************************************** * * File: RelScan.h * Description: Relational scan (both physical and logical operators) * Created: 4/28/94 * Language: C++ * * * * ****************************************************************************** */ // ----------------------------------------------------------------------- #include "ComSmallDefs.h" #include "ObjectNames.h" #include "RelExpr.h" #include "SearchKey.h" #include "mdam.h" #include "mdamkey.h" #include "disjuncts.h" #include "OptUtilIncludes.h" #include "CmpContext.h" #include "SchemaDB.h" #include "HbaseSearchSpec.h" #include "OptHints.h" #include <vector> // ----------------------------------------------------------------------- // contents of this file // ----------------------------------------------------------------------- class Scan; class FileScan; // a helper class used by class Scan class ScanIndexInfo; class IndexProperty; // ----------------------------------------------------------------------- // forward references // ----------------------------------------------------------------------- class BindWA; class CostScalar; class Generator; class GenericUpdate; class LogicalProperty; class NormWA; class SimpleCostVector; class TableDesc; class MVInfoForDML; class DeltaDefinition; class MvRefreshBuilder; //////////////////// class QueryAnalysis; class CANodeId; class JBBSubsetAnalysis; //////////////////// class QRDescGenerator; class RangeSpecRef; class MVMatch; /************************* MdamFlags used to indicate promise of key access of an index *************************/ #ifndef MDAM_FLAGS #define MDAM_FLAGS enum MdamFlags { UNDECIDED, MDAM_ON, MDAM_OFF }; #endif /****************************** IndexJoinSelectivityEnum indicates if the cost of index join would exceed the cost of scanning the base table or not. *******************************/ #ifndef INDEX_JOIN_SLECTIVITY #define INDEX_JOIN_SLECTIVITY enum IndexJoinSelectivityEnum { INDEX_ONLY_INDEX, INDEX_JOIN_VIABLE, EXCEEDS_BT_SCAN }; #endif // ----------------------------------------------------------------------- // A helper class for class Scan that identifies sets of indexes to be // used in transformations of this scan to an index join (a join between // an index and another scan node). Only the friends should use this // class. // ----------------------------------------------------------------------- class ScanIndexInfo : public NABasicObject { friend class Scan; friend class IndexJoinRule1; friend class IndexJoinRule2; friend class OrOptimizationRule; public: ScanIndexInfo( const ValueIdSet& inputsToIndex, const ValueIdSet& outputsFromIndex, const ValueIdSet& indexPredicates, const ValueIdSet& joinPredicates, const ValueIdSet& outputsFromRightScan, const ValueIdSet& indexColumns, IndexProperty* ixProp ); ScanIndexInfo(const ScanIndexInfo & other); private: ValueIdSet inputsToIndex_; ValueIdSet outputsFromIndex_; ValueIdSet indexPredicates_; ValueIdSet joinPredicates_; ValueIdSet outputsFromRightScan_; ValueIdSet indexColumns_; SET(IndexProperty *) usableIndexes_; NABoolean transformationDone_; }; /**************************************************************** Helper class used to encapsulate properties of an index like promise of key access, viability of index join. Default inputLogProp used to calculate cost of index join. ****************************************************************/ class IndexProperty : public NABasicObject { public: IndexProperty(IndexDesc * index, MdamFlags mdamFlag = MDAM_ON, IndexJoinSelectivityEnum selectivity = INDEX_ONLY_INDEX, const EstLogPropSharedPtr& inELP = NULL): index_(index),mdamFlag_(mdamFlag), selectivityEnum_(selectivity), inputEstLogProp_(inELP) {} //mutator functions void setSelectivity(IndexJoinSelectivityEnum selectivity) { selectivityEnum_ = selectivity; } void setMdamFlag(MdamFlags mdamFlag) { mdamFlag_ = mdamFlag ; } void setInputEstLogProp(const EstLogPropSharedPtr& inELP) { inputEstLogProp_ = inELP; } //Accessor functions IndexDesc * getIndexDesc() const { return index_; } MdamFlags getMdamFlag() const { return mdamFlag_; } IndexJoinSelectivityEnum getSelectivity() const { return selectivityEnum_; } EstLogPropSharedPtr getInputEstLogProp() const { return inputEstLogProp_; } void updatePossibleIndexes(SET(IndexProperty *) & ixOnlyIndexes, Scan * ); COMPARE_RESULT compareIndexPromise(const IndexProperty *) const; private: IndexDesc * index_; MdamFlags mdamFlag_; IndexJoinSelectivityEnum selectivityEnum_; EstLogPropSharedPtr inputEstLogProp_; }; // ----------------------------------------------------------------------- // The Scan operator forms the leaf nodes of a tree of relational // expressions. // ----------------------------------------------------------------------- class Scan : public RelExpr { public: // constructor Scan(OperatorTypeEnum otype = REL_SCAN, CollHeap *oHeap = CmpCommon::statementHeap(), NABoolean stream = FALSE ) : RelExpr(otype, NULL, NULL, oHeap), userTableName_("", oHeap), tabId_(NULL), numIndexJoins_(0), indexOnlyIndexes_(oHeap), indexOnlyScans_(oHeap), indexJoinScans_(oHeap), possibleIndexJoins_(oHeap), isSingleVPScan_(FALSE), stoi_(NULL), samplePercent_(-1.0), clusterSize_(0), scanFlags_(0), // QSTUFF stream_ (stream), embeddedUpdateOrDelete_ (FALSE), selectivityFactor_(-1.0), cardinalityHint_(-1.0), forcedIndexInfo_(FALSE), baseCardinality_(0), // QSTUFF isRewrittenMV_(FALSE) ,matchingMVs_(oHeap) , hbaseAccessOptions_(NULL) {} Scan(const CorrName& name, NABoolean stream = FALSE) : RelExpr(REL_SCAN, NULL, NULL, CmpCommon::statementHeap()), userTableName_(name, CmpCommon::statementHeap()), tabId_(NULL), numIndexJoins_(0), indexOnlyIndexes_(CmpCommon::statementHeap()), indexOnlyScans_(CmpCommon::statementHeap()), indexJoinScans_(CmpCommon::statementHeap()), possibleIndexJoins_(CmpCommon::statementHeap()), isSingleVPScan_(FALSE), stoi_(NULL), samplePercent_(-1.0), clusterSize_(0), scanFlags_(0), // QSTUFF stream_ (stream), embeddedUpdateOrDelete_ (FALSE), selectivityFactor_(-1.0), cardinalityHint_(-1.0), forcedIndexInfo_(FALSE), baseCardinality_(0), // QSTUFF isRewrittenMV_(FALSE) ,matchingMVs_(CmpCommon::statementHeap()) , hbaseAccessOptions_(NULL) {} Scan(const CorrName& name, TableDesc * tabId, OperatorTypeEnum otype = REL_SCAN, CollHeap *oHeap = CmpCommon::statementHeap(), NABoolean stream = FALSE) : RelExpr(otype, NULL, NULL, oHeap), userTableName_(name, oHeap), tabId_(tabId), numIndexJoins_(0), indexOnlyIndexes_(oHeap), indexOnlyScans_(oHeap), indexJoinScans_(oHeap), possibleIndexJoins_(oHeap), isSingleVPScan_(FALSE), stoi_(NULL), samplePercent_(-1.0), clusterSize_(0), scanFlags_(0), // QSTUFF stream_ (stream), embeddedUpdateOrDelete_ (FALSE), selectivityFactor_(-1.0), cardinalityHint_(-1.0), forcedIndexInfo_(FALSE), baseCardinality_(0), // QSTUFF isRewrittenMV_(FALSE) ,matchingMVs_(oHeap) ,hbaseAccessOptions_(NULL) {} Scan(OperatorTypeEnum otype, const CorrName& name, CollHeap *oHeap = CmpCommon::statementHeap()) : RelExpr(otype, NULL, NULL, oHeap), userTableName_(name, CmpCommon::statementHeap()), tabId_(NULL), numIndexJoins_(0), indexOnlyIndexes_(CmpCommon::statementHeap()), indexOnlyScans_(CmpCommon::statementHeap()), indexJoinScans_(CmpCommon::statementHeap()), possibleIndexJoins_(CmpCommon::statementHeap()), isSingleVPScan_(FALSE), stoi_(NULL), samplePercent_(-1.0), clusterSize_(0), scanFlags_(0), // QSTUFF stream_ (FALSE), embeddedUpdateOrDelete_ (FALSE), selectivityFactor_(-1.0), cardinalityHint_(-1.0), forcedIndexInfo_(FALSE), baseCardinality_(0), // QSTUFF isRewrittenMV_(FALSE), hbaseAccessOptions_(NULL) {} // virtual destructor virtual ~Scan() {} // append an ascii-version of RelExpr into cachewa.qryText_ virtual void generateCacheKey(CacheWA& cwa) const; // is this entire expression cacheable after this phase? virtual NABoolean isCacheableExpr(CacheWA& cwa); // change literals of a cacheable query into ConstantParameters virtual RelExpr* normalizeForCache(CacheWA& cwa, BindWA& bindWA); // get the degree of this node (it is a leaf). virtual Int32 getArity() const; virtual NABoolean isHbaseScan() { return FALSE; } // get and set the table name virtual const CorrName & getTableName() const { return userTableName_; } virtual CorrName & getTableName() { return userTableName_; } virtual const CorrName * getPtrToTableName() const { return &userTableName_; } virtual void setTableName(CorrName &userTableName) { userTableName_ = userTableName; } // Methods for accessing and updating the TableDesc TableDesc * getTableDesc() const { return tabId_; } void setTableDesc(TableDesc * tdesc) { tabId_ = tdesc; } TableDesc * getTableDescForBaseSelectivity() { return tabId_; } // This method computes the base selectivity for this table. It is defined // cardinality after applying all local predicates with empty input logical // properties over the base cardinality without hints CostScalar computeBaseSelectivity() const; const SET(IndexProperty *) & getIndexOnlyIndexes() { return indexOnlyIndexes_; } const LIST(ScanIndexInfo *) & getPossibleIndexJoins() { return possibleIndexJoins_; } Lng32 getNumIndexJoins() { return numIndexJoins_; } void setNumIndexJoins(Lng32 n) { numIndexJoins_ = n; } void setHbaseAccessOptions(HbaseAccessOptions *v) { hbaseAccessOptions_ = v; } HbaseAccessOptions *getHbaseAccessOptions() const { return hbaseAccessOptions_; } // the maximal number of index joins that a scan node will be // transformed into static const Lng32 MAX_NUM_INDEX_JOINS; NABoolean isHiveTable() const; NABoolean isHbaseTable() const; NABoolean isSeabaseTable() const; // a virtual function for performing name binding within the query tree virtual RelExpr * bindNode(BindWA *bindWAPtr); // MV -- NABoolean virtual isIncrementalMV() { return TRUE; } void virtual collectMVInformation(MVInfoForDDL *mvInfo, NABoolean isNormalized); RelExpr *bindExpandedMaterializedView(BindWA *bindWA, NATable *naTable); void projectCurrentEpoch(BindWA *bindWA); // Each operator supports a (virtual) method for transforming its // scalar expressions to a canonical form virtual void transformNode(NormWA & normWARef, ExprGroupId & locationOfPointerToMe); // Each operator supports a (virtual) method for rewriting its // value expressions. virtual void rewriteNode(NormWA & normWARef); // The set of values that I can potentially produce as output. virtual void getPotentialOutputValues(ValueIdSet & vs) const; virtual void getPotentialOutputValuesAsVEGs(ValueIdSet & outputs) const ; // synthesize logical properties virtual void synthLogProp(NormWA * normWAPtr = NULL); // synthesize complementary Referential opt constraints // used to eliminate redundant joins and match extra-hub tables. void synthCompRefOptConstraints(NormWA * normWAPtr) ; // finish synthesis of logical properties by setting the cardinality // attributes virtual void finishSynthEstLogProp(); virtual void synthEstLogProp(const EstLogPropSharedPtr& inputEstLogProp); // Generate the read access set. virtual SubTreeAccessSet * calcAccessSets(CollHeap *heap); // reconcile GroupAttribute virtual NABoolean reconcileGroupAttr(GroupAttributes *newGroupAttr); // find out which indexes on the base table are usable for this scan void addIndexInfo(); NABoolean equalityPredOnCol(ItemExpr*); NABoolean updateableIndex(IndexDesc*); // iterate over the usable indexes (index-only and index joins) CollIndex numUsableIndexes(); IndexDesc *getUsableIndex(CollIndex indexNum, IndexProperty **indexOnlyInfo = NULL, ScanIndexInfo **indexJoinInfo = NULL); // add all base cols that contribute to local VEGPredicates to vs void addBaseColsFromVEGPreds(ValueIdSet &vs) const; // set the list of indexonly indexes externally void setIndexOnlyScans(const SET(IndexProperty *) &ixonly) { indexOnlyIndexes_ = ixonly; } const SET(IndexDesc *)& deriveIndexOnlyIndexDesc(); const SET(IndexDesc *)& deriveIndexJoinIndexDesc(); const SET(IndexDesc *)& getIndexJoinIndexDesc(){ return indexJoinScans_; } const LIST(ScanIndexInfo *) &getIndexInfo() { return possibleIndexJoins_; } const ValueIdSet &getComputedPredicates() const { return generatedCCPreds_; } // set (restrict) the potential output values that this node can produce void setPotentialOutputValues(const ValueIdSet &po) { potentialOutputs_ = po; } Cardinality getBaseCardinality() const { return baseCardinality_; } void setBaseCardinality(Cardinality newCard) { baseCardinality_ = newCard; } void setTableAttributes(CANodeId nodeId); virtual HashValue topHash(); virtual NABoolean duplicateMatch(const RelExpr & other) const; virtual RelExpr * copyTopNode(RelExpr *derivedNode = NULL, CollHeap* outHeap = 0); void copyIndexInfo(RelExpr *derivedNode); void removeIndexInfo(); // add all the expressions that are local to this // node to an existing list of expressions (used by GUI tool) virtual void addLocalExpr(LIST(ExprNode *) &xlist, LIST(NAString) &llist) const; virtual void computeMyRequiredResources(RequiredResources & reqResources, EstLogPropSharedPtr & inLP); // get a printable string that identifies the operator virtual const NAString getText() const; const StmtLevelAccessOptions accessOptions() const { return accessOptions_; } StmtLevelAccessOptions &accessOptions() { return accessOptions_; } // --------------------------------------------------------------------- // Scan::normalizeNode() // Invokes ItemExpr::normalizeNode() & then performs mdamBuildDisjuncts // --------------------------------------------------------------------- RelExpr * normalizeNode ( NormWA & normWARef ); // synthesizes compRefOpt constraints. virtual void processCompRefOptConstraints(NormWA * normWAPtr) ; // checks if the scan on the referenced table contains predicates of the form //table.col = 1, or table.col > 1, or (fktable.col = 1 and fktable.col = table.col) // in these examples the col in table.col has to be a non key column. If its a key //column then the predicate is not reducing in the foreignkey-uniquekey sense because // if there table.uniquekey = fktable.foriegnkey type predicate then that predicate // will ensure that table.uniquekey = 1 type predicate is also applied to the // foreign key side and therefore it does not destroy the FK-UK relation. NABoolean containsReducingPredicates(const ValueIdSet& keyCols) const; void setForceIndexInfo() { forcedIndexInfo_ = TRUE; } void resetForceIndexInfo() { forcedIndexInfo_ = FALSE; } NABoolean isIndexInfoForced() const { return forcedIndexInfo_; } // --------------------------------------------------------------------- // Vertical Partitioning related methods // --------------------------------------------------------------------- // checks if TableDesc has vertical partitions NABoolean isVerticalPartitionTableScan() const { return (!tabId_->getVerticalPartitions().isEmpty()); } // Returns isSingleVPScan NABoolean isSingleVerticalPartitionScan() const { return isSingleVPScan_; } // Sets isSingleVPScan void setSingleVerticalPartitionScan(NABoolean isSingleVPScan) { isSingleVPScan_ = isSingleVPScan; } // find out which vertical partitions are needed for this scan // and what columns does each of them provide void getRequiredVerticalPartitions (SET(IndexDesc *) & requiredVPs, SET(ValueIdSet *) & columnsProvidedByVP) const; // if update where current of, updateQry is set to TRUE. // if del where cur of, set to FALSE. void bindUpdateCurrentOf(BindWA *bindWA, NABoolean updateQry); ValueIdList & pkeyHvarList() { return pkeyHvarList_; } OptSqlTableOpenInfo *getOptStoi() const { return stoi_; }; void setOptStoi(OptSqlTableOpenInfo *stoi) { stoi_ = stoi; }; Float32 samplePercent() const { return samplePercent_; }; void samplePercent(Float32 sp) { samplePercent_ = sp; }; CostScalar getScanSelectivityFactor() const { return selectivityFactor_ ; }; void setScanSelectivityFactor(CostScalar sf) { selectivityFactor_ = sf; }; CostScalar getScanCardinalityHint() const { return cardinalityHint_ ; }; void setScanCardinalityHint(CostScalar ch) { cardinalityHint_ = ch; }; NABoolean checkForCardRange(const ValueIdSet & setOfPredicates, CostScalar & newRowCount /* in and out */); NABoolean isSampleScan() const { return samplePercent_ >= 0; }; inline ValueIdSet & sampledColumns() { return sampledColumns_; }; inline const ValueIdSet & sampledColumns() const { return sampledColumns_; }; Lng32 clusterSize() const { return clusterSize_; }; void clusterSize(Lng32 cs) { clusterSize_ = cs; }; NABoolean isClusterSampling() const { return clusterSize_ > 0; }; NABoolean noSecurityCheck() { return (scanFlags_ & NO_SECURITY_CHECK) != 0; } void setNoSecurityCheck(NABoolean v) { (v ? scanFlags_ |= NO_SECURITY_CHECK : scanFlags_ &= ~NO_SECURITY_CHECK); } // QSTUFF VV // -------------------------------------------------------------------- // This routine checks whether a table is both read and updated // -------------------------------------------------------------------- virtual rwErrorStatus checkReadWriteConflicts(NormWA & normWARef); // QSTUFF ^^ // 10-040128-2749 -begin // check if Mdam is enabled based on the context,Current Controltable // setting and defaults. NABoolean isMdamEnabled(const Context *context); // 10-040128-2749 -end // MV -- // Force the Scan to be in the reverse order of the clustering index. NABoolean forceInverseOrder() const { return (scanFlags_ & FORCE_INVERSE_ORDER) != 0; } void setForceInverseOrder(NABoolean v=TRUE) { (v ? scanFlags_ |= FORCE_INVERSE_ORDER : scanFlags_ &= ~FORCE_INVERSE_ORDER); } void setExtraOutputColumns(ValueIdSet outputCols) { extraOutputColumns_ = outputCols; } const ValueIdSet& getExtraOutputColumns() const { return extraOutputColumns_;} void setRewrittenMV() { isRewrittenMV_ = TRUE; } NABoolean isRewrittenMV() const { return isRewrittenMV_;} ////////////////////////////////////////////////////// virtual NABoolean pilotAnalysis(QueryAnalysis* qa); JBBSubsetAnalysis* getJBBSubsetAnalysis(); ////////////////////////////////////////////////////// ItemExpr * applyAssociativityAndCommutativity(QRDescGenerator *descGenerator, CollHeap *heap, ItemExpr *ptrToOldTree, NormWA& normWARef, NABoolean& transformationStatus); NABoolean shrinkNewTree(OperatorTypeEnum op, ItemExpr *ptrToNewTree, RangeSpecRef* xref, NormWA& normWARef); // for MVQR: return the list of matching MVs NAList<MVMatch*> getMatchingMVs() { return matchingMVs_; }; // Insert an MV match (for query rewrite purposes) into the list of potential // replacements for the Scan. Preferred matches are inserted at the // front of the list, non-preferred matches go at the end. void addMVMatch(MVMatch* match, NABoolean isPreferred) { if (isPreferred) matchingMVs_.insertAt(0, match); else matchingMVs_.insert(match); } protected: // Find the most promising index from the LIST, for index joins IndexProperty* findSmallestIndex(const LIST(ScanIndexInfo *)&) const; // Find the most promising index from the set, for index only scans IndexProperty* findSmallestIndex(const SET(IndexProperty *)& indexes) const; // A help method to compute the cpu resource CostScalar computeCpuResourceRequired(const CostScalar& rowsToScan, const CostScalar& rowSize); // Compute the cpu resource for index join scan and index only scan. CostScalar computeCpuResourceForIndexJoinScans(CANodeId tableId); CostScalar computeCpuResourceForIndexOnlyScans(CANodeId tableId); // Compute the amount of work for one index join scan. // indexPredicates specifies the predicates on the index. The amout of the // work is only computed for the key columns contained in the predicates. CostScalar computeCpuResourceForIndexJoin(CANodeId tableId, IndexDesc* iDesc, ValueIdSet& indexPredicates, CostScalar& rowsToScan); // The work is only computed for the key columns contained in ikeys. CostScalar computeCpuResourceForIndexJoin(CANodeId tableId, IndexDesc* iDesc, const ValueIdList& ikeys, CostScalar& rowsToScan); inline void setComputedPredicates(const ValueIdSet &ccPreds) { generatedCCPreds_ = ccPreds; } private: // the first param to this method, vid, is assumed to a OR predicate // that meets all logical conditions such that it can be transformed // to a IN subquery to be implemeneted using a semijoin // this method applies various heuristics and returns a TRUE/FALSE // answer as to whether applying the transformation will yield // better plans. Method is called in Normalizer so we use // heuristics rather than computed cost. NABoolean passSemiJoinHeuristicCheck(ValueId vid, Lng32 numValues, Lng32 numParams, ValueId colVid) const ; // NO_SECURITY_CHECK: if this Scan node was created as part of another // operation (ex., UPDATE becomes UPDATE(SCAN) in parser), // then no security check is needed. enum ScanFlags { NO_SECURITY_CHECK = 0x0001, FORCE_INVERSE_ORDER = 0x0002}; Cardinality baseCardinality_; // from table statistics // the user-specified name of the table CorrName userTableName_; // a unique identifier for the table TableDesc * tabId_; // The following two fields are set once by calling addIndexInfo(). // all indexes that can deliver all the required values SET(IndexProperty *) indexOnlyIndexes_; SET(IndexDesc *) indexOnlyScans_; SET(IndexDesc *) indexJoinScans_; // all indexes that can't deliver all the required values plus // some info about each of those indexes, calculated by addIndexInfo LIST(ScanIndexInfo *) possibleIndexJoins_; ValueIdSet generatedCCPreds_; // the values that this logical scan node can deliver after this // set has been initialized to something other than an empty set ValueIdSet potentialOutputs_; // indicate how many index joins on this table we've already done before // creating this node Lng32 numIndexJoins_; // Contains user specified BROWSE, STABLE or REPEATABLE access type and // user specified SHARE or EXCLUSIVE lock mode. StmtLevelAccessOptions accessOptions_; // See bindUpdateCurrentOf() for details on how this list is created. ValueIdList pkeyHvarList_; // Indicates whether this Scan node is a Scan of a single vertical // partition. It applies to only Scan nodes that have been generated by // the VPJoinRule from a Scan of a vertically partitioned table. It is // set to TRUE in VPJoinRule::nextSubstitute. NABoolean isSingleVPScan_; // tables open information which is necessary during the open of a sql table. OptSqlTableOpenInfo *stoi_; // -- Triggers RelExpr *buildTriggerTransitionTableView(BindWA *bindWA); // The following data members are added to enable sampling in the // scan operator. Currently Scan performs sampling also only if: // 1. There are no selection predicates // 2. The scan is not on multiple VP tables // 3. Reverse ordering is not specified // The Sample enabled scan performs only random sampling with relative // size specification (as a percentage of the table size). // The sampled columns - for mapping the value ids between RelSample and // Scan // ValueIdSet sampledColumns_; // Sample size in percentage (of the table size). Set to > 0.0 if sampling // and -1.0 otherwise. // Float32 samplePercent_; // Cluster size for sampling (in number of blocks). Set to > 0 if cluster // sampling, 0 otherwise. // Lng32 clusterSize_; // MV -- // These are columns prepared by the TCB during execution and projected // for logging purposes. ValueIdSet extraOutputColumns_; NABoolean isRewrittenMV_; // default is FALSE // see enum ScanFlags ULng32 scanFlags_; // QSTUFF NABoolean embeddedUpdateOrDelete_; // QSTUFF //?johannes? // scan produces a continuous stream without returning an end-of-data NABoolean stream_; // is this scan created by FilterRule0 NABoolean forcedIndexInfo_; // selectivity hint from user. Set in the parser. Set if > 0, set -1 otherwise CostScalar selectivityFactor_; CostScalar cardinalityHint_; // hbase options. Like: number of trafodion row versions to retrieve from hbase. HbaseAccessOptions *hbaseAccessOptions_; // List of MV matches that can be substituted for the SCAN using query rewrite. NAList<MVMatch*> matchingMVs_; }; // ----------------------------------------------------------------------- // FileScan : Physical Operator // // The filescan operator differs from its logical Scan operator in // that selection predicates have been further divided into. // Also, an Index has been attached to it and it is guaranteed to // be an index only scan (the predicates_ are covered by the // attached index columns) // ----------------------------------------------------------------------- // Forward so that FileScan knows about it: class FileScanOptimizer; // declared in ScanOptimizer.h class FileScan : public Scan { public: FileScan(const CorrName& tableName, TableDesc * tableDescPtr, const IndexDesc *indexDescPtr, const NABoolean isReverseScan, const Cardinality& baseCardinality, StmtLevelAccessOptions& accessOptions, GroupAttributes * groupAttributesPtr, const ValueIdSet& selectionPredicates, const Disjuncts& disjuncts, const ValueIdSet &generatedCCPreds, OperatorTypeEnum otype = REL_FILE_SCAN ); FileScan(const CorrName& name, TableDesc * tabId, const IndexDesc *indexDesc, OperatorTypeEnum otype = REL_FILE_SCAN, CollHeap *oHeap = CmpCommon::statementHeap()) : Scan (name, tabId, otype, oHeap), indexDesc_(indexDesc), executorPredTree_(NULL), reverseScan_(FALSE), mdamKeyPtr_(NULL), disjunctsPtr_(NULL), pathKeys_(NULL), partKeys_(NULL), hiveSearchKey_(NULL), numberOfBlocksToReadPerAccess_ (-1), estRowsAccessed_ (0), mdamFlag_(UNDECIDED), skipRowsToPreventHalloween_(FALSE), probes_(0), successfulProbes_(0), uniqueProbes_(0), duplicateSuccProbes_(0), failedProbes_(0), tuplesProcessed_(0) {} // destructor virtual ~FileScan() {} // The set of values that I can potentially produce as output. virtual void getPotentialOutputValues(ValueIdSet & vs) const; virtual NABoolean patternMatch(const RelExpr & other) const; virtual NABoolean duplicateMatch(const RelExpr & other) const; virtual RelExpr * copyTopNode(RelExpr *derivedNode = NULL, CollHeap* outHeap = 0); // the FileScan node is purely physical virtual NABoolean isLogical() const; virtual NABoolean isPhysical() const; virtual PhysicalProperty *synthPhysicalProperty(const Context *context, const Lng32 planNumber, PlanWorkSpace *pws); PhysicalProperty * synthHiveScanPhysicalProperty(const Context *context, const Lng32 planNumber, ValueIdList &sortOrderVEG); PhysicalProperty * synthHbaseScanPhysicalProperty(const Context *context, const Lng32 planNumber, ValueIdList &sortOrderVEG); // Obtain a pointer to a CostMethod object that provides access // to the cost estimation functions for nodes of this type. virtual CostMethod* costMethod() const; // method to do code generation virtual RelExpr * preCodeGen(Generator * generator, const ValueIdSet & externalInputs, ValueIdSet &pulledNewInputs); virtual short codeGen(Generator*); short codeGenForHive(Generator*); short genForTextAndSeq(Generator * generator, Queue * &hdfsFileInfoList, Queue * &hdfsFileRangeBeginList, Queue * &hdfsFileRangeNumList, char* &hdfsHostName, Int32 &hdfsPort, NABoolean &doMultiCursor, NABoolean &doSplitFileOpt); static short genForOrc(Generator * generator, const HHDFSTableStats* hTabStats, const PartitioningFunction * mypart, Queue * &hdfsFileInfoList, Queue * &hdfsFileRangeBeginList, Queue * &hdfsFileRangeNumList, char* &hdfsHostName, Int32 &hdfsPort); static desc_struct *createHbaseTableDesc(const char * table_name); // Return a (short-lived) reference to the respective predicates const ValueIdList & getBeginKeyPred() const { return beginKeyPred_; } const ValueIdList & getEndKeyPred() const { return endKeyPred_; } // executor predicates accessor functions: const ValueIdSet& getExecutorPredicates() const { return executorPredicates_; } void setExecutorPredicates(const ValueIdSet& executorPredicates) { executorPredicates_ = executorPredicates; executorPredicates_ -= getComputedPredicates(); } // Naked access to executorPredicates_ only because there is code // in precodegen that needs this (old code) (don't use this, use // get/set functions above): ValueIdSet& executorPred() { return executorPredicates_; } ItemExpr * getExecutorPredTree() { return executorPredTree_; } ValueIdSet & retrievedCols() { return retrievedCols_; } NABoolean getReverseScan() const { return reverseScan_; } // void setReverseScan(NABoolean rs) { reverseScan_ = rs; } // IndexDesc * indexDesc() { return indexDesc_; } const IndexDesc * getIndexDesc() const { return indexDesc_; } void setIndexDesc (const IndexDesc* idx) {indexDesc_ = idx;} // for code generator who shouldn't access phys. props: const PartitioningFunction *getPartFunc() const; //used to retrieve the operator type virtual const NAString getText() const; //used to retrieve the description virtual const NAString getTypeText() const; inline bool isFullScanPresent()const { if (pathKeys_ && pathKeys_->isFullScanPresent()) return true; return false; } virtual void addLocalExpr(LIST(ExprNode *) &xlist, LIST(NAString) &llist) const; void setSearchKey(SearchKey *searchKeyPtr) { pathKeys_ = searchKeyPtr; } const SearchKey * getSearchKeyPtr() const { return pathKeys_; } const SearchKey * getSearchKey() const { return getSearchKeyPtr(); } // Naked access to pathKeys_ only because there is code // in precodegen that needs this (old code): SearchKey* searchKey() { return pathKeys_; } HivePartitionAndBucketKey * getHiveSearchKey() { return hiveSearchKey_; } void setHiveSearchKey(HivePartitionAndBucketKey *s) { hiveSearchKey_ = s; } // adds Explain information to this node. Implemented in // Generator/GenExplain.C ExplainTuple *addSpecificExplainInfo(ExplainTupleMaster *explainTuple, ComTdb * tdb, Generator *generator); MdamKey* mdamKeyPtr() { return mdamKeyPtr_; } const MdamKey* getMdamKeyPtr() const { return mdamKeyPtr_; } void setMdamKey(MdamKey *mdamKeyPtr) { mdamKeyPtr_ = mdamKeyPtr; } MdamFlags getMdamFlag()const { return mdamFlag_; } void setMdamFlag(MdamFlags mdamFlag) { mdamFlag_ = mdamFlag; } const Disjuncts& getDisjuncts() const; virtual NABoolean okToAttemptESPParallelism ( const Context* myContext, /*IN*/ PlanWorkSpace* pws, /*IN*/ Lng32& numOfESPs, /*OUT*/ float& allowedDeviation, /*OUT*/ NABoolean& numOfESPsForced /*OUT*/) ; virtual void addPartKeyPredsToSelectionPreds( const ValueIdSet& partKeyPreds, const ValueIdSet& pivs); virtual Lng32 getNumberOfBlocksToReadPerAccess() const { // make sure that value has been initialized before using it: CMPASSERT(numberOfBlocksToReadPerAccess_ > -1); return numberOfBlocksToReadPerAccess_; } virtual void setNumberOfBlocksToReadPerAccess(const Lng32& blocks) { DCMPASSERT(blocks > -1); numberOfBlocksToReadPerAccess_ = blocks; } virtual PlanPriority computeOperatorPriority (const Context* context, PlanWorkSpace *pws=NULL, Lng32 planNumber=0); // ----------------------------------------------------- // generate CONTROL QUERY SHAPE fragment for this node. // ----------------------------------------------------- virtual short generateShape(CollHeap * space, char * buf, NAString * shapeStr = NULL); NABoolean isRecommendedByHints(); inline const CostScalar getEstRowsAccessed() const { return estRowsAccessed_; } inline void setEstRowsAccessed(CostScalar r) { estRowsAccessed_ = r; } virtual void setSkipRowsToPreventHalloween() { skipRowsToPreventHalloween_ = TRUE; } inline const ValueIdList &minMaxHJColumns() const { return minMaxHJColumns_; } inline void addMinMaxHJColumn(const ValueId &col) { minMaxHJColumns_.insert(col); } CostScalar getProbes() const { return probes_;}; CostScalar getSuccessfulProbes() const { return successfulProbes_; }; CostScalar getUniqueProbes() const { return uniqueProbes_; }; CostScalar getDuplicatedSuccProbes() const { return duplicateSuccProbes_; } CostScalar getFailedProbes() const { return failedProbes_; } CostScalar getTuplesProcessed() const { return tuplesProcessed_; } void setProbes(CostScalar x) { probes_ = x;}; void setSuccessfulProbes(CostScalar x) { successfulProbes_ = x; }; void setUniqueProbes(CostScalar x) { uniqueProbes_ = x; }; void setDuplicatedSuccProbes(CostScalar x) { duplicateSuccProbes_ = x; } void setFailedProbes(CostScalar x) { failedProbes_ = x; } void setTuplesProcessed(CostScalar x) { tuplesProcessed_ = x; } void setDoUseSearchKey(NABoolean x) { doUseSearchKey_ = x; }; NABoolean getDoUseSearchKey() { return doUseSearchKey_ ; }; RangePartitioningFunction* createRangePartFuncForHbaseTableUsingStats( Lng32& partns, const ValueIdSet& partitioningKeyColumns, const ValueIdList& partitioningKeyColumnsList, const ValueIdList& partitioningKeyColumnsOrder); private: //--------------- Disjuncts ------------------- MdamKey *mdamKeyPtr_; const Disjuncts *disjunctsPtr_; // computed predicates that are reflected in the disjuncts // (those are predicates on computed columns that are // computed from regular predicates) //--------------- Search key ---------------- // A key object. It cannot be constant because some of its // members are modified in GenPreCode.C:FileScan:preCodeGen SearchKey * pathKeys_; // a search key for the partitioning key (maybe same as pathKeys_) SearchKey * partKeys_; // For Hive tables, a bit mask of selected Hive partitions and buckets HivePartitionAndBucketKey *hiveSearchKey_; // the index descriptor const IndexDesc *indexDesc_; // scan direction const NABoolean reverseScan_; //--------- Members to be used at code generation: // executor predicates ValueIdSet executorPredicates_; ItemExpr * executorPredTree_; // Columns to be retrieved from filesystem ValueIdSet retrievedCols_; // key predicates ValueIdList beginKeyPred_; ValueIdList endKeyPred_; // helper functions: void init(); // Estimate of number of blocks that DP2 needs to read // per access. This value is passed to DP2 by the executor, // DP2 uses it to decide whether it will do read ahead // or not. // Its value is -1 if uninitialized Lng32 numberOfBlocksToReadPerAccess_; MdamFlags mdamFlag_; // This flag is needed only by EXPLAIN. NABoolean skipRowsToPreventHalloween_; // Estimated number of Dp2 rows accessed. CostScalar estRowsAccessed_; // columns used for min/max hash join optimization ValueIdList minMaxHJColumns_; ///////////////////////////////////////////////////// // probe counts, transfered from ScanOptimizerFileScan ///////////////////////////////////////////////////// // The total number of probes CostScalar probes_; // The total number of probes that return data CostScalar successfulProbes_; // The number of distinct probes (successful and failed) CostScalar uniqueProbes_; // The number of successful probes (successfulProbes_) that // are not unique. duplicateSuccProbes = successfulProbes - // uniqueSuccProbes. CostScalar duplicateSuccProbes_; // the number of probes do not return // data. failedProbes = probes - successfulProbes CostScalar failedProbes_; // total number of tuples processed under 'probes_' probes CostScalar tuplesProcessed_; NABoolean doUseSearchKey_; }; // class FileScan class DP2Scan : public FileScan { public: // constructor DP2Scan(const CorrName& tableName, TableDesc * tableDescPtr, const IndexDesc *indexDescPtr, const NABoolean isReverseScan, const Cardinality& baseCardinality, StmtLevelAccessOptions& accessOptions, GroupAttributes * groupAttributesPtr, const ValueIdSet& selectionPredicates, const Disjuncts& disjuncts ); DP2Scan(const CorrName & name, TableDesc *tableDesc, const IndexDesc *indexDesc, OperatorTypeEnum otype = REL_FILE_SCAN) : FileScan (name, tableDesc, indexDesc, otype) { } // Obtain a pointer to a CostMethod object that provides access // to the cost estimation functions for nodes of this type. virtual CostMethod* costMethod() const; }; // ----------------------------------------------------------------------- /*! * \brief HbaseAccess Class. */ // ----------------------------------------------------------------------- // // // At some point of time, we need to revisit the class hierarchy for Scan // HbaseAccess, FileScan. Quite many code in FileScan (such as costing) is // relevant to both HbaseAccess and Hive scan, and yet there are those not // relevant at all (MDAM). A possible new class hierarchy can be as follows. // // Scan -> FileScan(with general cost) -> SQFileScan (SQ specific costing code)-> DP2SCan // -> HiveFileSCan // -> HbaseFileSCan // class HbaseAccess : public FileScan { public: enum AccessType { SELECT_, INSERT_, UPDATE_, DELETE_, COPROC_AGGR_ }; enum SNPType { SNP_NONE, SNP_SUFFIX, SNP_LATEST }; //latest snapshot support -- enum LatestSnpSupportEnum { latest_snp_supported, latest_snp_index_table,// index table not supported with latest snapshot latest_snp_no_snapshot_available,//snapshot not available latest_snp_not_trafodion_table, // not a trafodion table latest_snp_small_table //table is smaller than a certain threshold }; class SortValue { public: SortValue() { }; bool operator < (const SortValue & other ) const { return (str_ < other.str_); } bool operator == (const SortValue & other ) const { return (str_ == other.str_); } NAString str_; ValueId vid_; }; // constructor //! HbaseAccess Constructor HbaseAccess(CorrName &corrName, OperatorTypeEnum otype = REL_HBASE_ACCESS, CollHeap *oHeap = CmpCommon::statementHeap()); HbaseAccess(CorrName &corrName, TableDesc *tableDesc, IndexDesc *indexDesc, const NABoolean isReverseScan, const Cardinality& baseCardinality, StmtLevelAccessOptions& accessOptions, GroupAttributes * groupAttributesPtr, const ValueIdSet& selectionPredicates, const Disjuncts& disjuncts, const ValueIdSet& generatedCCPreds, OperatorTypeEnum otype = REL_HBASE_ACCESS, CollHeap *oHeap = CmpCommon::statementHeap()); HbaseAccess(CorrName &corrName, NABoolean isRW, NABoolean isCW, CollHeap *oHeap = CmpCommon::statementHeap()); HbaseAccess(OperatorTypeEnum otype = REL_HBASE_ACCESS, CollHeap *oHeap = CmpCommon::statementHeap()); // destructors //! ~HbaseAccess Destructor virtual ~HbaseAccess(); virtual RelExpr *bindNode(BindWA *bindWAPtr); virtual ExplainTuple * addSpecificExplainInfo(ExplainTupleMaster *explainTuple, ComTdb * tdb, Generator *generator); //! getPotentialOutputValues method // a virtual function for computing the potential outputValues virtual void getPotentialOutputValues(ValueIdSet & vs) const; virtual Lng32 numParams() { return 1; } // acessors //! getVirtualTableName method // returns a const char pointer to the name of the virtual Table // should return a CorrName?## virtual const char *getVirtualTableName() { return getTableName().getQualifiedNameObj().getObjectName().data(); } //used to retrieve the operator type virtual const NAString getText() const; //! getArity method // get the degree of this node (it is a leaf op). virtual Int32 getArity() const { return 0; } // mutators //! createVirtualTableDesc method // creates a desc_struct for the Virtual Table // virtual desc_struct *createVirtualTableDesc(); static desc_struct *createVirtualTableDesc(const char * name, NABoolean isRW = FALSE, NABoolean isCW = FALSE); static desc_struct *createVirtualTableDesc(const char * name, NAList<char*> &colNameList, NAList<char*> &colValList); // return TRUE, if col lengths in virtual desc is same as current default values. // return FALSE, if they are different. If they are, caller will clear the cache // and generate a new descriptor. static NABoolean validateVirtualTableDesc(NATable * naTable); NAList<HbaseSearchKey*>& getHbaseSearchKeys() { return listOfSearchKeys_; }; void addSearchKey(HbaseSearchKey* sk) { listOfSearchKeys_.insertAt(listOfSearchKeys_.entries(), sk); }; //! getPotentialOutputValues method // computes the output values the node can generate // Relies on TableValuedFunctions implementation. // determine which columns to retrieve from the file void computeRetrievedCols(); //! preCodeGen method // method to do preCode generation virtual RelExpr * preCodeGen(Generator * generator, const ValueIdSet & externalInputs, ValueIdSet &pulledNewInputs); static short processNonSQHbaseKeyPreds(Generator * generator, ValueIdSet &preds, ListOfUniqueRows &listOfUniqueRows, ListOfRangeRows &listOfRangeRows); static short processSQHbaseKeyPreds(Generator * generator, NAList<HbaseSearchKey*>& searchKeys, ListOfUniqueRows &listOfUniqueRows, ListOfRangeRows &listOfRangeRows); //! codeGen method // virtual method used by the generator to generate the node virtual short codeGen(Generator*); //! copyTopNode // used to create an Almost complete copy of the node virtual RelExpr * copyTopNode(RelExpr *derivedNode = NULL, CollHeap* outHeap = 0); //! synthLogProp method // synthesize logical properties virtual void synthLogProp(NormWA * normWAPtr = NULL); //! synthEstLogProp method // used by the compiler to estimate cost virtual void synthEstLogProp(const EstLogPropSharedPtr& inputEstLogProp); //! getText method // used to display the name of the node. // virtual const NAString getText() const; AccessType &accessType() { return accessType_; } NABoolean isRW() { return isRW_; } NABoolean isCW() { return isCW_; } virtual NABoolean isLogical() const { return FALSE; } virtual NABoolean isPhysical() const { return TRUE; } virtual NABoolean isHbaseScan() { return TRUE; } static int createAsciiColAndCastExpr(Generator * generator, const NAType &givenType, ItemExpr *&asciiValue, ItemExpr *&castValue); static int createAsciiColAndCastExpr2(Generator * generator, ItemExpr * colNode, const NAType &givenType, ItemExpr *&asciiValue, ItemExpr *&castValue, NABoolean alignedFormat = FALSE); static short genRowIdExpr(Generator * generator, const NAColumnArray & keyColumns, NAList<HbaseSearchKey*>& searchKeys, ex_cri_desc * work_cri_desc, const Int32 work_atp, const Int32 rowIdAsciiTuppIndex, const Int32 rowIdTuppIndex, ULng32 &rowIdAsciiRowLen, ExpTupleDesc* &rowIdAsciiTupleDesc, UInt32 &rowIdLength, ex_expr* &rowIdExpr); static short genRowIdExprForNonSQ(Generator * generator, const NAColumnArray & keyColumns, NAList<HbaseSearchKey*>& searchKeys, ex_cri_desc * work_cri_desc, const Int32 work_atp, const Int32 rowIdAsciiTuppIndex, const Int32 rowIdTuppIndex, ULng32 &rowIdAsciiRowLen, ExpTupleDesc* &rowIdAsciiTupleDesc, UInt32 &rowIdLength, ex_expr* &rowIdExpr); static short genListsOfRows(Generator * generator, NAList<HbaseRangeRows> &listOfRangeRows, NAList<HbaseUniqueRows> &listOfUniqueRows, Queue* &tdbListOfRangeRows, Queue* &tdbListOfUniqueRows); static short genColName(Generator * generator, ItemExpr * col_node, char* &colNameInList); static short genListOfColNames(Generator * generator, const IndexDesc * indexDesc, ValueIdList &columnList, Queue* &listOfColNames); static void addReferenceFromItemExprTree(ItemExpr * ie, NABoolean addCol, NABoolean addHBF, ValueIdSet &colRefVIDset); static void addColReferenceFromVIDlist(const ValueIdList &exprList, ValueIdSet &colRefVIDset); static void addReferenceFromVIDset(const ValueIdSet &exprList, NABoolean addCol, NABoolean addHBF, ValueIdSet &colRefVIDset); static void addColReferenceFromRightChildOfVIDarray(ValueIdArray &exprList, ValueIdSet &colRefVIDset); static short createHbaseColId(const NAColumn * nac, NAString &cid, NABoolean isSecondaryIndex = FALSE); static short returnDups(std::vector<SortValue> &myvector, ValueIdList &srcVIDlist, ValueIdList &dupVIDlist); static short createSortValue(ItemExpr * col_node, std::vector<SortValue> &myvector, NABoolean isSecondaryIndex = FALSE); static short sortValues (const ValueIdList &inList, ValueIdList &sortedList, NABoolean isSecondaryIndex = FALSE); static short sortValues (const ValueIdSet &inSet, ValueIdList &sortedList, ValueIdList &srcVIDlist, ValueIdList &dupVIDlist, NABoolean isSecondaryIndex = FALSE); static short sortValues (NASet<NAString> &inSet, NAList<NAString> &sortedList); static NABoolean columnEnabledForSerialization(ItemExpr * colNode); static NABoolean isEncodingNeededForSerialization(ItemExpr * colNode); //const IndexDesc* getIndexDesc() const { return indexDesc_; }; NABoolean &uniqueHbaseOper() { return uniqueHbaseOper_; } NABoolean &uniqueRowsetHbaseOper() { return uniqueRowsetHbaseOper_; } NABoolean uniqueRowsetHbaseOper() const { return uniqueRowsetHbaseOper_; } NABoolean isHbaseFilterPred(Generator * generator, ItemExpr * ie, ValueId &colVID, ValueId &valueVID, NAString &op, NABoolean &removeFromOrigList); short extractHbaseFilterPreds(Generator * generator, ValueIdSet &preds, ValueIdSet &newExePreds); NABoolean isSnapshotScanFeasible(LatestSnpSupportEnum snpNotSupported, char * tableName); protected: // The search keys built during optimization. NAList<HbaseSearchKey*> listOfSearchKeys_; ListOfUniqueRows listOfUniqueRows_; ListOfRangeRows listOfRangeRows_; //! HbaseAccess Copy Constructor // Copy constructor without heap is not implemented nor allowed. HbaseAccess(const HbaseAccess &other); //CorrName corrName_; AccessType accessType_; ItemExpr * rowIdCast_; NABoolean isRW_; NABoolean isCW_; // list of columns that need to be retrieved from hbase. These are used // in executor preds, update/merge expressions or returned back as output // values. ValueIdSet retColRefSet_; NASet<NAString> retHbaseColRefSet_; NABoolean uniqueHbaseOper_; NABoolean uniqueRowsetHbaseOper_; // these lists are populated during the preCodeGen phase. ValueIdList hbaseFilterColVIDlist_; ValueIdList hbaseFilterValueVIDlist_; NAList<NAString> opList_; SNPType snpType_; }; // class HbaseAccess // NOTE: this class is currently not being used. class HbaseAccessCoProcAggr : public HbaseAccess { public: HbaseAccessCoProcAggr(CorrName &corrName, ValueIdSet &aggrExpr, TableDesc *tableDesc, IndexDesc *indexDesc, const NABoolean isReverseScan, const Cardinality& baseCardinality, StmtLevelAccessOptions& accessOptions, GroupAttributes * groupAttributesPtr, const ValueIdSet& selectionPredicates, const Disjuncts& disjuncts, CollHeap *oHeap = CmpCommon::statementHeap()); HbaseAccessCoProcAggr(CorrName &corrName, ValueIdSet &aggrExpr, CollHeap *oHeap = CmpCommon::statementHeap()); HbaseAccessCoProcAggr(CollHeap *oHeap = CmpCommon::statementHeap()); // destructors //! ~HbaseAccess Destructor virtual ~HbaseAccessCoProcAggr(); virtual RelExpr *bindNode(BindWA *bindWAPtr); //used to retrieve the operator type virtual const NAString getText() const; // method to do preCode generation virtual RelExpr * preCodeGen(Generator * generator, const ValueIdSet & externalInputs, ValueIdSet &pulledNewInputs); //! codeGen method // virtual method used by the generator to generate the node virtual short codeGen(Generator*); //! copyTopNode // used to create an Almost complete copy of the node virtual RelExpr * copyTopNode(RelExpr *derivedNode = NULL, CollHeap* outHeap = 0); virtual void getPotentialOutputValues(ValueIdSet & outputValues) const; virtual PhysicalProperty *synthPhysicalProperty(const Context *context, const Lng32 planNumber, PlanWorkSpace *pws); virtual NABoolean isLogical() const { return TRUE; } virtual NABoolean isPhysical() const { return TRUE; } ValueIdSet &aggregateExpr() { return aggregateExpr_; } const ValueIdSet &aggregateExpr() const { return aggregateExpr_; } protected: // list of columns that need to be retrieved from hbase. These are used // in executor preds, update/merge expressions or returned back as output // values. ValueIdSet aggregateExpr_; }; // class HbaseAccessCoProcAggr // ----------------------------------------------------------------------- // The Describe class represents scan on a 'virtual' table that contains // the output of the DESCRIBE(SHOWDDL) command. // ----------------------------------------------------------------------- #pragma nowarn(1506) // warning elimination class Describe : public Scan { public: enum Format { INVOKE_, // describe sql/mp INVOKE style SHOWSTATS_, //display histograms for specified table SHORT_, // just show ddl for table LONG_, // show everything about this table (ddl, indexes, views, etc) PLAN_, // return information about runtime plan. Currently, details // about expressions and clauses are the only info returned. // For internal debugging use only. Not externalized to users. LABEL_, // For showlabel SHAPE_, // For SHOWSHAPE. Generates a CONTROL QUERY SHAPE statement for // the given query. TRANSACTION_, // display current transaction settings in effect for // those items that can be set by a SET TRANSACTION statement. SET_, // For SHOWSET. Shows all runtime SET stmts in effect. ENVVARS_, // For 'get envvars'. Shows all envvars in effect. // show the corresponding control options that are in effect. CONTROL_FIRST_, CONTROL_ALL_ = CONTROL_FIRST_, CONTROL_SHAPE_, CONTROL_DEFAULTS_, CONTROL_TABLE_, CONTROL_SESSION_, CONTROL_LAST_ = CONTROL_SESSION_, LEAKS_, // For SHOWLEAKS. STATIC_PLAN_,// same as PLAN_ but from static pre-compiled programs. // Not externalized. SHOWQRYSTATS_ // display histograms for specified query }; enum ShowcontrolOption { MATCH_FULL_, MATCH_FULL_NO_HEADER_, // internal option, meant for use by utilities MATCH_PARTIAL_, MATCH_NONE_ }; // -------------------------------------------------------------------------- // Note: Parser passes in value UR of parameter labelAnsiNameSpace for // procedures if the keyword PROCEDURE is specified, even though the valid // namespace value of the procedure is TA. SHOWDDL has been changed to // no longer rely on the PROCEDURE keyword to support stored procedures. // -------------------------------------------------------------------------- Describe(char * originalQuery, const CorrName &describedTableName, Format format = LONG_, ComAnsiNameSpace labelAnsiNameSpace = COM_TABLE_NAME, ULng32 flags = 0, NABoolean header = TRUE) : Scan(REL_DESCRIBE), describedTableName_(describedTableName, CmpCommon::statementHeap()), pUUDFName_(NULL), format_(format), labelAnsiNameSpace_(labelAnsiNameSpace), // See comments above flags_(flags), header_(header), // header = FALSE will produce showcontrol output with // any header information. This option will be used by //utilities and is not externalised. isSchema_(false), toTryPublicSchema_(false), authIDClass_(COM_UNKNOWN_ID_CLASS), isComponent_(false) { setNonCacheable(); if (originalQuery) { originalQuery_ = new (CmpCommon::statementHeap()) char[strlen(originalQuery)+1]; strcpy(originalQuery_, originalQuery); } else originalQuery_ = NULL; } Describe(char * originalQuery, const SchemaName &schemaName, Format format = LONG_, ULng32 flags = 0, NABoolean header = TRUE) : Scan(REL_DESCRIBE), describedTableName_("", CmpCommon::statementHeap()), pUUDFName_(NULL), schemaQualName_(schemaName, CmpCommon::statementHeap()), format_(format), flags_(flags), header_(header), // header = FALSE will produce showcontrol output with // any header information. This option will be used by //utilities and is not externalised. isSchema_(true), toTryPublicSchema_(false), authIDClass_(COM_UNKNOWN_ID_CLASS), isComponent_(false) { setNonCacheable(); if (originalQuery) { originalQuery_ = new (CmpCommon::statementHeap()) char[strlen(originalQuery)+1]; strcpy(originalQuery_, originalQuery); } else originalQuery_ = NULL; if (schemaQualName_.getCatalogName().isNull()) schemaQualName_.setCatalogName( ActiveSchemaDB()->getDefaultSchema().getCatalogName()); schemaName_ = ToAnsiIdentifier(schemaQualName_.getCatalogName()) + "." + ToAnsiIdentifier(schemaQualName_.getSchemaName()); CorrName temp(schemaQualName_.getSchemaName(),CmpCommon::statementHeap(), schemaQualName_.getSchemaName(),schemaQualName_.getCatalogName()); describedTableName_ = temp; } // constructor used for SHOWDDL USER and SHOWDDL ROLE Describe(char * originalQuery, ComIdClass authIDClass, const NAString &authIDName, Format format = LONG_, ULng32 flags = 0, NABoolean header = TRUE) : Scan(REL_DESCRIBE), describedTableName_("", CmpCommon::statementHeap()), pUUDFName_(NULL), schemaQualName_("", CmpCommon::statementHeap()), format_(format), flags_(flags), header_(header), // header = FALSE will produce showcontrol output with // any header information. This option will be used by //utilities and is not externalised. isSchema_(false), toTryPublicSchema_(false), labelAnsiNameSpace_(COM_UNKNOWN_NAME), authIDClass_ (authIDClass), authIDName_(authIDName), isComponent_(false) { setNonCacheable(); if (originalQuery) { originalQuery_ = new (CmpCommon::statementHeap()) char[strlen(originalQuery)+1]; strcpy(originalQuery_, originalQuery); } else originalQuery_ = NULL; } // constructor used for SHOWDDL USER and SHOWDDL ROLE Describe(char * originalQuery, const NAString &componentName, Format format = LONG_, ULng32 flags = 0, NABoolean header = TRUE) : Scan(REL_DESCRIBE), describedTableName_("", CmpCommon::statementHeap()), pUUDFName_(NULL), schemaQualName_("", CmpCommon::statementHeap()), format_(format), flags_(flags), header_(header), // header = FALSE will produce showcontrol output with // any header information. This option will be used by //utilities and is not externalised. isSchema_(false), toTryPublicSchema_(false), labelAnsiNameSpace_(COM_UNKNOWN_NAME), authIDClass_ (COM_UNKNOWN_ID_CLASS), componentName_(componentName), isComponent_(true) { setNonCacheable(); if (originalQuery) { originalQuery_ = new (CmpCommon::statementHeap()) char[strlen(originalQuery)+1]; strcpy(originalQuery_, originalQuery); } else originalQuery_ = NULL; } ~Describe() { delete originalQuery_; delete pUUDFName_; } virtual RelExpr * bindNode(BindWA *bindWAPtr); // this is both logical and physical node virtual NABoolean isLogical() const {return TRUE;} virtual NABoolean isPhysical() const {return TRUE;} // The set of values that I can potentially produce as output. virtual void getPotentialOutputValues(ValueIdSet & vs) const; // cost functions virtual PhysicalProperty *synthPhysicalProperty(const Context *context, const Lng32 planNumber, PlanWorkSpace *pws); // method to do code generation virtual short codeGen(Generator*); // various PC methods // get the degree of this node (it is a leaf op). virtual Int32 getArity() const {return 0;} virtual RelExpr * copyTopNode(RelExpr *derivedNode = NULL, CollHeap* outHeap = 0); virtual const NAString getText() const; const CorrName &getDescribedTableName() const { return describedTableName_; } Format getFormat() const {return format_;} NABoolean getIsBrief() const { return (flags_ & 0x00000008); } NABoolean getIsDetail() const { return (flags_ & 0x00000004); } NABoolean getIsExternal() const { return (flags_ & 0x00000020); } NABoolean getIsInternal() const { return (flags_ & 0x00000040); } NABoolean getIsSchema() const { return isSchema_; } NABoolean getIsUser() const { return (authIDClass_ == COM_USER_CLASS); } NABoolean getIsRole() const { return (authIDClass_ == COM_ROLE_CLASS); } NABoolean getIsComponent() const { return isComponent_; } ComAnsiNameSpace getLabelAnsiNameSpace() const { return labelAnsiNameSpace_; } // TRUE => output detail (long) label info // FALSE => output short label info NABoolean getLabelDetail() const { return (flags_ & 0x00000001); } void setLabelDetail(const NABoolean wantDetail) { if(wantDetail) flags_ = flags_ | 0x00000001; else flags_ = flags_ & 0xFFFFFFFE; } NABoolean getDisplayPrivileges() const { return (flags_ & 0x00000010); } NABoolean getDisplayPrivilegesOnly() const { return (flags_ & 0x00000080); } NABoolean getDisplaySynonymsOnly() const { return (flags_ & 0x00000100); } void setLabelAnsiNameSpace(const ComAnsiNameSpace nameSpace) { labelAnsiNameSpace_ = nameSpace; } ULng32 getFlags() const { return flags_; } void setFlags(const ULng32 flags) { flags_ = flags; } NABoolean getHeader() const { return header_; } const SchemaName& getSchemaQualifiedName() const { return schemaQualName_; } const NAString& getSchemaName() const { return schemaName_; } const NAString& getAuthIDName() const { return authIDName_; } const NAString& getComponentName() const { return componentName_; } NABoolean toTryPublicSchema() const { return toTryPublicSchema_; } void setToTryPublicSchema(const NABoolean val) { toTryPublicSchema_=val; } void setDescribedTableSchema(const NAString cat, const NAString sch) { describedTableName_.getQualifiedNameObj().setCatalogName(cat); describedTableName_.getQualifiedNameObj().setSchemaName(sch); } const QualifiedName * getUudfQualNamePtr() const { return pUUDFName_; } QualifiedName * getUudfQualNamePtr() { return pUUDFName_; } const QualifiedName & getUudfQualName() const { if (pUUDFName_ EQU NULL) { const_cast<Describe*>(this)->pUUDFName_ = new (STMTHEAP) QualifiedName(STMTHEAP); } return *pUUDFName_; } QualifiedName & getUudfQualName() { if (pUUDFName_ EQU NULL) pUUDFName_ = new (STMTHEAP) QualifiedName(STMTHEAP); return *pUUDFName_; } void setUudfQualNamePtr(QualifiedName * pUudfQualName) // shallow copy { pUUDFName_ = pUudfQualName; // shallow copy // pUudfQualName should point to a QualifiedName object // allocated in the PARSERHEAP(). pUUDFName_ is only used // with SHOWDDL ACTION <action-qual-name> ON UNIVERSAL // FUNCTION <uudf-qual-name> ... syntax. } void setUudfQualName(const QualifiedName & src) // deep copy { if (pUUDFName_ EQU NULL) pUUDFName_ = new (STMTHEAP) QualifiedName(STMTHEAP); *pUUDFName_ = src; } NABoolean maybeInMD() const { return ( format_ == INVOKE_ || format_ == SHOWSTATS_ || format_ == SHORT_ || format_ == LONG_ || format_ == LABEL_) ; } private: CorrName describedTableName_; // pUUDFName_ is only used when describedTableName_ contains a routine action QualifiedName *pUUDFName_; Format format_; char * originalQuery_; // used for SHOWLABEL ComAnsiNameSpace labelAnsiNameSpace_; ULng32 flags_; NABoolean header_; NABoolean isSchema_; SchemaName schemaQualName_; NAString schemaName_; NABoolean toTryPublicSchema_; // Added for SHOWDDL USER & SHOWDDL ROLE ComIdClass authIDClass_; NAString authIDName_; // Added for SHOWDDL component NABoolean isComponent_; NAString componentName_; // copy ctor Describe (const Describe & des) ; // not defined - DO NOT USE }; // class Describe #pragma warn(1506) // warning elimination #endif /* RELSCAN_H */
912a6648d256d76f64ed61db17d8f9dfe1046f00
abe20324c6fd5cb12f0f36fd90152709db679f7c
/basic/1032.挖掘机技术哪家强.cpp
4f847340e5c1ff0162e947d86432082e51acc72a
[]
no_license
makixi/PAT
07d258d27404a709bdf38556edc5ead6e4be8f1d
b8facc7b5bc24d65a51be68284d22905fae0b3aa
refs/heads/master
2021-01-20T05:59:50.082574
2018-04-09T01:13:23
2018-04-09T01:13:23
89,830,373
0
0
null
null
null
null
UTF-8
C++
false
false
376
cpp
1032.挖掘机技术哪家强.cpp
#include<iostream> #define MAX 100000 using namespace std; int main() { int n; int position = 0,maxscore=0; cin >> n; int a[MAX] = {0}; for (int i = 0; i < n; i++) { int type,score; cin >> type>>score; a[type - 1] += score; if (a[type - 1] > maxscore) { maxscore=a[type-1]; position = type - 1; } } cout << position + 1 << " " << maxscore; return 0; }
2c9e831e8247fa789ac7b79c92369579e1bf8e0c
f2b0dae4c3b8f312c8b54e1c0ee53a3ace532d63
/leetcode/graph/RBT.h
5c80e08ff60bff28bcb0b1ad0b671bbad62e39e6
[]
no_license
cairuyuan/Algorithm
5999ca765c5fb2da880578ed0cc7c7c1e0fda37d
01d05d284628be3ddb8ad276064729708de1f855
refs/heads/master
2020-05-18T19:40:11.109254
2015-11-26T02:58:19
2015-11-26T02:58:19
33,669,602
0
0
null
null
null
null
GB18030
C++
false
false
812
h
RBT.h
#ifndef __RBT_ #define __RBT_ #include "head.h" using namespace std; inline RBT *gp(RBT *root);// inline RBT *un(RBT *root);// inline RBT *br(RBT *root); void rotate_L(RBT *n);//第一个参数是补加的,整个树的根 ,第二个是插入的节点 void rotate_R(RBT *n);// RBT * insert_rbt(RBT * root, int target); void insert_case1(RBT *n);//第一个参数是补加的,整个树的根 ,第二个是插入的节点 void insert_case2(RBT *n); void insert_case3(RBT *n); void insert_case4(RBT *n); void insert_case5(RBT *n); RBT * delete_rbt(RBT * root, int target); RBT * delete_fix(RBT * root, RBT * N); void postra(RBT *root); void pretra(RBT *root); void midtra(RBT *root); void print4(RBT *root); void print4_(RBT *root); int Depth(RBT *root); bool isBalanced(RBT *root);// #endif
e7d3cfec9a8a4c1bc3c55780ff9663880c15947f
8e94b90e27b4a2300b358a46edeb41fec72dc821
/3.7/3.7_6.cpp
697d5914ba3decb8f283160c6abfb4ce5c64679a
[]
no_license
a2418701192/c-prime-plus-study
77fcc38791d108ae750f1c7fe18f843b1d521f3c
e5a84564952cfba42c427b3889be66b7f571da24
refs/heads/master
2020-04-25T21:52:06.038395
2019-03-07T13:04:51
2019-03-07T13:04:51
173,093,061
0
0
null
null
null
null
UTF-8
C++
false
false
294
cpp
3.7_6.cpp
#include <iostream> #include <cmath> using namespace std; int main(){ int mile,gallon; cout<<"Enter mile :"; cin>>mile; cout <<"Enter gallon :"; cin >>gallon; double mileage; mileage=(double)mile/gallon; cout<<"Vehicle fuel consumption is one gallon mileage: "<<mileage<<endl; }
5c734e07da138cf250d87d66a1258c5b3aeaacf3
43900c70eba22e132b59f871b432deea01300037
/GL/include/Image3D.h
ba494c1433aa31a1d1d3038c634746bec31aedba
[]
no_license
timofimo/GLDemos
753a80c0957b43fa065b9eaae08aac984fc4dcd5
bba42339bcdf1112acf4aff4ece17087ff2d0c30
refs/heads/master
2020-06-10T22:02:39.620981
2018-02-06T10:25:47
2018-02-06T10:25:47
75,860,364
0
0
null
null
null
null
UTF-8
C++
false
false
652
h
Image3D.h
#pragma once namespace GLR { class Image3D : public ManagedItem<Image3D> { public: Image3D(const std::string& name, int width, int height, int depth, GLenum internalFormat); ~Image3D(); void Clear() const; void Clear(const void* value, GLenum type) const; int GetWidth() const; int GetHeight() const; int GetDepth() const; void GetDimensions(int& width, int& height, int& depth) const; GLuint GetImageID() const; GLenum GetFormat() const; GLenum GetInternalFormat() const; private: GLenum GetFormat(GLenum internalFormat); GLuint m_imageID; int m_width, m_height, m_depth; GLenum m_format, m_internalFormat; }; }
c8d6c0147ee9f078585fa5ba93fb20f6ac99360c
7300763f69e65957d4cd5a75cdd78b0bbe9ac038
/keypad_controller/src/main.cpp
05a8b860f6f6f8fbc1ae473e5cab3c293dda734f
[]
no_license
mengfanli/racecar
e2fbaa565945917ed6e1393e231d2d88b9655636
ed7af03d5a30245d24ba27acf64f041bda53bcdc
refs/heads/master
2020-03-31T21:07:20.782552
2018-10-23T16:13:34
2018-10-23T16:13:34
152,568,315
0
0
null
null
null
null
UTF-8
C++
false
false
2,909
cpp
main.cpp
#include <linux/input.h> #include <sys/types.h> #include <sys/stat.h> #include <unistd.h> #include <fcntl.h> #include <signal.h> #include "ros/ros.h" #include "ackermann_msgs/AckermannDriveStamped.h" #define KEYBOARD_PATH "/dev/input/event4" #define KEY_PRESSED 1 #define KEY_RELEASED 0 #define KEYCODE_UP 103 #define KEYCODE_DOWN 108 #define KEYCODE_LEFT 105 #define KEYCODE_RIGHT 106 #define KEYCODE_W 17 #define KEYCODE_S 31 #define KEYCODE_A 30 #define KEYCODE_D 32 #define KEYCODE_SPACE 57 int forward=0,backward=0,left=0,right=0,brake=0; float steering_angle=0.0f; float steering_angle_velocity=0.0f; float speed=0.0f; float acceleration=0.0f; float jerk=0.0f; int keyboard_fd; void mySIGINTHandler(int sig) { close(keyboard_fd); ros::shutdown(); } void keyEventHandler(int keyCode,bool pressed) { switch(keyCode) { case KEY_UP: case KEY_W: forward+=pressed?1:-1; break; case KEY_DOWN: case KEY_S: backward+=pressed?1:-1; break; case KEY_LEFT: case KEY_A: left+=pressed?1:-1; break; case KEY_RIGHT: case KEY_D: right+=pressed?1:-1; break; case KEY_SPACE: brake+=pressed?1:-1; } ROS_DEBUG("Key %d %s.\n",keyCode,pressed?"pressed":"released"); return; } void updateParameter() { steering_angle=steering_angle_velocity=speed=acceleration=jerk=0.0f; if(brake>0) return; if(forward>0) speed+=1.2f; if(backward>0) speed-=1.2f; if(left>0) //0.34 for about 20 degrees steering_angle+=0.34; if(right>0) steering_angle-=0.34; } int main(int argc,char **argv) { struct input_event t; //Initialize ROS ros::init(argc,argv,"keyboard_remote_control"); ros::NodeHandle n; ros::NodeHandle nh_private("~"); std::string keyboardPath; nh_private.param<std::string>("keyboard_path", keyboardPath, KEYBOARD_PATH); //Initialize device ROS_INFO("Trying to remote control through %s...\n",keyboardPath.c_str()); keyboard_fd=open(keyboardPath.c_str(),O_RDONLY); if(keyboard_fd<=0) { ROS_FATAL("Device %s failed to open.\n",keyboardPath.c_str()); return -1; } ROS_INFO("Device initialized\n"); signal(SIGINT,mySIGINTHandler); ros::Publisher publisher=n.advertise<ackermann_msgs::AckermannDriveStamped>("/vesc/low_level/ackermann_cmd_mux/input/teleop",100); while(ros::ok()) { ackermann_msgs::AckermannDriveStamped message; if(read(keyboard_fd,&t,sizeof(t))==sizeof(t)) { if(t.type==EV_KEY&&(t.value==KEY_PRESSED||t.value==KEY_RELEASED)) { keyEventHandler(t.code,t.value==KEY_PRESSED); updateParameter(); } message.header.frame_id="base_link"; message.header.stamp=ros::Time::now(); message.drive.steering_angle=steering_angle; message.drive.steering_angle_velocity=steering_angle_velocity; message.drive.speed=speed; message.drive.acceleration=acceleration; message.drive.jerk=jerk; publisher.publish(message); } ros::spinOnce(); } close(keyboard_fd); return 0; }
cca6732fad45bcfb825986aa0507199824024480
7b78a1cd5d44b862894abb223aed91b6c2f2e860
/0267-PostesCercado/0267.cpp
de0578f75a0fad6ef087d5efd0d4e496862e6ff0
[ "MIT" ]
permissive
davidmallasen/AceptaElReto
65d6c5e480ec2c1bc158a10bec618eba9171527f
dbc1e77fe895076a903b7b71ee63b07f664dc49f
refs/heads/master
2023-01-14T07:12:54.586488
2022-12-23T15:46:34
2022-12-23T15:46:34
127,428,366
6
0
null
null
null
null
UTF-8
C++
false
false
859
cpp
0267.cpp
/** * Problema 0267: Postes para un cercado * David Mallasén Quintana */ #include <cstdio> #define gc getchar_unlocked inline int readInt(); int main() { int lado1, lado2, distmax, total; lado1 = readInt(); lado2 = readInt(); distmax = readInt(); while (lado1 != 0 && lado2 != 0 && distmax != 0) { total = lado1 / distmax; total += lado2 / distmax; if (lado1 % distmax != 0) total++; if (lado2 % distmax != 0) total++; printf("%i\n", total * 2); lado1 = readInt(); lado2 = readInt(); distmax = readInt(); } return 0; } int readInt() { char ch = gc(); int num = 0; while (ch < '0') ch = gc(); while (ch >= '0') { num = 10 * num + ch - 48; ch = gc(); } return num; }
57ea277725c15f1406b59913ba9b3d58da743c37
d5ece79470fba0d576a368222b582b7b6fc0e664
/testclass/useStock.cpp
6ae032eed18539acdf8dd2e3ba3ee72cb82f4d31
[]
no_license
HoangAnhSet/C-C-_BookPrimer
04bfbebce1b062c240e09bb18092d0acb0cbb717
63f18a980f53f0658309745a8a0338340e8d2f82
refs/heads/main
2023-06-05T13:52:30.613371
2021-07-01T13:57:05
2021-07-01T13:57:05
382,042,612
2
0
null
null
null
null
UTF-8
C++
false
false
148
cpp
useStock.cpp
#include<iostream> #include"stock00.cpp" // using namespace std; using namespace std; int main() { Stock stock1("alpha",2,3.0); return 0; }
792d9fd7effe9a608e85e8be709deb12c7a3840f
6f509aeda272722feb273993142b3294ed8f4f09
/Array_and_String/1-7.cpp
71f07adc4be12bd6312c90a363b1fa55a4442999
[]
no_license
Robertyaya/Cracking-the-code-interview
73dff7653029b12425dccbea9f0cde1a6c9f391c
d09df8f9326424511157472d9792d218b7dd79d8
refs/heads/master
2022-10-16T22:08:43.688812
2020-06-15T16:15:07
2020-06-15T16:15:07
270,715,658
0
0
null
null
null
null
UTF-8
C++
false
false
1,366
cpp
1-7.cpp
#include <bits/stdc++.h> void Rotate(int **matrix, int N) { for (int layer = 0; layer < N / 2; layer++) { int first = layer; int last = N - layer - 1; for (int i = first; i < last; i++) { // Save the top value int top = matrix[layer][i]; // left to top matrix[first][i] = matrix[last - (i - first)][layer]; // bottom to left matrix[last - (i - first)][layer] = matrix[last][last - (i - first)]; // right to bottom matrix[last][last - (i - first)] = matrix[i][last]; // temp to right matrix[i][last] = top; } } } void PrintMatrix(int **matrix, int N) { for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) std::cout << matrix[i][j] << " "; std::cout << std::endl; } } int main() { int N; std::cout << "Enter N for NxN matrix" << std::endl; std::cin >> N; // Allocate the space int **matrix = new int *[N]; for (int i = 0; i < N; i++) { matrix[i] = new int[N]; } // Assign the element for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { std::cin >> matrix[i][j]; } } std::cout << "Rotate matrix by 90 (clockwise)" << std::endl; std::cout << "Original: "; PrintMatrix(matrix, N); std::cout << "After rotate: "; Rotate(matrix, N); std::cout << std::endl; PrintMatrix(matrix, N); }
5417ed77665b7f681f1056bba2414f055ccc3f47
e88aa3b17d9f689d20b48a07bb25df56e6f34772
/src/wallet/core_default_rpc_proxy.cpp
4d36f6d171e2d5cafd2ddcaa1b228268e471dc6b
[ "MIT" ]
permissive
Virie/Virie
62065a7629446371e741335ccc39f244b881abd6
fc5ad5816678b06b88d08a6842e43d4205915b39
refs/heads/master
2021-03-08T00:57:04.659422
2020-08-13T09:53:32
2020-08-13T09:53:32
287,244,949
1
0
null
null
null
null
UTF-8
C++
false
false
11,342
cpp
core_default_rpc_proxy.cpp
// Copyright (c) 2014-2020 The Virie Project // Copyright (c) 2012-2013 The Cryptonote developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "core_default_rpc_proxy.h" using namespace epee; #include "storages/http_abstract_invoke.h" #include "currency_core/currency_format_utils.h" #include "currency_core/alias_helper.h" namespace tools { bool default_http_core_proxy::set_connection_addr(const std::string& url) { m_daemon_address = url; return true; } //------------------------------------------------------------------------------------------------------------------------------ bool default_http_core_proxy::call_COMMAND_RPC_GET_TX_GLOBAL_OUTPUTS_INDEXES(const currency::COMMAND_RPC_GET_TX_GLOBAL_OUTPUTS_INDEXES::request& req, currency::COMMAND_RPC_GET_TX_GLOBAL_OUTPUTS_INDEXES::response& res) { return net_utils::invoke_http_bin_remote_command2(m_daemon_address + "/get_o_indexes.bin", req, res, m_http_client, WALLET_RCP_CONNECTION_TIMEOUT); } //------------------------------------------------------------------------------------------------------------------------------ bool default_http_core_proxy::call_COMMAND_RPC_GET_BLOCKS_FAST(const currency::COMMAND_RPC_GET_BLOCKS_FAST::request& req, currency::COMMAND_RPC_GET_BLOCKS_FAST::response& res) { return net_utils::invoke_http_bin_remote_command2(m_daemon_address + "/getblocks.bin", req, res, m_http_client, WALLET_RCP_CONNECTION_TIMEOUT); } //------------------------------------------------------------------------------------------------------------------------------ bool default_http_core_proxy::call_COMMAND_RPC_GET_BLOCKS_DIRECT(const currency::COMMAND_RPC_GET_BLOCKS_DIRECT::request& rqt, currency::COMMAND_RPC_GET_BLOCKS_DIRECT::response& rsp) { currency::COMMAND_RPC_GET_BLOCKS_FAST::request req; req.block_ids = rqt.block_ids; currency::COMMAND_RPC_GET_BLOCKS_FAST::response res = AUTO_VAL_INIT(res); bool r = this->call_COMMAND_RPC_GET_BLOCKS_FAST(req, res); rsp.status = res.status; if (rsp.status == CORE_RPC_STATUS_OK) { rsp.current_height = res.current_height; rsp.start_height = res.start_height; r = unserialize_block_complete_entry(res, rsp); } return r; } //------------------------------------------------------------------------------------------------------------------------------ bool default_http_core_proxy::call_COMMAND_RPC_GET_STATIC_INFO(const currency::COMMAND_RPC_GET_STATIC_INFO::request& req, currency::COMMAND_RPC_GET_STATIC_INFO::response& res) { return net_utils::invoke_http_json_rpc("/json_rpc", "getstaticinfo", req, res, m_http_client); } //------------------------------------------------------------------------------------------------------------------------------ bool default_http_core_proxy::call_COMMAND_RPC_GET_INFO(const currency::COMMAND_RPC_GET_INFO::request& req, currency::COMMAND_RPC_GET_INFO::response& res) { return net_utils::invoke_http_json_remote_command2(m_daemon_address + "/getinfo", req, res, m_http_client, WALLET_RCP_CONNECTION_TIMEOUT); } //------------------------------------------------------------------------------------------------------------------------------ bool default_http_core_proxy::call_COMMAND_RPC_GET_TX_POOL(const currency::COMMAND_RPC_GET_TX_POOL::request& req, currency::COMMAND_RPC_GET_TX_POOL::response& res) { return net_utils::invoke_http_bin_remote_command2(m_daemon_address + "/get_tx_pool.bin", req, res, m_http_client, WALLET_RCP_CONNECTION_TIMEOUT); } //------------------------------------------------------------------------------------------------------------------------------ bool default_http_core_proxy::call_COMMAND_RPC_GET_ALIASES_BY_ADDRESS(const currency::COMMAND_RPC_GET_ALIASES_BY_ADDRESS::request& req, currency::COMMAND_RPC_GET_ALIASES_BY_ADDRESS::response& res) { return epee::net_utils::invoke_http_json_rpc("/json_rpc", "get_alias_by_address", req, res, m_http_client); } //------------------------------------------------------------------------------------------------------------------------------ bool default_http_core_proxy::call_COMMAND_RPC_GET_RANDOM_OUTPUTS_FOR_AMOUNTS(const currency::COMMAND_RPC_GET_RANDOM_OUTPUTS_FOR_AMOUNTS::request& req, currency::COMMAND_RPC_GET_RANDOM_OUTPUTS_FOR_AMOUNTS::response& res) { return epee::net_utils::invoke_http_bin_remote_command2(m_daemon_address + "/getrandom_outs.bin", req, res, m_http_client, WALLET_RCP_CONNECTION_TIMEOUT); } //------------------------------------------------------------------------------------------------------------------------------ bool default_http_core_proxy::call_COMMAND_RPC_SEND_RAW_TX(const currency::COMMAND_RPC_SEND_RAW_TX::request& req, currency::COMMAND_RPC_SEND_RAW_TX::response& res) { return epee::net_utils::invoke_http_json_remote_command2(m_daemon_address + "/sendrawtransaction", req, res, m_http_client, WALLET_RCP_CONNECTION_TIMEOUT); } //------------------------------------------------------------------------------------------------------------------------------ bool default_http_core_proxy::call_COMMAND_RPC_FORCE_RELAY_RAW_TXS(const currency::COMMAND_RPC_FORCE_RELAY_RAW_TXS::request& req, currency::COMMAND_RPC_FORCE_RELAY_RAW_TXS::response& res) { return epee::net_utils::invoke_http_json_remote_command2(m_daemon_address + "/force_relay", req, res, m_http_client, WALLET_RCP_CONNECTION_TIMEOUT); } //------------------------------------------------------------------------------------------------------------------------------ bool default_http_core_proxy::call_COMMAND_RPC_GET_TRANSACTIONS(const currency::COMMAND_RPC_GET_TRANSACTIONS::request& req, currency::COMMAND_RPC_GET_TRANSACTIONS::response& rsp) { return epee::net_utils::invoke_http_json_remote_command2(m_daemon_address + "/gettransactions", req, rsp, m_http_client, WALLET_RCP_CONNECTION_TIMEOUT); } //------------------------------------------------------------------------------------------------------------------------------ bool default_http_core_proxy::call_COMMAND_RPC_COMMAND_RPC_CHECK_KEYIMAGES(const currency::COMMAND_RPC_CHECK_KEYIMAGES::request& req, currency::COMMAND_RPC_CHECK_KEYIMAGES::response& rsp) { return epee::net_utils::invoke_http_bin_remote_command2(m_daemon_address + "/check_keyimages.bin", req, rsp, m_http_client, WALLET_RCP_CONNECTION_TIMEOUT); } //------------------------------------------------------------------------------------------------------------------------------ bool default_http_core_proxy::call_COMMAND_RPC_SCAN_POS(const currency::COMMAND_RPC_SCAN_POS::request& req, currency::COMMAND_RPC_SCAN_POS::response& rsp) { return epee::net_utils::invoke_http_bin_remote_command2(m_daemon_address + "/scan_pos.bin", req, rsp, m_http_client, WALLET_RCP_CONNECTION_TIMEOUT); } bool default_http_core_proxy::call_COMMAND_RPC_GET_POS_MINING_DETAILS(const currency::COMMAND_RPC_GET_POS_MINING_DETAILS::request& req, currency::COMMAND_RPC_GET_POS_MINING_DETAILS::response& rsp) { return epee::net_utils::invoke_http_bin_remote_command2(m_daemon_address + "/get_pos_details.bin", req, rsp, m_http_client, WALLET_RCP_CONNECTION_TIMEOUT); } //------------------------------------------------------------------------------------------------------------------------------ bool default_http_core_proxy::call_COMMAND_RPC_GET_BLOCKS_DETAILS(const currency::COMMAND_RPC_GET_BLOCKS_DETAILS::request& req, currency::COMMAND_RPC_GET_BLOCKS_DETAILS::response& res) { //return epee::net_utils::invoke_http_bin_remote_command2(m_daemon_address + "/get_blocks_details.bin", req, res, m_http_client, WALLET_RCP_CONNECTION_TIMEOUT); return epee::net_utils::invoke_http_json_rpc("/json_rpc", "get_blocks_details", req, res, m_http_client); } //------------------------------------------------------------------------------------------------------------------------------ bool default_http_core_proxy::call_COMMAND_RPC_GET_CURRENT_CORE_TX_EXPIRATION_MEDIAN(const currency::COMMAND_RPC_GET_CURRENT_CORE_TX_EXPIRATION_MEDIAN::request& req, currency::COMMAND_RPC_GET_CURRENT_CORE_TX_EXPIRATION_MEDIAN::response& res) { return epee::net_utils::invoke_http_json_rpc("/json_rpc", "get_current_core_tx_expiration_median", req, res, m_http_client); } //------------------------------------------------------------------------------------------------------------------------------ bool default_http_core_proxy::call_COMMAND_RPC_GETBLOCKTEMPLATE(const currency::COMMAND_RPC_GETBLOCKTEMPLATE::request& req, currency::COMMAND_RPC_GETBLOCKTEMPLATE::response& rsp) { return epee::net_utils::invoke_http_json_rpc("/json_rpc", "getblocktemplate", req, rsp, m_http_client); } //------------------------------------------------------------------------------------------------------------------------------ bool default_http_core_proxy::call_COMMAND_RPC_SUBMITBLOCK(const currency::COMMAND_RPC_SUBMITBLOCK::request& req, currency::COMMAND_RPC_SUBMITBLOCK::response& rsp) { return epee::net_utils::invoke_http_json_rpc("/json_rpc", "submitblock", req, rsp, m_http_client); } //------------------------------------------------------------------------------------------------------------------------------ bool default_http_core_proxy::check_connection() { if (m_http_client.is_connected()) return true; epee::net_utils::http::url_content u; epee::net_utils::parse_url(m_daemon_address, u); if (!u.port) u.port = 8081; return m_http_client.connect(u.host, std::to_string(u.port), WALLET_RCP_CONNECTION_TIMEOUT); } //------------------------------------------------------------------------------------------------------------------------------ bool default_http_core_proxy::call_COMMAND_RPC_GET_ALL_ALIASES(currency::COMMAND_RPC_GET_ALL_ALIASES::response& res) { currency::COMMAND_RPC_GET_ALL_ALIASES::request req = AUTO_VAL_INIT(req); return epee::net_utils::invoke_http_json_rpc("/json_rpc", "get_all_alias_details", req, res, m_http_client); } //------------------------------------------------------------------------------------------------------------------------------ bool default_http_core_proxy::call_COMMAND_RPC_GET_ALIAS_DETAILS(const currency::COMMAND_RPC_GET_ALIAS_DETAILS::request& req, currency::COMMAND_RPC_GET_ALIAS_DETAILS::response& res) { return epee::net_utils::invoke_http_json_rpc("/json_rpc", "get_alias_details", req, res, m_http_client); } bool default_http_core_proxy::call_COMMAND_RPC_GET_ALIAS_REWARD(const currency::COMMAND_RPC_GET_ALIAS_REWARD::request& req, currency::COMMAND_RPC_GET_ALIAS_REWARD::response& rsp) { return epee::net_utils::invoke_http_json_rpc("/json_rpc", "get_alias_reward", req, rsp, m_http_client); } //------------------------------------------------------------------------------------------------------------------------------ bool default_http_core_proxy::get_transfer_address(const std::string& adr_str, currency::account_public_address& addr, currency::bc_payment_id& payment_id) { return tools::get_transfer_address(adr_str, addr, payment_id, this); } }
92de79669724c44d26cf571ae8b44477b7fa4e4e
7e826bcc315897cca02632f090565ee554a7238c
/inheritence/pattern/observer/observermanager.h
3c36e1307f2d4aad3360becc4891f5376a233f32
[]
no_license
Never-say-never/cpp_exaples
329813399ef2af02ea69be2a23c06052190014eb
4141d854a7ba5b04f5210c72e9b4617900170510
refs/heads/master
2021-01-19T03:37:02.533497
2017-05-09T16:07:18
2017-05-09T16:07:18
87,330,881
0
0
null
null
null
null
UTF-8
C++
false
false
291
h
observermanager.h
#ifndef OBSERVERMANAGER_H #define OBSERVERMANAGER_H #include <QThread> #include <QMutex> #include "observable.h" #include "observerman.h" class ObserverManager { public: ObserverManager(); static void startObserving(); private: int sleepTime; }; #endif // OBSERVERMANAGER_H
bae616012803c7b8ccb5a1d54eda91a03c75d310
5088aba0d07bf0bddd52d5f38dd8ab5d4eb4888d
/variable.h
6bceb4473c7413740b9f228fcc950c1692aa7c0a
[]
no_license
AaronSchooley85/Sat_Solver_Algorithm_D
4020f0ebd99ab0c6906606695d77c8cc9767ab73
ce8256414c8650f6889f69cad91c22c7e8ef4641
refs/heads/main
2023-03-12T16:24:46.245047
2021-03-07T01:40:20
2021-03-07T01:40:20
345,193,307
0
0
null
null
null
null
UTF-8
C++
false
false
795
h
variable.h
#ifndef VARIABLE_H #define VARIABLE_H #include <iostream> #include <vector> class sat_d; class clause; // forward declaration to resolve circular dependency. class variable { private: int number{-1}; // Variable number int value{-1}; // -1 unset, 0 false, 1 true. clause* true_list{nullptr}; clause* false_list{nullptr}; sat_d* sat{nullptr}; variable* next_variable{nullptr}; public: void SetNumber(int); void SetSat(sat_d*); void SetValue(int); void SetWatchList(clause*, bool); void ClearWatchList(std::vector<variable>&, bool); void SetNextVariable(variable*); void JoinWatch(clause& c, bool polarity); int GetNumber(); int GetValue(); clause* GetWatchList(bool); variable* GetNextVariable(); int IsUnit(std::vector<variable>&, bool); }; #endif
89e019ac011d207f9166bdfd151e4d86780f4a58
b97b406490093c7b858c68956d66a909c399fe1c
/Kuhn's Algo.cpp
19366f62a56821136f64b0517ba4ae4b5ed1b8ca
[]
no_license
shas9/Template
ab473f571a0f0e2dc360018bbca553ea5a640910
643139efb956290078db8cbba569aa018ab3d0ff
refs/heads/master
2021-08-02T20:58:43.145726
2021-07-30T15:56:48
2021-07-30T15:56:48
225,615,076
1
0
null
null
null
null
UTF-8
C++
false
false
824
cpp
Kuhn's Algo.cpp
// Complexity: O(n*m) // Connection from left to right // Direction from right to left ll n, k; // n = right part size, k = left part size; vector < ll > g[1500]; vector < ll > lftp, rgtp; vector < bool > used; bool try_kuhn(ll v) { for (ll to : g[v]) { if(used[to]) continue; used[to] = 1; if (lftp[to] == -1 || try_kuhn(lftp[to])) { lftp[to] = v; rgtp[v] = to; return true; } } return false; } void kuhn() { lftp.assign(k, -1); rgtp.assign(n, -1); for (ll v = 0; v < n; ++v) { used.assign(n, false); try_kuhn(v); } // for (ll i = 0; i < k; ++i) // printf("%d %d\n", lftp[i], i); // // for (ll i = 0; i < k; ++i) // printf("%d %d\n", rgtp[i], i); }
eb56c6eb07c60963d046c427126f82d5ef219966
540c8ea83435de21750f623f70e6e0625082f66c
/MayoDemo/Classes/Native/Il2CppGenericMethodDefinitions.cpp
fd18b6ce0182f3d7b5251811fd02abe86c2cccbb
[]
no_license
Drkjr92/MayoStethoscope
3d37f88330a2cae4fd7e7e3c7dcacd0aa843b2b4
6ad706c38e0aed6a026b16aa51619c6cfc604186
refs/heads/master
2020-07-27T15:07:17.768312
2019-10-24T02:27:14
2019-10-24T02:27:14
209,134,112
2
3
null
null
null
null
UTF-8
C++
false
false
546,072
cpp
Il2CppGenericMethodDefinitions.cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include "il2cpp-class-internals.h" #include "codegen/il2cpp-codegen.h" extern const Il2CppMethodSpec g_Il2CppMethodSpecTable[3867] = { { 679, -1, 0 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Object>(System.Object,System.ExceptionArgument) */, { 692, 21, -1 } /* System.Boolean System.ValueTuple`2<System.Object,System.Object>::Equals(System.Object) */, { 693, 21, -1 } /* System.Boolean System.ValueTuple`2<System.Object,System.Object>::Equals(System.ValueTuple`2<T1,T2>) */, { 694, 21, -1 } /* System.Boolean System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) */, { 695, 21, -1 } /* System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.IComparable.CompareTo(System.Object) */, { 696, 21, -1 } /* System.Int32 System.ValueTuple`2<System.Object,System.Object>::CompareTo(System.ValueTuple`2<T1,T2>) */, { 697, 21, -1 } /* System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) */, { 698, 21, -1 } /* System.Int32 System.ValueTuple`2<System.Object,System.Object>::GetHashCode() */, { 699, 21, -1 } /* System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) */, { 700, 21, -1 } /* System.Int32 System.ValueTuple`2<System.Object,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) */, { 701, 21, -1 } /* System.String System.ValueTuple`2<System.Object,System.Object>::ToString() */, { 703, -1, 0 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Array::AsReadOnly<System.Object>(T[]) */, { 704, -1, 0 } /* System.Void System.Array::Resize<System.Object>(T[]&,System.Int32) */, { 723, -1, 21 } /* TOutput[] System.Array::ConvertAll<System.Object,System.Object>(TInput[],System.Converter`2<TInput,TOutput>) */, { 727, -1, 0 } /* System.Void System.Array::ForEach<System.Object>(T[],System.Action`1<T>) */, { 742, -1, 0 } /* System.Int32 System.Array::BinarySearch<System.Object>(T[],T) */, { 743, -1, 0 } /* System.Int32 System.Array::BinarySearch<System.Object>(T[],T,System.Collections.Generic.IComparer`1<T>) */, { 744, -1, 0 } /* System.Int32 System.Array::BinarySearch<System.Object>(T[],System.Int32,System.Int32,T) */, { 745, -1, 0 } /* System.Int32 System.Array::BinarySearch<System.Object>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 749, -1, 0 } /* System.Int32 System.Array::IndexOf<System.Object>(T[],T) */, { 750, -1, 0 } /* System.Int32 System.Array::IndexOf<System.Object>(T[],T,System.Int32) */, { 751, -1, 0 } /* System.Int32 System.Array::IndexOf<System.Object>(T[],T,System.Int32,System.Int32) */, { 755, -1, 0 } /* System.Int32 System.Array::LastIndexOf<System.Object>(T[],T) */, { 756, -1, 0 } /* System.Int32 System.Array::LastIndexOf<System.Object>(T[],T,System.Int32) */, { 757, -1, 0 } /* System.Int32 System.Array::LastIndexOf<System.Object>(T[],T,System.Int32,System.Int32) */, { 760, -1, 0 } /* System.Void System.Array::Reverse<System.Object>(T[]) */, { 761, -1, 0 } /* System.Void System.Array::Reverse<System.Object>(T[],System.Int32,System.Int32) */, { 774, -1, 0 } /* System.Void System.Array::Sort<System.Object>(T[]) */, { 775, -1, 0 } /* System.Void System.Array::Sort<System.Object>(T[],System.Int32,System.Int32) */, { 776, -1, 0 } /* System.Void System.Array::Sort<System.Object>(T[],System.Collections.Generic.IComparer`1<T>) */, { 777, -1, 0 } /* System.Void System.Array::Sort<System.Object>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 0 } /* System.Void System.Array::Sort<System.Object>(T[],System.Comparison`1<T>) */, { 779, -1, 21 } /* System.Void System.Array::Sort<System.Object,System.Object>(TKey[],TValue[]) */, { 780, -1, 21 } /* System.Void System.Array::Sort<System.Object,System.Object>(TKey[],TValue[],System.Int32,System.Int32) */, { 781, -1, 21 } /* System.Void System.Array::Sort<System.Object,System.Object>(TKey[],TValue[],System.Collections.Generic.IComparer`1<TKey>) */, { 782, -1, 21 } /* System.Void System.Array::Sort<System.Object,System.Object>(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 783, -1, 0 } /* System.Boolean System.Array::Exists<System.Object>(T[],System.Predicate`1<T>) */, { 784, -1, 0 } /* System.Void System.Array::Fill<System.Object>(T[],T) */, { 785, -1, 0 } /* System.Void System.Array::Fill<System.Object>(T[],T,System.Int32,System.Int32) */, { 786, -1, 0 } /* T System.Array::Find<System.Object>(T[],System.Predicate`1<T>) */, { 787, -1, 0 } /* T[] System.Array::FindAll<System.Object>(T[],System.Predicate`1<T>) */, { 788, -1, 0 } /* System.Int32 System.Array::FindIndex<System.Object>(T[],System.Predicate`1<T>) */, { 789, -1, 0 } /* System.Int32 System.Array::FindIndex<System.Object>(T[],System.Int32,System.Predicate`1<T>) */, { 790, -1, 0 } /* System.Int32 System.Array::FindIndex<System.Object>(T[],System.Int32,System.Int32,System.Predicate`1<T>) */, { 791, -1, 0 } /* T System.Array::FindLast<System.Object>(T[],System.Predicate`1<T>) */, { 792, -1, 0 } /* System.Int32 System.Array::FindLastIndex<System.Object>(T[],System.Predicate`1<T>) */, { 793, -1, 0 } /* System.Int32 System.Array::FindLastIndex<System.Object>(T[],System.Int32,System.Predicate`1<T>) */, { 794, -1, 0 } /* System.Int32 System.Array::FindLastIndex<System.Object>(T[],System.Int32,System.Int32,System.Predicate`1<T>) */, { 795, -1, 0 } /* System.Boolean System.Array::TrueForAll<System.Object>(T[],System.Predicate`1<T>) */, { 800, -1, 0 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Object>() */, { 802, -1, 0 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Object>(T) */, { 803, -1, 0 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Object>(T) */, { 804, -1, 0 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Object>(T) */, { 805, -1, 0 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Object>(T[],System.Int32) */, { 806, -1, 0 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Object>(System.Int32) */, { 808, -1, 0 } /* System.Void System.Array::InternalArray__Insert<System.Object>(System.Int32,T) */, { 810, -1, 0 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Object>(T) */, { 811, -1, 0 } /* T System.Array::InternalArray__get_Item<System.Object>(System.Int32) */, { 812, -1, 0 } /* System.Void System.Array::InternalArray__set_Item<System.Object>(System.Int32,T) */, { 813, -1, 0 } /* System.Void System.Array::GetGenericValueImpl<System.Object>(System.Int32,T&) */, { 814, -1, 0 } /* System.Void System.Array::SetGenericValueImpl<System.Object>(System.Int32,T&) */, { 848, -1, 0 } /* T[] System.Array::Empty<System.Object>() */, { 850, -1, 0 } /* System.Int32 System.Array::IndexOfImpl<System.Object>(T[],T,System.Int32,System.Int32) */, { 851, -1, 0 } /* System.Int32 System.Array::LastIndexOfImpl<System.Object>(T[],T,System.Int32,System.Int32) */, { 853, -1, 0 } /* T System.Array::UnsafeLoad<System.Object>(T[],System.Int32) */, { 854, -1, 0 } /* System.Void System.Array::UnsafeStore<System.Object>(T[],System.Int32,T) */, { 855, -1, 21 } /* R System.Array::UnsafeMov<System.Object,System.Object>(S) */, { 863, 0, -1 } /* T System.Array/InternalEnumerator`1<System.Object>::get_Current() */, { 864, 0, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Object>::System.Collections.IEnumerator.get_Current() */, { 860, 0, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Object>::.ctor(System.Array) */, { 861, 0, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Object>::Dispose() */, { 862, 0, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Object>::MoveNext() */, { 867, 0, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Object>::get_Current() */, { 868, 0, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Object>::System.Collections.IEnumerator.get_Current() */, { 865, 0, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Object>::Dispose() */, { 866, 0, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Object>::MoveNext() */, { 869, 0, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Object>::.ctor() */, { 870, 0, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Object>::.cctor() */, { 892, -1, 21 } /* System.Tuple`2<T1,T2> System.Tuple::Create<System.Object,System.Object>(T1,T2) */, { 896, 21, -1 } /* T1 System.Tuple`2<System.Object,System.Object>::get_Item1() */, { 897, 21, -1 } /* T2 System.Tuple`2<System.Object,System.Object>::get_Item2() */, { 898, 21, -1 } /* System.Void System.Tuple`2<System.Object,System.Object>::.ctor(T1,T2) */, { 899, 21, -1 } /* System.Boolean System.Tuple`2<System.Object,System.Object>::Equals(System.Object) */, { 900, 21, -1 } /* System.Boolean System.Tuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) */, { 901, 21, -1 } /* System.Int32 System.Tuple`2<System.Object,System.Object>::System.IComparable.CompareTo(System.Object) */, { 902, 21, -1 } /* System.Int32 System.Tuple`2<System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) */, { 903, 21, -1 } /* System.Int32 System.Tuple`2<System.Object,System.Object>::GetHashCode() */, { 904, 21, -1 } /* System.Int32 System.Tuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) */, { 905, 21, -1 } /* System.String System.Tuple`2<System.Object,System.Object>::ToString() */, { 906, 21, -1 } /* System.String System.Tuple`2<System.Object,System.Object>::System.ITupleInternal.ToString(System.Text.StringBuilder) */, { 907, 40, -1 } /* T1 System.Tuple`3<System.Object,System.Object,System.Object>::get_Item1() */, { 908, 40, -1 } /* T2 System.Tuple`3<System.Object,System.Object,System.Object>::get_Item2() */, { 909, 40, -1 } /* T3 System.Tuple`3<System.Object,System.Object,System.Object>::get_Item3() */, { 910, 40, -1 } /* System.Void System.Tuple`3<System.Object,System.Object,System.Object>::.ctor(T1,T2,T3) */, { 911, 40, -1 } /* System.Boolean System.Tuple`3<System.Object,System.Object,System.Object>::Equals(System.Object) */, { 912, 40, -1 } /* System.Boolean System.Tuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) */, { 913, 40, -1 } /* System.Int32 System.Tuple`3<System.Object,System.Object,System.Object>::System.IComparable.CompareTo(System.Object) */, { 914, 40, -1 } /* System.Int32 System.Tuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) */, { 915, 40, -1 } /* System.Int32 System.Tuple`3<System.Object,System.Object,System.Object>::GetHashCode() */, { 916, 40, -1 } /* System.Int32 System.Tuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) */, { 917, 40, -1 } /* System.String System.Tuple`3<System.Object,System.Object,System.Object>::ToString() */, { 918, 40, -1 } /* System.String System.Tuple`3<System.Object,System.Object,System.Object>::System.ITupleInternal.ToString(System.Text.StringBuilder) */, { 919, 41, -1 } /* T1 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::get_Item1() */, { 920, 41, -1 } /* T2 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::get_Item2() */, { 921, 41, -1 } /* T3 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::get_Item3() */, { 922, 41, -1 } /* T4 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::get_Item4() */, { 923, 41, -1 } /* System.Boolean System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::Equals(System.Object) */, { 924, 41, -1 } /* System.Boolean System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) */, { 925, 41, -1 } /* System.Int32 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::System.IComparable.CompareTo(System.Object) */, { 926, 41, -1 } /* System.Int32 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) */, { 927, 41, -1 } /* System.Int32 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::GetHashCode() */, { 928, 41, -1 } /* System.Int32 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) */, { 929, 41, -1 } /* System.String System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::ToString() */, { 930, 41, -1 } /* System.String System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::System.ITupleInternal.ToString(System.Text.StringBuilder) */, { 982, 0, -1 } /* System.Void System.Action`1<System.Object>::.ctor(System.Object,System.IntPtr) */, { 983, 0, -1 } /* System.Void System.Action`1<System.Object>::Invoke(T) */, { 984, 0, -1 } /* System.IAsyncResult System.Action`1<System.Object>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 985, 0, -1 } /* System.Void System.Action`1<System.Object>::EndInvoke(System.IAsyncResult) */, { 990, 21, -1 } /* System.Void System.Action`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 991, 21, -1 } /* System.Void System.Action`2<System.Object,System.Object>::Invoke(T1,T2) */, { 992, 21, -1 } /* System.IAsyncResult System.Action`2<System.Object,System.Object>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object) */, { 993, 21, -1 } /* System.Void System.Action`2<System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 994, 40, -1 } /* System.Void System.Action`3<System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 995, 40, -1 } /* System.Void System.Action`3<System.Object,System.Object,System.Object>::Invoke(T1,T2,T3) */, { 996, 40, -1 } /* System.IAsyncResult System.Action`3<System.Object,System.Object,System.Object>::BeginInvoke(T1,T2,T3,System.AsyncCallback,System.Object) */, { 997, 40, -1 } /* System.Void System.Action`3<System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 998, 0, -1 } /* System.Void System.Func`1<System.Object>::.ctor(System.Object,System.IntPtr) */, { 999, 0, -1 } /* TResult System.Func`1<System.Object>::Invoke() */, { 1000, 0, -1 } /* System.IAsyncResult System.Func`1<System.Object>::BeginInvoke(System.AsyncCallback,System.Object) */, { 1001, 0, -1 } /* TResult System.Func`1<System.Object>::EndInvoke(System.IAsyncResult) */, { 1002, 21, -1 } /* System.Void System.Func`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 1003, 21, -1 } /* TResult System.Func`2<System.Object,System.Object>::Invoke(T) */, { 1004, 21, -1 } /* System.IAsyncResult System.Func`2<System.Object,System.Object>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1005, 21, -1 } /* TResult System.Func`2<System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 1006, 40, -1 } /* System.Void System.Func`3<System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 1007, 40, -1 } /* TResult System.Func`3<System.Object,System.Object,System.Object>::Invoke(T1,T2) */, { 1008, 40, -1 } /* System.IAsyncResult System.Func`3<System.Object,System.Object,System.Object>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object) */, { 1009, 40, -1 } /* TResult System.Func`3<System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 1010, 41, -1 } /* System.Void System.Func`4<System.Object,System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 1011, 41, -1 } /* TResult System.Func`4<System.Object,System.Object,System.Object,System.Object>::Invoke(T1,T2,T3) */, { 1012, 41, -1 } /* System.IAsyncResult System.Func`4<System.Object,System.Object,System.Object,System.Object>::BeginInvoke(T1,T2,T3,System.AsyncCallback,System.Object) */, { 1013, 41, -1 } /* TResult System.Func`4<System.Object,System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 1014, 52, -1 } /* System.Void System.Func`5<System.Object,System.Object,System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 1015, 52, -1 } /* TResult System.Func`5<System.Object,System.Object,System.Object,System.Object,System.Object>::Invoke(T1,T2,T3,T4) */, { 1016, 52, -1 } /* System.IAsyncResult System.Func`5<System.Object,System.Object,System.Object,System.Object,System.Object>::BeginInvoke(T1,T2,T3,T4,System.AsyncCallback,System.Object) */, { 1017, 52, -1 } /* TResult System.Func`5<System.Object,System.Object,System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 1018, 0, -1 } /* System.Void System.Comparison`1<System.Object>::.ctor(System.Object,System.IntPtr) */, { 1019, 0, -1 } /* System.Int32 System.Comparison`1<System.Object>::Invoke(T,T) */, { 1020, 0, -1 } /* System.IAsyncResult System.Comparison`1<System.Object>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1021, 0, -1 } /* System.Int32 System.Comparison`1<System.Object>::EndInvoke(System.IAsyncResult) */, { 1022, 21, -1 } /* System.Void System.Converter`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 1023, 21, -1 } /* TOutput System.Converter`2<System.Object,System.Object>::Invoke(TInput) */, { 1024, 21, -1 } /* System.IAsyncResult System.Converter`2<System.Object,System.Object>::BeginInvoke(TInput,System.AsyncCallback,System.Object) */, { 1025, 21, -1 } /* TOutput System.Converter`2<System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 1026, 0, -1 } /* System.Void System.Predicate`1<System.Object>::.ctor(System.Object,System.IntPtr) */, { 1027, 0, -1 } /* System.Boolean System.Predicate`1<System.Object>::Invoke(T) */, { 1028, 0, -1 } /* System.IAsyncResult System.Predicate`1<System.Object>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1029, 0, -1 } /* System.Boolean System.Predicate`1<System.Object>::EndInvoke(System.IAsyncResult) */, { 1743, 0, -1 } /* System.Void System.EventHandler`1<System.Object>::.ctor(System.Object,System.IntPtr) */, { 1744, 0, -1 } /* System.Void System.EventHandler`1<System.Object>::Invoke(System.Object,TEventArgs) */, { 1745, 0, -1 } /* System.IAsyncResult System.EventHandler`1<System.Object>::BeginInvoke(System.Object,TEventArgs,System.AsyncCallback,System.Object) */, { 1746, 0, -1 } /* System.Void System.EventHandler`1<System.Object>::EndInvoke(System.IAsyncResult) */, { 1962, 0, -1 } /* System.Int32 System.IComparable`1<System.Object>::CompareTo(T) */, { 1982, 0, -1 } /* System.Boolean System.IEquatable`1<System.Object>::Equals(T) */, { 2346, 0, -1 } /* T System.RuntimeType/ListBuilder`1<System.Object>::get_Item(System.Int32) */, { 2349, 0, -1 } /* System.Int32 System.RuntimeType/ListBuilder`1<System.Object>::get_Count() */, { 2345, 0, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Object>::.ctor(System.Int32) */, { 2347, 0, -1 } /* T[] System.RuntimeType/ListBuilder`1<System.Object>::ToArray() */, { 2348, 0, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Object>::CopyTo(System.Object[],System.Int32) */, { 2350, 0, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Object>::Add(T) */, { 3190, 0, -1 } /* System.Void System.EmptyArray`1<System.Object>::.cctor() */, { 4211, -1, 0 } /* T System.Reflection.CustomAttributeExtensions::GetCustomAttribute<System.Object>(System.Reflection.Assembly) */, { 4413, -1, 0 } /* T[] System.Reflection.CustomAttributeData::UnboxValues<System.Object>(System.Object[]) */, { 4681, -1, 21 } /* System.Object System.Reflection.MonoProperty::GetterAdapterFrame<System.Object,System.Object>(System.Reflection.MonoProperty/Getter`2<T,R>,System.Object) */, { 4682, -1, 0 } /* System.Object System.Reflection.MonoProperty::StaticGetterAdapterFrame<System.Object>(System.Reflection.MonoProperty/StaticGetter`1<R>,System.Object) */, { 4695, 21, -1 } /* System.Void System.Reflection.MonoProperty/Getter`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 4696, 21, -1 } /* R System.Reflection.MonoProperty/Getter`2<System.Object,System.Object>::Invoke(T) */, { 4697, 21, -1 } /* System.IAsyncResult System.Reflection.MonoProperty/Getter`2<System.Object,System.Object>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 4698, 21, -1 } /* R System.Reflection.MonoProperty/Getter`2<System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 4699, 0, -1 } /* System.Void System.Reflection.MonoProperty/StaticGetter`1<System.Object>::.ctor(System.Object,System.IntPtr) */, { 4700, 0, -1 } /* R System.Reflection.MonoProperty/StaticGetter`1<System.Object>::Invoke() */, { 4701, 0, -1 } /* System.IAsyncResult System.Reflection.MonoProperty/StaticGetter`1<System.Object>::BeginInvoke(System.AsyncCallback,System.Object) */, { 4702, 0, -1 } /* R System.Reflection.MonoProperty/StaticGetter`1<System.Object>::EndInvoke(System.IAsyncResult) */, { 4998, 0, -1 } /* TSource System.IO.Iterator`1<System.Object>::get_Current() */, { 5004, 0, -1 } /* System.Object System.IO.Iterator`1<System.Object>::System.Collections.IEnumerator.get_Current() */, { 4997, 0, -1 } /* System.Void System.IO.Iterator`1<System.Object>::.ctor() */, { 4999, 0, -1 } /* System.IO.Iterator`1<TSource> System.IO.Iterator`1<System.Object>::Clone() */, { 5000, 0, -1 } /* System.Void System.IO.Iterator`1<System.Object>::Dispose() */, { 5001, 0, -1 } /* System.Void System.IO.Iterator`1<System.Object>::Dispose(System.Boolean) */, { 5002, 0, -1 } /* System.Collections.Generic.IEnumerator`1<TSource> System.IO.Iterator`1<System.Object>::GetEnumerator() */, { 5003, 0, -1 } /* System.Boolean System.IO.Iterator`1<System.Object>::MoveNext() */, { 5005, 0, -1 } /* System.Collections.IEnumerator System.IO.Iterator`1<System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 5006, 0, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<System.Object>::.ctor(System.String,System.String,System.String,System.IO.SearchOption,System.IO.SearchResultHandler`1<TSource>,System.Boolean) */, { 5007, 0, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<System.Object>::CommonInit() */, { 5008, 0, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<System.Object>::.ctor(System.String,System.String,System.String,System.String,System.IO.SearchOption,System.IO.SearchResultHandler`1<TSource>,System.Boolean) */, { 5009, 0, -1 } /* System.IO.Iterator`1<TSource> System.IO.FileSystemEnumerableIterator`1<System.Object>::Clone() */, { 5010, 0, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<System.Object>::Dispose(System.Boolean) */, { 5011, 0, -1 } /* System.Boolean System.IO.FileSystemEnumerableIterator`1<System.Object>::MoveNext() */, { 5012, 0, -1 } /* System.IO.SearchResult System.IO.FileSystemEnumerableIterator`1<System.Object>::CreateSearchResult(System.IO.Directory/SearchData,Microsoft.Win32.Win32Native/WIN32_FIND_DATA) */, { 5013, 0, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<System.Object>::HandleError(System.Int32,System.String) */, { 5014, 0, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<System.Object>::AddSearchableDirsToStack(System.IO.Directory/SearchData) */, { 5015, 0, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<System.Object>::DoDemand(System.String) */, { 5016, 0, -1 } /* System.String System.IO.FileSystemEnumerableIterator`1<System.Object>::NormalizeSearchPattern(System.String) */, { 5017, 0, -1 } /* System.String System.IO.FileSystemEnumerableIterator`1<System.Object>::GetNormalizedSearchCriteria(System.String,System.String) */, { 5018, 0, -1 } /* System.String System.IO.FileSystemEnumerableIterator`1<System.Object>::GetFullSearchString(System.String,System.String) */, { 5019, 0, -1 } /* System.Boolean System.IO.SearchResultHandler`1<System.Object>::IsResultIncluded(System.IO.SearchResult) */, { 5020, 0, -1 } /* TSource System.IO.SearchResultHandler`1<System.Object>::CreateObject(System.IO.SearchResult) */, { 5021, 0, -1 } /* System.Void System.IO.SearchResultHandler`1<System.Object>::.ctor() */, { 6097, -1, 0 } /* System.Boolean System.Diagnostics.Contracts.Contract::ForAll<System.Object>(System.Collections.Generic.IEnumerable`1<T>,System.Predicate`1<T>) */, { 6155, 0, -1 } /* System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArray`1<System.Object>::get_Tail() */, { 6154, 0, -1 } /* System.Void System.Threading.SparselyPopulatedArray`1<System.Object>::.ctor(System.Int32) */, { 6156, 0, -1 } /* System.Threading.SparselyPopulatedArrayAddInfo`1<T> System.Threading.SparselyPopulatedArray`1<System.Object>::Add(T) */, { 6158, 0, -1 } /* System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Source() */, { 6159, 0, -1 } /* System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Index() */, { 6157, 0, -1 } /* System.Void System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::.ctor(System.Threading.SparselyPopulatedArrayFragment`1<T>,System.Int32) */, { 6162, 0, -1 } /* T System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::get_Item(System.Int32) */, { 6163, 0, -1 } /* System.Int32 System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::get_Length() */, { 6164, 0, -1 } /* System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::get_Prev() */, { 6160, 0, -1 } /* System.Void System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::.ctor(System.Int32) */, { 6161, 0, -1 } /* System.Void System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::.ctor(System.Int32,System.Threading.SparselyPopulatedArrayFragment`1<T>) */, { 6165, 0, -1 } /* T System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::SafeAtomicRemove(System.Int32,T) */, { 6166, -1, 0 } /* T System.Threading.LazyInitializer::EnsureInitialized<System.Object>(T&,System.Func`1<T>) */, { 6167, -1, 0 } /* T System.Threading.LazyInitializer::EnsureInitializedCore<System.Object>(T&,System.Func`1<T>) */, { 6235, 0, -1 } /* System.Void System.Threading.AsyncLocal`1<System.Object>::System.Threading.IAsyncLocal.OnValueChanged(System.Object,System.Object,System.Boolean) */, { 6237, 0, -1 } /* System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_PreviousValue(T) */, { 6238, 0, -1 } /* System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_CurrentValue(T) */, { 6239, 0, -1 } /* System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_ThreadContextChanged(System.Boolean) */, { 6240, 0, -1 } /* System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::.ctor(T,T,System.Boolean) */, { 6417, 0, -1 } /* T[] System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>::get_Current() */, { 6416, 0, -1 } /* System.Void System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>::.ctor(System.Int32) */, { 6418, 0, -1 } /* System.Int32 System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>::Add(T) */, { 6419, 0, -1 } /* System.Void System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>::Remove(T) */, { 6500, -1, 0 } /* T System.Threading.Interlocked::CompareExchange<System.Object>(T&,T,T) */, { 6504, -1, 0 } /* T System.Threading.Interlocked::Exchange<System.Object>(T&,T) */, { 6545, -1, 0 } /* T System.Threading.Volatile::Read<System.Object>(T&) */, { 6546, -1, 0 } /* System.Void System.Threading.Volatile::Write<System.Object>(T&,T) */, { 6563, 0, -1 } /* TResult System.Threading.Tasks.Task`1<System.Object>::get_Result() */, { 6564, 0, -1 } /* TResult System.Threading.Tasks.Task`1<System.Object>::get_ResultOnSuccess() */, { 6553, 0, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor() */, { 6554, 0, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(TResult) */, { 6555, 0, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) */, { 6556, 0, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions) */, { 6557, 0, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6558, 0, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6559, 0, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6560, 0, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Object>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6561, 0, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Object>::TrySetResult(TResult) */, { 6562, 0, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Object>::DangerousSetResult(TResult) */, { 6565, 0, -1 } /* TResult System.Threading.Tasks.Task`1<System.Object>::GetResultCore(System.Boolean) */, { 6566, 0, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Object>::TrySetException(System.Object) */, { 6567, 0, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Object>::TrySetCanceled(System.Threading.CancellationToken) */, { 6568, 0, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Object>::TrySetCanceled(System.Threading.CancellationToken,System.Object) */, { 6569, 0, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Object>::InnerInvoke() */, { 6570, 0, -1 } /* System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Object>::GetAwaiter() */, { 6571, 0, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Object>::ConfigureAwait(System.Boolean) */, { 6572, 0, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Object>::.cctor() */, { 6573, 0, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<System.Object>::.cctor() */, { 6574, 0, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<System.Object>::.ctor() */, { 6575, 0, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1/<>c<System.Object>::<.cctor>b__64_0(System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>) */, { 6576, 0, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<System.Object>::.ctor() */, { 6577, 0, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<System.Object>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) */, { 6578, 0, 21 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Object>::FromAsyncTrim<System.Object,System.Object>(TInstance,TArgs,System.Func`5<TInstance,TArgs,System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`3<TInstance,System.IAsyncResult,TResult>) */, { 6579, 21, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Object,System.Object>::.ctor(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>) */, { 6580, 21, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Object,System.Object>::CompleteFromAsyncResult(System.IAsyncResult) */, { 6581, 21, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Object,System.Object>::Complete(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>,System.IAsyncResult,System.Boolean) */, { 6582, 21, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Object,System.Object>::.cctor() */, { 6583, 0, -1 } /* System.Void System.Threading.Tasks.Shared`1<System.Object>::.ctor(T) */, { 6698, -1, 0 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromResult<System.Object>(TResult) */, { 6700, -1, 0 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromException<System.Object>(System.Exception) */, { 6702, -1, 0 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Object>(System.Threading.CancellationToken) */, { 6703, -1, 0 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Object>(System.OperationCanceledException) */, { 6705, -1, 0 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::Run<System.Object>(System.Func`1<TResult>) */, { 6815, -1, 0 } /* TResult System.Threading.Tasks.TaskToApm::End<System.Object>(System.IAsyncResult) */, { 8714, -1, 0 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<System.Object>(TStateMachine&) */, { 8716, -1, 21 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Object,System.Object>(TAwaiter&,TStateMachine&) */, { 8725, 0, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::get_Task() */, { 8721, 0, -1 } /* System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Create() */, { 8722, 0, 0 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Start<System.Object>(TStateMachine&) */, { 8723, 0, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) */, { 8724, 0, 21 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitUnsafeOnCompleted<System.Object,System.Object>(TAwaiter&,TStateMachine&) */, { 8726, 0, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetResult(TResult) */, { 8727, 0, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetResult(System.Threading.Tasks.Task`1<TResult>) */, { 8728, 0, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetException(System.Exception) */, { 8729, 0, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::GetTaskForResult(TResult) */, { 8730, 0, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::.cctor() */, { 8732, -1, 0 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskCache::CreateCacheableTask<System.Object>(TResult) */, { 8772, 0, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>) */, { 8773, 0, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::UnsafeOnCompleted(System.Action) */, { 8774, 0, -1 } /* TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::GetResult() */, { 8782, 0, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 8783, 0, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>::GetAwaiter() */, { 8785, 0, -1 } /* System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::get_IsCompleted() */, { 8784, 0, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 8786, 0, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::UnsafeOnCompleted(System.Action) */, { 8787, 0, -1 } /* TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::GetResult() */, { 8813, -1, 0 } /* T System.Runtime.CompilerServices.JitHelpers::UnsafeCast<System.Object>(System.Object) */, { 8816, 21, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::.ctor() */, { 8817, 21, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Finalize() */, { 8818, 21, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::RehashWithoutResize() */, { 8819, 21, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::RecomputeSize() */, { 8820, 21, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Rehash() */, { 8821, 21, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Add(TKey,TValue) */, { 8822, 21, -1 } /* System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Remove(TKey) */, { 8823, 21, -1 } /* System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::TryGetValue(TKey,TValue&) */, { 8903, -1, 0 } /* T System.Runtime.InteropServices.Marshal::PtrToStructure<System.Object>(System.IntPtr) */, { 8907, -1, 0 } /* System.Void System.Runtime.InteropServices.Marshal::StructureToPtr<System.Object>(T,System.IntPtr,System.Boolean) */, { 9177, 0, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::get_Count() */, { 9178, 0, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::get_Item(System.Int32) */, { 9183, 0, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9184, 0, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9185, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9193, 0, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.get_IsReadOnly() */, { 9194, 0, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.get_Item(System.Int32) */, { 9195, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9176, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9179, 0, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::Contains(T) */, { 9180, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::CopyTo(T[],System.Int32) */, { 9181, 0, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::GetEnumerator() */, { 9182, 0, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::IndexOf(T) */, { 9186, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9187, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.ICollection<T>.Clear() */, { 9188, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9189, 0, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9190, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9191, 0, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 9192, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9196, 0, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.Add(System.Object) */, { 9197, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.Clear() */, { 9198, 0, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::IsCompatibleObject(System.Object) */, { 9199, 0, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.Contains(System.Object) */, { 9200, 0, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.IndexOf(System.Object) */, { 9201, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9202, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.Remove(System.Object) */, { 9203, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.RemoveAt(System.Int32) */, { 9221, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::set_Item(TKey,TValue) */, { 9223, 21, -1 } /* System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::get_Count() */, { 9229, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() */, { 9233, 21, -1 } /* System.Object System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.IDictionary.get_Item(System.Object) */, { 9234, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.IDictionary.set_Item(System.Object,System.Object) */, { 9239, 21, -1 } /* System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::get_DefaultConcurrencyLevel() */, { 9207, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::IsValueWriteAtomic() */, { 9208, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::.ctor() */, { 9209, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::.ctor(System.Int32,System.Int32,System.Boolean,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9210, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::TryAdd(TKey,TValue) */, { 9211, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::TryRemoveInternal(TKey,TValue&,System.Boolean,TValue) */, { 9212, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&) */, { 9213, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::TryGetValueInternal(TKey,System.Int32,TValue&) */, { 9214, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::Clear() */, { 9215, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9216, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::CopyToPairs(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9217, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::CopyToEntries(System.Collections.DictionaryEntry[],System.Int32) */, { 9218, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::CopyToObjects(System.Object[],System.Int32) */, { 9219, 21, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::GetEnumerator() */, { 9220, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::TryAddInternal(TKey,System.Int32,TValue,System.Boolean,System.Boolean,TValue&) */, { 9222, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::ThrowKeyNullException() */, { 9224, 21, -1 } /* System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::GetCountInternal() */, { 9225, 21, -1 } /* TValue System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::GetOrAdd(TKey,System.Func`2<TKey,TValue>) */, { 9226, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.Generic.IDictionary<TKey,TValue>.Add(TKey,TValue) */, { 9227, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9228, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9230, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9231, 21, -1 } /* System.Collections.IEnumerator System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 9232, 21, -1 } /* System.Collections.IDictionaryEnumerator System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.IDictionary.GetEnumerator() */, { 9235, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9236, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::GrowTable(System.Collections.Concurrent.ConcurrentDictionary`2/Tables<TKey,TValue>) */, { 9237, 21, -1 } /* System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::GetBucket(System.Int32,System.Int32) */, { 9238, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::GetBucketAndLockNo(System.Int32,System.Int32&,System.Int32&,System.Int32,System.Int32) */, { 9240, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::AcquireAllLocks(System.Int32&) */, { 9241, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::AcquireLocks(System.Int32,System.Int32,System.Int32&) */, { 9242, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::ReleaseLocks(System.Int32,System.Int32) */, { 9243, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::.cctor() */, { 9244, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2/Tables<System.Object,System.Object>::.ctor(System.Collections.Concurrent.ConcurrentDictionary`2/Node<TKey,TValue>[],System.Object[],System.Int32[]) */, { 9245, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2/Node<System.Object,System.Object>::.ctor(TKey,TValue,System.Int32,System.Collections.Concurrent.ConcurrentDictionary`2/Node<TKey,TValue>) */, { 9247, 21, -1 } /* System.Collections.DictionaryEntry System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator<System.Object,System.Object>::get_Entry() */, { 9248, 21, -1 } /* System.Object System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator<System.Object,System.Object>::get_Key() */, { 9249, 21, -1 } /* System.Object System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator<System.Object,System.Object>::get_Value() */, { 9250, 21, -1 } /* System.Object System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator<System.Object,System.Object>::get_Current() */, { 9246, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator<System.Object,System.Object>::.ctor(System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>) */, { 9251, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator<System.Object,System.Object>::MoveNext() */, { 9255, 21, -1 } /* System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Concurrent.ConcurrentDictionary`2/<GetEnumerator>d__32<System.Object,System.Object>::System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_Current() */, { 9256, 21, -1 } /* System.Object System.Collections.Concurrent.ConcurrentDictionary`2/<GetEnumerator>d__32<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() */, { 9252, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2/<GetEnumerator>d__32<System.Object,System.Object>::.ctor(System.Int32) */, { 9253, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2/<GetEnumerator>d__32<System.Object,System.Object>::System.IDisposable.Dispose() */, { 9254, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2/<GetEnumerator>d__32<System.Object,System.Object>::MoveNext() */, { 9257, -1, 21 } /* TValue System.Collections.Generic.CollectionExtensions::GetValueOrDefault<System.Object,System.Object>(System.Collections.Generic.IReadOnlyDictionary`2<TKey,TValue>,TKey) */, { 9258, -1, 21 } /* TValue System.Collections.Generic.CollectionExtensions::GetValueOrDefault<System.Object,System.Object>(System.Collections.Generic.IReadOnlyDictionary`2<TKey,TValue>,TKey,TValue) */, { 9261, 21, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key() */, { 9262, 21, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value() */, { 9260, 21, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(TKey,TValue) */, { 9263, 21, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::ToString() */, { 9266, 0, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Object>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9267, 0, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Object>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9268, 0, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Object>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9269, 0, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Object>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9270, 0, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Object>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9271, 0, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Object>::Swap(T[],System.Int32,System.Int32) */, { 9272, 0, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Object>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9273, 0, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Object>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9274, 0, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Object>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9275, 0, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Object>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9276, 0, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Object>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9277, 0, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Object>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9278, 21, -1 } /* System.Collections.Generic.ArraySortHelper`2<TKey,TValue> System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::get_Default() */, { 9279, 21, -1 } /* System.Collections.Generic.ArraySortHelper`2<TKey,TValue> System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::CreateArraySortHelper() */, { 9280, 21, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::Sort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9281, 21, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::SwapIfGreaterWithItems(TKey[],TValue[],System.Collections.Generic.IComparer`1<TKey>,System.Int32,System.Int32) */, { 9282, 21, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::Swap(TKey[],TValue[],System.Int32,System.Int32) */, { 9283, 21, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::IntrospectiveSort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9284, 21, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::IntroSort(TKey[],TValue[],System.Int32,System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9285, 21, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::PickPivotAndPartition(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9286, 21, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::Heapsort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9287, 21, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::DownHeap(TKey[],TValue[],System.Int32,System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9288, 21, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::InsertionSort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9289, 21, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::.ctor() */, { 9295, 21, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Count() */, { 9296, 21, -1 } /* TValue System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Item(TKey) */, { 9297, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(TKey,TValue) */, { 9316, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() */, { 9320, 21, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IDictionary.get_Item(System.Object) */, { 9321, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IDictionary.set_Item(System.Object,System.Object) */, { 9290, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor() */, { 9291, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Int32) */, { 9292, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9293, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9294, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9298, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Add(TKey,TValue) */, { 9299, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9300, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9301, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9302, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Clear() */, { 9303, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::ContainsKey(TKey) */, { 9304, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9305, 21, -1 } /* System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::GetEnumerator() */, { 9306, 21, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() */, { 9307, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9308, 21, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Object>::FindEntry(TKey) */, { 9309, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Initialize(System.Int32) */, { 9310, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) */, { 9311, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::OnDeserialization(System.Object) */, { 9312, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Resize() */, { 9313, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Resize(System.Int32,System.Boolean) */, { 9314, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Remove(TKey) */, { 9315, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&) */, { 9317, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9318, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9319, 21, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 9322, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::IsCompatibleKey(System.Object) */, { 9323, 21, -1 } /* System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IDictionary.GetEnumerator() */, { 9326, 21, -1 } /* System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_Current() */, { 9328, 21, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() */, { 9329, 21, -1 } /* System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() */, { 9330, 21, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() */, { 9331, 21, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() */, { 9324, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) */, { 9325, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::MoveNext() */, { 9327, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Dispose() */, { 9341, 0, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Object>::get_Default() */, { 9342, 0, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Object>::CreateComparer() */, { 9343, 0, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, { 9344, 0, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9345, 0, -1 } /* System.Void System.Collections.Generic.Comparer`1<System.Object>::.ctor() */, { 9346, 0, -1 } /* System.Int32 System.Collections.Generic.GenericComparer`1<System.Object>::Compare(T,T) */, { 9347, 0, -1 } /* System.Boolean System.Collections.Generic.GenericComparer`1<System.Object>::Equals(System.Object) */, { 9348, 0, -1 } /* System.Int32 System.Collections.Generic.GenericComparer`1<System.Object>::GetHashCode() */, { 9349, 0, -1 } /* System.Void System.Collections.Generic.GenericComparer`1<System.Object>::.ctor() */, { 9354, 0, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.Object>::Compare(T,T) */, { 9355, 0, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<System.Object>::Equals(System.Object) */, { 9356, 0, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.Object>::GetHashCode() */, { 9357, 0, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<System.Object>::.ctor() */, { 9358, 0, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Object>::get_Default() */, { 9359, 0, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Object>::CreateComparer() */, { 9360, 0, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, { 9361, 0, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Object>::GetHashCode(T) */, { 9362, 0, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Object>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9363, 0, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Object>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9364, 0, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Object>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9365, 0, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9366, 0, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<System.Object>::.ctor() */, { 9367, 0, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.Object>::Equals(T,T) */, { 9368, 0, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Object>::GetHashCode(T) */, { 9369, 0, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Object>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9370, 0, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Object>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9371, 0, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.Object>::Equals(System.Object) */, { 9372, 0, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Object>::GetHashCode() */, { 9373, 0, -1 } /* System.Void System.Collections.Generic.GenericEqualityComparer`1<System.Object>::.ctor() */, { 9381, 0, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Object>::Equals(T,T) */, { 9382, 0, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Object>::GetHashCode(T) */, { 9383, 0, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Object>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9384, 0, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Object>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9385, 0, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Object>::Equals(System.Object) */, { 9386, 0, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Object>::GetHashCode() */, { 9387, 0, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Object>::.ctor() */, { 9419, 0, -1 } /* System.Int32 System.Collections.Generic.ICollection`1<System.Object>::get_Count() */, { 9420, 0, -1 } /* System.Boolean System.Collections.Generic.ICollection`1<System.Object>::get_IsReadOnly() */, { 9421, 0, -1 } /* System.Void System.Collections.Generic.ICollection`1<System.Object>::Add(T) */, { 9422, 0, -1 } /* System.Void System.Collections.Generic.ICollection`1<System.Object>::Clear() */, { 9423, 0, -1 } /* System.Boolean System.Collections.Generic.ICollection`1<System.Object>::Contains(T) */, { 9424, 0, -1 } /* System.Void System.Collections.Generic.ICollection`1<System.Object>::CopyTo(T[],System.Int32) */, { 9425, 0, -1 } /* System.Boolean System.Collections.Generic.ICollection`1<System.Object>::Remove(T) */, { 9426, 0, -1 } /* System.Int32 System.Collections.Generic.IComparer`1<System.Object>::Compare(T,T) */, { 9427, 21, -1 } /* System.Void System.Collections.Generic.IDictionary`2<System.Object,System.Object>::Add(TKey,TValue) */, { 9428, 0, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, { 9429, 0, -1 } /* T System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, { 9430, 0, -1 } /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, { 9431, 0, -1 } /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, { 9432, 0, -1 } /* T System.Collections.Generic.IList`1<System.Object>::get_Item(System.Int32) */, { 9433, 0, -1 } /* System.Void System.Collections.Generic.IList`1<System.Object>::set_Item(System.Int32,T) */, { 9434, 0, -1 } /* System.Int32 System.Collections.Generic.IList`1<System.Object>::IndexOf(T) */, { 9435, 0, -1 } /* System.Void System.Collections.Generic.IList`1<System.Object>::Insert(System.Int32,T) */, { 9436, 0, -1 } /* System.Void System.Collections.Generic.IList`1<System.Object>::RemoveAt(System.Int32) */, { 9437, 0, -1 } /* System.Int32 System.Collections.Generic.IReadOnlyCollection`1<System.Object>::get_Count() */, { 9438, 21, -1 } /* System.Boolean System.Collections.Generic.IReadOnlyDictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&) */, { 9439, 0, -1 } /* T System.Collections.Generic.IReadOnlyList`1<System.Object>::get_Item(System.Int32) */, { 9446, 0, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Object>::get_Capacity() */, { 9447, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::set_Capacity(System.Int32) */, { 9448, 0, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count() */, { 9449, 0, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Object>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9450, 0, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Object>::System.Collections.IList.get_IsReadOnly() */, { 9451, 0, -1 } /* T System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32) */, { 9452, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::set_Item(System.Int32,T) */, { 9454, 0, -1 } /* System.Object System.Collections.Generic.List`1<System.Object>::System.Collections.IList.get_Item(System.Int32) */, { 9455, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9443, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::.ctor() */, { 9444, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Int32) */, { 9445, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9453, 0, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Object>::IsCompatibleObject(System.Object) */, { 9456, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::Add(T) */, { 9457, 0, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Object>::System.Collections.IList.Add(System.Object) */, { 9458, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9459, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::Clear() */, { 9460, 0, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Object>::Contains(T) */, { 9461, 0, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Object>::System.Collections.IList.Contains(System.Object) */, { 9462, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::CopyTo(T[]) */, { 9463, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9464, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9465, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::CopyTo(T[],System.Int32) */, { 9466, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::EnsureCapacity(System.Int32) */, { 9467, 0, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Object>::GetEnumerator() */, { 9468, 0, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<System.Object>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9469, 0, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 9470, 0, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Object>::IndexOf(T) */, { 9471, 0, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Object>::System.Collections.IList.IndexOf(System.Object) */, { 9472, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::Insert(System.Int32,T) */, { 9473, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9474, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9475, 0, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Object>::Remove(T) */, { 9476, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::System.Collections.IList.Remove(System.Object) */, { 9477, 0, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Object>::RemoveAll(System.Predicate`1<T>) */, { 9478, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::RemoveAt(System.Int32) */, { 9479, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::RemoveRange(System.Int32,System.Int32) */, { 9480, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::Reverse() */, { 9481, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::Reverse(System.Int32,System.Int32) */, { 9482, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9483, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9484, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::Sort(System.Comparison`1<T>) */, { 9485, 0, -1 } /* T[] System.Collections.Generic.List`1<System.Object>::ToArray() */, { 9486, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::.cctor() */, { 9491, 0, -1 } /* T System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current() */, { 9492, 0, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current() */, { 9487, 0, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.List`1<T>) */, { 9488, 0, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose() */, { 9489, 0, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext() */, { 9490, 0, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNextRare() */, { 10409, 0, -1 } /* System.Int32 System.Collections.Generic.LinkedList`1<System.Object>::get_Count() */, { 10410, 0, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Object>::get_First() */, { 10411, 0, -1 } /* System.Boolean System.Collections.Generic.LinkedList`1<System.Object>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 10407, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::.ctor() */, { 10408, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 10412, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::System.Collections.Generic.ICollection<T>.Add(T) */, { 10413, 0, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Object>::AddFirst(T) */, { 10414, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::AddFirst(System.Collections.Generic.LinkedListNode`1<T>) */, { 10415, 0, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Object>::AddLast(T) */, { 10416, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::Clear() */, { 10417, 0, -1 } /* System.Boolean System.Collections.Generic.LinkedList`1<System.Object>::Contains(T) */, { 10418, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::CopyTo(T[],System.Int32) */, { 10419, 0, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Object>::Find(T) */, { 10420, 0, -1 } /* System.Collections.Generic.LinkedList`1/Enumerator<T> System.Collections.Generic.LinkedList`1<System.Object>::GetEnumerator() */, { 10421, 0, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.LinkedList`1<System.Object>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 10422, 0, -1 } /* System.Boolean System.Collections.Generic.LinkedList`1<System.Object>::Remove(T) */, { 10423, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::Remove(System.Collections.Generic.LinkedListNode`1<T>) */, { 10424, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::RemoveLast() */, { 10425, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 10426, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::OnDeserialization(System.Object) */, { 10427, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::InternalInsertNodeBefore(System.Collections.Generic.LinkedListNode`1<T>,System.Collections.Generic.LinkedListNode`1<T>) */, { 10428, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::InternalInsertNodeToEmptyList(System.Collections.Generic.LinkedListNode`1<T>) */, { 10429, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::InternalRemoveNode(System.Collections.Generic.LinkedListNode`1<T>) */, { 10430, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::ValidateNewNode(System.Collections.Generic.LinkedListNode`1<T>) */, { 10431, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::ValidateNode(System.Collections.Generic.LinkedListNode`1<T>) */, { 10432, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 10433, 0, -1 } /* System.Collections.IEnumerator System.Collections.Generic.LinkedList`1<System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 10436, 0, -1 } /* T System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::get_Current() */, { 10437, 0, -1 } /* System.Object System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current() */, { 10434, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.LinkedList`1<T>) */, { 10435, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 10438, 0, -1 } /* System.Boolean System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::MoveNext() */, { 10439, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::Dispose() */, { 10440, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 10441, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object) */, { 10443, 0, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1<System.Object>::get_Next() */, { 10444, 0, -1 } /* T System.Collections.Generic.LinkedListNode`1<System.Object>::get_Value() */, { 10442, 0, -1 } /* System.Void System.Collections.Generic.LinkedListNode`1<System.Object>::.ctor(System.Collections.Generic.LinkedList`1<T>,T) */, { 10445, 0, -1 } /* System.Void System.Collections.Generic.LinkedListNode`1<System.Object>::Invalidate() */, { 10467, -1, 0 } /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable::Where<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10468, -1, 0 } /* System.Func`2<TSource,System.Boolean> System.Linq.Enumerable::CombinePredicates<System.Object>(System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,System.Boolean>) */, { 10469, -1, 0 } /* TSource System.Linq.Enumerable::SingleOrDefault<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10470, -1, 0 } /* System.Boolean System.Linq.Enumerable::Any<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>) */, { 10471, -1, 0 } /* System.Boolean System.Linq.Enumerable::Any<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10473, 0, -1 } /* TSource System.Linq.Enumerable/Iterator`1<System.Object>::get_Current() */, { 10479, 0, -1 } /* System.Object System.Linq.Enumerable/Iterator`1<System.Object>::System.Collections.IEnumerator.get_Current() */, { 10472, 0, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::.ctor() */, { 10474, 0, -1 } /* System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/Iterator`1<System.Object>::Clone() */, { 10475, 0, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, { 10476, 0, -1 } /* System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/Iterator`1<System.Object>::GetEnumerator() */, { 10477, 0, -1 } /* System.Boolean System.Linq.Enumerable/Iterator`1<System.Object>::MoveNext() */, { 10478, 0, -1 } /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/Iterator`1<System.Object>::Where(System.Func`2<TSource,System.Boolean>) */, { 10480, 0, -1 } /* System.Collections.IEnumerator System.Linq.Enumerable/Iterator`1<System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 10481, 0, -1 } /* System.Void System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10482, 0, -1 } /* System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::Clone() */, { 10483, 0, -1 } /* System.Void System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::Dispose() */, { 10484, 0, -1 } /* System.Boolean System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::MoveNext() */, { 10485, 0, -1 } /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::Where(System.Func`2<TSource,System.Boolean>) */, { 10486, 0, -1 } /* System.Void System.Linq.Enumerable/WhereArrayIterator`1<System.Object>::.ctor(TSource[],System.Func`2<TSource,System.Boolean>) */, { 10487, 0, -1 } /* System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/WhereArrayIterator`1<System.Object>::Clone() */, { 10488, 0, -1 } /* System.Boolean System.Linq.Enumerable/WhereArrayIterator`1<System.Object>::MoveNext() */, { 10489, 0, -1 } /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereArrayIterator`1<System.Object>::Where(System.Func`2<TSource,System.Boolean>) */, { 10490, 0, -1 } /* System.Void System.Linq.Enumerable/WhereListIterator`1<System.Object>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10491, 0, -1 } /* System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/WhereListIterator`1<System.Object>::Clone() */, { 10492, 0, -1 } /* System.Boolean System.Linq.Enumerable/WhereListIterator`1<System.Object>::MoveNext() */, { 10493, 0, -1 } /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereListIterator`1<System.Object>::Where(System.Func`2<TSource,System.Boolean>) */, { 10494, 0, -1 } /* System.Void System.Linq.Enumerable/<>c__DisplayClass6_0`1<System.Object>::.ctor() */, { 10495, 0, -1 } /* System.Boolean System.Linq.Enumerable/<>c__DisplayClass6_0`1<System.Object>::<CombinePredicates>b__0(TSource) */, { 10578, -1, 0 } /* T UnityEngine.AttributeHelperEngine::GetCustomAttributeOfType<System.Object>(System.Type) */, { 10626, -1, 0 } /* T UnityEngine.Component::GetComponent<System.Object>() */, { 10844, -1, 0 } /* T UnityEngine.ScriptableObject::CreateInstance<System.Object>() */, { 10961, -1, 0 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<System.Object>(System.Object) */, { 10970, 0, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Object>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 10971, 0, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Object>::.ctor(UnityEngine.Events.UnityAction`1<T1>) */, { 10972, 0, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Object>::add_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 10973, 0, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Object>::remove_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 10974, 0, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Object>::Invoke(System.Object[]) */, { 10975, 0, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Object>::Invoke(T1) */, { 10976, 0, -1 } /* System.Boolean UnityEngine.Events.InvokableCall`1<System.Object>::Find(System.Object,System.Reflection.MethodInfo) */, { 10977, 21, -1 } /* System.Void UnityEngine.Events.InvokableCall`2<System.Object,System.Object>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 10978, 21, -1 } /* System.Void UnityEngine.Events.InvokableCall`2<System.Object,System.Object>::Invoke(System.Object[]) */, { 10979, 21, -1 } /* System.Boolean UnityEngine.Events.InvokableCall`2<System.Object,System.Object>::Find(System.Object,System.Reflection.MethodInfo) */, { 10980, 40, -1 } /* System.Void UnityEngine.Events.InvokableCall`3<System.Object,System.Object,System.Object>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 10981, 40, -1 } /* System.Void UnityEngine.Events.InvokableCall`3<System.Object,System.Object,System.Object>::Invoke(System.Object[]) */, { 10982, 40, -1 } /* System.Boolean UnityEngine.Events.InvokableCall`3<System.Object,System.Object,System.Object>::Find(System.Object,System.Reflection.MethodInfo) */, { 10983, 41, -1 } /* System.Void UnityEngine.Events.InvokableCall`4<System.Object,System.Object,System.Object,System.Object>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 10984, 41, -1 } /* System.Void UnityEngine.Events.InvokableCall`4<System.Object,System.Object,System.Object,System.Object>::Invoke(System.Object[]) */, { 10985, 41, -1 } /* System.Boolean UnityEngine.Events.InvokableCall`4<System.Object,System.Object,System.Object,System.Object>::Find(System.Object,System.Reflection.MethodInfo) */, { 10986, 0, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Object>::.ctor(UnityEngine.Object,System.Reflection.MethodInfo,T) */, { 10987, 0, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Object>::Invoke(System.Object[]) */, { 10988, 0, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Object>::Invoke(T) */, { 11026, 0, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Object>::.ctor(System.Object,System.IntPtr) */, { 11027, 0, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Object>::Invoke(T0) */, { 11028, 0, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`1<System.Object>::BeginInvoke(T0,System.AsyncCallback,System.Object) */, { 11029, 0, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Object>::EndInvoke(System.IAsyncResult) */, { 11030, 0, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Object>::.ctor() */, { 11031, 0, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Object>::AddListener(UnityEngine.Events.UnityAction`1<T0>) */, { 11032, 0, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Object>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>) */, { 11033, 0, -1 } /* System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<System.Object>::FindMethod_Impl(System.String,System.Object) */, { 11034, 0, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Object>::GetDelegate(System.Object,System.Reflection.MethodInfo) */, { 11035, 0, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Object>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>) */, { 11036, 0, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Object>::Invoke(T0) */, { 11037, 21, -1 } /* System.Void UnityEngine.Events.UnityAction`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 11038, 21, -1 } /* System.Void UnityEngine.Events.UnityAction`2<System.Object,System.Object>::Invoke(T0,T1) */, { 11039, 21, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`2<System.Object,System.Object>::BeginInvoke(T0,T1,System.AsyncCallback,System.Object) */, { 11040, 21, -1 } /* System.Void UnityEngine.Events.UnityAction`2<System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 11041, 21, -1 } /* System.Void UnityEngine.Events.UnityEvent`2<System.Object,System.Object>::.ctor() */, { 11042, 21, -1 } /* System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`2<System.Object,System.Object>::FindMethod_Impl(System.String,System.Object) */, { 11043, 21, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`2<System.Object,System.Object>::GetDelegate(System.Object,System.Reflection.MethodInfo) */, { 11044, 40, -1 } /* System.Void UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 11045, 40, -1 } /* System.Void UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>::Invoke(T0,T1,T2) */, { 11046, 40, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>::BeginInvoke(T0,T1,T2,System.AsyncCallback,System.Object) */, { 11047, 40, -1 } /* System.Void UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 11048, 40, -1 } /* System.Void UnityEngine.Events.UnityEvent`3<System.Object,System.Object,System.Object>::.ctor() */, { 11049, 40, -1 } /* System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`3<System.Object,System.Object,System.Object>::FindMethod_Impl(System.String,System.Object) */, { 11050, 40, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`3<System.Object,System.Object,System.Object>::GetDelegate(System.Object,System.Reflection.MethodInfo) */, { 11051, 41, -1 } /* System.Void UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 11052, 41, -1 } /* System.Void UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>::Invoke(T0,T1,T2,T3) */, { 11053, 41, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>::BeginInvoke(T0,T1,T2,T3,System.AsyncCallback,System.Object) */, { 11054, 41, -1 } /* System.Void UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 11055, 41, -1 } /* System.Void UnityEngine.Events.UnityEvent`4<System.Object,System.Object,System.Object,System.Object>::.ctor() */, { 11056, 41, -1 } /* System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`4<System.Object,System.Object,System.Object,System.Object>::FindMethod_Impl(System.String,System.Object) */, { 11057, 41, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`4<System.Object,System.Object,System.Object,System.Object>::GetDelegate(System.Object,System.Reflection.MethodInfo) */, { 11085, -1, 0 } /* System.Void UnityEngine.Assertions.Assert::AreEqual<System.Object>(T,T,System.String) */, { 11086, -1, 0 } /* System.Void UnityEngine.Assertions.Assert::AreEqual<System.Object>(T,T,System.String,System.Collections.Generic.IEqualityComparer`1<T>) */, { 9443, 1, -1 } /* System.Void System.Collections.Generic.List`1<System.String>::.ctor() */, { 9456, 1, -1 } /* System.Void System.Collections.Generic.List`1<System.String>::Add(T) */, { 9485, 1, -1 } /* T[] System.Collections.Generic.List`1<System.String>::ToArray() */, { 9290, 20, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::.ctor() */, { 9297, 20, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::set_Item(TKey,TValue) */, { 9295, 20, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.String,System.String>::get_Count() */, { 9305, 20, -1 } /* System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.String,System.String>::GetEnumerator() */, { 9326, 20, -1 } /* System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>::get_Current() */, { 9262, 20, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.String,System.String>::get_Value() */, { 9325, 20, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>::MoveNext() */, { 9327, 20, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>::Dispose() */, { 9443, 32, -1 } /* System.Void System.Collections.Generic.List`1<Mono.Globalization.Unicode.Contraction>::.ctor() */, { 9443, 34, -1 } /* System.Void System.Collections.Generic.List`1<Mono.Globalization.Unicode.Level2Map>::.ctor() */, { 9456, 32, -1 } /* System.Void System.Collections.Generic.List`1<Mono.Globalization.Unicode.Contraction>::Add(T) */, { 9456, 34, -1 } /* System.Void System.Collections.Generic.List`1<Mono.Globalization.Unicode.Level2Map>::Add(T) */, { 9482, 32, -1 } /* System.Void System.Collections.Generic.List`1<Mono.Globalization.Unicode.Contraction>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 1018, 34, -1 } /* System.Void System.Comparison`1<Mono.Globalization.Unicode.Level2Map>::.ctor(System.Object,System.IntPtr) */, { 9484, 34, -1 } /* System.Void System.Collections.Generic.List`1<Mono.Globalization.Unicode.Level2Map>::Sort(System.Comparison`1<T>) */, { 9485, 32, -1 } /* T[] System.Collections.Generic.List`1<Mono.Globalization.Unicode.Contraction>::ToArray() */, { 9485, 34, -1 } /* T[] System.Collections.Generic.List`1<Mono.Globalization.Unicode.Level2Map>::ToArray() */, { 761, -1, 8 } /* System.Void System.Array::Reverse<System.Byte>(T[],System.Int32,System.Int32) */, { 760, -1, 8 } /* System.Void System.Array::Reverse<System.Byte>(T[]) */, { 9448, 1, -1 } /* System.Int32 System.Collections.Generic.List`1<System.String>::get_Count() */, { 9451, 1, -1 } /* T System.Collections.Generic.List`1<System.String>::get_Item(System.Int32) */, { 9459, 1, -1 } /* System.Void System.Collections.Generic.List`1<System.String>::Clear() */, { 9176, 42, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9445, 42, -1 } /* System.Void System.Collections.Generic.List`1<System.Exception>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9445, 44, -1 } /* System.Void System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9177, 42, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception>::get_Count() */, { 9180, 42, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception>::CopyTo(T[],System.Int32) */, { 9443, 42, -1 } /* System.Void System.Collections.Generic.List`1<System.Exception>::.ctor() */, { 9443, 45, -1 } /* System.Void System.Collections.Generic.List`1<System.AggregateException>::.ctor() */, { 9456, 45, -1 } /* System.Void System.Collections.Generic.List`1<System.AggregateException>::Add(T) */, { 9451, 45, -1 } /* T System.Collections.Generic.List`1<System.AggregateException>::get_Item(System.Int32) */, { 9456, 42, -1 } /* System.Void System.Collections.Generic.List`1<System.Exception>::Add(T) */, { 9448, 45, -1 } /* System.Int32 System.Collections.Generic.List`1<System.AggregateException>::get_Count() */, { 9178, 42, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception>::get_Item(System.Int32) */, { 9290, 135, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Object>::.ctor() */, { 9303, 135, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Object>::ContainsKey(TKey) */, { 9297, 135, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Object>::set_Item(TKey,TValue) */, { 9314, 135, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Object>::Remove(TKey) */, { 9366, 8, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<System.Byte>::.ctor() */, { 8816, 25, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>::.ctor() */, { 9366, 1, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<System.String>::.ctor() */, { 8821, 25, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>::Add(TKey,TValue) */, { 8823, 25, -1 } /* System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>::TryGetValue(TKey,TValue&) */, { 8822, 25, -1 } /* System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>::Remove(TKey) */, { 1026, 10, -1 } /* System.Void System.Predicate`1<System.Type>::.ctor(System.Object,System.IntPtr) */, { 6097, -1, 10 } /* System.Boolean System.Diagnostics.Contracts.Contract::ForAll<System.Type>(System.Collections.Generic.IEnumerable`1<T>,System.Predicate`1<T>) */, { 9443, 229, -1 } /* System.Void System.Collections.Generic.List`1<System.Diagnostics.StackFrame>::.ctor() */, { 9456, 229, -1 } /* System.Void System.Collections.Generic.List`1<System.Diagnostics.StackFrame>::Add(T) */, { 9485, 229, -1 } /* T[] System.Collections.Generic.List`1<System.Diagnostics.StackFrame>::ToArray() */, { 9341, 82, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.UInt64>::get_Default() */, { 781, -1, 377 } /* System.Void System.Array::Sort<System.UInt64,System.String>(TKey[],TValue[],System.Collections.Generic.IComparer`1<TKey>) */, { 9292, 206, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9315, 206, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator>::TryGetValue(TKey,TValue&) */, { 9297, 206, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator>::set_Item(TKey,TValue) */, { 9290, 223, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>::.ctor() */, { 9290, 226, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>::.ctor() */, { 9297, 223, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>::set_Item(TKey,TValue) */, { 9297, 226, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>::set_Item(TKey,TValue) */, { 9315, 223, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>::TryGetValue(TKey,TValue&) */, { 9315, 226, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>::TryGetValue(TKey,TValue&) */, { 3254, 24, -1 } /* System.Boolean System.Nullable`1<System.Int32>::get_HasValue() */, { 3255, 24, -1 } /* T System.Nullable`1<System.Int32>::get_Value() */, { 9298, 20, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::Add(TKey,TValue) */, { 9315, 20, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.String>::TryGetValue(TKey,TValue&) */, { 9460, 1, -1 } /* System.Boolean System.Collections.Generic.List`1<System.String>::Contains(T) */, { 3254, 47, -1 } /* System.Boolean System.Nullable`1<System.Boolean>::get_HasValue() */, { 3253, 47, -1 } /* System.Void System.Nullable`1<System.Boolean>::.ctor(T) */, { 3255, 47, -1 } /* T System.Nullable`1<System.Boolean>::get_Value() */, { 9445, 1, -1 } /* System.Void System.Collections.Generic.List`1<System.String>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 5006, 1, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<System.String>::.ctor(System.String,System.String,System.String,System.IO.SearchOption,System.IO.SearchResultHandler`1<TSource>,System.Boolean) */, { 6702, -1, 24 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Int32>(System.Threading.CancellationToken) */, { 6563, 24, -1 } /* TResult System.Threading.Tasks.Task`1<System.Int32>::get_Result() */, { 6698, -1, 24 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromResult<System.Int32>(TResult) */, { 6703, -1, 24 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Int32>(System.OperationCanceledException) */, { 6700, -1, 24 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromException<System.Int32>(System.Exception) */, { 6703, -1, 180 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Threading.Tasks.VoidTaskResult>(System.OperationCanceledException) */, { 848, -1, 9 } /* T[] System.Array::Empty<System.Char>() */, { 998, 183, -1 } /* System.Void System.Func`1<System.Threading.SemaphoreSlim>::.ctor(System.Object,System.IntPtr) */, { 6166, -1, 183 } /* T System.Threading.LazyInitializer::EnsureInitialized<System.Threading.SemaphoreSlim>(T&,System.Func`1<T>) */, { 1002, 179, -1 } /* System.Void System.Func`2<System.Object,System.Int32>::.ctor(System.Object,System.IntPtr) */, { 6570, 24, -1 } /* System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Int32>::GetAwaiter() */, { 8774, 24, -1 } /* TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::GetResult() */, { 1014, 184, -1 } /* System.Void System.Func`5<System.IO.Stream,System.IO.Stream/ReadWriteParameters,System.AsyncCallback,System.Object,System.IAsyncResult>::.ctor(System.Object,System.IntPtr) */, { 1006, 186, -1 } /* System.Void System.Func`3<System.IO.Stream,System.IAsyncResult,System.Int32>::.ctor(System.Object,System.IntPtr) */, { 6578, 24, 378 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Int32>::FromAsyncTrim<System.IO.Stream,System.IO.Stream/ReadWriteParameters>(!!0,!!1,System.Func`5<!!0,!!1,System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`3<!!0,System.IAsyncResult,TResult>) */, { 990, 191, -1 } /* System.Void System.Action`2<System.Threading.Tasks.Task,System.Object>::.ctor(System.Object,System.IntPtr) */, { 892, -1, 192 } /* System.Tuple`2<T1,T2> System.Tuple::Create<System.IO.Stream,System.IO.Stream/ReadWriteTask>(T1,T2) */, { 1006, 193, -1 } /* System.Void System.Func`3<System.IO.Stream,System.IAsyncResult,System.Threading.Tasks.VoidTaskResult>::.ctor(System.Object,System.IntPtr) */, { 6578, 180, 378 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>::FromAsyncTrim<System.IO.Stream,System.IO.Stream/ReadWriteParameters>(!!0,!!1,System.Func`5<!!0,!!1,System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`3<!!0,System.IAsyncResult,TResult>) */, { 896, 192, -1 } /* T1 System.Tuple`2<System.IO.Stream,System.IO.Stream/ReadWriteTask>::get_Item1() */, { 897, 192, -1 } /* T2 System.Tuple`2<System.IO.Stream,System.IO.Stream/ReadWriteTask>::get_Item2() */, { 6555, 24, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) */, { 6556, 24, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions) */, { 998, 198, -1 } /* System.Void System.Func`1<System.Threading.ManualResetEvent>::.ctor(System.Object,System.IntPtr) */, { 6166, -1, 198 } /* T System.Threading.LazyInitializer::EnsureInitialized<System.Threading.ManualResetEvent>(T&,System.Func`1<T>) */, { 5021, 1, -1 } /* System.Void System.IO.SearchResultHandler`1<System.String>::.ctor() */, { 1002, 199, -1 } /* System.Void System.Func`2<System.Object,System.String>::.ctor(System.Object,System.IntPtr) */, { 919, 200, -1 } /* T1 System.Tuple`4<System.IO.TextReader,System.Char[],System.Int32,System.Int32>::get_Item1() */, { 920, 200, -1 } /* T2 System.Tuple`4<System.IO.TextReader,System.Char[],System.Int32,System.Int32>::get_Item2() */, { 921, 200, -1 } /* T3 System.Tuple`4<System.IO.TextReader,System.Char[],System.Int32,System.Int32>::get_Item3() */, { 922, 200, -1 } /* T4 System.Tuple`4<System.IO.TextReader,System.Char[],System.Int32,System.Int32>::get_Item4() */, { 896, 202, -1 } /* T1 System.Tuple`2<System.IO.TextWriter,System.Char>::get_Item1() */, { 897, 202, -1 } /* T2 System.Tuple`2<System.IO.TextWriter,System.Char>::get_Item2() */, { 896, 204, -1 } /* T1 System.Tuple`2<System.IO.TextWriter,System.String>::get_Item1() */, { 897, 204, -1 } /* T2 System.Tuple`2<System.IO.TextWriter,System.String>::get_Item2() */, { 919, 205, -1 } /* T1 System.Tuple`4<System.IO.TextWriter,System.Char[],System.Int32,System.Int32>::get_Item1() */, { 920, 205, -1 } /* T2 System.Tuple`4<System.IO.TextWriter,System.Char[],System.Int32,System.Int32>::get_Item2() */, { 921, 205, -1 } /* T3 System.Tuple`4<System.IO.TextWriter,System.Char[],System.Int32,System.Int32>::get_Item3() */, { 922, 205, -1 } /* T4 System.Tuple`4<System.IO.TextWriter,System.Char[],System.Int32,System.Int32>::get_Item4() */, { 9456, 48, -1 } /* System.Void System.Collections.Generic.List`1<System.LocalDataStore>::Add(T) */, { 9475, 48, -1 } /* System.Boolean System.Collections.Generic.List`1<System.LocalDataStore>::Remove(T) */, { 9298, 49, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot>::Add(TKey,TValue) */, { 9257, -1, 49 } /* TValue System.Collections.Generic.CollectionExtensions::GetValueOrDefault<System.String,System.LocalDataStoreSlot>(System.Collections.Generic.IReadOnlyDictionary`2<TKey,TValue>,TKey) */, { 9314, 49, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot>::Remove(TKey) */, { 9451, 48, -1 } /* T System.Collections.Generic.List`1<System.LocalDataStore>::get_Item(System.Int32) */, { 9448, 48, -1 } /* System.Int32 System.Collections.Generic.List`1<System.LocalDataStore>::get_Count() */, { 9443, 48, -1 } /* System.Void System.Collections.Generic.List`1<System.LocalDataStore>::.ctor() */, { 9290, 49, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot>::.ctor() */, { 9291, 143, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Type,System.MonoCustomAttrs/AttributeInfo>::.ctor(System.Int32) */, { 9315, 143, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.MonoCustomAttrs/AttributeInfo>::TryGetValue(TKey,TValue&) */, { 9298, 143, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Type,System.MonoCustomAttrs/AttributeInfo>::Add(TKey,TValue) */, { 703, -1, 107 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Array::AsReadOnly<System.Reflection.CustomAttributeData>(T[]) */, { 9290, 140, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Type,System.AttributeUsageAttribute>::.ctor() */, { 9315, 140, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.AttributeUsageAttribute>::TryGetValue(TKey,TValue&) */, { 9297, 140, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Type,System.AttributeUsageAttribute>::set_Item(TKey,TValue) */, { 755, -1, 139 } /* System.Int32 System.Array::LastIndexOf<System.Delegate>(T[],T) */, { 704, -1, 9 } /* System.Void System.Array::Resize<System.Char>(T[]&,System.Int32) */, { 4413, -1, 166 } /* T[] System.Reflection.CustomAttributeData::UnboxValues<System.Reflection.CustomAttributeTypedArgument>(System.Object[]) */, { 703, -1, 166 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Array::AsReadOnly<System.Reflection.CustomAttributeTypedArgument>(T[]) */, { 4413, -1, 167 } /* T[] System.Reflection.CustomAttributeData::UnboxValues<System.Reflection.CustomAttributeNamedArgument>(System.Object[]) */, { 703, -1, 167 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Array::AsReadOnly<System.Reflection.CustomAttributeNamedArgument>(T[]) */, { 9176, 166, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9444, 164, -1 } /* System.Void System.Collections.Generic.List`1<System.Reflection.Module>::.ctor(System.Int32) */, { 9456, 164, -1 } /* System.Void System.Collections.Generic.List`1<System.Reflection.Module>::Add(T) */, { 9485, 164, -1 } /* T[] System.Collections.Generic.List`1<System.Reflection.Module>::ToArray() */, { 4211, -1, 379 } /* T System.Reflection.CustomAttributeExtensions::GetCustomAttribute<System.Resources.NeutralResourcesLanguageAttribute>(System.Reflection.Assembly) */, { 9290, 154, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceSet>::.ctor() */, { 9315, 157, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceLocator>::TryGetValue(TKey,TValue&) */, { 9292, 157, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9297, 157, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceLocator>::set_Item(TKey,TValue) */, { 9298, 157, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceLocator>::Add(TKey,TValue) */, { 8732, -1, 24 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskCache::CreateCacheableTask<System.Int32>(TResult) */, { 8732, -1, 47 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskCache::CreateCacheableTask<System.Boolean>(TResult) */, { 8723, 180, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) */, { 8725, 180, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::get_Task() */, { 8727, 180, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetResult(System.Threading.Tasks.Task`1<TResult>) */, { 8728, 180, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetException(System.Exception) */, { 9177, 44, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::get_Count() */, { 9178, 44, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::get_Item(System.Int32) */, { 848, -1, 1 } /* T[] System.Array::Empty<System.String>() */, { 9485, 283, -1 } /* T[] System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>::ToArray() */, { 9467, 283, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>::GetEnumerator() */, { 9491, 283, -1 } /* T System.Collections.Generic.List`1/Enumerator<System.Runtime.Remoting.Contexts.IContextProperty>::get_Current() */, { 9489, 283, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Runtime.Remoting.Contexts.IContextProperty>::MoveNext() */, { 9488, 283, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.Remoting.Contexts.IContextProperty>::Dispose() */, { 9443, 283, -1 } /* System.Void System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>::.ctor() */, { 9456, 283, -1 } /* System.Void System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>::Add(T) */, { 9448, 283, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>::get_Count() */, { 9451, 283, -1 } /* T System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>::get_Item(System.Int32) */, { 9208, 258, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Runtime.Serialization.MemberHolder,System.Reflection.MemberInfo[]>::.ctor() */, { 9443, 263, -1 } /* System.Void System.Collections.Generic.List`1<System.Runtime.Serialization.SerializationFieldInfo>::.ctor() */, { 9456, 263, -1 } /* System.Void System.Collections.Generic.List`1<System.Runtime.Serialization.SerializationFieldInfo>::Add(T) */, { 9448, 263, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Runtime.Serialization.SerializationFieldInfo>::get_Count() */, { 1002, 258, -1 } /* System.Void System.Func`2<System.Runtime.Serialization.MemberHolder,System.Reflection.MemberInfo[]>::.ctor(System.Object,System.IntPtr) */, { 9225, 258, -1 } /* TValue System.Collections.Concurrent.ConcurrentDictionary`2<System.Runtime.Serialization.MemberHolder,System.Reflection.MemberInfo[]>::GetOrAdd(TKey,System.Func`2<TKey,TValue>) */, { 9315, 275, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.Runtime.Serialization.Formatters.Binary.TypeInformation>::TryGetValue(TKey,TValue&) */, { 9298, 275, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Runtime.Serialization.Formatters.Binary.TypeInformation>::Add(TKey,TValue) */, { 9290, 275, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Runtime.Serialization.Formatters.Binary.TypeInformation>::.ctor() */, { 9212, 135, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.String,System.Object>::TryGetValue(TKey,TValue&) */, { 9221, 135, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.String,System.Object>::set_Item(TKey,TValue) */, { 9208, 135, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.String,System.Object>::.ctor() */, { 1002, 130, -1 } /* System.Void System.Func`2<System.Reflection.AssemblyName,System.Reflection.Assembly>::.ctor(System.Object,System.IntPtr) */, { 1010, 131, -1 } /* System.Void System.Func`4<System.Reflection.Assembly,System.String,System.Boolean,System.Type>::.ctor(System.Object,System.IntPtr) */, { 9444, 10, -1 } /* System.Void System.Collections.Generic.List`1<System.Type>::.ctor(System.Int32) */, { 9451, 10, -1 } /* T System.Collections.Generic.List`1<System.Type>::get_Item(System.Int32) */, { 1744, 266, -1 } /* System.Void System.EventHandler`1<System.Runtime.Serialization.SafeSerializationEventArgs>::Invoke(System.Object,TEventArgs) */, { 9443, 96, -1 } /* System.Void System.Collections.Generic.List`1<System.Reflection.MethodInfo>::.ctor() */, { 9456, 96, -1 } /* System.Void System.Collections.Generic.List`1<System.Reflection.MethodInfo>::Add(T) */, { 9480, 96, -1 } /* System.Void System.Collections.Generic.List`1<System.Reflection.MethodInfo>::Reverse() */, { 9448, 96, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Reflection.MethodInfo>::get_Count() */, { 9467, 96, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Reflection.MethodInfo>::GetEnumerator() */, { 9491, 96, -1 } /* T System.Collections.Generic.List`1/Enumerator<System.Reflection.MethodInfo>::get_Current() */, { 9489, 96, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Reflection.MethodInfo>::MoveNext() */, { 9488, 96, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Reflection.MethodInfo>::Dispose() */, { 9290, 267, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::.ctor() */, { 9303, 267, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::ContainsKey(TKey) */, { 9298, 267, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, { 9315, 267, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::TryGetValue(TKey,TValue&) */, { 2345, 96, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.MethodInfo>::.ctor(System.Int32) */, { 2350, 96, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.MethodInfo>::Add(T) */, { 2345, 99, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.ConstructorInfo>::.ctor(System.Int32) */, { 2350, 99, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.ConstructorInfo>::Add(T) */, { 2345, 79, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.PropertyInfo>::.ctor(System.Int32) */, { 2350, 79, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.PropertyInfo>::Add(T) */, { 2345, 103, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.EventInfo>::.ctor(System.Int32) */, { 2350, 103, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.EventInfo>::Add(T) */, { 2345, 55, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.FieldInfo>::.ctor(System.Int32) */, { 2350, 55, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.FieldInfo>::Add(T) */, { 2345, 10, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Type>::.ctor(System.Int32) */, { 2350, 10, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Type>::Add(T) */, { 2347, 96, -1 } /* T[] System.RuntimeType/ListBuilder`1<System.Reflection.MethodInfo>::ToArray() */, { 2347, 99, -1 } /* T[] System.RuntimeType/ListBuilder`1<System.Reflection.ConstructorInfo>::ToArray() */, { 2347, 55, -1 } /* T[] System.RuntimeType/ListBuilder`1<System.Reflection.FieldInfo>::ToArray() */, { 2349, 96, -1 } /* System.Int32 System.RuntimeType/ListBuilder`1<System.Reflection.MethodInfo>::get_Count() */, { 2346, 96, -1 } /* T System.RuntimeType/ListBuilder`1<System.Reflection.MethodInfo>::get_Item(System.Int32) */, { 2349, 99, -1 } /* System.Int32 System.RuntimeType/ListBuilder`1<System.Reflection.ConstructorInfo>::get_Count() */, { 2346, 99, -1 } /* T System.RuntimeType/ListBuilder`1<System.Reflection.ConstructorInfo>::get_Item(System.Int32) */, { 2349, 79, -1 } /* System.Int32 System.RuntimeType/ListBuilder`1<System.Reflection.PropertyInfo>::get_Count() */, { 2346, 79, -1 } /* T System.RuntimeType/ListBuilder`1<System.Reflection.PropertyInfo>::get_Item(System.Int32) */, { 2347, 79, -1 } /* T[] System.RuntimeType/ListBuilder`1<System.Reflection.PropertyInfo>::ToArray() */, { 2347, 103, -1 } /* T[] System.RuntimeType/ListBuilder`1<System.Reflection.EventInfo>::ToArray() */, { 2349, 103, -1 } /* System.Int32 System.RuntimeType/ListBuilder`1<System.Reflection.EventInfo>::get_Count() */, { 2349, 55, -1 } /* System.Int32 System.RuntimeType/ListBuilder`1<System.Reflection.FieldInfo>::get_Count() */, { 2347, 10, -1 } /* T[] System.RuntimeType/ListBuilder`1<System.Type>::ToArray() */, { 2349, 10, -1 } /* System.Int32 System.RuntimeType/ListBuilder`1<System.Type>::get_Count() */, { 2348, 96, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.MethodInfo>::CopyTo(System.Object[],System.Int32) */, { 2348, 99, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.ConstructorInfo>::CopyTo(System.Object[],System.Int32) */, { 2348, 79, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.PropertyInfo>::CopyTo(System.Object[],System.Int32) */, { 2348, 103, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.EventInfo>::CopyTo(System.Object[],System.Int32) */, { 2348, 55, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.FieldInfo>::CopyTo(System.Object[],System.Int32) */, { 2348, 10, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Type>::CopyTo(System.Object[],System.Int32) */, { 742, -1, 82 } /* System.Int32 System.Array::BinarySearch<System.UInt64>(T[],T) */, { 749, -1, 1 } /* System.Int32 System.Array::IndexOf<System.String>(T[],T) */, { 9444, 96, -1 } /* System.Void System.Collections.Generic.List`1<System.Reflection.MethodInfo>::.ctor(System.Int32) */, { 9462, 96, -1 } /* System.Void System.Collections.Generic.List`1<System.Reflection.MethodInfo>::CopyTo(T[]) */, { 9444, 62, -1 } /* System.Void System.Collections.Generic.List`1<System.Reflection.MethodBase>::.ctor(System.Int32) */, { 9456, 62, -1 } /* System.Void System.Collections.Generic.List`1<System.Reflection.MethodBase>::Add(T) */, { 9448, 62, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Reflection.MethodBase>::get_Count() */, { 9462, 62, -1 } /* System.Void System.Collections.Generic.List`1<System.Reflection.MethodBase>::CopyTo(T[]) */, { 6158, 231, -1 } /* System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo>::get_Source() */, { 6159, 231, -1 } /* System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo>::get_Index() */, { 6165, 231, -1 } /* T System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>::SafeAtomicRemove(System.Int32,T) */, { 6154, 231, -1 } /* System.Void System.Threading.SparselyPopulatedArray`1<System.Threading.CancellationCallbackInfo>::.ctor(System.Int32) */, { 6156, 231, -1 } /* System.Threading.SparselyPopulatedArrayAddInfo`1<T> System.Threading.SparselyPopulatedArray`1<System.Threading.CancellationCallbackInfo>::Add(T) */, { 6155, 231, -1 } /* System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArray`1<System.Threading.CancellationCallbackInfo>::get_Tail() */, { 6163, 231, -1 } /* System.Int32 System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>::get_Length() */, { 6162, 231, -1 } /* T System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>::get_Item(System.Int32) */, { 6164, 231, -1 } /* System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>::get_Prev() */, { 9467, 242, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Threading.IAsyncLocal>::GetEnumerator() */, { 9491, 242, -1 } /* T System.Collections.Generic.List`1/Enumerator<System.Threading.IAsyncLocal>::get_Current() */, { 9315, 240, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Threading.IAsyncLocal,System.Object>::TryGetValue(TKey,TValue&) */, { 9489, 242, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Threading.IAsyncLocal>::MoveNext() */, { 9488, 242, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Threading.IAsyncLocal>::Dispose() */, { 6570, 47, -1 } /* System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Boolean>::GetAwaiter() */, { 8774, 47, -1 } /* TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::GetResult() */, { 6702, -1, 47 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Boolean>(System.Threading.CancellationToken) */, { 8721, 47, -1 } /* System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::Create() */, { 8722, 47, 380 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::Start<System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31>(!!0&) */, { 8725, 47, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::get_Task() */, { 6555, 47, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) */, { 6571, 175, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>::ConfigureAwait(System.Boolean) */, { 8783, 175, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.Task>::GetAwaiter() */, { 8785, 175, -1 } /* System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.Task>::get_IsCompleted() */, { 8724, 47, 381 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.Task>,System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31>(!!0&,!!1&) */, { 8787, 175, -1 } /* TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.Task>::GetResult() */, { 6571, 47, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Boolean>::ConfigureAwait(System.Boolean) */, { 8783, 47, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>::GetAwaiter() */, { 8785, 47, -1 } /* System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::get_IsCompleted() */, { 8724, 47, 382 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>,System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31>(!!0&,!!1&) */, { 8787, 47, -1 } /* TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::GetResult() */, { 8728, 47, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetException(System.Exception) */, { 8726, 47, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetResult(TResult) */, { 8723, 47, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) */, { 6553, 47, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor() */, { 6561, 47, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Boolean>::TrySetResult(TResult) */, { 983, 175, -1 } /* System.Void System.Action`1<System.Threading.Tasks.Task>::Invoke(T) */, { 991, 191, -1 } /* System.Void System.Action`2<System.Threading.Tasks.Task,System.Object>::Invoke(T1,T2) */, { 9297, 251, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task>::set_Item(TKey,TValue) */, { 9314, 251, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task>::Remove(TKey) */, { 910, 255, -1 } /* System.Void System.Tuple`3<System.Threading.Tasks.Task,System.Threading.Tasks.Task,System.Threading.Tasks.TaskContinuation>::.ctor(T1,T2,T3) */, { 6583, 230, -1 } /* System.Void System.Threading.Tasks.Shared`1<System.Threading.CancellationTokenRegistration>::.ctor(T) */, { 907, 255, -1 } /* T1 System.Tuple`3<System.Threading.Tasks.Task,System.Threading.Tasks.Task,System.Threading.Tasks.TaskContinuation>::get_Item1() */, { 908, 255, -1 } /* T2 System.Tuple`3<System.Threading.Tasks.Task,System.Threading.Tasks.Task,System.Threading.Tasks.TaskContinuation>::get_Item2() */, { 909, 255, -1 } /* T3 System.Tuple`3<System.Threading.Tasks.Task,System.Threading.Tasks.Task,System.Threading.Tasks.TaskContinuation>::get_Item3() */, { 6166, -1, 254 } /* T System.Threading.LazyInitializer::EnsureInitialized<System.Threading.Tasks.Task/ContingentProperties>(T&,System.Func`1<T>) */, { 9176, 44, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9477, 175, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Threading.Tasks.Task>::RemoveAll(System.Predicate`1<T>) */, { 9443, 175, -1 } /* System.Void System.Collections.Generic.List`1<System.Threading.Tasks.Task>::.ctor() */, { 9456, 175, -1 } /* System.Void System.Collections.Generic.List`1<System.Threading.Tasks.Task>::Add(T) */, { 9467, 175, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Threading.Tasks.Task>::GetEnumerator() */, { 9491, 175, -1 } /* T System.Collections.Generic.List`1/Enumerator<System.Threading.Tasks.Task>::get_Current() */, { 9489, 175, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Threading.Tasks.Task>::MoveNext() */, { 9488, 175, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Threading.Tasks.Task>::Dispose() */, { 6700, -1, 180 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromException<System.Threading.Tasks.VoidTaskResult>(System.Exception) */, { 9290, 251, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task>::.ctor() */, { 998, 254, -1 } /* System.Void System.Func`1<System.Threading.Tasks.Task/ContingentProperties>::.ctor(System.Object,System.IntPtr) */, { 1026, 175, -1 } /* System.Void System.Predicate`1<System.Threading.Tasks.Task>::.ctor(System.Object,System.IntPtr) */, { 6553, 180, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor() */, { 6567, 180, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::TrySetCanceled(System.Threading.CancellationToken) */, { 6561, 180, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::TrySetResult(TResult) */, { 9467, 44, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::GetEnumerator() */, { 9491, 44, -1 } /* T System.Collections.Generic.List`1/Enumerator<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::get_Current() */, { 9181, 42, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception>::GetEnumerator() */, { 9489, 44, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::MoveNext() */, { 9488, 44, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::Dispose() */, { 9444, 44, -1 } /* System.Void System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::.ctor(System.Int32) */, { 9456, 44, -1 } /* System.Void System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::Add(T) */, { 9458, 44, -1 } /* System.Void System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9451, 44, -1 } /* T System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::get_Item(System.Int32) */, { 9448, 44, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::get_Count() */, { 6553, 175, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>::.ctor() */, { 6561, 175, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>::TrySetResult(TResult) */, { 8816, 256, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Threading.Tasks.TaskScheduler,System.Object>::.ctor() */, { 8821, 256, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Threading.Tasks.TaskScheduler,System.Object>::Add(TKey,TValue) */, { 1744, 257, -1 } /* System.Void System.EventHandler`1<System.Threading.Tasks.UnobservedTaskExceptionEventArgs>::Invoke(System.Object,TEventArgs) */, { 6417, 246, -1 } /* T[] System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Threading.ThreadPoolWorkQueue/WorkStealingQueue>::get_Current() */, { 6416, 246, -1 } /* System.Void System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Threading.ThreadPoolWorkQueue/WorkStealingQueue>::.ctor(System.Int32) */, { 6418, 246, -1 } /* System.Int32 System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Threading.ThreadPoolWorkQueue/WorkStealingQueue>::Add(T) */, { 6419, 246, -1 } /* System.Void System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Threading.ThreadPoolWorkQueue/WorkStealingQueue>::Remove(T) */, { 9444, 248, -1 } /* System.Void System.Collections.Generic.List`1<System.Threading.Timer>::.ctor(System.Int32) */, { 9456, 248, -1 } /* System.Void System.Collections.Generic.List`1<System.Threading.Timer>::Add(T) */, { 9448, 248, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Threading.Timer>::get_Count() */, { 9451, 248, -1 } /* T System.Collections.Generic.List`1<System.Threading.Timer>::get_Item(System.Int32) */, { 9459, 248, -1 } /* System.Void System.Collections.Generic.List`1<System.Threading.Timer>::Clear() */, { 9446, 248, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Threading.Timer>::get_Capacity() */, { 9447, 248, -1 } /* System.Void System.Collections.Generic.List`1<System.Threading.Timer>::set_Capacity(System.Int32) */, { 9443, 116, -1 } /* System.Void System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>::.ctor() */, { 9456, 116, -1 } /* System.Void System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>::Add(T) */, { 9448, 116, -1 } /* System.Int32 System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>::get_Count() */, { 9458, 116, -1 } /* System.Void System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 1018, 116, -1 } /* System.Void System.Comparison`1<System.TimeZoneInfo/AdjustmentRule>::.ctor(System.Object,System.IntPtr) */, { 9484, 116, -1 } /* System.Void System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>::Sort(System.Comparison`1<T>) */, { 9485, 116, -1 } /* T[] System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>::ToArray() */, { 9181, 111, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<System.TimeZoneInfo>::GetEnumerator() */, { 9443, 111, -1 } /* System.Void System.Collections.Generic.List`1<System.TimeZoneInfo>::.ctor() */, { 9456, 111, -1 } /* System.Void System.Collections.Generic.List`1<System.TimeZoneInfo>::Add(T) */, { 9448, 111, -1 } /* System.Int32 System.Collections.Generic.List`1<System.TimeZoneInfo>::get_Count() */, { 9458, 111, -1 } /* System.Void System.Collections.Generic.List`1<System.TimeZoneInfo>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9176, 111, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.TimeZoneInfo>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9475, 116, -1 } /* System.Boolean System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>::Remove(T) */, { 9295, 126, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Int32,System.TimeType>::get_Count() */, { 9296, 126, -1 } /* TValue System.Collections.Generic.Dictionary`2<System.Int32,System.TimeType>::get_Item(TKey) */, { 9451, 112, -1 } /* T System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>>::get_Item(System.Int32) */, { 9261, 113, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>::get_Key() */, { 9262, 113, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>::get_Value() */, { 9448, 112, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>>::get_Count() */, { 9290, 120, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.String>::.ctor() */, { 9298, 120, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.String>::Add(TKey,TValue) */, { 9291, 126, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.TimeType>::.ctor(System.Int32) */, { 9296, 120, -1 } /* TValue System.Collections.Generic.Dictionary`2<System.Int32,System.String>::get_Item(TKey) */, { 9298, 126, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.TimeType>::Add(TKey,TValue) */, { 9444, 112, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>>::.ctor(System.Int32) */, { 9260, 113, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>::.ctor(TKey,TValue) */, { 9456, 112, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>>::Add(T) */, { 9467, 150, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.TypeIdentifier>::GetEnumerator() */, { 9491, 150, -1 } /* T System.Collections.Generic.List`1/Enumerator<System.TypeIdentifier>::get_Current() */, { 9489, 150, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.TypeIdentifier>::MoveNext() */, { 9488, 150, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.TypeIdentifier>::Dispose() */, { 9451, 152, -1 } /* T System.Collections.Generic.List`1<System.TypeSpec>::get_Item(System.Int32) */, { 9448, 152, -1 } /* System.Int32 System.Collections.Generic.List`1<System.TypeSpec>::get_Count() */, { 9467, 149, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.ModifierSpec>::GetEnumerator() */, { 9491, 149, -1 } /* T System.Collections.Generic.List`1/Enumerator<System.ModifierSpec>::get_Current() */, { 9489, 149, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.ModifierSpec>::MoveNext() */, { 9488, 149, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.ModifierSpec>::Dispose() */, { 1003, 130, -1 } /* TResult System.Func`2<System.Reflection.AssemblyName,System.Reflection.Assembly>::Invoke(T) */, { 1011, 131, -1 } /* TResult System.Func`4<System.Reflection.Assembly,System.String,System.Boolean,System.Type>::Invoke(T1,T2,T3) */, { 9443, 150, -1 } /* System.Void System.Collections.Generic.List`1<System.TypeIdentifier>::.ctor() */, { 9456, 150, -1 } /* System.Void System.Collections.Generic.List`1<System.TypeIdentifier>::Add(T) */, { 9443, 149, -1 } /* System.Void System.Collections.Generic.List`1<System.ModifierSpec>::.ctor() */, { 9456, 149, -1 } /* System.Void System.Collections.Generic.List`1<System.ModifierSpec>::Add(T) */, { 9443, 152, -1 } /* System.Void System.Collections.Generic.List`1<System.TypeSpec>::.ctor() */, { 9456, 152, -1 } /* System.Void System.Collections.Generic.List`1<System.TypeSpec>::Add(T) */, { 9443, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::.ctor() */, { 9456, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::Add(T) */, { 9485, 24, -1 } /* T[] System.Collections.Generic.List`1<System.Int32>::ToArray() */, { 8721, 285, -1 } /* System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::Create() */, { 8722, 285, 383 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::Start<Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(!!0&) */, { 8725, 285, -1 } /* System.Threading.Tasks.Task`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::get_Task() */, { 8714, -1, 384 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(!!0&) */, { 8721, 288, -1 } /* System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::Create() */, { 8722, 288, 385 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::Start<Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25>(!!0&) */, { 8725, 288, -1 } /* System.Threading.Tasks.Task`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::get_Task() */, { 6571, 24, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<!0> System.Threading.Tasks.Task`1<System.Int32>::ConfigureAwait(System.Boolean) */, { 8783, 24, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<!0> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::GetAwaiter() */, { 8785, 24, -1 } /* System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::get_IsCompleted() */, { 8724, 288, 386 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>,Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25>(!!0&,!!1&) */, { 8787, 24, -1 } /* !0 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::GetResult() */, { 3253, 24, -1 } /* System.Void System.Nullable`1<System.Int32>::.ctor(!0) */, { 3259, 24, -1 } /* !0 System.Nullable`1<System.Int32>::GetValueOrDefault() */, { 8728, 288, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::SetException(System.Exception) */, { 8726, 288, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::SetResult(!0) */, { 8723, 288, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) */, { 6571, 288, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<!0> System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::ConfigureAwait(System.Boolean) */, { 8783, 288, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<!0> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Nullable`1<System.Int32>>::GetAwaiter() */, { 8785, 288, -1 } /* System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>::get_IsCompleted() */, { 8716, -1, 387 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(!!0&,!!1&) */, { 8787, 288, -1 } /* !0 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>::GetResult() */, { 8716, -1, 388 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(!!0&,!!1&) */, { 8724, 285, 389 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(!!0&,!!1&) */, { 8728, 285, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::SetException(System.Exception) */, { 8726, 285, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::SetResult(!0) */, { 8723, 285, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) */, { 6815, -1, 24 } /* !!0 System.Threading.Tasks.TaskToApm::End<System.Int32>(System.IAsyncResult) */, { 8721, 24, -1 } /* System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Create() */, { 8722, 24, 390 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Start<Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58>(!!0&) */, { 8725, 24, -1 } /* System.Threading.Tasks.Task`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::get_Task() */, { 8722, 24, 391 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Start<Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66>(!!0&) */, { 8714, -1, 392 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(!!0&) */, { 998, 24, -1 } /* System.Void System.Func`1<System.Int32>::.ctor(System.Object,System.IntPtr) */, { 6705, -1, 24 } /* System.Threading.Tasks.Task`1<!!0> System.Threading.Tasks.Task::Run<System.Int32>(System.Func`1<!!0>) */, { 8724, 24, 393 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>,Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66>(!!0&,!!1&) */, { 8728, 24, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetException(System.Exception) */, { 8726, 24, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetResult(!0) */, { 8723, 24, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) */, { 8716, -1, 394 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(!!0&,!!1&) */, { 6571, 285, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<!0> System.Threading.Tasks.Task`1<Mono.Net.Security.AsyncProtocolResult>::ConfigureAwait(System.Boolean) */, { 8783, 285, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<!0> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<Mono.Net.Security.AsyncProtocolResult>::GetAwaiter() */, { 8785, 285, -1 } /* System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<Mono.Net.Security.AsyncProtocolResult>::get_IsCompleted() */, { 8724, 24, 395 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<Mono.Net.Security.AsyncProtocolResult>,Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58>(!!0&,!!1&) */, { 8787, 285, -1 } /* !0 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<Mono.Net.Security.AsyncProtocolResult>::GetResult() */, { 8903, -1, 396 } /* !!0 System.Runtime.InteropServices.Marshal::PtrToStructure<Mono.Unity.UnityTls/unitytls_interface_struct>(System.IntPtr) */, { 9315, 120, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.String>::TryGetValue(!0,!1&) */, { 9261, 296, -1 } /* !0 System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Key() */, { 9262, 296, -1 } /* !1 System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Value() */, { 9260, 296, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::.ctor(!0,!1) */, { 9448, 303, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509CertificateImpl>::get_Count() */, { 9451, 303, -1 } /* !0 System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509CertificateImpl>::get_Item(System.Int32) */, { 9467, 303, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509CertificateImpl>::GetEnumerator() */, { 9491, 303, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<System.Security.Cryptography.X509Certificates.X509CertificateImpl>::get_Current() */, { 9489, 303, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Security.Cryptography.X509Certificates.X509CertificateImpl>::MoveNext() */, { 9488, 303, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Security.Cryptography.X509Certificates.X509CertificateImpl>::Dispose() */, { 9459, 303, -1 } /* System.Void System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509CertificateImpl>::Clear() */, { 10410, 297, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry>::get_First() */, { 10444, 297, -1 } /* T System.Collections.Generic.LinkedListNode`1<System.Text.RegularExpressions.CachedCodeEntry>::get_Value() */, { 10423, 297, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry>::Remove(System.Collections.Generic.LinkedListNode`1<T>) */, { 10414, 297, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry>::AddFirst(System.Collections.Generic.LinkedListNode`1<T>) */, { 10443, 297, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1<System.Text.RegularExpressions.CachedCodeEntry>::get_Next() */, { 10413, 297, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry>::AddFirst(T) */, { 10409, 297, -1 } /* System.Int32 System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry>::get_Count() */, { 10424, 297, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry>::RemoveLast() */, { 10407, 297, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry>::.ctor() */, { 9291, 20, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::.ctor(System.Int32) */, { 9444, 298, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::.ctor(System.Int32) */, { 9456, 298, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::Add(!0) */, { 9448, 298, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::get_Count() */, { 9451, 298, -1 } /* !0 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::get_Item(System.Int32) */, { 9296, 20, -1 } /* !1 System.Collections.Generic.Dictionary`2<System.String,System.String>::get_Item(!0) */, { 9483, 298, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<!0>) */, { 9452, 298, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::set_Item(System.Int32,!0) */, { 9479, 298, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::RemoveRange(System.Int32,System.Int32) */, { 9464, 1, -1 } /* System.Void System.Collections.Generic.List`1<System.String>::CopyTo(System.Int32,!0[],System.Int32,System.Int32) */, { 9448, 301, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::get_Count() */, { 9451, 301, -1 } /* !0 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::get_Item(System.Int32) */, { 9481, 301, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::Reverse(System.Int32,System.Int32) */, { 9452, 301, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::set_Item(System.Int32,!0) */, { 9474, 301, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<!0>) */, { 9479, 301, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::RemoveRange(System.Int32,System.Int32) */, { 9444, 301, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::.ctor(System.Int32) */, { 9456, 301, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::Add(!0) */, { 9443, 302, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::.ctor() */, { 9448, 302, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::get_Count() */, { 9479, 302, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::RemoveRange(System.Int32,System.Int32) */, { 9341, 24, -1 } /* System.Collections.Generic.Comparer`1<!0> System.Collections.Generic.Comparer`1<System.Int32>::get_Default() */, { 776, -1, 24 } /* System.Void System.Array::Sort<System.Int32>(!!0[],System.Collections.Generic.IComparer`1<!!0>) */, { 9456, 302, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::Add(!0) */, { 9451, 302, -1 } /* !0 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::get_Item(System.Int32) */, { 9478, 302, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::RemoveAt(System.Int32) */, { 9296, 267, -1 } /* !1 System.Collections.Generic.Dictionary`2<System.String,System.Int32>::get_Item(!0) */, { 9297, 267, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::set_Item(!0,!1) */, { 9291, 293, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.UriParser>::.ctor(System.Int32) */, { 9297, 293, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.UriParser>::set_Item(!0,!1) */, { 9315, 293, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.UriParser>::TryGetValue(!0,!1&) */, { 9295, 293, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.String,System.UriParser>::get_Count() */, { 999, 47, -1 } /* !0 System.Func`1<System.Boolean>::Invoke() */, { 11085, -1, 24 } /* System.Void UnityEngine.Assertions.Assert::AreEqual<System.Int32>(T,T,System.String) */, { 983, 307, -1 } /* System.Void System.Action`1<UnityEngine.AsyncOperation>::Invoke(!0) */, { 9443, 10, -1 } /* System.Void System.Collections.Generic.List`1<System.Type>::.ctor() */, { 9456, 10, -1 } /* System.Void System.Collections.Generic.List`1<System.Type>::Add(!0) */, { 9485, 10, -1 } /* !0[] System.Collections.Generic.List`1<System.Type>::ToArray() */, { 10578, -1, 397 } /* T UnityEngine.AttributeHelperEngine::GetCustomAttributeOfType<UnityEngine.DefaultExecutionOrder>(System.Type) */, { 9451, 311, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Item(System.Int32) */, { 9448, 311, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Count() */, { 9443, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor() */, { 9443, 328, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::.ctor() */, { 9456, 328, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::Add(!0) */, { 9451, 328, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::get_Item(System.Int32) */, { 9448, 328, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::get_Count() */, { 9460, 328, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::Contains(!0) */, { 1026, 328, -1 } /* System.Void System.Predicate`1<UnityEngine.Events.BaseInvokableCall>::.ctor(System.Object,System.IntPtr) */, { 9477, 328, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::RemoveAll(System.Predicate`1<!0>) */, { 9459, 328, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::Clear() */, { 9458, 328, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::AddRange(System.Collections.Generic.IEnumerable`1<!0>) */, { 10986, 109, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Single>::.ctor(UnityEngine.Object,System.Reflection.MethodInfo,T) */, { 10986, 24, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Int32>::.ctor(UnityEngine.Object,System.Reflection.MethodInfo,T) */, { 10986, 1, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.String>::.ctor(UnityEngine.Object,System.Reflection.MethodInfo,T) */, { 10986, 47, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Boolean>::.ctor(UnityEngine.Object,System.Reflection.MethodInfo,T) */, { 9443, 327, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Events.PersistentCall>::.ctor() */, { 9467, 327, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.Events.PersistentCall>::GetEnumerator() */, { 9491, 327, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<UnityEngine.Events.PersistentCall>::get_Current() */, { 9489, 327, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Events.PersistentCall>::MoveNext() */, { 9488, 327, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Events.PersistentCall>::Dispose() */, { 10844, -1, 398 } /* T UnityEngine.ScriptableObject::CreateInstance<UnityEngine.Networking.PlayerConnection.PlayerConnection>() */, { 1002, 341, -1 } /* System.Void System.Func`2<UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers,System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 10471, -1, 340 } /* System.Boolean System.Linq.Enumerable::Any<UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>) */, { 11031, 339, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Networking.PlayerConnection.MessageEventArgs>::AddListener(UnityEngine.Events.UnityAction`1<T0>) */, { 9467, 24, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<System.Int32>::GetEnumerator() */, { 9491, 24, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<System.Int32>::get_Current() */, { 11027, 24, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Int32>::Invoke(T0) */, { 9489, 24, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32>::MoveNext() */, { 9488, 24, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::Dispose() */, { 11031, 24, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Int32>::AddListener(UnityEngine.Events.UnityAction`1<T0>) */, { 11026, 339, -1 } /* System.Void UnityEngine.Events.UnityAction`1<UnityEngine.Networking.PlayerConnection.MessageEventArgs>::.ctor(System.Object,System.IntPtr) */, { 11036, 24, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Int32>::Invoke(T0) */, { 9475, 24, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32>::Remove(!0) */, { 9443, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers>::.ctor() */, { 10467, -1, 340 } /* System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Where<UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>) */, { 10470, -1, 340 } /* System.Boolean System.Linq.Enumerable::Any<UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers>(System.Collections.Generic.IEnumerable`1<!!0>) */, { 11036, 339, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Networking.PlayerConnection.MessageEventArgs>::Invoke(T0) */, { 10469, -1, 340 } /* !!0 System.Linq.Enumerable::SingleOrDefault<UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>) */, { 9456, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers>::Add(!0) */, { 11032, 339, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Networking.PlayerConnection.MessageEventArgs>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>) */, { 9475, 340, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers>::Remove(!0) */, { 11030, 24, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Int32>::.ctor() */, { 11030, 339, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Networking.PlayerConnection.MessageEventArgs>::.ctor() */, { 983, 347, -1 } /* System.Void System.Action`1<UnityEngine.Profiling.Memory.Experimental.MetaData>::Invoke(!0) */, { 991, 346, -1 } /* System.Void System.Action`2<System.String,System.Boolean>::Invoke(!0,!1) */, { 991, 324, -1 } /* System.Void System.Action`2<UnityEngine.ReflectionProbe,UnityEngine.ReflectionProbe/ReflectionProbeEvent>::Invoke(!0,!1) */, { 983, 326, -1 } /* System.Void System.Action`1<UnityEngine.Cubemap>::Invoke(!0) */, { 11038, 342, -1 } /* System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.LoadSceneMode>::Invoke(T0,T1) */, { 11027, 344, -1 } /* System.Void UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>::Invoke(T0) */, { 11038, 345, -1 } /* System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>::Invoke(T0,T1) */, { 10626, -1, 399 } /* T UnityEngine.Component::GetComponent<UnityEngine.GUILayer>() */, { 982, 349, -1 } /* System.Void System.Action`1<UnityEngine.U2D.SpriteAtlas>::.ctor(System.Object,System.IntPtr) */, { 991, 348, -1 } /* System.Void System.Action`2<System.String,System.Action`1<UnityEngine.U2D.SpriteAtlas>>::Invoke(!0,!1) */, { 983, 349, -1 } /* System.Void System.Action`1<UnityEngine.U2D.SpriteAtlas>::Invoke(!0) */, { 9444, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor(System.Int32) */, { 9456, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Add(!0) */, { 9458, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::AddRange(System.Collections.Generic.IEnumerable`1<!0>) */, { 9459, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Clear() */, { 9467, 329, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::GetEnumerator() */, { 9491, 329, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<UnityEngine.UnitySynchronizationContext/WorkRequest>::get_Current() */, { 9489, 329, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UnitySynchronizationContext/WorkRequest>::MoveNext() */, { 9488, 329, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UnitySynchronizationContext/WorkRequest>::Dispose() */, { 9467, 350, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.AudioSpatializerExtensionDefinition>::GetEnumerator() */, { 9491, 350, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<UnityEngine.AudioSpatializerExtensionDefinition>::get_Current() */, { 9489, 350, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.AudioSpatializerExtensionDefinition>::MoveNext() */, { 9488, 350, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.AudioSpatializerExtensionDefinition>::Dispose() */, { 9467, 351, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.AudioAmbisonicExtensionDefinition>::GetEnumerator() */, { 9491, 351, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<UnityEngine.AudioAmbisonicExtensionDefinition>::get_Current() */, { 9489, 351, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.AudioAmbisonicExtensionDefinition>::MoveNext() */, { 9488, 351, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.AudioAmbisonicExtensionDefinition>::Dispose() */, { 9456, 352, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.AudioSourceExtension>::Add(!0) */, { 9448, 352, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.AudioSourceExtension>::get_Count() */, { 9451, 352, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.AudioSourceExtension>::get_Item(System.Int32) */, { 9452, 352, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.AudioSourceExtension>::set_Item(System.Int32,!0) */, { 9478, 352, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.AudioSourceExtension>::RemoveAt(System.Int32) */, { 9443, 350, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.AudioSpatializerExtensionDefinition>::.ctor() */, { 9443, 351, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.AudioAmbisonicExtensionDefinition>::.ctor() */, { 9443, 352, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.AudioSourceExtension>::.ctor() */, { 983, 363, -1 } /* System.Void System.Action`1<UnityEngine.SocialPlatforms.IAchievementDescription[]>::Invoke(!0) */, { 991, 358, -1 } /* System.Void System.Action`2<System.Boolean,System.String>::Invoke(!0,!1) */, { 983, 47, -1 } /* System.Void System.Action`1<System.Boolean>::Invoke(!0) */, { 983, 364, -1 } /* System.Void System.Action`1<UnityEngine.SocialPlatforms.IAchievement[]>::Invoke(!0) */, { 983, 368, -1 } /* System.Void System.Action`1<UnityEngine.SocialPlatforms.IScore[]>::Invoke(!0) */, { 990, 358, -1 } /* System.Void System.Action`2<System.Boolean,System.String>::.ctor(System.Object,System.IntPtr) */, { 9456, 362, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard>::Add(!0) */, { 9467, 362, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard>::GetEnumerator() */, { 9491, 362, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard>::get_Current() */, { 9489, 362, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard>::MoveNext() */, { 9488, 362, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard>::Dispose() */, { 983, 372, -1 } /* System.Void System.Action`1<UnityEngine.SocialPlatforms.IUserProfile[]>::Invoke(!0) */, { 9443, 362, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard>::.ctor() */, { 995, 376, -1 } /* System.Void System.Action`3<System.Boolean,System.Boolean,System.Int32>::Invoke(!0,!1,!2) */, { 855, -1, 400 } /* R System.Array::UnsafeMov<System.Int32Enum,System.Int32>(S) */, { 804, -1, 31 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(T) */, { 804, -1, 47 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Boolean>(T) */, { 804, -1, 8 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Byte>(T) */, { 804, -1, 9 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Char>(T) */, { 804, -1, 27 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.DictionaryEntry>(T) */, { 804, -1, 123 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(T) */, { 804, -1, 269 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(T) */, { 804, -1, 23 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(T) */, { 804, -1, 160 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(T) */, { 804, -1, 114 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T) */, { 804, -1, 122 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T) */, { 804, -1, 268 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T) */, { 804, -1, 22 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T) */, { 804, -1, 159 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(T) */, { 804, -1, 284 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Hashtable/bucket>(T) */, { 804, -1, 60 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.DateTime>(T) */, { 804, -1, 61 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Decimal>(T) */, { 804, -1, 81 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Double>(T) */, { 804, -1, 221 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Globalization.InternalCodePageDataItem>(T) */, { 804, -1, 222 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Globalization.InternalEncodingDataItem>(T) */, { 804, -1, 95 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Int16>(T) */, { 804, -1, 24 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Int32>(T) */, { 804, -1, 90 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Int32Enum>(T) */, { 804, -1, 30 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Int64>(T) */, { 804, -1, 85 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.IntPtr>(T) */, { 804, -1, 146 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.ParameterizedStrings/FormatParam>(T) */, { 804, -1, 167 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.CustomAttributeNamedArgument>(T) */, { 804, -1, 166 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.CustomAttributeTypedArgument>(T) */, { 804, -1, 64 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.ParameterModifier>(T) */, { 804, -1, 161 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Resources.ResourceLocator>(T) */, { 804, -1, 26 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Runtime.CompilerServices.Ephemeron>(T) */, { 804, -1, 108 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.SByte>(T) */, { 804, -1, 304 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T) */, { 804, -1, 109 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Single>(T) */, { 804, -1, 299 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(T) */, { 804, -1, 230 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Threading.CancellationTokenRegistration>(T) */, { 804, -1, 110 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.TimeSpan>(T) */, { 804, -1, 133 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.UInt16>(T) */, { 804, -1, 35 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.UInt32>(T) */, { 804, -1, 82 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.UInt64>(T) */, { 804, -1, 311 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.BeforeRenderHelper/OrderBlock>(T) */, { 804, -1, 373 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.ContactPoint>(T) */, { 804, -1, 321 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(T) */, { 804, -1, 306 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Keyframe>(T) */, { 804, -1, 334 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Playables.PlayableBinding>(T) */, { 804, -1, 375 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.RaycastHit>(T) */, { 804, -1, 320 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.SendMouseEvents/HitInfo>(T) */, { 804, -1, 366 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T) */, { 804, -1, 370 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T) */, { 804, -1, 329 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UnitySynchronizationContext/WorkRequest>(T) */, { 803, -1, 31 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(T) */, { 803, -1, 47 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Boolean>(T) */, { 803, -1, 8 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Byte>(T) */, { 803, -1, 9 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Char>(T) */, { 803, -1, 27 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.DictionaryEntry>(T) */, { 803, -1, 123 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(T) */, { 803, -1, 269 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(T) */, { 803, -1, 23 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(T) */, { 803, -1, 160 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(T) */, { 803, -1, 114 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T) */, { 803, -1, 122 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T) */, { 803, -1, 268 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T) */, { 803, -1, 22 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T) */, { 803, -1, 159 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(T) */, { 803, -1, 284 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Hashtable/bucket>(T) */, { 803, -1, 60 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.DateTime>(T) */, { 803, -1, 61 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Decimal>(T) */, { 803, -1, 81 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Double>(T) */, { 803, -1, 221 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Globalization.InternalCodePageDataItem>(T) */, { 803, -1, 222 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Globalization.InternalEncodingDataItem>(T) */, { 803, -1, 95 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Int16>(T) */, { 803, -1, 24 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Int32>(T) */, { 803, -1, 90 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Int32Enum>(T) */, { 803, -1, 30 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Int64>(T) */, { 803, -1, 85 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.IntPtr>(T) */, { 803, -1, 146 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.ParameterizedStrings/FormatParam>(T) */, { 803, -1, 167 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.CustomAttributeNamedArgument>(T) */, { 803, -1, 166 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.CustomAttributeTypedArgument>(T) */, { 803, -1, 64 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.ParameterModifier>(T) */, { 803, -1, 161 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Resources.ResourceLocator>(T) */, { 803, -1, 26 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Runtime.CompilerServices.Ephemeron>(T) */, { 803, -1, 108 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.SByte>(T) */, { 803, -1, 304 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T) */, { 803, -1, 109 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Single>(T) */, { 803, -1, 299 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(T) */, { 803, -1, 230 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Threading.CancellationTokenRegistration>(T) */, { 803, -1, 110 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.TimeSpan>(T) */, { 803, -1, 133 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.UInt16>(T) */, { 803, -1, 35 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.UInt32>(T) */, { 803, -1, 82 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.UInt64>(T) */, { 803, -1, 311 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.BeforeRenderHelper/OrderBlock>(T) */, { 803, -1, 373 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.ContactPoint>(T) */, { 803, -1, 321 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(T) */, { 803, -1, 306 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Keyframe>(T) */, { 803, -1, 334 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Playables.PlayableBinding>(T) */, { 803, -1, 375 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.RaycastHit>(T) */, { 803, -1, 320 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.SendMouseEvents/HitInfo>(T) */, { 803, -1, 366 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T) */, { 803, -1, 370 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T) */, { 803, -1, 329 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UnitySynchronizationContext/WorkRequest>(T) */, { 800, -1, 31 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Mono.Globalization.Unicode.CodePointIndexer/TableRange>() */, { 800, -1, 47 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Boolean>() */, { 800, -1, 8 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Byte>() */, { 800, -1, 9 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Char>() */, { 800, -1, 27 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.DictionaryEntry>() */, { 800, -1, 123 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>() */, { 800, -1, 269 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>() */, { 800, -1, 23 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>() */, { 800, -1, 160 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>() */, { 800, -1, 114 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>() */, { 800, -1, 122 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>() */, { 800, -1, 268 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>() */, { 800, -1, 22 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>() */, { 800, -1, 159 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>() */, { 800, -1, 284 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Hashtable/bucket>() */, { 800, -1, 60 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.DateTime>() */, { 800, -1, 61 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Decimal>() */, { 800, -1, 81 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Double>() */, { 800, -1, 221 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Globalization.InternalCodePageDataItem>() */, { 800, -1, 222 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Globalization.InternalEncodingDataItem>() */, { 800, -1, 95 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Int16>() */, { 800, -1, 24 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Int32>() */, { 800, -1, 90 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Int32Enum>() */, { 800, -1, 30 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Int64>() */, { 800, -1, 85 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.IntPtr>() */, { 800, -1, 146 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.ParameterizedStrings/FormatParam>() */, { 800, -1, 167 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.CustomAttributeNamedArgument>() */, { 800, -1, 166 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.CustomAttributeTypedArgument>() */, { 800, -1, 64 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.ParameterModifier>() */, { 800, -1, 161 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Resources.ResourceLocator>() */, { 800, -1, 26 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Runtime.CompilerServices.Ephemeron>() */, { 800, -1, 108 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.SByte>() */, { 800, -1, 304 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Security.Cryptography.X509Certificates.X509ChainStatus>() */, { 800, -1, 109 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Single>() */, { 800, -1, 299 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>() */, { 800, -1, 230 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Threading.CancellationTokenRegistration>() */, { 800, -1, 110 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.TimeSpan>() */, { 800, -1, 133 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.UInt16>() */, { 800, -1, 35 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.UInt32>() */, { 800, -1, 82 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.UInt64>() */, { 800, -1, 311 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.BeforeRenderHelper/OrderBlock>() */, { 800, -1, 373 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.ContactPoint>() */, { 800, -1, 321 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>() */, { 800, -1, 306 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Keyframe>() */, { 800, -1, 334 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Playables.PlayableBinding>() */, { 800, -1, 375 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.RaycastHit>() */, { 800, -1, 320 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.SendMouseEvents/HitInfo>() */, { 800, -1, 366 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>() */, { 800, -1, 370 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>() */, { 800, -1, 329 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UnitySynchronizationContext/WorkRequest>() */, { 745, -1, 82 } /* System.Int32 System.Array::BinarySearch<System.UInt64>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 751, -1, 114 } /* System.Int32 System.Array::IndexOf<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],T,System.Int32,System.Int32) */, { 751, -1, 24 } /* System.Int32 System.Array::IndexOf<System.Int32>(T[],T,System.Int32,System.Int32) */, { 751, -1, 90 } /* System.Int32 System.Array::IndexOf<System.Int32Enum>(T[],T,System.Int32,System.Int32) */, { 751, -1, 311 } /* System.Int32 System.Array::IndexOf<UnityEngine.BeforeRenderHelper/OrderBlock>(T[],T,System.Int32,System.Int32) */, { 751, -1, 329 } /* System.Int32 System.Array::IndexOf<UnityEngine.UnitySynchronizationContext/WorkRequest>(T[],T,System.Int32,System.Int32) */, { 850, -1, 114 } /* System.Int32 System.Array::IndexOfImpl<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],T,System.Int32,System.Int32) */, { 850, -1, 24 } /* System.Int32 System.Array::IndexOfImpl<System.Int32>(T[],T,System.Int32,System.Int32) */, { 850, -1, 90 } /* System.Int32 System.Array::IndexOfImpl<System.Int32Enum>(T[],T,System.Int32,System.Int32) */, { 850, -1, 311 } /* System.Int32 System.Array::IndexOfImpl<UnityEngine.BeforeRenderHelper/OrderBlock>(T[],T,System.Int32,System.Int32) */, { 850, -1, 329 } /* System.Int32 System.Array::IndexOfImpl<UnityEngine.UnitySynchronizationContext/WorkRequest>(T[],T,System.Int32,System.Int32) */, { 810, -1, 31 } /* System.Int32 System.Array::InternalArray__IndexOf<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(T) */, { 810, -1, 47 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Boolean>(T) */, { 810, -1, 8 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Byte>(T) */, { 810, -1, 9 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Char>(T) */, { 810, -1, 27 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.DictionaryEntry>(T) */, { 810, -1, 123 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(T) */, { 810, -1, 269 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(T) */, { 810, -1, 23 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(T) */, { 810, -1, 160 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(T) */, { 810, -1, 114 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T) */, { 810, -1, 122 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T) */, { 810, -1, 268 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T) */, { 810, -1, 22 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T) */, { 810, -1, 159 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(T) */, { 810, -1, 284 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Hashtable/bucket>(T) */, { 810, -1, 60 } /* System.Int32 System.Array::InternalArray__IndexOf<System.DateTime>(T) */, { 810, -1, 61 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Decimal>(T) */, { 810, -1, 81 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Double>(T) */, { 810, -1, 221 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Globalization.InternalCodePageDataItem>(T) */, { 810, -1, 222 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Globalization.InternalEncodingDataItem>(T) */, { 810, -1, 95 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Int16>(T) */, { 810, -1, 24 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Int32>(T) */, { 810, -1, 90 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Int32Enum>(T) */, { 810, -1, 30 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Int64>(T) */, { 810, -1, 85 } /* System.Int32 System.Array::InternalArray__IndexOf<System.IntPtr>(T) */, { 810, -1, 146 } /* System.Int32 System.Array::InternalArray__IndexOf<System.ParameterizedStrings/FormatParam>(T) */, { 810, -1, 167 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.CustomAttributeNamedArgument>(T) */, { 810, -1, 166 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.CustomAttributeTypedArgument>(T) */, { 810, -1, 64 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.ParameterModifier>(T) */, { 810, -1, 161 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Resources.ResourceLocator>(T) */, { 810, -1, 26 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Runtime.CompilerServices.Ephemeron>(T) */, { 810, -1, 108 } /* System.Int32 System.Array::InternalArray__IndexOf<System.SByte>(T) */, { 810, -1, 304 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T) */, { 810, -1, 109 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Single>(T) */, { 810, -1, 299 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(T) */, { 810, -1, 230 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Threading.CancellationTokenRegistration>(T) */, { 810, -1, 110 } /* System.Int32 System.Array::InternalArray__IndexOf<System.TimeSpan>(T) */, { 810, -1, 133 } /* System.Int32 System.Array::InternalArray__IndexOf<System.UInt16>(T) */, { 810, -1, 35 } /* System.Int32 System.Array::InternalArray__IndexOf<System.UInt32>(T) */, { 810, -1, 82 } /* System.Int32 System.Array::InternalArray__IndexOf<System.UInt64>(T) */, { 810, -1, 311 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.BeforeRenderHelper/OrderBlock>(T) */, { 810, -1, 373 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.ContactPoint>(T) */, { 810, -1, 321 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(T) */, { 810, -1, 306 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Keyframe>(T) */, { 810, -1, 334 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Playables.PlayableBinding>(T) */, { 810, -1, 375 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.RaycastHit>(T) */, { 810, -1, 320 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.SendMouseEvents/HitInfo>(T) */, { 810, -1, 366 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T) */, { 810, -1, 370 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T) */, { 810, -1, 329 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UnitySynchronizationContext/WorkRequest>(T) */, { 8814, -1, 90 } /* System.Int32 System.Runtime.CompilerServices.JitHelpers::UnsafeEnumCast<System.Int32Enum>(T) */, { 8732, -1, 288 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskCache::CreateCacheableTask<System.Nullable`1<System.Int32>>(TResult) */, { 8732, -1, 180 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskCache::CreateCacheableTask<System.Threading.Tasks.VoidTaskResult>(TResult) */, { 6578, 24, 401 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Int32>::FromAsyncTrim<System.Object,System.IO.Stream/ReadWriteParameters>(TInstance,TArgs,System.Func`5<TInstance,TArgs,System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`3<TInstance,System.IAsyncResult,TResult>) */, { 6578, 180, 401 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>::FromAsyncTrim<System.Object,System.IO.Stream/ReadWriteParameters>(TInstance,TArgs,System.Func`5<TInstance,TArgs,System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`3<TInstance,System.IAsyncResult,TResult>) */, { 802, -1, 31 } /* System.Void System.Array::InternalArray__ICollection_Add<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(T) */, { 802, -1, 47 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Boolean>(T) */, { 802, -1, 8 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Byte>(T) */, { 802, -1, 9 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Char>(T) */, { 802, -1, 27 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.DictionaryEntry>(T) */, { 802, -1, 123 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(T) */, { 802, -1, 269 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(T) */, { 802, -1, 23 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(T) */, { 802, -1, 160 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(T) */, { 802, -1, 114 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T) */, { 802, -1, 122 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T) */, { 802, -1, 268 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T) */, { 802, -1, 22 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T) */, { 802, -1, 159 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(T) */, { 802, -1, 284 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Hashtable/bucket>(T) */, { 802, -1, 60 } /* System.Void System.Array::InternalArray__ICollection_Add<System.DateTime>(T) */, { 802, -1, 61 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Decimal>(T) */, { 802, -1, 81 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Double>(T) */, { 802, -1, 221 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Globalization.InternalCodePageDataItem>(T) */, { 802, -1, 222 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Globalization.InternalEncodingDataItem>(T) */, { 802, -1, 95 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Int16>(T) */, { 802, -1, 24 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Int32>(T) */, { 802, -1, 90 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Int32Enum>(T) */, { 802, -1, 30 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Int64>(T) */, { 802, -1, 85 } /* System.Void System.Array::InternalArray__ICollection_Add<System.IntPtr>(T) */, { 802, -1, 146 } /* System.Void System.Array::InternalArray__ICollection_Add<System.ParameterizedStrings/FormatParam>(T) */, { 802, -1, 167 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.CustomAttributeNamedArgument>(T) */, { 802, -1, 166 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.CustomAttributeTypedArgument>(T) */, { 802, -1, 64 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.ParameterModifier>(T) */, { 802, -1, 161 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Resources.ResourceLocator>(T) */, { 802, -1, 26 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Runtime.CompilerServices.Ephemeron>(T) */, { 802, -1, 108 } /* System.Void System.Array::InternalArray__ICollection_Add<System.SByte>(T) */, { 802, -1, 304 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T) */, { 802, -1, 109 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Single>(T) */, { 802, -1, 299 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(T) */, { 802, -1, 230 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Threading.CancellationTokenRegistration>(T) */, { 802, -1, 110 } /* System.Void System.Array::InternalArray__ICollection_Add<System.TimeSpan>(T) */, { 802, -1, 133 } /* System.Void System.Array::InternalArray__ICollection_Add<System.UInt16>(T) */, { 802, -1, 35 } /* System.Void System.Array::InternalArray__ICollection_Add<System.UInt32>(T) */, { 802, -1, 82 } /* System.Void System.Array::InternalArray__ICollection_Add<System.UInt64>(T) */, { 802, -1, 311 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.BeforeRenderHelper/OrderBlock>(T) */, { 802, -1, 373 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.ContactPoint>(T) */, { 802, -1, 321 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(T) */, { 802, -1, 306 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Keyframe>(T) */, { 802, -1, 334 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Playables.PlayableBinding>(T) */, { 802, -1, 375 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.RaycastHit>(T) */, { 802, -1, 320 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.SendMouseEvents/HitInfo>(T) */, { 802, -1, 366 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T) */, { 802, -1, 370 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T) */, { 802, -1, 329 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UnitySynchronizationContext/WorkRequest>(T) */, { 805, -1, 31 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(T[],System.Int32) */, { 805, -1, 47 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Boolean>(T[],System.Int32) */, { 805, -1, 8 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Byte>(T[],System.Int32) */, { 805, -1, 9 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Char>(T[],System.Int32) */, { 805, -1, 27 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.DictionaryEntry>(T[],System.Int32) */, { 805, -1, 123 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(T[],System.Int32) */, { 805, -1, 269 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(T[],System.Int32) */, { 805, -1, 23 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(T[],System.Int32) */, { 805, -1, 160 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(T[],System.Int32) */, { 805, -1, 114 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],System.Int32) */, { 805, -1, 122 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T[],System.Int32) */, { 805, -1, 268 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T[],System.Int32) */, { 805, -1, 22 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T[],System.Int32) */, { 805, -1, 159 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(T[],System.Int32) */, { 805, -1, 284 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Hashtable/bucket>(T[],System.Int32) */, { 805, -1, 60 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.DateTime>(T[],System.Int32) */, { 805, -1, 61 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Decimal>(T[],System.Int32) */, { 805, -1, 81 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Double>(T[],System.Int32) */, { 805, -1, 221 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Globalization.InternalCodePageDataItem>(T[],System.Int32) */, { 805, -1, 222 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Globalization.InternalEncodingDataItem>(T[],System.Int32) */, { 805, -1, 95 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Int16>(T[],System.Int32) */, { 805, -1, 24 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Int32>(T[],System.Int32) */, { 805, -1, 90 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Int32Enum>(T[],System.Int32) */, { 805, -1, 30 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Int64>(T[],System.Int32) */, { 805, -1, 85 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.IntPtr>(T[],System.Int32) */, { 805, -1, 146 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.ParameterizedStrings/FormatParam>(T[],System.Int32) */, { 805, -1, 167 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Reflection.CustomAttributeNamedArgument>(T[],System.Int32) */, { 805, -1, 166 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Reflection.CustomAttributeTypedArgument>(T[],System.Int32) */, { 805, -1, 64 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Reflection.ParameterModifier>(T[],System.Int32) */, { 805, -1, 161 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Resources.ResourceLocator>(T[],System.Int32) */, { 805, -1, 26 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Runtime.CompilerServices.Ephemeron>(T[],System.Int32) */, { 805, -1, 108 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.SByte>(T[],System.Int32) */, { 805, -1, 304 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T[],System.Int32) */, { 805, -1, 109 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Single>(T[],System.Int32) */, { 805, -1, 299 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(T[],System.Int32) */, { 805, -1, 230 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Threading.CancellationTokenRegistration>(T[],System.Int32) */, { 805, -1, 110 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.TimeSpan>(T[],System.Int32) */, { 805, -1, 133 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.UInt16>(T[],System.Int32) */, { 805, -1, 35 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.UInt32>(T[],System.Int32) */, { 805, -1, 82 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.UInt64>(T[],System.Int32) */, { 805, -1, 311 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.BeforeRenderHelper/OrderBlock>(T[],System.Int32) */, { 805, -1, 373 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.ContactPoint>(T[],System.Int32) */, { 805, -1, 321 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(T[],System.Int32) */, { 805, -1, 306 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Keyframe>(T[],System.Int32) */, { 805, -1, 334 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Playables.PlayableBinding>(T[],System.Int32) */, { 805, -1, 375 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.RaycastHit>(T[],System.Int32) */, { 805, -1, 320 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.SendMouseEvents/HitInfo>(T[],System.Int32) */, { 805, -1, 366 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T[],System.Int32) */, { 805, -1, 370 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T[],System.Int32) */, { 805, -1, 329 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.UnitySynchronizationContext/WorkRequest>(T[],System.Int32) */, { 808, -1, 31 } /* System.Void System.Array::InternalArray__Insert<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(System.Int32,T) */, { 808, -1, 47 } /* System.Void System.Array::InternalArray__Insert<System.Boolean>(System.Int32,T) */, { 808, -1, 8 } /* System.Void System.Array::InternalArray__Insert<System.Byte>(System.Int32,T) */, { 808, -1, 9 } /* System.Void System.Array::InternalArray__Insert<System.Char>(System.Int32,T) */, { 808, -1, 27 } /* System.Void System.Array::InternalArray__Insert<System.Collections.DictionaryEntry>(System.Int32,T) */, { 808, -1, 123 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(System.Int32,T) */, { 808, -1, 269 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(System.Int32,T) */, { 808, -1, 23 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(System.Int32,T) */, { 808, -1, 160 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(System.Int32,T) */, { 808, -1, 114 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(System.Int32,T) */, { 808, -1, 122 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(System.Int32,T) */, { 808, -1, 268 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(System.Int32,T) */, { 808, -1, 22 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(System.Int32,T) */, { 808, -1, 159 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(System.Int32,T) */, { 808, -1, 284 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Hashtable/bucket>(System.Int32,T) */, { 808, -1, 60 } /* System.Void System.Array::InternalArray__Insert<System.DateTime>(System.Int32,T) */, { 808, -1, 61 } /* System.Void System.Array::InternalArray__Insert<System.Decimal>(System.Int32,T) */, { 808, -1, 81 } /* System.Void System.Array::InternalArray__Insert<System.Double>(System.Int32,T) */, { 808, -1, 221 } /* System.Void System.Array::InternalArray__Insert<System.Globalization.InternalCodePageDataItem>(System.Int32,T) */, { 808, -1, 222 } /* System.Void System.Array::InternalArray__Insert<System.Globalization.InternalEncodingDataItem>(System.Int32,T) */, { 808, -1, 95 } /* System.Void System.Array::InternalArray__Insert<System.Int16>(System.Int32,T) */, { 808, -1, 24 } /* System.Void System.Array::InternalArray__Insert<System.Int32>(System.Int32,T) */, { 808, -1, 90 } /* System.Void System.Array::InternalArray__Insert<System.Int32Enum>(System.Int32,T) */, { 808, -1, 30 } /* System.Void System.Array::InternalArray__Insert<System.Int64>(System.Int32,T) */, { 808, -1, 85 } /* System.Void System.Array::InternalArray__Insert<System.IntPtr>(System.Int32,T) */, { 808, -1, 146 } /* System.Void System.Array::InternalArray__Insert<System.ParameterizedStrings/FormatParam>(System.Int32,T) */, { 808, -1, 167 } /* System.Void System.Array::InternalArray__Insert<System.Reflection.CustomAttributeNamedArgument>(System.Int32,T) */, { 808, -1, 166 } /* System.Void System.Array::InternalArray__Insert<System.Reflection.CustomAttributeTypedArgument>(System.Int32,T) */, { 808, -1, 64 } /* System.Void System.Array::InternalArray__Insert<System.Reflection.ParameterModifier>(System.Int32,T) */, { 808, -1, 161 } /* System.Void System.Array::InternalArray__Insert<System.Resources.ResourceLocator>(System.Int32,T) */, { 808, -1, 26 } /* System.Void System.Array::InternalArray__Insert<System.Runtime.CompilerServices.Ephemeron>(System.Int32,T) */, { 808, -1, 108 } /* System.Void System.Array::InternalArray__Insert<System.SByte>(System.Int32,T) */, { 808, -1, 304 } /* System.Void System.Array::InternalArray__Insert<System.Security.Cryptography.X509Certificates.X509ChainStatus>(System.Int32,T) */, { 808, -1, 109 } /* System.Void System.Array::InternalArray__Insert<System.Single>(System.Int32,T) */, { 808, -1, 299 } /* System.Void System.Array::InternalArray__Insert<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(System.Int32,T) */, { 808, -1, 230 } /* System.Void System.Array::InternalArray__Insert<System.Threading.CancellationTokenRegistration>(System.Int32,T) */, { 808, -1, 110 } /* System.Void System.Array::InternalArray__Insert<System.TimeSpan>(System.Int32,T) */, { 808, -1, 133 } /* System.Void System.Array::InternalArray__Insert<System.UInt16>(System.Int32,T) */, { 808, -1, 35 } /* System.Void System.Array::InternalArray__Insert<System.UInt32>(System.Int32,T) */, { 808, -1, 82 } /* System.Void System.Array::InternalArray__Insert<System.UInt64>(System.Int32,T) */, { 808, -1, 311 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.BeforeRenderHelper/OrderBlock>(System.Int32,T) */, { 808, -1, 373 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.ContactPoint>(System.Int32,T) */, { 808, -1, 321 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(System.Int32,T) */, { 808, -1, 306 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.Keyframe>(System.Int32,T) */, { 808, -1, 334 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.Playables.PlayableBinding>(System.Int32,T) */, { 808, -1, 375 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.RaycastHit>(System.Int32,T) */, { 808, -1, 320 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.SendMouseEvents/HitInfo>(System.Int32,T) */, { 808, -1, 366 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(System.Int32,T) */, { 808, -1, 370 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(System.Int32,T) */, { 808, -1, 329 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.UnitySynchronizationContext/WorkRequest>(System.Int32,T) */, { 812, -1, 31 } /* System.Void System.Array::InternalArray__set_Item<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(System.Int32,T) */, { 812, -1, 47 } /* System.Void System.Array::InternalArray__set_Item<System.Boolean>(System.Int32,T) */, { 812, -1, 8 } /* System.Void System.Array::InternalArray__set_Item<System.Byte>(System.Int32,T) */, { 812, -1, 9 } /* System.Void System.Array::InternalArray__set_Item<System.Char>(System.Int32,T) */, { 812, -1, 27 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.DictionaryEntry>(System.Int32,T) */, { 812, -1, 123 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(System.Int32,T) */, { 812, -1, 269 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(System.Int32,T) */, { 812, -1, 23 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(System.Int32,T) */, { 812, -1, 160 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(System.Int32,T) */, { 812, -1, 114 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(System.Int32,T) */, { 812, -1, 122 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(System.Int32,T) */, { 812, -1, 268 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(System.Int32,T) */, { 812, -1, 22 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(System.Int32,T) */, { 812, -1, 159 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(System.Int32,T) */, { 812, -1, 284 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Hashtable/bucket>(System.Int32,T) */, { 812, -1, 60 } /* System.Void System.Array::InternalArray__set_Item<System.DateTime>(System.Int32,T) */, { 812, -1, 61 } /* System.Void System.Array::InternalArray__set_Item<System.Decimal>(System.Int32,T) */, { 812, -1, 81 } /* System.Void System.Array::InternalArray__set_Item<System.Double>(System.Int32,T) */, { 812, -1, 221 } /* System.Void System.Array::InternalArray__set_Item<System.Globalization.InternalCodePageDataItem>(System.Int32,T) */, { 812, -1, 222 } /* System.Void System.Array::InternalArray__set_Item<System.Globalization.InternalEncodingDataItem>(System.Int32,T) */, { 812, -1, 95 } /* System.Void System.Array::InternalArray__set_Item<System.Int16>(System.Int32,T) */, { 812, -1, 24 } /* System.Void System.Array::InternalArray__set_Item<System.Int32>(System.Int32,T) */, { 812, -1, 90 } /* System.Void System.Array::InternalArray__set_Item<System.Int32Enum>(System.Int32,T) */, { 812, -1, 30 } /* System.Void System.Array::InternalArray__set_Item<System.Int64>(System.Int32,T) */, { 812, -1, 85 } /* System.Void System.Array::InternalArray__set_Item<System.IntPtr>(System.Int32,T) */, { 812, -1, 146 } /* System.Void System.Array::InternalArray__set_Item<System.ParameterizedStrings/FormatParam>(System.Int32,T) */, { 812, -1, 167 } /* System.Void System.Array::InternalArray__set_Item<System.Reflection.CustomAttributeNamedArgument>(System.Int32,T) */, { 812, -1, 166 } /* System.Void System.Array::InternalArray__set_Item<System.Reflection.CustomAttributeTypedArgument>(System.Int32,T) */, { 812, -1, 64 } /* System.Void System.Array::InternalArray__set_Item<System.Reflection.ParameterModifier>(System.Int32,T) */, { 812, -1, 161 } /* System.Void System.Array::InternalArray__set_Item<System.Resources.ResourceLocator>(System.Int32,T) */, { 812, -1, 26 } /* System.Void System.Array::InternalArray__set_Item<System.Runtime.CompilerServices.Ephemeron>(System.Int32,T) */, { 812, -1, 108 } /* System.Void System.Array::InternalArray__set_Item<System.SByte>(System.Int32,T) */, { 812, -1, 304 } /* System.Void System.Array::InternalArray__set_Item<System.Security.Cryptography.X509Certificates.X509ChainStatus>(System.Int32,T) */, { 812, -1, 109 } /* System.Void System.Array::InternalArray__set_Item<System.Single>(System.Int32,T) */, { 812, -1, 299 } /* System.Void System.Array::InternalArray__set_Item<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(System.Int32,T) */, { 812, -1, 230 } /* System.Void System.Array::InternalArray__set_Item<System.Threading.CancellationTokenRegistration>(System.Int32,T) */, { 812, -1, 110 } /* System.Void System.Array::InternalArray__set_Item<System.TimeSpan>(System.Int32,T) */, { 812, -1, 133 } /* System.Void System.Array::InternalArray__set_Item<System.UInt16>(System.Int32,T) */, { 812, -1, 35 } /* System.Void System.Array::InternalArray__set_Item<System.UInt32>(System.Int32,T) */, { 812, -1, 82 } /* System.Void System.Array::InternalArray__set_Item<System.UInt64>(System.Int32,T) */, { 812, -1, 311 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.BeforeRenderHelper/OrderBlock>(System.Int32,T) */, { 812, -1, 373 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.ContactPoint>(System.Int32,T) */, { 812, -1, 321 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(System.Int32,T) */, { 812, -1, 306 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.Keyframe>(System.Int32,T) */, { 812, -1, 334 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.Playables.PlayableBinding>(System.Int32,T) */, { 812, -1, 375 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.RaycastHit>(System.Int32,T) */, { 812, -1, 320 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.SendMouseEvents/HitInfo>(System.Int32,T) */, { 812, -1, 366 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(System.Int32,T) */, { 812, -1, 370 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(System.Int32,T) */, { 812, -1, 329 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.UnitySynchronizationContext/WorkRequest>(System.Int32,T) */, { 761, -1, 114 } /* System.Void System.Array::Reverse<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],System.Int32,System.Int32) */, { 761, -1, 24 } /* System.Void System.Array::Reverse<System.Int32>(T[],System.Int32,System.Int32) */, { 761, -1, 90 } /* System.Void System.Array::Reverse<System.Int32Enum>(T[],System.Int32,System.Int32) */, { 761, -1, 311 } /* System.Void System.Array::Reverse<UnityEngine.BeforeRenderHelper/OrderBlock>(T[],System.Int32,System.Int32) */, { 761, -1, 329 } /* System.Void System.Array::Reverse<UnityEngine.UnitySynchronizationContext/WorkRequest>(T[],System.Int32,System.Int32) */, { 777, -1, 114 } /* System.Void System.Array::Sort<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 777, -1, 24 } /* System.Void System.Array::Sort<System.Int32>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 777, -1, 90 } /* System.Void System.Array::Sort<System.Int32Enum>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 781, -1, 83 } /* System.Void System.Array::Sort<System.UInt64,System.Object>(TKey[],TValue[],System.Collections.Generic.IComparer`1<TKey>) */, { 782, -1, 83 } /* System.Void System.Array::Sort<System.UInt64,System.Object>(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 777, -1, 82 } /* System.Void System.Array::Sort<System.UInt64>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 777, -1, 311 } /* System.Void System.Array::Sort<UnityEngine.BeforeRenderHelper/OrderBlock>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 777, -1, 329 } /* System.Void System.Array::Sort<UnityEngine.UnitySynchronizationContext/WorkRequest>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 8724, 47, 402 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31>(TAwaiter&,TStateMachine&) */, { 8724, 24, 403 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58>(TAwaiter&,TStateMachine&) */, { 8724, 0, 389 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(TAwaiter&,TStateMachine&) */, { 8722, 0, 383 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Start<Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(TStateMachine&) */, { 8724, 180, 21 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Object,System.Object>(TAwaiter&,TStateMachine&) */, { 8724, 180, 388 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(TAwaiter&,TStateMachine&) */, { 8724, 180, 394 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(TAwaiter&,TStateMachine&) */, { 8724, 180, 387 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(TAwaiter&,TStateMachine&) */, { 679, -1, 114 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(System.Object,System.ExceptionArgument) */, { 679, -1, 24 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Int32>(System.Object,System.ExceptionArgument) */, { 679, -1, 90 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Int32Enum>(System.Object,System.ExceptionArgument) */, { 679, -1, 311 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<UnityEngine.BeforeRenderHelper/OrderBlock>(System.Object,System.ExceptionArgument) */, { 679, -1, 329 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<UnityEngine.UnitySynchronizationContext/WorkRequest>(System.Object,System.ExceptionArgument) */, { 11086, -1, 24 } /* System.Void UnityEngine.Assertions.Assert::AreEqual<System.Int32>(T,T,System.String,System.Collections.Generic.IEqualityComparer`1<T>) */, { 10961, -1, 47 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<System.Boolean>(System.Object) */, { 10961, -1, 24 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<System.Int32>(System.Object) */, { 10961, -1, 109 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<System.Single>(System.Object) */, { 806, -1, 31 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(System.Int32) */, { 806, -1, 47 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Boolean>(System.Int32) */, { 806, -1, 8 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Byte>(System.Int32) */, { 806, -1, 9 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Char>(System.Int32) */, { 806, -1, 27 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.DictionaryEntry>(System.Int32) */, { 806, -1, 123 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(System.Int32) */, { 806, -1, 269 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(System.Int32) */, { 806, -1, 23 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(System.Int32) */, { 806, -1, 160 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(System.Int32) */, { 806, -1, 114 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(System.Int32) */, { 806, -1, 122 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(System.Int32) */, { 806, -1, 268 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(System.Int32) */, { 806, -1, 22 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(System.Int32) */, { 806, -1, 159 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(System.Int32) */, { 806, -1, 284 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Hashtable/bucket>(System.Int32) */, { 806, -1, 60 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.DateTime>(System.Int32) */, { 806, -1, 61 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Decimal>(System.Int32) */, { 806, -1, 81 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Double>(System.Int32) */, { 806, -1, 221 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Globalization.InternalCodePageDataItem>(System.Int32) */, { 806, -1, 222 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Globalization.InternalEncodingDataItem>(System.Int32) */, { 806, -1, 95 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Int16>(System.Int32) */, { 806, -1, 24 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Int32>(System.Int32) */, { 806, -1, 90 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Int32Enum>(System.Int32) */, { 806, -1, 30 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Int64>(System.Int32) */, { 806, -1, 85 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.IntPtr>(System.Int32) */, { 806, -1, 146 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.ParameterizedStrings/FormatParam>(System.Int32) */, { 806, -1, 167 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Reflection.CustomAttributeNamedArgument>(System.Int32) */, { 806, -1, 166 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Reflection.CustomAttributeTypedArgument>(System.Int32) */, { 806, -1, 64 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Reflection.ParameterModifier>(System.Int32) */, { 806, -1, 161 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Resources.ResourceLocator>(System.Int32) */, { 806, -1, 26 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Runtime.CompilerServices.Ephemeron>(System.Int32) */, { 806, -1, 108 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.SByte>(System.Int32) */, { 806, -1, 304 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Security.Cryptography.X509Certificates.X509ChainStatus>(System.Int32) */, { 806, -1, 109 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Single>(System.Int32) */, { 806, -1, 299 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(System.Int32) */, { 806, -1, 230 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Threading.CancellationTokenRegistration>(System.Int32) */, { 806, -1, 110 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.TimeSpan>(System.Int32) */, { 806, -1, 133 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.UInt16>(System.Int32) */, { 806, -1, 35 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.UInt32>(System.Int32) */, { 806, -1, 82 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.UInt64>(System.Int32) */, { 806, -1, 311 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.BeforeRenderHelper/OrderBlock>(System.Int32) */, { 806, -1, 373 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.ContactPoint>(System.Int32) */, { 806, -1, 321 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(System.Int32) */, { 806, -1, 306 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Keyframe>(System.Int32) */, { 806, -1, 334 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Playables.PlayableBinding>(System.Int32) */, { 806, -1, 375 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.RaycastHit>(System.Int32) */, { 806, -1, 320 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.SendMouseEvents/HitInfo>(System.Int32) */, { 806, -1, 366 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(System.Int32) */, { 806, -1, 370 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(System.Int32) */, { 806, -1, 329 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UnitySynchronizationContext/WorkRequest>(System.Int32) */, { 811, -1, 31 } /* T System.Array::InternalArray__get_Item<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(System.Int32) */, { 811, -1, 47 } /* T System.Array::InternalArray__get_Item<System.Boolean>(System.Int32) */, { 811, -1, 8 } /* T System.Array::InternalArray__get_Item<System.Byte>(System.Int32) */, { 811, -1, 9 } /* T System.Array::InternalArray__get_Item<System.Char>(System.Int32) */, { 811, -1, 27 } /* T System.Array::InternalArray__get_Item<System.Collections.DictionaryEntry>(System.Int32) */, { 811, -1, 123 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(System.Int32) */, { 811, -1, 269 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(System.Int32) */, { 811, -1, 23 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(System.Int32) */, { 811, -1, 160 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(System.Int32) */, { 811, -1, 114 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(System.Int32) */, { 811, -1, 122 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(System.Int32) */, { 811, -1, 268 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(System.Int32) */, { 811, -1, 22 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(System.Int32) */, { 811, -1, 159 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(System.Int32) */, { 811, -1, 284 } /* T System.Array::InternalArray__get_Item<System.Collections.Hashtable/bucket>(System.Int32) */, { 811, -1, 60 } /* T System.Array::InternalArray__get_Item<System.DateTime>(System.Int32) */, { 811, -1, 61 } /* T System.Array::InternalArray__get_Item<System.Decimal>(System.Int32) */, { 811, -1, 81 } /* T System.Array::InternalArray__get_Item<System.Double>(System.Int32) */, { 811, -1, 221 } /* T System.Array::InternalArray__get_Item<System.Globalization.InternalCodePageDataItem>(System.Int32) */, { 811, -1, 222 } /* T System.Array::InternalArray__get_Item<System.Globalization.InternalEncodingDataItem>(System.Int32) */, { 811, -1, 95 } /* T System.Array::InternalArray__get_Item<System.Int16>(System.Int32) */, { 811, -1, 24 } /* T System.Array::InternalArray__get_Item<System.Int32>(System.Int32) */, { 811, -1, 90 } /* T System.Array::InternalArray__get_Item<System.Int32Enum>(System.Int32) */, { 811, -1, 30 } /* T System.Array::InternalArray__get_Item<System.Int64>(System.Int32) */, { 811, -1, 85 } /* T System.Array::InternalArray__get_Item<System.IntPtr>(System.Int32) */, { 811, -1, 146 } /* T System.Array::InternalArray__get_Item<System.ParameterizedStrings/FormatParam>(System.Int32) */, { 811, -1, 167 } /* T System.Array::InternalArray__get_Item<System.Reflection.CustomAttributeNamedArgument>(System.Int32) */, { 811, -1, 166 } /* T System.Array::InternalArray__get_Item<System.Reflection.CustomAttributeTypedArgument>(System.Int32) */, { 811, -1, 64 } /* T System.Array::InternalArray__get_Item<System.Reflection.ParameterModifier>(System.Int32) */, { 811, -1, 161 } /* T System.Array::InternalArray__get_Item<System.Resources.ResourceLocator>(System.Int32) */, { 811, -1, 26 } /* T System.Array::InternalArray__get_Item<System.Runtime.CompilerServices.Ephemeron>(System.Int32) */, { 811, -1, 108 } /* T System.Array::InternalArray__get_Item<System.SByte>(System.Int32) */, { 811, -1, 304 } /* T System.Array::InternalArray__get_Item<System.Security.Cryptography.X509Certificates.X509ChainStatus>(System.Int32) */, { 811, -1, 109 } /* T System.Array::InternalArray__get_Item<System.Single>(System.Int32) */, { 811, -1, 299 } /* T System.Array::InternalArray__get_Item<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(System.Int32) */, { 811, -1, 230 } /* T System.Array::InternalArray__get_Item<System.Threading.CancellationTokenRegistration>(System.Int32) */, { 811, -1, 110 } /* T System.Array::InternalArray__get_Item<System.TimeSpan>(System.Int32) */, { 811, -1, 133 } /* T System.Array::InternalArray__get_Item<System.UInt16>(System.Int32) */, { 811, -1, 35 } /* T System.Array::InternalArray__get_Item<System.UInt32>(System.Int32) */, { 811, -1, 82 } /* T System.Array::InternalArray__get_Item<System.UInt64>(System.Int32) */, { 811, -1, 311 } /* T System.Array::InternalArray__get_Item<UnityEngine.BeforeRenderHelper/OrderBlock>(System.Int32) */, { 811, -1, 373 } /* T System.Array::InternalArray__get_Item<UnityEngine.ContactPoint>(System.Int32) */, { 811, -1, 321 } /* T System.Array::InternalArray__get_Item<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(System.Int32) */, { 811, -1, 306 } /* T System.Array::InternalArray__get_Item<UnityEngine.Keyframe>(System.Int32) */, { 811, -1, 334 } /* T System.Array::InternalArray__get_Item<UnityEngine.Playables.PlayableBinding>(System.Int32) */, { 811, -1, 375 } /* T System.Array::InternalArray__get_Item<UnityEngine.RaycastHit>(System.Int32) */, { 811, -1, 320 } /* T System.Array::InternalArray__get_Item<UnityEngine.SendMouseEvents/HitInfo>(System.Int32) */, { 811, -1, 366 } /* T System.Array::InternalArray__get_Item<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(System.Int32) */, { 811, -1, 370 } /* T System.Array::InternalArray__get_Item<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(System.Int32) */, { 811, -1, 329 } /* T System.Array::InternalArray__get_Item<UnityEngine.UnitySynchronizationContext/WorkRequest>(System.Int32) */, { 853, -1, 114 } /* T System.Array::UnsafeLoad<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],System.Int32) */, { 853, -1, 24 } /* T System.Array::UnsafeLoad<System.Int32>(T[],System.Int32) */, { 853, -1, 90 } /* T System.Array::UnsafeLoad<System.Int32Enum>(T[],System.Int32) */, { 853, -1, 311 } /* T System.Array::UnsafeLoad<UnityEngine.BeforeRenderHelper/OrderBlock>(T[],System.Int32) */, { 853, -1, 329 } /* T System.Array::UnsafeLoad<UnityEngine.UnitySynchronizationContext/WorkRequest>(T[],System.Int32) */, { 982, 47, -1 } /* System.Void System.Action`1<System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 984, 47, -1 } /* System.IAsyncResult System.Action`1<System.Boolean>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 985, 47, -1 } /* System.Void System.Action`1<System.Boolean>::EndInvoke(System.IAsyncResult) */, { 982, 239, -1 } /* System.Void System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<System.Object>>::.ctor(System.Object,System.IntPtr) */, { 983, 239, -1 } /* System.Void System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<System.Object>>::Invoke(T) */, { 984, 239, -1 } /* System.IAsyncResult System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<System.Object>>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 985, 239, -1 } /* System.Void System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<System.Object>>::EndInvoke(System.IAsyncResult) */, { 990, 359, -1 } /* System.Void System.Action`2<System.Boolean,System.Object>::.ctor(System.Object,System.IntPtr) */, { 991, 359, -1 } /* System.Void System.Action`2<System.Boolean,System.Object>::Invoke(T1,T2) */, { 992, 359, -1 } /* System.IAsyncResult System.Action`2<System.Boolean,System.Object>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object) */, { 993, 359, -1 } /* System.Void System.Action`2<System.Boolean,System.Object>::EndInvoke(System.IAsyncResult) */, { 990, 234, -1 } /* System.Void System.Action`2<System.Object,System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 991, 234, -1 } /* System.Void System.Action`2<System.Object,System.Boolean>::Invoke(T1,T2) */, { 992, 234, -1 } /* System.IAsyncResult System.Action`2<System.Object,System.Boolean>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object) */, { 993, 234, -1 } /* System.Void System.Action`2<System.Object,System.Boolean>::EndInvoke(System.IAsyncResult) */, { 990, 325, -1 } /* System.Void System.Action`2<System.Object,System.Int32Enum>::.ctor(System.Object,System.IntPtr) */, { 991, 325, -1 } /* System.Void System.Action`2<System.Object,System.Int32Enum>::Invoke(T1,T2) */, { 992, 325, -1 } /* System.IAsyncResult System.Action`2<System.Object,System.Int32Enum>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object) */, { 993, 325, -1 } /* System.Void System.Action`2<System.Object,System.Int32Enum>::EndInvoke(System.IAsyncResult) */, { 994, 376, -1 } /* System.Void System.Action`3<System.Boolean,System.Boolean,System.Int32>::.ctor(System.Object,System.IntPtr) */, { 996, 376, -1 } /* System.IAsyncResult System.Action`3<System.Boolean,System.Boolean,System.Int32>::BeginInvoke(T1,T2,T3,System.AsyncCallback,System.Object) */, { 997, 376, -1 } /* System.Void System.Action`3<System.Boolean,System.Boolean,System.Int32>::EndInvoke(System.IAsyncResult) */, { 865, 31, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::Dispose() */, { 866, 31, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::MoveNext() */, { 867, 31, -1 } /* T System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::get_Current() */, { 868, 31, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.get_Current() */, { 869, 31, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::.ctor() */, { 870, 31, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::.cctor() */, { 865, 47, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Boolean>::Dispose() */, { 866, 47, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Boolean>::MoveNext() */, { 867, 47, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Boolean>::get_Current() */, { 868, 47, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.get_Current() */, { 869, 47, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Boolean>::.ctor() */, { 870, 47, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Boolean>::.cctor() */, { 865, 8, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Byte>::Dispose() */, { 866, 8, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Byte>::MoveNext() */, { 867, 8, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Byte>::get_Current() */, { 868, 8, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.get_Current() */, { 869, 8, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Byte>::.ctor() */, { 870, 8, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Byte>::.cctor() */, { 865, 9, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Char>::Dispose() */, { 866, 9, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Char>::MoveNext() */, { 867, 9, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Char>::get_Current() */, { 868, 9, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Char>::System.Collections.IEnumerator.get_Current() */, { 869, 9, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Char>::.ctor() */, { 870, 9, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Char>::.cctor() */, { 865, 27, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::Dispose() */, { 866, 27, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::MoveNext() */, { 867, 27, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, { 868, 27, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current() */, { 869, 27, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::.ctor() */, { 870, 27, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::.cctor() */, { 865, 123, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::Dispose() */, { 866, 123, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::MoveNext() */, { 867, 123, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::get_Current() */, { 868, 123, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 869, 123, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::.ctor() */, { 870, 123, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::.cctor() */, { 865, 269, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::Dispose() */, { 866, 269, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::MoveNext() */, { 867, 269, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::get_Current() */, { 868, 269, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current() */, { 869, 269, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::.ctor() */, { 870, 269, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::.cctor() */, { 865, 23, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::Dispose() */, { 866, 23, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::MoveNext() */, { 867, 23, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::get_Current() */, { 868, 23, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 869, 23, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::.ctor() */, { 870, 23, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::.cctor() */, { 865, 160, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::Dispose() */, { 866, 160, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::MoveNext() */, { 867, 160, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::get_Current() */, { 868, 160, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.get_Current() */, { 869, 160, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::.ctor() */, { 870, 160, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::.cctor() */, { 865, 114, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Dispose() */, { 866, 114, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNext() */, { 867, 114, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Current() */, { 868, 114, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 869, 114, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor() */, { 870, 114, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.cctor() */, { 865, 122, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::Dispose() */, { 866, 122, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::MoveNext() */, { 867, 122, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::get_Current() */, { 868, 122, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 869, 122, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.ctor() */, { 870, 122, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.cctor() */, { 865, 268, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::Dispose() */, { 866, 268, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::MoveNext() */, { 867, 268, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::get_Current() */, { 868, 268, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current() */, { 869, 268, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::.ctor() */, { 870, 268, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::.cctor() */, { 865, 22, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose() */, { 866, 22, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext() */, { 867, 22, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, { 868, 22, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 869, 22, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor() */, { 870, 22, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.cctor() */, { 865, 159, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::Dispose() */, { 866, 159, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::MoveNext() */, { 867, 159, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::get_Current() */, { 868, 159, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.get_Current() */, { 869, 159, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::.ctor() */, { 870, 159, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::.cctor() */, { 865, 284, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>::Dispose() */, { 866, 284, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>::MoveNext() */, { 867, 284, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>::get_Current() */, { 868, 284, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>::System.Collections.IEnumerator.get_Current() */, { 869, 284, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>::.ctor() */, { 870, 284, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>::.cctor() */, { 865, 60, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.DateTime>::Dispose() */, { 866, 60, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.DateTime>::MoveNext() */, { 867, 60, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.DateTime>::get_Current() */, { 868, 60, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.DateTime>::System.Collections.IEnumerator.get_Current() */, { 869, 60, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.DateTime>::.ctor() */, { 870, 60, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.DateTime>::.cctor() */, { 865, 61, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Decimal>::Dispose() */, { 866, 61, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Decimal>::MoveNext() */, { 867, 61, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Decimal>::get_Current() */, { 868, 61, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Decimal>::System.Collections.IEnumerator.get_Current() */, { 869, 61, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Decimal>::.ctor() */, { 870, 61, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Decimal>::.cctor() */, { 865, 81, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Double>::Dispose() */, { 866, 81, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Double>::MoveNext() */, { 867, 81, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Double>::get_Current() */, { 868, 81, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Double>::System.Collections.IEnumerator.get_Current() */, { 869, 81, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Double>::.ctor() */, { 870, 81, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Double>::.cctor() */, { 865, 221, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::Dispose() */, { 866, 221, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::MoveNext() */, { 867, 221, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::get_Current() */, { 868, 221, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::System.Collections.IEnumerator.get_Current() */, { 869, 221, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::.ctor() */, { 870, 221, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::.cctor() */, { 865, 222, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::Dispose() */, { 866, 222, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::MoveNext() */, { 867, 222, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::get_Current() */, { 868, 222, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::System.Collections.IEnumerator.get_Current() */, { 869, 222, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::.ctor() */, { 870, 222, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::.cctor() */, { 865, 95, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int16>::Dispose() */, { 866, 95, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Int16>::MoveNext() */, { 867, 95, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Int16>::get_Current() */, { 868, 95, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Int16>::System.Collections.IEnumerator.get_Current() */, { 869, 95, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int16>::.ctor() */, { 870, 95, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int16>::.cctor() */, { 865, 24, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int32>::Dispose() */, { 866, 24, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Int32>::MoveNext() */, { 867, 24, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Int32>::get_Current() */, { 868, 24, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Int32>::System.Collections.IEnumerator.get_Current() */, { 869, 24, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int32>::.ctor() */, { 870, 24, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int32>::.cctor() */, { 865, 90, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int32Enum>::Dispose() */, { 866, 90, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Int32Enum>::MoveNext() */, { 867, 90, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Int32Enum>::get_Current() */, { 868, 90, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Int32Enum>::System.Collections.IEnumerator.get_Current() */, { 869, 90, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int32Enum>::.ctor() */, { 870, 90, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int32Enum>::.cctor() */, { 865, 30, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int64>::Dispose() */, { 866, 30, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Int64>::MoveNext() */, { 867, 30, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Int64>::get_Current() */, { 868, 30, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Int64>::System.Collections.IEnumerator.get_Current() */, { 869, 30, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int64>::.ctor() */, { 870, 30, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int64>::.cctor() */, { 865, 85, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.IntPtr>::Dispose() */, { 866, 85, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.IntPtr>::MoveNext() */, { 867, 85, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.IntPtr>::get_Current() */, { 868, 85, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.IntPtr>::System.Collections.IEnumerator.get_Current() */, { 869, 85, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.IntPtr>::.ctor() */, { 870, 85, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.IntPtr>::.cctor() */, { 865, 146, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>::Dispose() */, { 866, 146, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>::MoveNext() */, { 867, 146, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>::get_Current() */, { 868, 146, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>::System.Collections.IEnumerator.get_Current() */, { 869, 146, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>::.ctor() */, { 870, 146, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>::.cctor() */, { 865, 167, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::Dispose() */, { 866, 167, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::MoveNext() */, { 867, 167, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::get_Current() */, { 868, 167, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerator.get_Current() */, { 869, 167, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::.ctor() */, { 870, 167, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::.cctor() */, { 865, 166, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::Dispose() */, { 866, 166, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::MoveNext() */, { 867, 166, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::get_Current() */, { 868, 166, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerator.get_Current() */, { 869, 166, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::.ctor() */, { 870, 166, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::.cctor() */, { 865, 64, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::Dispose() */, { 866, 64, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::MoveNext() */, { 867, 64, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::get_Current() */, { 868, 64, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::System.Collections.IEnumerator.get_Current() */, { 869, 64, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::.ctor() */, { 870, 64, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::.cctor() */, { 865, 161, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::Dispose() */, { 866, 161, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::MoveNext() */, { 867, 161, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::get_Current() */, { 868, 161, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() */, { 869, 161, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::.ctor() */, { 870, 161, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::.cctor() */, { 865, 26, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::Dispose() */, { 866, 26, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::MoveNext() */, { 867, 26, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::get_Current() */, { 868, 26, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::System.Collections.IEnumerator.get_Current() */, { 869, 26, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::.ctor() */, { 870, 26, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::.cctor() */, { 865, 108, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.SByte>::Dispose() */, { 866, 108, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.SByte>::MoveNext() */, { 867, 108, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.SByte>::get_Current() */, { 868, 108, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.SByte>::System.Collections.IEnumerator.get_Current() */, { 869, 108, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.SByte>::.ctor() */, { 870, 108, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.SByte>::.cctor() */, { 865, 304, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::Dispose() */, { 866, 304, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::MoveNext() */, { 867, 304, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::get_Current() */, { 868, 304, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::System.Collections.IEnumerator.get_Current() */, { 869, 304, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::.ctor() */, { 870, 304, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::.cctor() */, { 865, 109, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Single>::Dispose() */, { 866, 109, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Single>::MoveNext() */, { 867, 109, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Single>::get_Current() */, { 868, 109, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Single>::System.Collections.IEnumerator.get_Current() */, { 869, 109, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Single>::.ctor() */, { 870, 109, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Single>::.cctor() */, { 865, 299, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::Dispose() */, { 866, 299, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::MoveNext() */, { 867, 299, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::get_Current() */, { 868, 299, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::System.Collections.IEnumerator.get_Current() */, { 869, 299, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::.ctor() */, { 870, 299, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::.cctor() */, { 865, 230, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::Dispose() */, { 866, 230, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::MoveNext() */, { 867, 230, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::get_Current() */, { 868, 230, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::System.Collections.IEnumerator.get_Current() */, { 869, 230, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::.ctor() */, { 870, 230, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::.cctor() */, { 865, 110, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.TimeSpan>::Dispose() */, { 866, 110, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.TimeSpan>::MoveNext() */, { 867, 110, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.TimeSpan>::get_Current() */, { 868, 110, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.TimeSpan>::System.Collections.IEnumerator.get_Current() */, { 869, 110, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.TimeSpan>::.ctor() */, { 870, 110, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.TimeSpan>::.cctor() */, { 865, 133, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.UInt16>::Dispose() */, { 866, 133, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.UInt16>::MoveNext() */, { 867, 133, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.UInt16>::get_Current() */, { 868, 133, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.UInt16>::System.Collections.IEnumerator.get_Current() */, { 869, 133, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.UInt16>::.ctor() */, { 870, 133, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.UInt16>::.cctor() */, { 865, 35, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.UInt32>::Dispose() */, { 866, 35, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.UInt32>::MoveNext() */, { 867, 35, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.UInt32>::get_Current() */, { 868, 35, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.UInt32>::System.Collections.IEnumerator.get_Current() */, { 869, 35, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.UInt32>::.ctor() */, { 870, 35, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.UInt32>::.cctor() */, { 865, 82, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.UInt64>::Dispose() */, { 866, 82, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.UInt64>::MoveNext() */, { 867, 82, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.UInt64>::get_Current() */, { 868, 82, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.UInt64>::System.Collections.IEnumerator.get_Current() */, { 869, 82, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.UInt64>::.ctor() */, { 870, 82, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.UInt64>::.cctor() */, { 865, 311, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Dispose() */, { 866, 311, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::MoveNext() */, { 867, 311, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Current() */, { 868, 311, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.get_Current() */, { 869, 311, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor() */, { 870, 311, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.cctor() */, { 865, 373, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::Dispose() */, { 866, 373, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::MoveNext() */, { 867, 373, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::get_Current() */, { 868, 373, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::System.Collections.IEnumerator.get_Current() */, { 869, 373, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::.ctor() */, { 870, 373, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::.cctor() */, { 865, 321, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::Dispose() */, { 866, 321, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::MoveNext() */, { 867, 321, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::get_Current() */, { 868, 321, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::System.Collections.IEnumerator.get_Current() */, { 869, 321, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::.ctor() */, { 870, 321, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::.cctor() */, { 865, 306, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>::Dispose() */, { 866, 306, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>::MoveNext() */, { 867, 306, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>::get_Current() */, { 868, 306, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>::System.Collections.IEnumerator.get_Current() */, { 869, 306, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>::.ctor() */, { 870, 306, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>::.cctor() */, { 865, 334, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::Dispose() */, { 866, 334, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::MoveNext() */, { 867, 334, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::get_Current() */, { 868, 334, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::System.Collections.IEnumerator.get_Current() */, { 869, 334, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::.ctor() */, { 870, 334, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::.cctor() */, { 865, 375, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::Dispose() */, { 866, 375, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::MoveNext() */, { 867, 375, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::get_Current() */, { 868, 375, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::System.Collections.IEnumerator.get_Current() */, { 869, 375, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::.ctor() */, { 870, 375, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::.cctor() */, { 865, 320, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::Dispose() */, { 866, 320, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::MoveNext() */, { 867, 320, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::get_Current() */, { 868, 320, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::System.Collections.IEnumerator.get_Current() */, { 869, 320, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::.ctor() */, { 870, 320, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::.cctor() */, { 865, 366, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::Dispose() */, { 866, 366, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::MoveNext() */, { 867, 366, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::get_Current() */, { 868, 366, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::System.Collections.IEnumerator.get_Current() */, { 869, 366, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::.ctor() */, { 870, 366, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::.cctor() */, { 865, 370, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::Dispose() */, { 866, 370, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::MoveNext() */, { 867, 370, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::get_Current() */, { 868, 370, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::System.Collections.IEnumerator.get_Current() */, { 869, 370, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::.ctor() */, { 870, 370, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::.cctor() */, { 865, 329, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Dispose() */, { 866, 329, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::MoveNext() */, { 867, 329, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::get_Current() */, { 868, 329, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEnumerator.get_Current() */, { 869, 329, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor() */, { 870, 329, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.cctor() */, { 860, 31, -1 } /* System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::.ctor(System.Array) */, { 861, 31, -1 } /* System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::Dispose() */, { 862, 31, -1 } /* System.Boolean System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::MoveNext() */, { 863, 31, -1 } /* T System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::get_Current() */, { 864, 31, -1 } /* System.Object System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.get_Current() */, { 860, 47, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Boolean>::.ctor(System.Array) */, { 861, 47, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Boolean>::Dispose() */, { 862, 47, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Boolean>::MoveNext() */, { 863, 47, -1 } /* T System.Array/InternalEnumerator`1<System.Boolean>::get_Current() */, { 864, 47, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.get_Current() */, { 860, 8, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Byte>::.ctor(System.Array) */, { 861, 8, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Byte>::Dispose() */, { 862, 8, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Byte>::MoveNext() */, { 863, 8, -1 } /* T System.Array/InternalEnumerator`1<System.Byte>::get_Current() */, { 864, 8, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.get_Current() */, { 860, 9, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Char>::.ctor(System.Array) */, { 861, 9, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Char>::Dispose() */, { 862, 9, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Char>::MoveNext() */, { 863, 9, -1 } /* T System.Array/InternalEnumerator`1<System.Char>::get_Current() */, { 864, 9, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.get_Current() */, { 860, 27, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::.ctor(System.Array) */, { 861, 27, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::Dispose() */, { 862, 27, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::MoveNext() */, { 863, 27, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, { 864, 27, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current() */, { 860, 123, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::.ctor(System.Array) */, { 861, 123, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::Dispose() */, { 862, 123, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::MoveNext() */, { 863, 123, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::get_Current() */, { 864, 123, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 860, 269, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::.ctor(System.Array) */, { 861, 269, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::Dispose() */, { 862, 269, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::MoveNext() */, { 863, 269, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::get_Current() */, { 864, 269, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current() */, { 860, 23, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::.ctor(System.Array) */, { 861, 23, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::Dispose() */, { 862, 23, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::MoveNext() */, { 863, 23, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::get_Current() */, { 864, 23, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 860, 160, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::.ctor(System.Array) */, { 861, 160, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::Dispose() */, { 862, 160, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::MoveNext() */, { 863, 160, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::get_Current() */, { 864, 160, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.get_Current() */, { 860, 114, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Array) */, { 861, 114, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Dispose() */, { 862, 114, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNext() */, { 863, 114, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Current() */, { 864, 114, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 860, 122, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.ctor(System.Array) */, { 861, 122, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::Dispose() */, { 862, 122, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::MoveNext() */, { 863, 122, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::get_Current() */, { 864, 122, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 860, 268, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::.ctor(System.Array) */, { 861, 268, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::Dispose() */, { 862, 268, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::MoveNext() */, { 863, 268, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::get_Current() */, { 864, 268, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current() */, { 860, 22, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Array) */, { 861, 22, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose() */, { 862, 22, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext() */, { 863, 22, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, { 864, 22, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 860, 159, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::.ctor(System.Array) */, { 861, 159, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::Dispose() */, { 862, 159, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::MoveNext() */, { 863, 159, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::get_Current() */, { 864, 159, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.get_Current() */, { 860, 284, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Hashtable/bucket>::.ctor(System.Array) */, { 861, 284, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Hashtable/bucket>::Dispose() */, { 862, 284, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Hashtable/bucket>::MoveNext() */, { 863, 284, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Hashtable/bucket>::get_Current() */, { 864, 284, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Hashtable/bucket>::System.Collections.IEnumerator.get_Current() */, { 860, 60, -1 } /* System.Void System.Array/InternalEnumerator`1<System.DateTime>::.ctor(System.Array) */, { 861, 60, -1 } /* System.Void System.Array/InternalEnumerator`1<System.DateTime>::Dispose() */, { 862, 60, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.DateTime>::MoveNext() */, { 863, 60, -1 } /* T System.Array/InternalEnumerator`1<System.DateTime>::get_Current() */, { 864, 60, -1 } /* System.Object System.Array/InternalEnumerator`1<System.DateTime>::System.Collections.IEnumerator.get_Current() */, { 860, 61, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Decimal>::.ctor(System.Array) */, { 861, 61, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Decimal>::Dispose() */, { 862, 61, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Decimal>::MoveNext() */, { 863, 61, -1 } /* T System.Array/InternalEnumerator`1<System.Decimal>::get_Current() */, { 864, 61, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Decimal>::System.Collections.IEnumerator.get_Current() */, { 860, 81, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Double>::.ctor(System.Array) */, { 861, 81, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Double>::Dispose() */, { 862, 81, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Double>::MoveNext() */, { 863, 81, -1 } /* T System.Array/InternalEnumerator`1<System.Double>::get_Current() */, { 864, 81, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Double>::System.Collections.IEnumerator.get_Current() */, { 860, 221, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::.ctor(System.Array) */, { 861, 221, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::Dispose() */, { 862, 221, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::MoveNext() */, { 863, 221, -1 } /* T System.Array/InternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::get_Current() */, { 864, 221, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::System.Collections.IEnumerator.get_Current() */, { 860, 222, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::.ctor(System.Array) */, { 861, 222, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::Dispose() */, { 862, 222, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::MoveNext() */, { 863, 222, -1 } /* T System.Array/InternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::get_Current() */, { 864, 222, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::System.Collections.IEnumerator.get_Current() */, { 860, 95, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Int16>::.ctor(System.Array) */, { 861, 95, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Int16>::Dispose() */, { 862, 95, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Int16>::MoveNext() */, { 863, 95, -1 } /* T System.Array/InternalEnumerator`1<System.Int16>::get_Current() */, { 864, 95, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Int16>::System.Collections.IEnumerator.get_Current() */, { 860, 24, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Int32>::.ctor(System.Array) */, { 861, 24, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Int32>::Dispose() */, { 862, 24, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Int32>::MoveNext() */, { 863, 24, -1 } /* T System.Array/InternalEnumerator`1<System.Int32>::get_Current() */, { 864, 24, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Int32>::System.Collections.IEnumerator.get_Current() */, { 860, 90, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Int32Enum>::.ctor(System.Array) */, { 861, 90, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Int32Enum>::Dispose() */, { 862, 90, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Int32Enum>::MoveNext() */, { 863, 90, -1 } /* T System.Array/InternalEnumerator`1<System.Int32Enum>::get_Current() */, { 864, 90, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Int32Enum>::System.Collections.IEnumerator.get_Current() */, { 860, 30, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Int64>::.ctor(System.Array) */, { 861, 30, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Int64>::Dispose() */, { 862, 30, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Int64>::MoveNext() */, { 863, 30, -1 } /* T System.Array/InternalEnumerator`1<System.Int64>::get_Current() */, { 864, 30, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Int64>::System.Collections.IEnumerator.get_Current() */, { 860, 85, -1 } /* System.Void System.Array/InternalEnumerator`1<System.IntPtr>::.ctor(System.Array) */, { 861, 85, -1 } /* System.Void System.Array/InternalEnumerator`1<System.IntPtr>::Dispose() */, { 862, 85, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.IntPtr>::MoveNext() */, { 863, 85, -1 } /* T System.Array/InternalEnumerator`1<System.IntPtr>::get_Current() */, { 864, 85, -1 } /* System.Object System.Array/InternalEnumerator`1<System.IntPtr>::System.Collections.IEnumerator.get_Current() */, { 860, 146, -1 } /* System.Void System.Array/InternalEnumerator`1<System.ParameterizedStrings/FormatParam>::.ctor(System.Array) */, { 861, 146, -1 } /* System.Void System.Array/InternalEnumerator`1<System.ParameterizedStrings/FormatParam>::Dispose() */, { 862, 146, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.ParameterizedStrings/FormatParam>::MoveNext() */, { 863, 146, -1 } /* T System.Array/InternalEnumerator`1<System.ParameterizedStrings/FormatParam>::get_Current() */, { 864, 146, -1 } /* System.Object System.Array/InternalEnumerator`1<System.ParameterizedStrings/FormatParam>::System.Collections.IEnumerator.get_Current() */, { 860, 167, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::.ctor(System.Array) */, { 861, 167, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::Dispose() */, { 862, 167, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::MoveNext() */, { 863, 167, -1 } /* T System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::get_Current() */, { 864, 167, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerator.get_Current() */, { 860, 166, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::.ctor(System.Array) */, { 861, 166, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::Dispose() */, { 862, 166, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::MoveNext() */, { 863, 166, -1 } /* T System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::get_Current() */, { 864, 166, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerator.get_Current() */, { 860, 64, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::.ctor(System.Array) */, { 861, 64, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::Dispose() */, { 862, 64, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::MoveNext() */, { 863, 64, -1 } /* T System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::get_Current() */, { 864, 64, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::System.Collections.IEnumerator.get_Current() */, { 860, 161, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceLocator>::.ctor(System.Array) */, { 861, 161, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceLocator>::Dispose() */, { 862, 161, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Resources.ResourceLocator>::MoveNext() */, { 863, 161, -1 } /* T System.Array/InternalEnumerator`1<System.Resources.ResourceLocator>::get_Current() */, { 864, 161, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() */, { 860, 26, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::.ctor(System.Array) */, { 861, 26, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::Dispose() */, { 862, 26, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::MoveNext() */, { 863, 26, -1 } /* T System.Array/InternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::get_Current() */, { 864, 26, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::System.Collections.IEnumerator.get_Current() */, { 860, 108, -1 } /* System.Void System.Array/InternalEnumerator`1<System.SByte>::.ctor(System.Array) */, { 861, 108, -1 } /* System.Void System.Array/InternalEnumerator`1<System.SByte>::Dispose() */, { 862, 108, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.SByte>::MoveNext() */, { 863, 108, -1 } /* T System.Array/InternalEnumerator`1<System.SByte>::get_Current() */, { 864, 108, -1 } /* System.Object System.Array/InternalEnumerator`1<System.SByte>::System.Collections.IEnumerator.get_Current() */, { 860, 304, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::.ctor(System.Array) */, { 861, 304, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::Dispose() */, { 862, 304, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::MoveNext() */, { 863, 304, -1 } /* T System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::get_Current() */, { 864, 304, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::System.Collections.IEnumerator.get_Current() */, { 860, 109, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Single>::.ctor(System.Array) */, { 861, 109, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Single>::Dispose() */, { 862, 109, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Single>::MoveNext() */, { 863, 109, -1 } /* T System.Array/InternalEnumerator`1<System.Single>::get_Current() */, { 864, 109, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Single>::System.Collections.IEnumerator.get_Current() */, { 860, 299, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::.ctor(System.Array) */, { 861, 299, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::Dispose() */, { 862, 299, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::MoveNext() */, { 863, 299, -1 } /* T System.Array/InternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::get_Current() */, { 864, 299, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::System.Collections.IEnumerator.get_Current() */, { 860, 230, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Threading.CancellationTokenRegistration>::.ctor(System.Array) */, { 861, 230, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Threading.CancellationTokenRegistration>::Dispose() */, { 862, 230, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Threading.CancellationTokenRegistration>::MoveNext() */, { 863, 230, -1 } /* T System.Array/InternalEnumerator`1<System.Threading.CancellationTokenRegistration>::get_Current() */, { 864, 230, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Threading.CancellationTokenRegistration>::System.Collections.IEnumerator.get_Current() */, { 860, 110, -1 } /* System.Void System.Array/InternalEnumerator`1<System.TimeSpan>::.ctor(System.Array) */, { 861, 110, -1 } /* System.Void System.Array/InternalEnumerator`1<System.TimeSpan>::Dispose() */, { 862, 110, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.TimeSpan>::MoveNext() */, { 863, 110, -1 } /* T System.Array/InternalEnumerator`1<System.TimeSpan>::get_Current() */, { 864, 110, -1 } /* System.Object System.Array/InternalEnumerator`1<System.TimeSpan>::System.Collections.IEnumerator.get_Current() */, { 860, 133, -1 } /* System.Void System.Array/InternalEnumerator`1<System.UInt16>::.ctor(System.Array) */, { 861, 133, -1 } /* System.Void System.Array/InternalEnumerator`1<System.UInt16>::Dispose() */, { 862, 133, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.UInt16>::MoveNext() */, { 863, 133, -1 } /* T System.Array/InternalEnumerator`1<System.UInt16>::get_Current() */, { 864, 133, -1 } /* System.Object System.Array/InternalEnumerator`1<System.UInt16>::System.Collections.IEnumerator.get_Current() */, { 860, 35, -1 } /* System.Void System.Array/InternalEnumerator`1<System.UInt32>::.ctor(System.Array) */, { 861, 35, -1 } /* System.Void System.Array/InternalEnumerator`1<System.UInt32>::Dispose() */, { 862, 35, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.UInt32>::MoveNext() */, { 863, 35, -1 } /* T System.Array/InternalEnumerator`1<System.UInt32>::get_Current() */, { 864, 35, -1 } /* System.Object System.Array/InternalEnumerator`1<System.UInt32>::System.Collections.IEnumerator.get_Current() */, { 860, 82, -1 } /* System.Void System.Array/InternalEnumerator`1<System.UInt64>::.ctor(System.Array) */, { 861, 82, -1 } /* System.Void System.Array/InternalEnumerator`1<System.UInt64>::Dispose() */, { 862, 82, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.UInt64>::MoveNext() */, { 863, 82, -1 } /* T System.Array/InternalEnumerator`1<System.UInt64>::get_Current() */, { 864, 82, -1 } /* System.Object System.Array/InternalEnumerator`1<System.UInt64>::System.Collections.IEnumerator.get_Current() */, { 860, 311, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Array) */, { 861, 311, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Dispose() */, { 862, 311, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::MoveNext() */, { 863, 311, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Current() */, { 864, 311, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.get_Current() */, { 860, 373, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::.ctor(System.Array) */, { 861, 373, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::Dispose() */, { 862, 373, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::MoveNext() */, { 863, 373, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::get_Current() */, { 864, 373, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::System.Collections.IEnumerator.get_Current() */, { 860, 321, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::.ctor(System.Array) */, { 861, 321, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::Dispose() */, { 862, 321, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::MoveNext() */, { 863, 321, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::get_Current() */, { 864, 321, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::System.Collections.IEnumerator.get_Current() */, { 860, 306, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::.ctor(System.Array) */, { 861, 306, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::Dispose() */, { 862, 306, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::MoveNext() */, { 863, 306, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::get_Current() */, { 864, 306, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::System.Collections.IEnumerator.get_Current() */, { 860, 334, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::.ctor(System.Array) */, { 861, 334, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::Dispose() */, { 862, 334, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::MoveNext() */, { 863, 334, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::get_Current() */, { 864, 334, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::System.Collections.IEnumerator.get_Current() */, { 860, 375, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::.ctor(System.Array) */, { 861, 375, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::Dispose() */, { 862, 375, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::MoveNext() */, { 863, 375, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::get_Current() */, { 864, 375, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::System.Collections.IEnumerator.get_Current() */, { 860, 320, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::.ctor(System.Array) */, { 861, 320, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::Dispose() */, { 862, 320, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::MoveNext() */, { 863, 320, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::get_Current() */, { 864, 320, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::System.Collections.IEnumerator.get_Current() */, { 860, 366, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::.ctor(System.Array) */, { 861, 366, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::Dispose() */, { 862, 366, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::MoveNext() */, { 863, 366, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::get_Current() */, { 864, 366, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::System.Collections.IEnumerator.get_Current() */, { 860, 370, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::.ctor(System.Array) */, { 861, 370, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::Dispose() */, { 862, 370, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::MoveNext() */, { 863, 370, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::get_Current() */, { 864, 370, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::System.Collections.IEnumerator.get_Current() */, { 860, 329, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor(System.Array) */, { 861, 329, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Dispose() */, { 862, 329, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::MoveNext() */, { 863, 329, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::get_Current() */, { 864, 329, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEnumerator.get_Current() */, { 9266, 114, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9267, 114, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9268, 114, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9269, 114, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9270, 114, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9271, 114, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Swap(T[],System.Int32,System.Int32) */, { 9272, 114, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9273, 114, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9274, 114, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9275, 114, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9276, 114, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9277, 114, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9266, 24, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9267, 24, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Int32>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9268, 24, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9269, 24, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Int32>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9270, 24, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9271, 24, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32>::Swap(T[],System.Int32,System.Int32) */, { 9272, 24, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9273, 24, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9274, 24, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Int32>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9275, 24, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9276, 24, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9277, 24, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9266, 90, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9267, 90, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9268, 90, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9269, 90, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9270, 90, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9271, 90, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::Swap(T[],System.Int32,System.Int32) */, { 9272, 90, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9273, 90, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9274, 90, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9275, 90, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9276, 90, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9277, 90, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9266, 82, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.UInt64>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9267, 82, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.UInt64>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9268, 82, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.UInt64>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9269, 82, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.UInt64>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9270, 82, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.UInt64>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9271, 82, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.UInt64>::Swap(T[],System.Int32,System.Int32) */, { 9272, 82, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.UInt64>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9273, 82, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.UInt64>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9274, 82, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.UInt64>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9275, 82, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.UInt64>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9276, 82, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.UInt64>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9277, 82, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.UInt64>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9266, 311, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9267, 311, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9268, 311, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9269, 311, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9270, 311, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9271, 311, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Swap(T[],System.Int32,System.Int32) */, { 9272, 311, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9273, 311, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9274, 311, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9275, 311, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9276, 311, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9277, 311, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9266, 329, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9267, 329, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9268, 329, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9269, 329, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9270, 329, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9271, 329, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Swap(T[],System.Int32,System.Int32) */, { 9272, 329, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9273, 329, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9274, 329, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9275, 329, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9276, 329, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9277, 329, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9278, 83, -1 } /* System.Collections.Generic.ArraySortHelper`2<TKey,TValue> System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::get_Default() */, { 9279, 83, -1 } /* System.Collections.Generic.ArraySortHelper`2<TKey,TValue> System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::CreateArraySortHelper() */, { 9280, 83, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::Sort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9281, 83, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::SwapIfGreaterWithItems(TKey[],TValue[],System.Collections.Generic.IComparer`1<TKey>,System.Int32,System.Int32) */, { 9282, 83, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::Swap(TKey[],TValue[],System.Int32,System.Int32) */, { 9283, 83, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::IntrospectiveSort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9284, 83, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::IntroSort(TKey[],TValue[],System.Int32,System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9285, 83, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::PickPivotAndPartition(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9286, 83, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::Heapsort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9287, 83, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::DownHeap(TKey[],TValue[],System.Int32,System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9288, 83, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::InsertionSort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9289, 83, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::.ctor() */, { 9341, 47, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Boolean>::get_Default() */, { 9342, 47, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Boolean>::CreateComparer() */, { 9344, 47, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<System.Boolean>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9345, 47, -1 } /* System.Void System.Collections.Generic.Comparer`1<System.Boolean>::.ctor() */, { 9341, 114, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Default() */, { 9342, 114, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::CreateComparer() */, { 9344, 114, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9345, 114, -1 } /* System.Void System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor() */, { 9342, 24, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Int32>::CreateComparer() */, { 9344, 24, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<System.Int32>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9345, 24, -1 } /* System.Void System.Collections.Generic.Comparer`1<System.Int32>::.ctor() */, { 9341, 90, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Int32Enum>::get_Default() */, { 9342, 90, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Int32Enum>::CreateComparer() */, { 9344, 90, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<System.Int32Enum>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9345, 90, -1 } /* System.Void System.Collections.Generic.Comparer`1<System.Int32Enum>::.ctor() */, { 9342, 82, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.UInt64>::CreateComparer() */, { 9344, 82, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<System.UInt64>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9345, 82, -1 } /* System.Void System.Collections.Generic.Comparer`1<System.UInt64>::.ctor() */, { 9341, 311, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Default() */, { 9342, 311, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::CreateComparer() */, { 9344, 311, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9345, 311, -1 } /* System.Void System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor() */, { 9341, 329, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::get_Default() */, { 9342, 329, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::CreateComparer() */, { 9344, 329, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9345, 329, -1 } /* System.Void System.Collections.Generic.Comparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor() */, { 9324, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) */, { 9325, 121, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::MoveNext() */, { 9326, 121, -1 } /* System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::get_Current() */, { 9327, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::Dispose() */, { 9328, 121, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() */, { 9329, 121, -1 } /* System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() */, { 9330, 121, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() */, { 9331, 121, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() */, { 9324, 179, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) */, { 9325, 179, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::MoveNext() */, { 9326, 179, -1 } /* System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::get_Current() */, { 9327, 179, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::Dispose() */, { 9328, 179, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() */, { 9329, 179, -1 } /* System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() */, { 9330, 179, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() */, { 9331, 179, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() */, { 9324, 158, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) */, { 9325, 158, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() */, { 9326, 158, -1 } /* System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() */, { 9327, 158, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() */, { 9328, 158, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() */, { 9329, 158, -1 } /* System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Entry() */, { 9330, 158, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Key() */, { 9331, 158, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Value() */, { 9290, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor() */, { 9291, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor(System.Int32) */, { 9292, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9293, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9294, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9295, 121, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Count() */, { 9296, 121, -1 } /* TValue System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Item(TKey) */, { 9297, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::set_Item(TKey,TValue) */, { 9298, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Add(TKey,TValue) */, { 9299, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9300, 121, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9301, 121, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9302, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Clear() */, { 9303, 121, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::ContainsKey(TKey) */, { 9304, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9305, 121, -1 } /* System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::GetEnumerator() */, { 9306, 121, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() */, { 9307, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9308, 121, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::FindEntry(TKey) */, { 9309, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Initialize(System.Int32) */, { 9310, 121, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) */, { 9358, 1, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.String>::get_Default() */, { 9311, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::OnDeserialization(System.Object) */, { 9312, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Resize() */, { 9313, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Resize(System.Int32,System.Boolean) */, { 9314, 121, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Remove(TKey) */, { 9315, 121, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::TryGetValue(TKey,TValue&) */, { 9316, 121, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() */, { 9317, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9318, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9319, 121, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 9320, 121, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.IDictionary.get_Item(System.Object) */, { 9321, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.IDictionary.set_Item(System.Object,System.Object) */, { 9322, 121, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::IsCompatibleKey(System.Object) */, { 9323, 121, -1 } /* System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.IDictionary.GetEnumerator() */, { 9290, 179, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor() */, { 9291, 179, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor(System.Int32) */, { 9292, 179, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9293, 179, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9294, 179, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9295, 179, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::get_Count() */, { 9296, 179, -1 } /* TValue System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::get_Item(TKey) */, { 9297, 179, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::set_Item(TKey,TValue) */, { 9298, 179, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Add(TKey,TValue) */, { 9299, 179, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9300, 179, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9301, 179, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9302, 179, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Clear() */, { 9303, 179, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::ContainsKey(TKey) */, { 9304, 179, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9305, 179, -1 } /* System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::GetEnumerator() */, { 9306, 179, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() */, { 9307, 179, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9308, 179, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::FindEntry(TKey) */, { 9309, 179, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Initialize(System.Int32) */, { 9310, 179, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) */, { 9311, 179, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::OnDeserialization(System.Object) */, { 9312, 179, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Resize() */, { 9313, 179, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Resize(System.Int32,System.Boolean) */, { 9314, 179, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Remove(TKey) */, { 9315, 179, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::TryGetValue(TKey,TValue&) */, { 9316, 179, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() */, { 9317, 179, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9318, 179, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9319, 179, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.IEnumerable.GetEnumerator() */, { 9320, 179, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.IDictionary.get_Item(System.Object) */, { 9321, 179, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.IDictionary.set_Item(System.Object,System.Object) */, { 9322, 179, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::IsCompatibleKey(System.Object) */, { 9323, 179, -1 } /* System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.IDictionary.GetEnumerator() */, { 9290, 158, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor() */, { 9291, 158, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor(System.Int32) */, { 9292, 158, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9293, 158, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9294, 158, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9295, 158, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::get_Count() */, { 9296, 158, -1 } /* TValue System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::get_Item(TKey) */, { 9297, 158, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::set_Item(TKey,TValue) */, { 9298, 158, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Add(TKey,TValue) */, { 9299, 158, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9300, 158, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9301, 158, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9302, 158, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Clear() */, { 9303, 158, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::ContainsKey(TKey) */, { 9304, 158, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9305, 158, -1 } /* System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::GetEnumerator() */, { 9306, 158, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() */, { 9307, 158, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9308, 158, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::FindEntry(TKey) */, { 9309, 158, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Initialize(System.Int32) */, { 9310, 158, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) */, { 9311, 158, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::OnDeserialization(System.Object) */, { 9312, 158, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Resize() */, { 9313, 158, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Resize(System.Int32,System.Boolean) */, { 9314, 158, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Remove(TKey) */, { 9315, 158, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::TryGetValue(TKey,TValue&) */, { 9316, 158, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() */, { 9317, 158, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9318, 158, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9319, 158, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerable.GetEnumerator() */, { 9320, 158, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionary.get_Item(System.Object) */, { 9321, 158, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionary.set_Item(System.Object,System.Object) */, { 9322, 158, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::IsCompatibleKey(System.Object) */, { 9323, 158, -1 } /* System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionary.GetEnumerator() */, { 9395, 90, -1 } /* System.Boolean System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::Equals(T,T) */, { 9396, 90, -1 } /* System.Int32 System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::GetHashCode(T) */, { 9397, 90, -1 } /* System.Void System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::.ctor() */, { 9398, 90, -1 } /* System.Void System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9399, 90, -1 } /* System.Void System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9400, 90, -1 } /* System.Boolean System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::Equals(System.Object) */, { 9401, 90, -1 } /* System.Int32 System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::GetHashCode() */, { 9358, 47, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Boolean>::get_Default() */, { 9359, 47, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Boolean>::CreateComparer() */, { 9362, 47, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Boolean>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9363, 47, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Boolean>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9364, 47, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Boolean>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9365, 47, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Boolean>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9366, 47, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<System.Boolean>::.ctor() */, { 9358, 8, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Byte>::get_Default() */, { 9359, 8, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Byte>::CreateComparer() */, { 9362, 8, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Byte>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9363, 8, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Byte>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9364, 8, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Byte>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9365, 8, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Byte>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9358, 114, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Default() */, { 9359, 114, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::CreateComparer() */, { 9362, 114, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9363, 114, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9364, 114, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9365, 114, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9366, 114, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor() */, { 9358, 24, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Int32>::get_Default() */, { 9359, 24, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Int32>::CreateComparer() */, { 9362, 24, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9363, 24, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9364, 24, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9365, 24, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9366, 24, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<System.Int32>::.ctor() */, { 9358, 90, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::get_Default() */, { 9359, 90, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::CreateComparer() */, { 9362, 90, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9363, 90, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9364, 90, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9365, 90, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9366, 90, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::.ctor() */, { 9358, 161, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>::get_Default() */, { 9359, 161, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>::CreateComparer() */, { 9362, 161, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9363, 161, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9364, 161, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9365, 161, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9366, 161, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>::.ctor() */, { 9358, 311, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Default() */, { 9359, 311, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::CreateComparer() */, { 9362, 311, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9363, 311, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9364, 311, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9365, 311, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9366, 311, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor() */, { 9358, 329, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::get_Default() */, { 9359, 329, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::CreateComparer() */, { 9362, 329, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9363, 329, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9364, 329, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9365, 329, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9366, 329, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor() */, { 9346, 47, -1 } /* System.Int32 System.Collections.Generic.GenericComparer`1<System.Boolean>::Compare(T,T) */, { 9347, 47, -1 } /* System.Boolean System.Collections.Generic.GenericComparer`1<System.Boolean>::Equals(System.Object) */, { 9348, 47, -1 } /* System.Int32 System.Collections.Generic.GenericComparer`1<System.Boolean>::GetHashCode() */, { 9349, 47, -1 } /* System.Void System.Collections.Generic.GenericComparer`1<System.Boolean>::.ctor() */, { 9346, 24, -1 } /* System.Int32 System.Collections.Generic.GenericComparer`1<System.Int32>::Compare(T,T) */, { 9347, 24, -1 } /* System.Boolean System.Collections.Generic.GenericComparer`1<System.Int32>::Equals(System.Object) */, { 9348, 24, -1 } /* System.Int32 System.Collections.Generic.GenericComparer`1<System.Int32>::GetHashCode() */, { 9349, 24, -1 } /* System.Void System.Collections.Generic.GenericComparer`1<System.Int32>::.ctor() */, { 9346, 82, -1 } /* System.Int32 System.Collections.Generic.GenericComparer`1<System.UInt64>::Compare(T,T) */, { 9347, 82, -1 } /* System.Boolean System.Collections.Generic.GenericComparer`1<System.UInt64>::Equals(System.Object) */, { 9348, 82, -1 } /* System.Int32 System.Collections.Generic.GenericComparer`1<System.UInt64>::GetHashCode() */, { 9349, 82, -1 } /* System.Void System.Collections.Generic.GenericComparer`1<System.UInt64>::.ctor() */, { 9367, 47, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.Boolean>::Equals(T,T) */, { 9368, 47, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Boolean>::GetHashCode(T) */, { 9369, 47, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Boolean>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9370, 47, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Boolean>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9371, 47, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.Boolean>::Equals(System.Object) */, { 9372, 47, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Boolean>::GetHashCode() */, { 9373, 47, -1 } /* System.Void System.Collections.Generic.GenericEqualityComparer`1<System.Boolean>::.ctor() */, { 9367, 8, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.Byte>::Equals(T,T) */, { 9368, 8, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Byte>::GetHashCode(T) */, { 9369, 8, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Byte>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9370, 8, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Byte>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9371, 8, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.Byte>::Equals(System.Object) */, { 9372, 8, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Byte>::GetHashCode() */, { 9373, 8, -1 } /* System.Void System.Collections.Generic.GenericEqualityComparer`1<System.Byte>::.ctor() */, { 9367, 24, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.Int32>::Equals(T,T) */, { 9368, 24, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Int32>::GetHashCode(T) */, { 9369, 24, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Int32>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9370, 24, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Int32>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9371, 24, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.Int32>::Equals(System.Object) */, { 9372, 24, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Int32>::GetHashCode() */, { 9373, 24, -1 } /* System.Void System.Collections.Generic.GenericEqualityComparer`1<System.Int32>::.ctor() */, { 9260, 115, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>::.ctor(TKey,TValue) */, { 9261, 115, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>::get_Key() */, { 9262, 115, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>::get_Value() */, { 9263, 115, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>::ToString() */, { 9263, 296, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::ToString() */, { 9260, 121, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::.ctor(TKey,TValue) */, { 9261, 121, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Key() */, { 9262, 121, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Value() */, { 9263, 121, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::ToString() */, { 9260, 179, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::.ctor(TKey,TValue) */, { 9261, 179, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Key() */, { 9262, 179, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Value() */, { 9263, 179, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::ToString() */, { 9260, 158, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::.ctor(TKey,TValue) */, { 9261, 158, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Key() */, { 9262, 158, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Value() */, { 9263, 158, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::ToString() */, { 9487, 114, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Collections.Generic.List`1<T>) */, { 9488, 114, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Dispose() */, { 9489, 114, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNext() */, { 9490, 114, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNextRare() */, { 9491, 114, -1 } /* T System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Current() */, { 9492, 114, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 9487, 24, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::.ctor(System.Collections.Generic.List`1<T>) */, { 9490, 24, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32>::MoveNextRare() */, { 9492, 24, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<System.Int32>::System.Collections.IEnumerator.get_Current() */, { 9487, 90, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::.ctor(System.Collections.Generic.List`1<T>) */, { 9488, 90, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::Dispose() */, { 9489, 90, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::MoveNext() */, { 9490, 90, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::MoveNextRare() */, { 9491, 90, -1 } /* T System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::get_Current() */, { 9492, 90, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::System.Collections.IEnumerator.get_Current() */, { 9487, 311, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Collections.Generic.List`1<T>) */, { 9488, 311, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::Dispose() */, { 9489, 311, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::MoveNext() */, { 9490, 311, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::MoveNextRare() */, { 9491, 311, -1 } /* T System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Current() */, { 9492, 311, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.get_Current() */, { 9487, 329, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor(System.Collections.Generic.List`1<T>) */, { 9490, 329, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UnitySynchronizationContext/WorkRequest>::MoveNextRare() */, { 9492, 329, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEnumerator.get_Current() */, { 9443, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor() */, { 9444, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Int32) */, { 9445, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9446, 114, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Capacity() */, { 9447, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::set_Capacity(System.Int32) */, { 9448, 114, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Count() */, { 9449, 114, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9450, 114, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.get_IsReadOnly() */, { 9451, 114, -1 } /* T System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Item(System.Int32) */, { 9452, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::set_Item(System.Int32,T) */, { 9453, 114, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::IsCompatibleObject(System.Object) */, { 9454, 114, -1 } /* System.Object System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.get_Item(System.Int32) */, { 9455, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9456, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Add(T) */, { 9457, 114, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.Add(System.Object) */, { 9458, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9459, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Clear() */, { 9460, 114, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Contains(T) */, { 9461, 114, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.Contains(System.Object) */, { 9462, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::CopyTo(T[]) */, { 9463, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9464, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9465, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::CopyTo(T[],System.Int32) */, { 9466, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::EnsureCapacity(System.Int32) */, { 9467, 114, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::GetEnumerator() */, { 9468, 114, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9469, 114, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerable.GetEnumerator() */, { 9470, 114, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::IndexOf(T) */, { 9471, 114, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.IndexOf(System.Object) */, { 9472, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Insert(System.Int32,T) */, { 9473, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9474, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9475, 114, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Remove(T) */, { 9476, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.Remove(System.Object) */, { 9477, 114, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::RemoveAll(System.Predicate`1<T>) */, { 9478, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::RemoveAt(System.Int32) */, { 9479, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::RemoveRange(System.Int32,System.Int32) */, { 9480, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Reverse() */, { 9481, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Reverse(System.Int32,System.Int32) */, { 9482, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9483, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9484, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Sort(System.Comparison`1<T>) */, { 9485, 114, -1 } /* T[] System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::ToArray() */, { 9486, 114, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.cctor() */, { 9444, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::.ctor(System.Int32) */, { 9445, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9446, 24, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32>::get_Capacity() */, { 9447, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::set_Capacity(System.Int32) */, { 9448, 24, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32>::get_Count() */, { 9449, 24, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9450, 24, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32>::System.Collections.IList.get_IsReadOnly() */, { 9451, 24, -1 } /* T System.Collections.Generic.List`1<System.Int32>::get_Item(System.Int32) */, { 9452, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::set_Item(System.Int32,T) */, { 9453, 24, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32>::IsCompatibleObject(System.Object) */, { 9454, 24, -1 } /* System.Object System.Collections.Generic.List`1<System.Int32>::System.Collections.IList.get_Item(System.Int32) */, { 9455, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9457, 24, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32>::System.Collections.IList.Add(System.Object) */, { 9458, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9459, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::Clear() */, { 9460, 24, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32>::Contains(T) */, { 9461, 24, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32>::System.Collections.IList.Contains(System.Object) */, { 9462, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::CopyTo(T[]) */, { 9463, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9464, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9465, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::CopyTo(T[],System.Int32) */, { 9466, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::EnsureCapacity(System.Int32) */, { 9468, 24, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<System.Int32>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9469, 24, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<System.Int32>::System.Collections.IEnumerable.GetEnumerator() */, { 9470, 24, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32>::IndexOf(T) */, { 9471, 24, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32>::System.Collections.IList.IndexOf(System.Object) */, { 9472, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::Insert(System.Int32,T) */, { 9473, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9474, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9476, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::System.Collections.IList.Remove(System.Object) */, { 9477, 24, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32>::RemoveAll(System.Predicate`1<T>) */, { 9478, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::RemoveAt(System.Int32) */, { 9479, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::RemoveRange(System.Int32,System.Int32) */, { 9480, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::Reverse() */, { 9481, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::Reverse(System.Int32,System.Int32) */, { 9482, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9483, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9484, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::Sort(System.Comparison`1<T>) */, { 9486, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::.cctor() */, { 9443, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::.ctor() */, { 9444, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::.ctor(System.Int32) */, { 9445, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9446, 90, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32Enum>::get_Capacity() */, { 9447, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::set_Capacity(System.Int32) */, { 9448, 90, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32Enum>::get_Count() */, { 9449, 90, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9450, 90, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.IList.get_IsReadOnly() */, { 9451, 90, -1 } /* T System.Collections.Generic.List`1<System.Int32Enum>::get_Item(System.Int32) */, { 9452, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::set_Item(System.Int32,T) */, { 9453, 90, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32Enum>::IsCompatibleObject(System.Object) */, { 9454, 90, -1 } /* System.Object System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.IList.get_Item(System.Int32) */, { 9455, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9456, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::Add(T) */, { 9457, 90, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.IList.Add(System.Object) */, { 9458, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9459, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::Clear() */, { 9460, 90, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32Enum>::Contains(T) */, { 9461, 90, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.IList.Contains(System.Object) */, { 9462, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::CopyTo(T[]) */, { 9463, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9464, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9465, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::CopyTo(T[],System.Int32) */, { 9466, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::EnsureCapacity(System.Int32) */, { 9467, 90, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Int32Enum>::GetEnumerator() */, { 9468, 90, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9469, 90, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.IEnumerable.GetEnumerator() */, { 9470, 90, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32Enum>::IndexOf(T) */, { 9471, 90, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.IList.IndexOf(System.Object) */, { 9472, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::Insert(System.Int32,T) */, { 9473, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9474, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9475, 90, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32Enum>::Remove(T) */, { 9476, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.IList.Remove(System.Object) */, { 9477, 90, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32Enum>::RemoveAll(System.Predicate`1<T>) */, { 9478, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::RemoveAt(System.Int32) */, { 9479, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::RemoveRange(System.Int32,System.Int32) */, { 9480, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::Reverse() */, { 9481, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::Reverse(System.Int32,System.Int32) */, { 9482, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9483, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9484, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::Sort(System.Comparison`1<T>) */, { 9485, 90, -1 } /* T[] System.Collections.Generic.List`1<System.Int32Enum>::ToArray() */, { 9486, 90, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::.cctor() */, { 9444, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Int32) */, { 9445, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9446, 311, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Capacity() */, { 9447, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::set_Capacity(System.Int32) */, { 9449, 311, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9450, 311, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.get_IsReadOnly() */, { 9452, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::set_Item(System.Int32,T) */, { 9453, 311, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::IsCompatibleObject(System.Object) */, { 9454, 311, -1 } /* System.Object System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.get_Item(System.Int32) */, { 9455, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9456, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Add(T) */, { 9457, 311, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.Add(System.Object) */, { 9458, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9459, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Clear() */, { 9460, 311, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Contains(T) */, { 9461, 311, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.Contains(System.Object) */, { 9462, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::CopyTo(T[]) */, { 9463, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9464, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9465, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::CopyTo(T[],System.Int32) */, { 9466, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::EnsureCapacity(System.Int32) */, { 9467, 311, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::GetEnumerator() */, { 9468, 311, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9469, 311, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerable.GetEnumerator() */, { 9470, 311, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::IndexOf(T) */, { 9471, 311, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.IndexOf(System.Object) */, { 9472, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Insert(System.Int32,T) */, { 9473, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9474, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9475, 311, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Remove(T) */, { 9476, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.Remove(System.Object) */, { 9477, 311, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::RemoveAll(System.Predicate`1<T>) */, { 9478, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::RemoveAt(System.Int32) */, { 9479, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::RemoveRange(System.Int32,System.Int32) */, { 9480, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Reverse() */, { 9481, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Reverse(System.Int32,System.Int32) */, { 9482, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9483, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9484, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Sort(System.Comparison`1<T>) */, { 9485, 311, -1 } /* T[] System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::ToArray() */, { 9486, 311, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.cctor() */, { 9443, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor() */, { 9445, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9446, 329, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::get_Capacity() */, { 9447, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::set_Capacity(System.Int32) */, { 9448, 329, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::get_Count() */, { 9449, 329, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9450, 329, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IList.get_IsReadOnly() */, { 9451, 329, -1 } /* T System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::get_Item(System.Int32) */, { 9452, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::set_Item(System.Int32,T) */, { 9453, 329, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::IsCompatibleObject(System.Object) */, { 9454, 329, -1 } /* System.Object System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IList.get_Item(System.Int32) */, { 9455, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9457, 329, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IList.Add(System.Object) */, { 9460, 329, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Contains(T) */, { 9461, 329, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IList.Contains(System.Object) */, { 9462, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::CopyTo(T[]) */, { 9463, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9464, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9465, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::CopyTo(T[],System.Int32) */, { 9466, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::EnsureCapacity(System.Int32) */, { 9468, 329, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9469, 329, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEnumerable.GetEnumerator() */, { 9470, 329, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::IndexOf(T) */, { 9471, 329, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IList.IndexOf(System.Object) */, { 9472, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Insert(System.Int32,T) */, { 9473, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9474, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9475, 329, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Remove(T) */, { 9476, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IList.Remove(System.Object) */, { 9477, 329, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::RemoveAll(System.Predicate`1<T>) */, { 9478, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::RemoveAt(System.Int32) */, { 9479, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::RemoveRange(System.Int32,System.Int32) */, { 9480, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Reverse() */, { 9481, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Reverse(System.Int32,System.Int32) */, { 9482, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9483, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9484, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Sort(System.Comparison`1<T>) */, { 9485, 329, -1 } /* T[] System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::ToArray() */, { 9486, 329, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.cctor() */, { 9354, 47, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.Boolean>::Compare(T,T) */, { 9355, 47, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<System.Boolean>::Equals(System.Object) */, { 9356, 47, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.Boolean>::GetHashCode() */, { 9357, 47, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<System.Boolean>::.ctor() */, { 9354, 114, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Compare(T,T) */, { 9355, 114, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Equals(System.Object) */, { 9356, 114, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::GetHashCode() */, { 9357, 114, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor() */, { 9354, 24, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.Int32>::Compare(T,T) */, { 9355, 24, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<System.Int32>::Equals(System.Object) */, { 9356, 24, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.Int32>::GetHashCode() */, { 9357, 24, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<System.Int32>::.ctor() */, { 9354, 90, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.Int32Enum>::Compare(T,T) */, { 9355, 90, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<System.Int32Enum>::Equals(System.Object) */, { 9356, 90, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.Int32Enum>::GetHashCode() */, { 9357, 90, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<System.Int32Enum>::.ctor() */, { 9354, 82, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.UInt64>::Compare(T,T) */, { 9355, 82, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<System.UInt64>::Equals(System.Object) */, { 9356, 82, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.UInt64>::GetHashCode() */, { 9357, 82, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<System.UInt64>::.ctor() */, { 9354, 311, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Compare(T,T) */, { 9355, 311, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Equals(System.Object) */, { 9356, 311, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::GetHashCode() */, { 9357, 311, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor() */, { 9354, 329, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Compare(T,T) */, { 9355, 329, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Equals(System.Object) */, { 9356, 329, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::GetHashCode() */, { 9357, 329, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor() */, { 9381, 47, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>::Equals(T,T) */, { 9382, 47, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>::GetHashCode(T) */, { 9383, 47, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9384, 47, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9385, 47, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>::Equals(System.Object) */, { 9386, 47, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>::GetHashCode() */, { 9387, 47, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>::.ctor() */, { 9381, 8, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>::Equals(T,T) */, { 9382, 8, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>::GetHashCode(T) */, { 9383, 8, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9384, 8, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9385, 8, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>::Equals(System.Object) */, { 9386, 8, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>::GetHashCode() */, { 9387, 8, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>::.ctor() */, { 9381, 114, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Equals(T,T) */, { 9382, 114, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::GetHashCode(T) */, { 9383, 114, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9384, 114, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9385, 114, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Equals(System.Object) */, { 9386, 114, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::GetHashCode() */, { 9387, 114, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor() */, { 9381, 24, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>::Equals(T,T) */, { 9382, 24, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>::GetHashCode(T) */, { 9383, 24, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9384, 24, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9385, 24, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>::Equals(System.Object) */, { 9386, 24, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>::GetHashCode() */, { 9387, 24, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>::.ctor() */, { 9381, 90, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>::Equals(T,T) */, { 9382, 90, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>::GetHashCode(T) */, { 9383, 90, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9384, 90, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9385, 90, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>::Equals(System.Object) */, { 9386, 90, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>::GetHashCode() */, { 9387, 90, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>::.ctor() */, { 9381, 161, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>::Equals(T,T) */, { 9382, 161, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>::GetHashCode(T) */, { 9383, 161, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9384, 161, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9385, 161, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>::Equals(System.Object) */, { 9386, 161, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>::GetHashCode() */, { 9387, 161, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>::.ctor() */, { 9381, 311, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Equals(T,T) */, { 9382, 311, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::GetHashCode(T) */, { 9383, 311, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9384, 311, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9385, 311, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Equals(System.Object) */, { 9386, 311, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::GetHashCode() */, { 9387, 311, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor() */, { 9381, 329, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Equals(T,T) */, { 9382, 329, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::GetHashCode(T) */, { 9383, 329, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9384, 329, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9385, 329, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Equals(System.Object) */, { 9386, 329, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::GetHashCode() */, { 9387, 329, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor() */, { 9176, 167, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9177, 167, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::get_Count() */, { 9178, 167, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::get_Item(System.Int32) */, { 9179, 167, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::Contains(T) */, { 9180, 167, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::CopyTo(T[],System.Int32) */, { 9181, 167, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::GetEnumerator() */, { 9182, 167, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::IndexOf(T) */, { 9183, 167, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9184, 167, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9185, 167, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9186, 167, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9187, 167, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.ICollection<T>.Clear() */, { 9188, 167, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9189, 167, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9190, 167, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9191, 167, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerable.GetEnumerator() */, { 9192, 167, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9193, 167, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.get_IsReadOnly() */, { 9194, 167, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.get_Item(System.Int32) */, { 9195, 167, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9196, 167, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.Add(System.Object) */, { 9197, 167, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.Clear() */, { 9198, 167, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::IsCompatibleObject(System.Object) */, { 9199, 167, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.Contains(System.Object) */, { 9200, 167, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.IndexOf(System.Object) */, { 9201, 167, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9202, 167, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.Remove(System.Object) */, { 9203, 167, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.RemoveAt(System.Int32) */, { 9177, 166, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::get_Count() */, { 9178, 166, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::get_Item(System.Int32) */, { 9179, 166, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::Contains(T) */, { 9180, 166, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::CopyTo(T[],System.Int32) */, { 9181, 166, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::GetEnumerator() */, { 9182, 166, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::IndexOf(T) */, { 9183, 166, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9184, 166, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9185, 166, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9186, 166, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9187, 166, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.ICollection<T>.Clear() */, { 9188, 166, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9189, 166, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9190, 166, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9191, 166, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerable.GetEnumerator() */, { 9192, 166, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9193, 166, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.get_IsReadOnly() */, { 9194, 166, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.get_Item(System.Int32) */, { 9195, 166, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9196, 166, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.Add(System.Object) */, { 9197, 166, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.Clear() */, { 9198, 166, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::IsCompatibleObject(System.Object) */, { 9199, 166, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.Contains(System.Object) */, { 9200, 166, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.IndexOf(System.Object) */, { 9201, 166, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9202, 166, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.Remove(System.Object) */, { 9203, 166, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.RemoveAt(System.Int32) */, { 1018, 114, -1 } /* System.Void System.Comparison`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Object,System.IntPtr) */, { 1019, 114, -1 } /* System.Int32 System.Comparison`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Invoke(T,T) */, { 1020, 114, -1 } /* System.IAsyncResult System.Comparison`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1021, 114, -1 } /* System.Int32 System.Comparison`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::EndInvoke(System.IAsyncResult) */, { 1018, 24, -1 } /* System.Void System.Comparison`1<System.Int32>::.ctor(System.Object,System.IntPtr) */, { 1019, 24, -1 } /* System.Int32 System.Comparison`1<System.Int32>::Invoke(T,T) */, { 1020, 24, -1 } /* System.IAsyncResult System.Comparison`1<System.Int32>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1021, 24, -1 } /* System.Int32 System.Comparison`1<System.Int32>::EndInvoke(System.IAsyncResult) */, { 1018, 90, -1 } /* System.Void System.Comparison`1<System.Int32Enum>::.ctor(System.Object,System.IntPtr) */, { 1019, 90, -1 } /* System.Int32 System.Comparison`1<System.Int32Enum>::Invoke(T,T) */, { 1020, 90, -1 } /* System.IAsyncResult System.Comparison`1<System.Int32Enum>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1021, 90, -1 } /* System.Int32 System.Comparison`1<System.Int32Enum>::EndInvoke(System.IAsyncResult) */, { 1018, 82, -1 } /* System.Void System.Comparison`1<System.UInt64>::.ctor(System.Object,System.IntPtr) */, { 1019, 82, -1 } /* System.Int32 System.Comparison`1<System.UInt64>::Invoke(T,T) */, { 1020, 82, -1 } /* System.IAsyncResult System.Comparison`1<System.UInt64>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1021, 82, -1 } /* System.Int32 System.Comparison`1<System.UInt64>::EndInvoke(System.IAsyncResult) */, { 1018, 311, -1 } /* System.Void System.Comparison`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Object,System.IntPtr) */, { 1019, 311, -1 } /* System.Int32 System.Comparison`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Invoke(T,T) */, { 1020, 311, -1 } /* System.IAsyncResult System.Comparison`1<UnityEngine.BeforeRenderHelper/OrderBlock>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1021, 311, -1 } /* System.Int32 System.Comparison`1<UnityEngine.BeforeRenderHelper/OrderBlock>::EndInvoke(System.IAsyncResult) */, { 1018, 329, -1 } /* System.Void System.Comparison`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor(System.Object,System.IntPtr) */, { 1019, 329, -1 } /* System.Int32 System.Comparison`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Invoke(T,T) */, { 1020, 329, -1 } /* System.IAsyncResult System.Comparison`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1021, 329, -1 } /* System.Int32 System.Comparison`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::EndInvoke(System.IAsyncResult) */, { 3190, 8, -1 } /* System.Void System.EmptyArray`1<System.Byte>::.cctor() */, { 3190, 9, -1 } /* System.Void System.EmptyArray`1<System.Char>::.cctor() */, { 3190, 167, -1 } /* System.Void System.EmptyArray`1<System.Reflection.CustomAttributeNamedArgument>::.cctor() */, { 3190, 166, -1 } /* System.Void System.EmptyArray`1<System.Reflection.CustomAttributeTypedArgument>::.cctor() */, { 3190, 64, -1 } /* System.Void System.EmptyArray`1<System.Reflection.ParameterModifier>::.cctor() */, { 998, 47, -1 } /* System.Void System.Func`1<System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 1000, 47, -1 } /* System.IAsyncResult System.Func`1<System.Boolean>::BeginInvoke(System.AsyncCallback,System.Object) */, { 1001, 47, -1 } /* TResult System.Func`1<System.Boolean>::EndInvoke(System.IAsyncResult) */, { 999, 24, -1 } /* TResult System.Func`1<System.Int32>::Invoke() */, { 1000, 24, -1 } /* System.IAsyncResult System.Func`1<System.Int32>::BeginInvoke(System.AsyncCallback,System.Object) */, { 1001, 24, -1 } /* TResult System.Func`1<System.Int32>::EndInvoke(System.IAsyncResult) */, { 998, 288, -1 } /* System.Void System.Func`1<System.Nullable`1<System.Int32>>::.ctor(System.Object,System.IntPtr) */, { 999, 288, -1 } /* TResult System.Func`1<System.Nullable`1<System.Int32>>::Invoke() */, { 1000, 288, -1 } /* System.IAsyncResult System.Func`1<System.Nullable`1<System.Int32>>::BeginInvoke(System.AsyncCallback,System.Object) */, { 1001, 288, -1 } /* TResult System.Func`1<System.Nullable`1<System.Int32>>::EndInvoke(System.IAsyncResult) */, { 998, 180, -1 } /* System.Void System.Func`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Object,System.IntPtr) */, { 999, 180, -1 } /* TResult System.Func`1<System.Threading.Tasks.VoidTaskResult>::Invoke() */, { 1000, 180, -1 } /* System.IAsyncResult System.Func`1<System.Threading.Tasks.VoidTaskResult>::BeginInvoke(System.AsyncCallback,System.Object) */, { 1001, 180, -1 } /* TResult System.Func`1<System.Threading.Tasks.VoidTaskResult>::EndInvoke(System.IAsyncResult) */, { 1002, 234, -1 } /* System.Void System.Func`2<System.Object,System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 1003, 234, -1 } /* TResult System.Func`2<System.Object,System.Boolean>::Invoke(T) */, { 1004, 234, -1 } /* System.IAsyncResult System.Func`2<System.Object,System.Boolean>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1005, 234, -1 } /* TResult System.Func`2<System.Object,System.Boolean>::EndInvoke(System.IAsyncResult) */, { 1003, 179, -1 } /* TResult System.Func`2<System.Object,System.Int32>::Invoke(T) */, { 1004, 179, -1 } /* System.IAsyncResult System.Func`2<System.Object,System.Int32>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1005, 179, -1 } /* TResult System.Func`2<System.Object,System.Int32>::EndInvoke(System.IAsyncResult) */, { 1002, 290, -1 } /* System.Void System.Func`2<System.Object,System.Nullable`1<System.Int32>>::.ctor(System.Object,System.IntPtr) */, { 1003, 290, -1 } /* TResult System.Func`2<System.Object,System.Nullable`1<System.Int32>>::Invoke(T) */, { 1004, 290, -1 } /* System.IAsyncResult System.Func`2<System.Object,System.Nullable`1<System.Int32>>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1005, 290, -1 } /* TResult System.Func`2<System.Object,System.Nullable`1<System.Int32>>::EndInvoke(System.IAsyncResult) */, { 1002, 182, -1 } /* System.Void System.Func`2<System.Object,System.Threading.Tasks.VoidTaskResult>::.ctor(System.Object,System.IntPtr) */, { 1003, 182, -1 } /* TResult System.Func`2<System.Object,System.Threading.Tasks.VoidTaskResult>::Invoke(T) */, { 1004, 182, -1 } /* System.IAsyncResult System.Func`2<System.Object,System.Threading.Tasks.VoidTaskResult>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1005, 182, -1 } /* TResult System.Func`2<System.Object,System.Threading.Tasks.VoidTaskResult>::EndInvoke(System.IAsyncResult) */, { 1006, 187, -1 } /* System.Void System.Func`3<System.Object,System.Object,System.Int32>::.ctor(System.Object,System.IntPtr) */, { 1007, 187, -1 } /* TResult System.Func`3<System.Object,System.Object,System.Int32>::Invoke(T1,T2) */, { 1008, 187, -1 } /* System.IAsyncResult System.Func`3<System.Object,System.Object,System.Int32>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object) */, { 1009, 187, -1 } /* TResult System.Func`3<System.Object,System.Object,System.Int32>::EndInvoke(System.IAsyncResult) */, { 1006, 194, -1 } /* System.Void System.Func`3<System.Object,System.Object,System.Threading.Tasks.VoidTaskResult>::.ctor(System.Object,System.IntPtr) */, { 1007, 194, -1 } /* TResult System.Func`3<System.Object,System.Object,System.Threading.Tasks.VoidTaskResult>::Invoke(T1,T2) */, { 1008, 194, -1 } /* System.IAsyncResult System.Func`3<System.Object,System.Object,System.Threading.Tasks.VoidTaskResult>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object) */, { 1009, 194, -1 } /* TResult System.Func`3<System.Object,System.Object,System.Threading.Tasks.VoidTaskResult>::EndInvoke(System.IAsyncResult) */, { 1010, 132, -1 } /* System.Void System.Func`4<System.Object,System.Object,System.Boolean,System.Object>::.ctor(System.Object,System.IntPtr) */, { 1011, 132, -1 } /* TResult System.Func`4<System.Object,System.Object,System.Boolean,System.Object>::Invoke(T1,T2,T3) */, { 1012, 132, -1 } /* System.IAsyncResult System.Func`4<System.Object,System.Object,System.Boolean,System.Object>::BeginInvoke(T1,T2,T3,System.AsyncCallback,System.Object) */, { 1013, 132, -1 } /* TResult System.Func`4<System.Object,System.Object,System.Boolean,System.Object>::EndInvoke(System.IAsyncResult) */, { 1014, 185, -1 } /* System.Void System.Func`5<System.Object,System.IO.Stream/ReadWriteParameters,System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 1015, 185, -1 } /* TResult System.Func`5<System.Object,System.IO.Stream/ReadWriteParameters,System.Object,System.Object,System.Object>::Invoke(T1,T2,T3,T4) */, { 1016, 185, -1 } /* System.IAsyncResult System.Func`5<System.Object,System.IO.Stream/ReadWriteParameters,System.Object,System.Object,System.Object>::BeginInvoke(T1,T2,T3,T4,System.AsyncCallback,System.Object) */, { 1017, 185, -1 } /* TResult System.Func`5<System.Object,System.IO.Stream/ReadWriteParameters,System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 9443, 173, -1 } /* System.Void System.Collections.Generic.List`1<System.IO.Directory/SearchData>::.ctor() */, { 9456, 173, -1 } /* System.Void System.Collections.Generic.List`1<System.IO.Directory/SearchData>::Add(T) */, { 9451, 173, -1 } /* T System.Collections.Generic.List`1<System.IO.Directory/SearchData>::get_Item(System.Int32) */, { 9478, 173, -1 } /* System.Void System.Collections.Generic.List`1<System.IO.Directory/SearchData>::RemoveAt(System.Int32) */, { 9448, 173, -1 } /* System.Int32 System.Collections.Generic.List`1<System.IO.Directory/SearchData>::get_Count() */, { 9472, 173, -1 } /* System.Void System.Collections.Generic.List`1<System.IO.Directory/SearchData>::Insert(System.Int32,T) */, { 3256, 47, -1 } /* System.Boolean System.Nullable`1<System.Boolean>::Equals(System.Object) */, { 3257, 47, -1 } /* System.Boolean System.Nullable`1<System.Boolean>::Equals(System.Nullable`1<T>) */, { 3258, 47, -1 } /* System.Int32 System.Nullable`1<System.Boolean>::GetHashCode() */, { 3259, 47, -1 } /* T System.Nullable`1<System.Boolean>::GetValueOrDefault() */, { 3260, 47, -1 } /* System.String System.Nullable`1<System.Boolean>::ToString() */, { 3261, 47, -1 } /* System.Object System.Nullable`1<System.Boolean>::Box(System.Nullable`1<T>) */, { 3262, 47, -1 } /* System.Nullable`1<T> System.Nullable`1<System.Boolean>::Unbox(System.Object) */, { 3256, 24, -1 } /* System.Boolean System.Nullable`1<System.Int32>::Equals(System.Object) */, { 3257, 24, -1 } /* System.Boolean System.Nullable`1<System.Int32>::Equals(System.Nullable`1<T>) */, { 3258, 24, -1 } /* System.Int32 System.Nullable`1<System.Int32>::GetHashCode() */, { 3260, 24, -1 } /* System.String System.Nullable`1<System.Int32>::ToString() */, { 3261, 24, -1 } /* System.Object System.Nullable`1<System.Int32>::Box(System.Nullable`1<T>) */, { 3262, 24, -1 } /* System.Nullable`1<T> System.Nullable`1<System.Int32>::Unbox(System.Object) */, { 1026, 114, -1 } /* System.Void System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Object,System.IntPtr) */, { 1027, 114, -1 } /* System.Boolean System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Invoke(T) */, { 1028, 114, -1 } /* System.IAsyncResult System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1029, 114, -1 } /* System.Boolean System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::EndInvoke(System.IAsyncResult) */, { 1026, 24, -1 } /* System.Void System.Predicate`1<System.Int32>::.ctor(System.Object,System.IntPtr) */, { 1027, 24, -1 } /* System.Boolean System.Predicate`1<System.Int32>::Invoke(T) */, { 1028, 24, -1 } /* System.IAsyncResult System.Predicate`1<System.Int32>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1029, 24, -1 } /* System.Boolean System.Predicate`1<System.Int32>::EndInvoke(System.IAsyncResult) */, { 1026, 90, -1 } /* System.Void System.Predicate`1<System.Int32Enum>::.ctor(System.Object,System.IntPtr) */, { 1027, 90, -1 } /* System.Boolean System.Predicate`1<System.Int32Enum>::Invoke(T) */, { 1028, 90, -1 } /* System.IAsyncResult System.Predicate`1<System.Int32Enum>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1029, 90, -1 } /* System.Boolean System.Predicate`1<System.Int32Enum>::EndInvoke(System.IAsyncResult) */, { 1026, 311, -1 } /* System.Void System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Object,System.IntPtr) */, { 1027, 311, -1 } /* System.Boolean System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Invoke(T) */, { 1028, 311, -1 } /* System.IAsyncResult System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1029, 311, -1 } /* System.Boolean System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>::EndInvoke(System.IAsyncResult) */, { 1026, 329, -1 } /* System.Void System.Predicate`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor(System.Object,System.IntPtr) */, { 1027, 329, -1 } /* System.Boolean System.Predicate`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Invoke(T) */, { 1028, 329, -1 } /* System.IAsyncResult System.Predicate`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1029, 329, -1 } /* System.Boolean System.Predicate`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::EndInvoke(System.IAsyncResult) */, { 8727, 47, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetResult(System.Threading.Tasks.Task`1<TResult>) */, { 8729, 47, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::GetTaskForResult(TResult) */, { 8730, 47, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::.cctor() */, { 8727, 24, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetResult(System.Threading.Tasks.Task`1<TResult>) */, { 8729, 24, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::GetTaskForResult(TResult) */, { 8730, 24, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::.cctor() */, { 8727, 288, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::SetResult(System.Threading.Tasks.Task`1<TResult>) */, { 8729, 288, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::GetTaskForResult(TResult) */, { 8730, 288, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::.cctor() */, { 8721, 180, -1 } /* System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::Create() */, { 8726, 180, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetResult(TResult) */, { 8729, 180, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::GetTaskForResult(TResult) */, { 8730, 180, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::.cctor() */, { 8784, 47, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 8786, 47, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::UnsafeOnCompleted(System.Action) */, { 8784, 24, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 8786, 24, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::UnsafeOnCompleted(System.Action) */, { 8784, 288, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 8786, 288, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>::UnsafeOnCompleted(System.Action) */, { 8784, 180, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 8785, 180, -1 } /* System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::get_IsCompleted() */, { 8786, 180, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::UnsafeOnCompleted(System.Action) */, { 8787, 180, -1 } /* TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::GetResult() */, { 8782, 47, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 8782, 24, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 8782, 288, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Nullable`1<System.Int32>>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 8782, 180, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 8783, 180, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>::GetAwaiter() */, { 8772, 47, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>) */, { 8773, 47, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::UnsafeOnCompleted(System.Action) */, { 8772, 24, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>) */, { 8773, 24, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::UnsafeOnCompleted(System.Action) */, { 8772, 288, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Nullable`1<System.Int32>>::.ctor(System.Threading.Tasks.Task`1<TResult>) */, { 8773, 288, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Nullable`1<System.Int32>>::UnsafeOnCompleted(System.Action) */, { 8774, 288, -1 } /* TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Nullable`1<System.Int32>>::GetResult() */, { 8772, 180, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>) */, { 8773, 180, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::UnsafeOnCompleted(System.Action) */, { 8774, 180, -1 } /* TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::GetResult() */, { 6579, 121, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Int32,System.Object>::.ctor(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>) */, { 6580, 121, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Int32,System.Object>::CompleteFromAsyncResult(System.IAsyncResult) */, { 6581, 121, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Int32,System.Object>::Complete(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>,System.IAsyncResult,System.Boolean) */, { 6582, 121, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Int32,System.Object>::.cctor() */, { 6579, 196, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Threading.Tasks.VoidTaskResult,System.Object>::.ctor(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>) */, { 6580, 196, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Threading.Tasks.VoidTaskResult,System.Object>::CompleteFromAsyncResult(System.IAsyncResult) */, { 6581, 196, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Threading.Tasks.VoidTaskResult,System.Object>::Complete(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>,System.IAsyncResult,System.Boolean) */, { 6582, 196, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Threading.Tasks.VoidTaskResult,System.Object>::.cctor() */, { 6576, 47, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<System.Boolean>::.ctor() */, { 6577, 47, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<System.Boolean>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) */, { 6576, 24, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<System.Int32>::.ctor() */, { 6577, 24, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<System.Int32>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) */, { 6576, 288, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<System.Nullable`1<System.Int32>>::.ctor() */, { 6577, 288, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<System.Nullable`1<System.Int32>>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) */, { 6576, 180, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>::.ctor() */, { 6577, 180, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) */, { 6573, 47, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<System.Boolean>::.cctor() */, { 6574, 47, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<System.Boolean>::.ctor() */, { 6575, 47, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1/<>c<System.Boolean>::<.cctor>b__64_0(System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>) */, { 6563, 175, -1 } /* TResult System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>::get_Result() */, { 6573, 24, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<System.Int32>::.cctor() */, { 6574, 24, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<System.Int32>::.ctor() */, { 6575, 24, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1/<>c<System.Int32>::<.cctor>b__64_0(System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>) */, { 6573, 288, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<System.Nullable`1<System.Int32>>::.cctor() */, { 6574, 288, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<System.Nullable`1<System.Int32>>::.ctor() */, { 6575, 288, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1/<>c<System.Nullable`1<System.Int32>>::<.cctor>b__64_0(System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>) */, { 6573, 180, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<System.Threading.Tasks.VoidTaskResult>::.cctor() */, { 6574, 180, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<System.Threading.Tasks.VoidTaskResult>::.ctor() */, { 6575, 180, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1/<>c<System.Threading.Tasks.VoidTaskResult>::<.cctor>b__64_0(System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>) */, { 6554, 47, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(TResult) */, { 6556, 47, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions) */, { 6557, 47, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6558, 47, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6559, 47, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6560, 47, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Boolean>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6562, 47, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Boolean>::DangerousSetResult(TResult) */, { 6563, 47, -1 } /* TResult System.Threading.Tasks.Task`1<System.Boolean>::get_Result() */, { 6564, 47, -1 } /* TResult System.Threading.Tasks.Task`1<System.Boolean>::get_ResultOnSuccess() */, { 6565, 47, -1 } /* TResult System.Threading.Tasks.Task`1<System.Boolean>::GetResultCore(System.Boolean) */, { 6566, 47, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Boolean>::TrySetException(System.Object) */, { 6567, 47, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Boolean>::TrySetCanceled(System.Threading.CancellationToken) */, { 6568, 47, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Boolean>::TrySetCanceled(System.Threading.CancellationToken,System.Object) */, { 6569, 47, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Boolean>::InnerInvoke() */, { 6572, 47, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Boolean>::.cctor() */, { 6553, 24, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor() */, { 6554, 24, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(TResult) */, { 6557, 24, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6558, 24, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6559, 24, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6560, 24, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Int32>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6561, 24, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Int32>::TrySetResult(TResult) */, { 6562, 24, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Int32>::DangerousSetResult(TResult) */, { 6564, 24, -1 } /* TResult System.Threading.Tasks.Task`1<System.Int32>::get_ResultOnSuccess() */, { 6565, 24, -1 } /* TResult System.Threading.Tasks.Task`1<System.Int32>::GetResultCore(System.Boolean) */, { 6566, 24, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Int32>::TrySetException(System.Object) */, { 6567, 24, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Int32>::TrySetCanceled(System.Threading.CancellationToken) */, { 6568, 24, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Int32>::TrySetCanceled(System.Threading.CancellationToken,System.Object) */, { 6569, 24, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Int32>::InnerInvoke() */, { 6572, 24, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Int32>::.cctor() */, { 6553, 288, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.ctor() */, { 6554, 288, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.ctor(TResult) */, { 6555, 288, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) */, { 6556, 288, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions) */, { 6557, 288, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6558, 288, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6559, 288, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6560, 288, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6561, 288, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::TrySetResult(TResult) */, { 6562, 288, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::DangerousSetResult(TResult) */, { 6563, 288, -1 } /* TResult System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::get_Result() */, { 6564, 288, -1 } /* TResult System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::get_ResultOnSuccess() */, { 6565, 288, -1 } /* TResult System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::GetResultCore(System.Boolean) */, { 6566, 288, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::TrySetException(System.Object) */, { 6567, 288, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::TrySetCanceled(System.Threading.CancellationToken) */, { 6568, 288, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::TrySetCanceled(System.Threading.CancellationToken,System.Object) */, { 6569, 288, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::InnerInvoke() */, { 6570, 288, -1 } /* System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::GetAwaiter() */, { 6572, 288, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.cctor() */, { 6554, 180, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(TResult) */, { 6555, 180, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) */, { 6556, 180, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions) */, { 6557, 180, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6558, 180, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6559, 180, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6560, 180, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6562, 180, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::DangerousSetResult(TResult) */, { 6563, 180, -1 } /* TResult System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::get_Result() */, { 6564, 180, -1 } /* TResult System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::get_ResultOnSuccess() */, { 6565, 180, -1 } /* TResult System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::GetResultCore(System.Boolean) */, { 6566, 180, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::TrySetException(System.Object) */, { 6568, 180, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::TrySetCanceled(System.Threading.CancellationToken,System.Object) */, { 6569, 180, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::InnerInvoke() */, { 6570, 180, -1 } /* System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::GetAwaiter() */, { 6571, 180, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::ConfigureAwait(System.Boolean) */, { 6572, 180, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.cctor() */, { 896, 203, -1 } /* T1 System.Tuple`2<System.Object,System.Char>::get_Item1() */, { 897, 203, -1 } /* T2 System.Tuple`2<System.Object,System.Char>::get_Item2() */, { 898, 203, -1 } /* System.Void System.Tuple`2<System.Object,System.Char>::.ctor(T1,T2) */, { 899, 203, -1 } /* System.Boolean System.Tuple`2<System.Object,System.Char>::Equals(System.Object) */, { 900, 203, -1 } /* System.Boolean System.Tuple`2<System.Object,System.Char>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) */, { 901, 203, -1 } /* System.Int32 System.Tuple`2<System.Object,System.Char>::System.IComparable.CompareTo(System.Object) */, { 902, 203, -1 } /* System.Int32 System.Tuple`2<System.Object,System.Char>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) */, { 903, 203, -1 } /* System.Int32 System.Tuple`2<System.Object,System.Char>::GetHashCode() */, { 904, 203, -1 } /* System.Int32 System.Tuple`2<System.Object,System.Char>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) */, { 905, 203, -1 } /* System.String System.Tuple`2<System.Object,System.Char>::ToString() */, { 906, 203, -1 } /* System.String System.Tuple`2<System.Object,System.Char>::System.ITupleInternal.ToString(System.Text.StringBuilder) */, { 919, 201, -1 } /* T1 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item1() */, { 920, 201, -1 } /* T2 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item2() */, { 921, 201, -1 } /* T3 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item3() */, { 922, 201, -1 } /* T4 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item4() */, { 923, 201, -1 } /* System.Boolean System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::Equals(System.Object) */, { 924, 201, -1 } /* System.Boolean System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) */, { 925, 201, -1 } /* System.Int32 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::System.IComparable.CompareTo(System.Object) */, { 926, 201, -1 } /* System.Int32 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) */, { 927, 201, -1 } /* System.Int32 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::GetHashCode() */, { 928, 201, -1 } /* System.Int32 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) */, { 929, 201, -1 } /* System.String System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::ToString() */, { 930, 201, -1 } /* System.String System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::System.ITupleInternal.ToString(System.Text.StringBuilder) */, { 692, 291, -1 } /* System.Boolean System.ValueTuple`2<System.Int32,System.Boolean>::Equals(System.Object) */, { 693, 291, -1 } /* System.Boolean System.ValueTuple`2<System.Int32,System.Boolean>::Equals(System.ValueTuple`2<T1,T2>) */, { 694, 291, -1 } /* System.Boolean System.ValueTuple`2<System.Int32,System.Boolean>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) */, { 695, 291, -1 } /* System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::System.IComparable.CompareTo(System.Object) */, { 696, 291, -1 } /* System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::CompareTo(System.ValueTuple`2<T1,T2>) */, { 697, 291, -1 } /* System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) */, { 698, 291, -1 } /* System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::GetHashCode() */, { 699, 291, -1 } /* System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) */, { 700, 291, -1 } /* System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::GetHashCodeCore(System.Collections.IEqualityComparer) */, { 701, 291, -1 } /* System.String System.ValueTuple`2<System.Int32,System.Boolean>::ToString() */, { 10987, 47, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Boolean>::Invoke(System.Object[]) */, { 10988, 47, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Boolean>::Invoke(T) */, { 10987, 24, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Int32>::Invoke(System.Object[]) */, { 10988, 24, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Int32>::Invoke(T) */, { 10987, 109, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Single>::Invoke(System.Object[]) */, { 10988, 109, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Single>::Invoke(T) */, { 10970, 47, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Boolean>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 10971, 47, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Boolean>::.ctor(UnityEngine.Events.UnityAction`1<T1>) */, { 10972, 47, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Boolean>::add_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 10973, 47, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Boolean>::remove_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 10974, 47, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Boolean>::Invoke(System.Object[]) */, { 10975, 47, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Boolean>::Invoke(T1) */, { 10976, 47, -1 } /* System.Boolean UnityEngine.Events.InvokableCall`1<System.Boolean>::Find(System.Object,System.Reflection.MethodInfo) */, { 10970, 24, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Int32>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 10971, 24, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Int32>::.ctor(UnityEngine.Events.UnityAction`1<T1>) */, { 10972, 24, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Int32>::add_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 10973, 24, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Int32>::remove_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 10974, 24, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Int32>::Invoke(System.Object[]) */, { 10975, 24, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Int32>::Invoke(T1) */, { 10976, 24, -1 } /* System.Boolean UnityEngine.Events.InvokableCall`1<System.Int32>::Find(System.Object,System.Reflection.MethodInfo) */, { 10970, 109, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Single>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 10971, 109, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Single>::.ctor(UnityEngine.Events.UnityAction`1<T1>) */, { 10972, 109, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Single>::add_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 10973, 109, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Single>::remove_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 10974, 109, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Single>::Invoke(System.Object[]) */, { 10975, 109, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Single>::Invoke(T1) */, { 10976, 109, -1 } /* System.Boolean UnityEngine.Events.InvokableCall`1<System.Single>::Find(System.Object,System.Reflection.MethodInfo) */, { 11026, 47, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 11027, 47, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Boolean>::Invoke(T0) */, { 11028, 47, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`1<System.Boolean>::BeginInvoke(T0,System.AsyncCallback,System.Object) */, { 11029, 47, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Boolean>::EndInvoke(System.IAsyncResult) */, { 11026, 24, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Int32>::.ctor(System.Object,System.IntPtr) */, { 11028, 24, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`1<System.Int32>::BeginInvoke(T0,System.AsyncCallback,System.Object) */, { 11029, 24, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Int32>::EndInvoke(System.IAsyncResult) */, { 11026, 109, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Single>::.ctor(System.Object,System.IntPtr) */, { 11027, 109, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Single>::Invoke(T0) */, { 11028, 109, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`1<System.Single>::BeginInvoke(T0,System.AsyncCallback,System.Object) */, { 11029, 109, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Single>::EndInvoke(System.IAsyncResult) */, { 11026, 344, -1 } /* System.Void UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>::.ctor(System.Object,System.IntPtr) */, { 11028, 344, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>::BeginInvoke(T0,System.AsyncCallback,System.Object) */, { 11029, 344, -1 } /* System.Void UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>::EndInvoke(System.IAsyncResult) */, { 11037, 343, -1 } /* System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum>::.ctor(System.Object,System.IntPtr) */, { 11038, 343, -1 } /* System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum>::Invoke(T0,T1) */, { 11039, 343, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum>::BeginInvoke(T0,T1,System.AsyncCallback,System.Object) */, { 11040, 343, -1 } /* System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum>::EndInvoke(System.IAsyncResult) */, { 11037, 345, -1 } /* System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>::.ctor(System.Object,System.IntPtr) */, { 11039, 345, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>::BeginInvoke(T0,T1,System.AsyncCallback,System.Object) */, { 11040, 345, -1 } /* System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>::EndInvoke(System.IAsyncResult) */, { 11032, 24, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Int32>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>) */, { 11033, 24, -1 } /* System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<System.Int32>::FindMethod_Impl(System.String,System.Object) */, { 11034, 24, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Int32>::GetDelegate(System.Object,System.Reflection.MethodInfo) */, { 11035, 24, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Int32>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>) */, { 693, 404, -1 } /* System.Boolean System.ValueTuple`2<T1,T2>::Equals(System.ValueTuple`2<T1,T2>) */, { 9358, 406, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<T1>::get_Default() */, { 9360, 406, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T1>::Equals(T,T) */, { 9358, 407, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<T2>::get_Default() */, { 9360, 407, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T2>::Equals(T,T) */, { 696, 404, -1 } /* System.Int32 System.ValueTuple`2<T1,T2>::CompareTo(System.ValueTuple`2<T1,T2>) */, { 9341, 406, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<T1>::get_Default() */, { 9343, 406, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<T1>::Compare(T,T) */, { 9341, 407, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<T2>::get_Default() */, { 9343, 407, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<T2>::Compare(T,T) */, { 700, 404, -1 } /* System.Int32 System.ValueTuple`2<T1,T2>::GetHashCodeCore(System.Collections.IEqualityComparer) */, { 9176, 408, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<T>::.ctor(System.Collections.Generic.IList`1<T>) */, { 1023, 409, -1 } /* TOutput System.Converter`2<TInput,TOutput>::Invoke(TInput) */, { 983, 410, -1 } /* System.Void System.Action`1<T>::Invoke(T) */, { 745, -1, 411 } /* System.Int32 System.Array::BinarySearch<T>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 745, -1, 412 } /* System.Int32 System.Array::BinarySearch<T>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 745, -1, 413 } /* System.Int32 System.Array::BinarySearch<T>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9267, 414, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<T>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 850, -1, 415 } /* System.Int32 System.Array::IndexOfImpl<T>(T[],T,System.Int32,System.Int32) */, { 751, -1, 416 } /* System.Int32 System.Array::IndexOf<T>(T[],T,System.Int32,System.Int32) */, { 850, -1, 417 } /* System.Int32 System.Array::IndexOfImpl<T>(T[],T,System.Int32,System.Int32) */, { 757, -1, 418 } /* System.Int32 System.Array::LastIndexOf<T>(T[],T,System.Int32,System.Int32) */, { 757, -1, 419 } /* System.Int32 System.Array::LastIndexOf<T>(T[],T,System.Int32,System.Int32) */, { 851, -1, 420 } /* System.Int32 System.Array::LastIndexOfImpl<T>(T[],T,System.Int32,System.Int32) */, { 761, -1, 421 } /* System.Void System.Array::Reverse<T>(T[],System.Int32,System.Int32) */, { 777, -1, 422 } /* System.Void System.Array::Sort<T>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 777, -1, 423 } /* System.Void System.Array::Sort<T>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 777, -1, 424 } /* System.Void System.Array::Sort<T>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9266, 425, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<T>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9268, 426, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<T>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 782, -1, 427 } /* System.Void System.Array::Sort<TKey,TValue>(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 782, -1, 428 } /* System.Void System.Array::Sort<TKey,TValue>(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 782, -1, 430 } /* System.Void System.Array::Sort<TKey,TValue>(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 777, -1, 431 } /* System.Void System.Array::Sort<TKey>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9278, 432, -1 } /* System.Collections.Generic.ArraySortHelper`2<TKey,TValue> System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::get_Default() */, { 9280, 432, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::Sort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 788, -1, 433 } /* System.Int32 System.Array::FindIndex<T>(T[],System.Predicate`1<T>) */, { 1027, 434, -1 } /* System.Boolean System.Predicate`1<T>::Invoke(T) */, { 848, -1, 435 } /* T[] System.Array::Empty<T>() */, { 1027, 435, -1 } /* System.Boolean System.Predicate`1<T>::Invoke(T) */, { 704, -1, 435 } /* System.Void System.Array::Resize<T>(T[]&,System.Int32) */, { 790, -1, 436 } /* System.Int32 System.Array::FindIndex<T>(T[],System.Int32,System.Int32,System.Predicate`1<T>) */, { 790, -1, 437 } /* System.Int32 System.Array::FindIndex<T>(T[],System.Int32,System.Int32,System.Predicate`1<T>) */, { 1027, 438, -1 } /* System.Boolean System.Predicate`1<T>::Invoke(T) */, { 1027, 439, -1 } /* System.Boolean System.Predicate`1<T>::Invoke(T) */, { 794, -1, 440 } /* System.Int32 System.Array::FindLastIndex<T>(T[],System.Int32,System.Int32,System.Predicate`1<T>) */, { 794, -1, 441 } /* System.Int32 System.Array::FindLastIndex<T>(T[],System.Int32,System.Int32,System.Predicate`1<T>) */, { 1027, 442, -1 } /* System.Boolean System.Predicate`1<T>::Invoke(T) */, { 1027, 443, -1 } /* System.Boolean System.Predicate`1<T>::Invoke(T) */, { 860, 444, -1 } /* System.Void System.Array/InternalEnumerator`1<T>::.ctor(System.Array) */, { 9358, 446, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<T>::get_Default() */, { 9362, 446, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9358, 447, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<T>::get_Default() */, { 9363, 447, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 811, -1, 448 } /* T System.Array::InternalArray__get_Item<T>(System.Int32) */, { 863, 448, -1 } /* T System.Array/InternalEnumerator`1<T>::get_Current() */, { 867, 449, -1 } /* T System.Array/EmptyInternalEnumerator`1<T>::get_Current() */, { 869, 449, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<T>::.ctor() */, { 898, 450, -1 } /* System.Void System.Tuple`2<T1,T2>::.ctor(T1,T2) */, { 704, -1, 454 } /* System.Void System.Array::Resize<T>(T[]&,System.Int32) */, { 3257, 456, -1 } /* System.Boolean System.Nullable`1<T>::Equals(System.Nullable`1<T>) */, { 3253, 456, -1 } /* System.Void System.Nullable`1<T>::.ctor(T) */, { 4696, 457, -1 } /* R System.Reflection.MonoProperty/Getter`2<T,R>::Invoke(T) */, { 4700, 458, -1 } /* R System.Reflection.MonoProperty/StaticGetter`1<R>::Invoke() */, { 5001, 459, -1 } /* System.Void System.IO.Iterator`1<TSource>::Dispose(System.Boolean) */, { 4999, 459, -1 } /* System.IO.Iterator`1<TSource> System.IO.Iterator`1<TSource>::Clone() */, { 4998, 459, -1 } /* TSource System.IO.Iterator`1<TSource>::get_Current() */, { 5002, 459, -1 } /* System.Collections.Generic.IEnumerator`1<TSource> System.IO.Iterator`1<TSource>::GetEnumerator() */, { 4997, 460, -1 } /* System.Void System.IO.Iterator`1<TSource>::.ctor() */, { 5016, 460, -1 } /* System.String System.IO.FileSystemEnumerableIterator`1<TSource>::NormalizeSearchPattern(System.String) */, { 5018, 460, -1 } /* System.String System.IO.FileSystemEnumerableIterator`1<TSource>::GetFullSearchString(System.String,System.String) */, { 5017, 460, -1 } /* System.String System.IO.FileSystemEnumerableIterator`1<TSource>::GetNormalizedSearchCriteria(System.String,System.String) */, { 5007, 460, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<TSource>::CommonInit() */, { 5013, 460, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<TSource>::HandleError(System.Int32,System.String) */, { 5012, 460, -1 } /* System.IO.SearchResult System.IO.FileSystemEnumerableIterator`1<TSource>::CreateSearchResult(System.IO.Directory/SearchData,Microsoft.Win32.Win32Native/WIN32_FIND_DATA) */, { 5019, 460, -1 } /* System.Boolean System.IO.SearchResultHandler`1<TSource>::IsResultIncluded(System.IO.SearchResult) */, { 5020, 460, -1 } /* TSource System.IO.SearchResultHandler`1<TSource>::CreateObject(System.IO.SearchResult) */, { 5008, 460, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<TSource>::.ctor(System.String,System.String,System.String,System.String,System.IO.SearchOption,System.IO.SearchResultHandler`1<TSource>,System.Boolean) */, { 5001, 460, -1 } /* System.Void System.IO.Iterator`1<TSource>::Dispose(System.Boolean) */, { 5014, 460, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<TSource>::AddSearchableDirsToStack(System.IO.Directory/SearchData) */, { 5015, 460, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<TSource>::DoDemand(System.String) */, { 5000, 460, -1 } /* System.Void System.IO.Iterator`1<TSource>::Dispose() */, { 1027, 461, -1 } /* System.Boolean System.Predicate`1<T>::Invoke(T) */, { 6160, 462, -1 } /* System.Void System.Threading.SparselyPopulatedArrayFragment`1<T>::.ctor(System.Int32) */, { 6163, 462, -1 } /* System.Int32 System.Threading.SparselyPopulatedArrayFragment`1<T>::get_Length() */, { 6500, -1, 462 } /* T System.Threading.Interlocked::CompareExchange<T>(T&,T,T) */, { 6157, 462, -1 } /* System.Void System.Threading.SparselyPopulatedArrayAddInfo`1<T>::.ctor(System.Threading.SparselyPopulatedArrayFragment`1<T>,System.Int32) */, { 6161, 462, -1 } /* System.Void System.Threading.SparselyPopulatedArrayFragment`1<T>::.ctor(System.Int32,System.Threading.SparselyPopulatedArrayFragment`1<T>) */, { 6500, -1, 463 } /* T System.Threading.Interlocked::CompareExchange<System.Threading.SparselyPopulatedArrayFragment`1<T>>(T&,T,T) */, { 6161, 465, -1 } /* System.Void System.Threading.SparselyPopulatedArrayFragment`1<T>::.ctor(System.Int32,System.Threading.SparselyPopulatedArrayFragment`1<T>) */, { 6545, -1, 465 } /* T System.Threading.Volatile::Read<T>(T&) */, { 6500, -1, 465 } /* T System.Threading.Interlocked::CompareExchange<T>(T&,T,T) */, { 6545, -1, 466 } /* T System.Threading.Volatile::Read<T>(T&) */, { 6167, -1, 466 } /* T System.Threading.LazyInitializer::EnsureInitializedCore<T>(T&,System.Func`1<T>) */, { 999, 467, -1 } /* TResult System.Func`1<T>::Invoke() */, { 6500, -1, 467 } /* T System.Threading.Interlocked::CompareExchange<T>(T&,T,T) */, { 6240, 469, -1 } /* System.Void System.Threading.AsyncLocalValueChangedArgs`1<T>::.ctor(T,T,System.Boolean) */, { 983, 468, -1 } /* System.Void System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<T>>::Invoke(T) */, { 6237, 470, -1 } /* System.Void System.Threading.AsyncLocalValueChangedArgs`1<T>::set_PreviousValue(T) */, { 6238, 470, -1 } /* System.Void System.Threading.AsyncLocalValueChangedArgs`1<T>::set_CurrentValue(T) */, { 6239, 470, -1 } /* System.Void System.Threading.AsyncLocalValueChangedArgs`1<T>::set_ThreadContextChanged(System.Boolean) */, { 6546, -1, 471 } /* System.Void System.Threading.Volatile::Write<T>(T&,T) */, { 6574, 475, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<TResult>::.ctor() */, { 6559, 473, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6558, 473, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6557, 473, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6561, 473, -1 } /* System.Boolean System.Threading.Tasks.Task`1<TResult>::TrySetResult(TResult) */, { 6565, 473, -1 } /* TResult System.Threading.Tasks.Task`1<TResult>::GetResultCore(System.Boolean) */, { 6568, 473, -1 } /* System.Boolean System.Threading.Tasks.Task`1<TResult>::TrySetCanceled(System.Threading.CancellationToken,System.Object) */, { 999, 473, -1 } /* TResult System.Func`1<TResult>::Invoke() */, { 1003, 472, -1 } /* TResult System.Func`2<System.Object,TResult>::Invoke(T) */, { 8772, 473, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<TResult>::.ctor(System.Threading.Tasks.Task`1<TResult>) */, { 8782, 473, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 6576, 473, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<TResult>::.ctor() */, { 6575, 473, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1/<>c<TResult>::<.cctor>b__64_0(System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>) */, { 1002, 474, -1 } /* System.Void System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>>::.ctor(System.Object,System.IntPtr) */, { 6579, 479, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<TResult,TInstance>::.ctor(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>) */, { 1015, 476, -1 } /* TResult System.Func`5<TInstance,TArgs,System.AsyncCallback,System.Object,System.IAsyncResult>::Invoke(T1,T2,T3,T4) */, { 6581, 479, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<TResult,TInstance>::Complete(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>,System.IAsyncResult,System.Boolean) */, { 6553, 480, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor() */, { 6581, 482, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<TResult,TInstance>::Complete(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>,System.IAsyncResult,System.Boolean) */, { 1007, 481, -1 } /* TResult System.Func`3<TInstance,System.IAsyncResult,TResult>::Invoke(T1,T2) */, { 6561, 480, -1 } /* System.Boolean System.Threading.Tasks.Task`1<TResult>::TrySetResult(TResult) */, { 6562, 480, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::DangerousSetResult(TResult) */, { 6568, 480, -1 } /* System.Boolean System.Threading.Tasks.Task`1<TResult>::TrySetCanceled(System.Threading.CancellationToken,System.Object) */, { 6566, 480, -1 } /* System.Boolean System.Threading.Tasks.Task`1<TResult>::TrySetException(System.Object) */, { 6580, 482, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<TResult,TInstance>::CompleteFromAsyncResult(System.IAsyncResult) */, { 6577, 478, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<TResult>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) */, { 6554, 483, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor(TResult) */, { 6553, 484, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor() */, { 6566, 484, -1 } /* System.Boolean System.Threading.Tasks.Task`1<TResult>::TrySetException(System.Object) */, { 6555, 485, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) */, { 6553, 486, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor() */, { 6568, 486, -1 } /* System.Boolean System.Threading.Tasks.Task`1<TResult>::TrySetCanceled(System.Threading.CancellationToken,System.Object) */, { 6560, 487, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<TResult>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6570, 488, -1 } /* System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<TResult>::GetAwaiter() */, { 8774, 488, -1 } /* TResult System.Runtime.CompilerServices.TaskAwaiter`1<TResult>::GetResult() */, { 8724, 180, 489 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<TAwaiter,TStateMachine>(!!0&,!!1&) */, { 8725, 490, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult>::get_Task() */, { 6553, 490, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor() */, { 8729, 490, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult>::GetTaskForResult(TResult) */, { 6561, 490, -1 } /* System.Boolean System.Threading.Tasks.Task`1<TResult>::TrySetResult(TResult) */, { 8726, 490, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult>::SetResult(TResult) */, { 6566, 490, -1 } /* System.Boolean System.Threading.Tasks.Task`1<TResult>::TrySetException(System.Object) */, { 6568, 490, -1 } /* System.Boolean System.Threading.Tasks.Task`1<TResult>::TrySetCanceled(System.Threading.CancellationToken,System.Object) */, { 8813, -1, 491 } /* T System.Runtime.CompilerServices.JitHelpers::UnsafeCast<System.Threading.Tasks.Task`1<TResult>>(System.Object) */, { 6554, 490, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor(TResult) */, { 8732, -1, 490 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskCache::CreateCacheableTask<TResult>(TResult) */, { 6555, 492, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) */, { 6564, 493, -1 } /* TResult System.Threading.Tasks.Task`1<TResult>::get_ResultOnSuccess() */, { 6564, 495, -1 } /* TResult System.Threading.Tasks.Task`1<TResult>::get_ResultOnSuccess() */, { 8784, 494, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 855, -1, 496 } /* R System.Array::UnsafeMov<System.Object,T>(S) */, { 855, -1, 497 } /* R System.Array::UnsafeMov<T,System.Int32>(S) */, { 855, -1, 498 } /* R System.Array::UnsafeMov<T,System.Int64>(S) */, { 8819, 499, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<TKey,TValue>::RecomputeSize() */, { 8818, 499, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<TKey,TValue>::RehashWithoutResize() */, { 8820, 499, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<TKey,TValue>::Rehash() */, { 9177, 500, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<T>::get_Count() */, { 9198, 500, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<T>::IsCompatibleObject(System.Object) */, { 9179, 500, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<T>::Contains(T) */, { 9182, 500, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<T>::IndexOf(T) */, { 9219, 506, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::GetEnumerator() */, { 9261, 506, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<TKey,TValue>::get_Key() */, { 9262, 506, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<TKey,TValue>::get_Value() */, { 9247, 506, -1 } /* System.Collections.DictionaryEntry System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator<TKey,TValue>::get_Entry() */, { 6545, -1, 510 } /* T System.Threading.Volatile::Read<System.Collections.Concurrent.ConcurrentDictionary`2/Node<TKey,TValue>>(T&) */, { 9260, 508, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<TKey,TValue>::.ctor(TKey,TValue) */, { 9239, 502, -1 } /* System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::get_DefaultConcurrencyLevel() */, { 9209, 502, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::.ctor(System.Int32,System.Int32,System.Boolean,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9244, 502, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2/Tables<TKey,TValue>::.ctor(System.Collections.Concurrent.ConcurrentDictionary`2/Node<TKey,TValue>[],System.Object[],System.Int32[]) */, { 9358, 501, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<TKey>::get_Default() */, { 9222, 502, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::ThrowKeyNullException() */, { 9220, 502, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::TryAddInternal(TKey,System.Int32,TValue,System.Boolean,System.Boolean,TValue&) */, { 9238, 502, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::GetBucketAndLockNo(System.Int32,System.Int32&,System.Int32&,System.Int32,System.Int32) */, { 9358, 511, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<TValue>::get_Default() */, { 9360, 511, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<TValue>::Equals(T,T) */, { 6546, -1, 512 } /* System.Void System.Threading.Volatile::Write<System.Collections.Concurrent.ConcurrentDictionary`2/Node<TKey,TValue>>(T&,T) */, { 9213, 502, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::TryGetValueInternal(TKey,System.Int32,TValue&) */, { 9237, 502, -1 } /* System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::GetBucket(System.Int32,System.Int32) */, { 6545, -1, 512 } /* T System.Threading.Volatile::Read<System.Collections.Concurrent.ConcurrentDictionary`2/Node<TKey,TValue>>(T&) */, { 9240, 502, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::AcquireAllLocks(System.Int32&) */, { 9242, 502, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::ReleaseLocks(System.Int32,System.Int32) */, { 9216, 502, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::CopyToPairs(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9260, 502, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<TKey,TValue>::.ctor(TKey,TValue) */, { 9252, 502, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2/<GetEnumerator>d__32<TKey,TValue>::.ctor(System.Int32) */, { 9245, 502, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2/Node<TKey,TValue>::.ctor(TKey,TValue,System.Int32,System.Collections.Concurrent.ConcurrentDictionary`2/Node<TKey,TValue>) */, { 9236, 502, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::GrowTable(System.Collections.Concurrent.ConcurrentDictionary`2/Tables<TKey,TValue>) */, { 9224, 502, -1 } /* System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::GetCountInternal() */, { 1003, 502, -1 } /* TResult System.Func`2<TKey,TValue>::Invoke(T) */, { 9210, 502, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::TryAdd(TKey,TValue) */, { 9261, 502, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<TKey,TValue>::get_Key() */, { 9262, 502, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<TKey,TValue>::get_Value() */, { 9212, 502, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::TryGetValue(TKey,TValue&) */, { 9211, 502, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::TryRemoveInternal(TKey,TValue&,System.Boolean,TValue) */, { 9219, 502, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::GetEnumerator() */, { 9246, 502, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator<TKey,TValue>::.ctor(System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>) */, { 9221, 502, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::set_Item(TKey,TValue) */, { 9217, 502, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::CopyToEntries(System.Collections.DictionaryEntry[],System.Int32) */, { 9218, 502, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::CopyToObjects(System.Object[],System.Int32) */, { 9241, 502, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::AcquireLocks(System.Int32,System.Int32,System.Int32&) */, { 9207, 502, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::IsValueWriteAtomic() */, { 9258, -1, 513 } /* TValue System.Collections.Generic.CollectionExtensions::GetValueOrDefault<TKey,TValue>(System.Collections.Generic.IReadOnlyDictionary`2<TKey,TValue>,TKey,TValue) */, { 9261, 515, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<TKey,TValue>::get_Key() */, { 9262, 515, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<TKey,TValue>::get_Value() */, { 9341, 516, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<T>::get_Default() */, { 9426, 516, -1 } /* System.Int32 System.Collections.Generic.IComparer`1<T>::Compare(T,T) */, { 1018, 516, -1 } /* System.Void System.Comparison`1<T>::.ctor(System.Object,System.IntPtr) */, { 9272, 516, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<T>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9269, 516, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<T>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 1019, 516, -1 } /* System.Int32 System.Comparison`1<T>::Invoke(T,T) */, { 9273, 516, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<T>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9270, 516, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<T>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9277, 516, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<T>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9275, 516, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<T>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9274, 516, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<T>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9271, 516, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<T>::Swap(T[],System.Int32,System.Int32) */, { 9276, 516, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<T>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9279, 517, -1 } /* System.Collections.Generic.ArraySortHelper`2<TKey,TValue> System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::CreateArraySortHelper() */, { 9289, 517, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::.ctor() */, { 9341, 518, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<TKey>::get_Default() */, { 9283, 517, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::IntrospectiveSort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9284, 517, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::IntroSort(TKey[],TValue[],System.Int32,System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9281, 517, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::SwapIfGreaterWithItems(TKey[],TValue[],System.Collections.Generic.IComparer`1<TKey>,System.Int32,System.Int32) */, { 9288, 517, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::InsertionSort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9286, 517, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::Heapsort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9285, 517, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::PickPivotAndPartition(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9282, 517, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::Swap(TKey[],TValue[],System.Int32,System.Int32) */, { 9287, 517, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::DownHeap(TKey[],TValue[],System.Int32,System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9260, 522, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<TKey,TValue>::.ctor(TKey,TValue) */, { 9261, 522, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<TKey,TValue>::get_Key() */, { 9262, 522, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<TKey,TValue>::get_Value() */, { 9293, 520, -1 } /* System.Void System.Collections.Generic.Dictionary`2<TKey,TValue>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9309, 520, -1 } /* System.Void System.Collections.Generic.Dictionary`2<TKey,TValue>::Initialize(System.Int32) */, { 9358, 519, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<TKey>::get_Default() */, { 9308, 520, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<TKey,TValue>::FindEntry(TKey) */, { 9310, 520, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<TKey,TValue>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) */, { 9261, 520, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<TKey,TValue>::get_Key() */, { 9262, 520, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<TKey,TValue>::get_Value() */, { 9298, 520, -1 } /* System.Void System.Collections.Generic.Dictionary`2<TKey,TValue>::Add(TKey,TValue) */, { 9358, 524, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<TValue>::get_Default() */, { 9360, 524, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<TValue>::Equals(T,T) */, { 9314, 520, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<TKey,TValue>::Remove(TKey) */, { 9295, 520, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<TKey,TValue>::get_Count() */, { 9260, 520, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<TKey,TValue>::.ctor(TKey,TValue) */, { 9324, 520, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) */, { 9304, 520, -1 } /* System.Void System.Collections.Generic.Dictionary`2<TKey,TValue>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9312, 520, -1 } /* System.Void System.Collections.Generic.Dictionary`2<TKey,TValue>::Resize() */, { 9313, 520, -1 } /* System.Void System.Collections.Generic.Dictionary`2<TKey,TValue>::Resize(System.Int32,System.Boolean) */, { 9322, 520, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<TKey,TValue>::IsCompatibleKey(System.Object) */, { 9297, 520, -1 } /* System.Void System.Collections.Generic.Dictionary`2<TKey,TValue>::set_Item(TKey,TValue) */, { 9342, 525, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<T>::CreateComparer() */, { 9357, 525, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<T>::.ctor() */, { 9343, 525, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<T>::Compare(T,T) */, { 1962, 526, -1 } /* System.Int32 System.IComparable`1<T>::CompareTo(T) */, { 9345, 526, -1 } /* System.Void System.Collections.Generic.Comparer`1<T>::.ctor() */, { 3254, 528, -1 } /* System.Boolean System.Nullable`1<T>::get_HasValue() */, { 1962, 528, -1 } /* System.Int32 System.IComparable`1<T>::CompareTo(T) */, { 9345, 527, -1 } /* System.Void System.Collections.Generic.Comparer`1<System.Nullable`1<T>>::.ctor() */, { 9345, 529, -1 } /* System.Void System.Collections.Generic.Comparer`1<T>::.ctor() */, { 9359, 530, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<T>::CreateComparer() */, { 9387, 530, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<T>::.ctor() */, { 9360, 530, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T>::Equals(T,T) */, { 9361, 530, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::GetHashCode(T) */, { 1982, 531, -1 } /* System.Boolean System.IEquatable`1<T>::Equals(T) */, { 9366, 531, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<T>::.ctor() */, { 3254, 533, -1 } /* System.Boolean System.Nullable`1<T>::get_HasValue() */, { 1982, 533, -1 } /* System.Boolean System.IEquatable`1<T>::Equals(T) */, { 9366, 532, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<System.Nullable`1<T>>::.ctor() */, { 9366, 534, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<T>::.ctor() */, { 8814, -1, 535 } /* System.Int32 System.Runtime.CompilerServices.JitHelpers::UnsafeEnumCast<T>(T) */, { 9366, 535, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<T>::.ctor() */, { 9397, 536, -1 } /* System.Void System.Collections.Generic.EnumEqualityComparer`1<T>::.ctor() */, { 8814, -1, 536 } /* System.Int32 System.Runtime.CompilerServices.JitHelpers::UnsafeEnumCast<T>(T) */, { 9397, 537, -1 } /* System.Void System.Collections.Generic.EnumEqualityComparer`1<T>::.ctor() */, { 8814, -1, 537 } /* System.Int32 System.Runtime.CompilerServices.JitHelpers::UnsafeEnumCast<T>(T) */, { 8815, -1, 538 } /* System.Int64 System.Runtime.CompilerServices.JitHelpers::UnsafeEnumCastLong<T>(T) */, { 9366, 538, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<T>::.ctor() */, { 9490, 549, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<T>::MoveNextRare() */, { 9491, 549, -1 } /* T System.Collections.Generic.List`1/Enumerator<T>::get_Current() */, { 9456, 548, -1 } /* System.Void System.Collections.Generic.List`1<T>::Add(T) */, { 853, -1, 548 } /* T System.Array::UnsafeLoad<T>(T[],System.Int32) */, { 9451, 548, -1 } /* T System.Collections.Generic.List`1<T>::get_Item(System.Int32) */, { 679, -1, 548 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<T>(System.Object,System.ExceptionArgument) */, { 9452, 548, -1 } /* System.Void System.Collections.Generic.List`1<T>::set_Item(System.Int32,T) */, { 9466, 548, -1 } /* System.Void System.Collections.Generic.List`1<T>::EnsureCapacity(System.Int32) */, { 9448, 548, -1 } /* System.Int32 System.Collections.Generic.List`1<T>::get_Count() */, { 9474, 548, -1 } /* System.Void System.Collections.Generic.List`1<T>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9358, 548, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<T>::get_Default() */, { 9360, 548, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T>::Equals(T,T) */, { 9453, 548, -1 } /* System.Boolean System.Collections.Generic.List`1<T>::IsCompatibleObject(System.Object) */, { 9460, 548, -1 } /* System.Boolean System.Collections.Generic.List`1<T>::Contains(T) */, { 9465, 548, -1 } /* System.Void System.Collections.Generic.List`1<T>::CopyTo(T[],System.Int32) */, { 9447, 548, -1 } /* System.Void System.Collections.Generic.List`1<T>::set_Capacity(System.Int32) */, { 9487, 548, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<T>::.ctor(System.Collections.Generic.List`1<T>) */, { 751, -1, 548 } /* System.Int32 System.Array::IndexOf<T>(T[],T,System.Int32,System.Int32) */, { 9470, 548, -1 } /* System.Int32 System.Collections.Generic.List`1<T>::IndexOf(T) */, { 9472, 548, -1 } /* System.Void System.Collections.Generic.List`1<T>::Insert(System.Int32,T) */, { 9478, 548, -1 } /* System.Void System.Collections.Generic.List`1<T>::RemoveAt(System.Int32) */, { 9475, 548, -1 } /* System.Boolean System.Collections.Generic.List`1<T>::Remove(T) */, { 1027, 548, -1 } /* System.Boolean System.Predicate`1<T>::Invoke(T) */, { 9481, 548, -1 } /* System.Void System.Collections.Generic.List`1<T>::Reverse(System.Int32,System.Int32) */, { 761, -1, 548 } /* System.Void System.Array::Reverse<T>(T[],System.Int32,System.Int32) */, { 9483, 548, -1 } /* System.Void System.Collections.Generic.List`1<T>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 777, -1, 548 } /* System.Void System.Array::Sort<T>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9268, 548, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<T>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 10409, 551, -1 } /* System.Int32 System.Collections.Generic.LinkedList`1<T>::get_Count() */, { 10415, 550, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<T>::AddLast(T) */, { 10442, 550, -1 } /* System.Void System.Collections.Generic.LinkedListNode`1<T>::.ctor(System.Collections.Generic.LinkedList`1<T>,T) */, { 10428, 550, -1 } /* System.Void System.Collections.Generic.LinkedList`1<T>::InternalInsertNodeToEmptyList(System.Collections.Generic.LinkedListNode`1<T>) */, { 10427, 550, -1 } /* System.Void System.Collections.Generic.LinkedList`1<T>::InternalInsertNodeBefore(System.Collections.Generic.LinkedListNode`1<T>,System.Collections.Generic.LinkedListNode`1<T>) */, { 10430, 550, -1 } /* System.Void System.Collections.Generic.LinkedList`1<T>::ValidateNewNode(System.Collections.Generic.LinkedListNode`1<T>) */, { 10443, 550, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1<T>::get_Next() */, { 10445, 550, -1 } /* System.Void System.Collections.Generic.LinkedListNode`1<T>::Invalidate() */, { 10419, 550, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<T>::Find(T) */, { 10409, 550, -1 } /* System.Int32 System.Collections.Generic.LinkedList`1<T>::get_Count() */, { 9358, 550, -1 } /* System.Collections.Generic.EqualityComparer`1<!0> System.Collections.Generic.EqualityComparer`1<T>::get_Default() */, { 9360, 550, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T>::Equals(!0,!0) */, { 10434, 550, -1 } /* System.Void System.Collections.Generic.LinkedList`1/Enumerator<T>::.ctor(System.Collections.Generic.LinkedList`1<T>) */, { 10420, 550, -1 } /* System.Collections.Generic.LinkedList`1/Enumerator<T> System.Collections.Generic.LinkedList`1<T>::GetEnumerator() */, { 10429, 550, -1 } /* System.Void System.Collections.Generic.LinkedList`1<T>::InternalRemoveNode(System.Collections.Generic.LinkedListNode`1<T>) */, { 10431, 550, -1 } /* System.Void System.Collections.Generic.LinkedList`1<T>::ValidateNode(System.Collections.Generic.LinkedListNode`1<T>) */, { 10418, 550, -1 } /* System.Void System.Collections.Generic.LinkedList`1<T>::CopyTo(T[],System.Int32) */, { 10478, 553, -1 } /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/Iterator`1<TSource>::Where(System.Func`2<TSource,System.Boolean>) */, { 10486, 553, -1 } /* System.Void System.Linq.Enumerable/WhereArrayIterator`1<TSource>::.ctor(TSource[],System.Func`2<TSource,System.Boolean>) */, { 10490, 553, -1 } /* System.Void System.Linq.Enumerable/WhereListIterator`1<TSource>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10481, 553, -1 } /* System.Void System.Linq.Enumerable/WhereEnumerableIterator`1<TSource>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10494, 556, -1 } /* System.Void System.Linq.Enumerable/<>c__DisplayClass6_0`1<TSource>::.ctor() */, { 10495, 556, -1 } /* System.Boolean System.Linq.Enumerable/<>c__DisplayClass6_0`1<TSource>::<CombinePredicates>b__0(TSource) */, { 1002, 555, -1 } /* System.Void System.Func`2<TSource,System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 1003, 558, -1 } /* !1 System.Func`2<TSource,System.Boolean>::Invoke(!0) */, { 1003, 561, -1 } /* !1 System.Func`2<TSource,System.Boolean>::Invoke(!0) */, { 10474, 562, -1 } /* System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/Iterator`1<TSource>::Clone() */, { 10473, 562, -1 } /* TSource System.Linq.Enumerable/Iterator`1<TSource>::get_Current() */, { 10476, 562, -1 } /* System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/Iterator`1<TSource>::GetEnumerator() */, { 10472, 564, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TSource>::.ctor() */, { 10481, 564, -1 } /* System.Void System.Linq.Enumerable/WhereEnumerableIterator`1<TSource>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10475, 564, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TSource>::Dispose() */, { 1003, 565, -1 } /* !1 System.Func`2<TSource,System.Boolean>::Invoke(!0) */, { 10468, -1, 564 } /* System.Func`2<TSource,System.Boolean> System.Linq.Enumerable::CombinePredicates<TSource>(System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,System.Boolean>) */, { 10472, 566, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TSource>::.ctor() */, { 10486, 566, -1 } /* System.Void System.Linq.Enumerable/WhereArrayIterator`1<TSource>::.ctor(TSource[],System.Func`2<TSource,System.Boolean>) */, { 1003, 567, -1 } /* !1 System.Func`2<TSource,System.Boolean>::Invoke(!0) */, { 10475, 566, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TSource>::Dispose() */, { 10468, -1, 566 } /* System.Func`2<TSource,System.Boolean> System.Linq.Enumerable::CombinePredicates<TSource>(System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,System.Boolean>) */, { 10472, 568, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TSource>::.ctor() */, { 10490, 568, -1 } /* System.Void System.Linq.Enumerable/WhereListIterator`1<TSource>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 9467, 568, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<TSource>::GetEnumerator() */, { 9491, 568, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<TSource>::get_Current() */, { 1003, 569, -1 } /* !1 System.Func`2<TSource,System.Boolean>::Invoke(!0) */, { 9489, 568, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<TSource>::MoveNext() */, { 10475, 568, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TSource>::Dispose() */, { 10468, -1, 568 } /* System.Func`2<TSource,System.Boolean> System.Linq.Enumerable::CombinePredicates<TSource>(System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,System.Boolean>) */, { 1003, 570, -1 } /* !1 System.Func`2<TSource,System.Boolean>::Invoke(!0) */, { 10972, 571, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<T1>::add_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 6500, -1, 572 } /* !!0 System.Threading.Interlocked::CompareExchange<UnityEngine.Events.UnityAction`1<T1>>(!!0&,!!0,!!0) */, { 10961, -1, 571 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<T1>(System.Object) */, { 11027, 571, -1 } /* System.Void UnityEngine.Events.UnityAction`1<T1>::Invoke(T0) */, { 10961, -1, 574 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<T1>(System.Object) */, { 10961, -1, 575 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<T2>(System.Object) */, { 11038, 573, -1 } /* System.Void UnityEngine.Events.UnityAction`2<T1,T2>::Invoke(T0,T1) */, { 10961, -1, 577 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<T1>(System.Object) */, { 10961, -1, 578 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<T2>(System.Object) */, { 10961, -1, 579 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<T3>(System.Object) */, { 11045, 576, -1 } /* System.Void UnityEngine.Events.UnityAction`3<T1,T2,T3>::Invoke(T0,T1,T2) */, { 10961, -1, 581 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<T1>(System.Object) */, { 10961, -1, 582 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<T2>(System.Object) */, { 10961, -1, 583 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<T3>(System.Object) */, { 10961, -1, 584 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<T4>(System.Object) */, { 11052, 580, -1 } /* System.Void UnityEngine.Events.UnityAction`4<T1,T2,T3,T4>::Invoke(T0,T1,T2,T3) */, { 10970, 585, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<T>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 10975, 585, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<T>::Invoke(T1) */, { 11035, 586, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<T0>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>) */, { 10970, 586, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<T0>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 10971, 586, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<T0>::.ctor(UnityEngine.Events.UnityAction`1<T1>) */, { 10975, 586, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<T0>::Invoke(T1) */, { 10977, 587, -1 } /* System.Void UnityEngine.Events.InvokableCall`2<T0,T1>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 10980, 588, -1 } /* System.Void UnityEngine.Events.InvokableCall`3<T0,T1,T2>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 10983, 589, -1 } /* System.Void UnityEngine.Events.InvokableCall`4<T0,T1,T2,T3>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 9358, 590, -1 } /* System.Collections.Generic.EqualityComparer`1<!0> System.Collections.Generic.EqualityComparer`1<T>::get_Default() */, { 11086, -1, 590 } /* System.Void UnityEngine.Assertions.Assert::AreEqual<T>(T,T,System.String,System.Collections.Generic.IEqualityComparer`1<T>) */, { 5002, 460, -1 } /* System.Collections.Generic.IEnumerator`1<TSource> System.IO.Iterator`1<TSource>::GetEnumerator() */, { 5005, 460, -1 } /* System.Collections.IEnumerator System.IO.Iterator`1<TSource>::System.Collections.IEnumerable.GetEnumerator() */, { 4998, 460, -1 } /* TSource System.IO.Iterator`1<TSource>::get_Current() */, { 5004, 460, -1 } /* System.Object System.IO.Iterator`1<TSource>::System.Collections.IEnumerator.get_Current() */, { 6569, 480, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::InnerInvoke() */, { 6569, 175, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>::InnerInvoke() */, { 9365, 1, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.String>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9364, 1, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.String>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9362, 1, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.String>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9363, 1, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.String>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9344, 526, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<T>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9344, 527, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<System.Nullable`1<T>>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9344, 529, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<T>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9365, 531, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9364, 531, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9365, 532, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Nullable`1<T>>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9364, 532, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Nullable`1<T>>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9365, 534, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9364, 534, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9365, 535, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9364, 535, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9362, 535, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9363, 535, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9400, 536, -1 } /* System.Boolean System.Collections.Generic.EnumEqualityComparer`1<T>::Equals(System.Object) */, { 9401, 536, -1 } /* System.Int32 System.Collections.Generic.EnumEqualityComparer`1<T>::GetHashCode() */, { 9365, 536, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9364, 536, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9395, 536, -1 } /* System.Boolean System.Collections.Generic.EnumEqualityComparer`1<T>::Equals(T,T) */, { 9362, 536, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9363, 536, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9399, 536, -1 } /* System.Void System.Collections.Generic.EnumEqualityComparer`1<T>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9400, 537, -1 } /* System.Boolean System.Collections.Generic.EnumEqualityComparer`1<T>::Equals(System.Object) */, { 9401, 537, -1 } /* System.Int32 System.Collections.Generic.EnumEqualityComparer`1<T>::GetHashCode() */, { 9365, 537, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9364, 537, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9395, 537, -1 } /* System.Boolean System.Collections.Generic.EnumEqualityComparer`1<T>::Equals(T,T) */, { 9362, 537, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9363, 537, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9399, 537, -1 } /* System.Void System.Collections.Generic.EnumEqualityComparer`1<T>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9365, 538, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9364, 538, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9362, 538, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9363, 538, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 10476, 564, -1 } /* System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/Iterator`1<TSource>::GetEnumerator() */, { 10480, 564, -1 } /* System.Collections.IEnumerator System.Linq.Enumerable/Iterator`1<TSource>::System.Collections.IEnumerable.GetEnumerator() */, { 10473, 564, -1 } /* TSource System.Linq.Enumerable/Iterator`1<TSource>::get_Current() */, { 10479, 564, -1 } /* System.Object System.Linq.Enumerable/Iterator`1<TSource>::System.Collections.IEnumerator.get_Current() */, { 10476, 566, -1 } /* System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/Iterator`1<TSource>::GetEnumerator() */, { 10480, 566, -1 } /* System.Collections.IEnumerator System.Linq.Enumerable/Iterator`1<TSource>::System.Collections.IEnumerable.GetEnumerator() */, { 10473, 566, -1 } /* TSource System.Linq.Enumerable/Iterator`1<TSource>::get_Current() */, { 10479, 566, -1 } /* System.Object System.Linq.Enumerable/Iterator`1<TSource>::System.Collections.IEnumerator.get_Current() */, { 10476, 568, -1 } /* System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/Iterator`1<TSource>::GetEnumerator() */, { 10480, 568, -1 } /* System.Collections.IEnumerator System.Linq.Enumerable/Iterator`1<TSource>::System.Collections.IEnumerable.GetEnumerator() */, { 10473, 568, -1 } /* TSource System.Linq.Enumerable/Iterator`1<TSource>::get_Current() */, { 10479, 568, -1 } /* System.Object System.Linq.Enumerable/Iterator`1<TSource>::System.Collections.IEnumerator.get_Current() */, { 10976, 585, -1 } /* System.Boolean UnityEngine.Events.InvokableCall`1<T>::Find(System.Object,System.Reflection.MethodInfo) */, { 11033, 339, -1 } /* System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<UnityEngine.Networking.PlayerConnection.MessageEventArgs>::FindMethod_Impl(System.String,System.Object) */, { 11034, 339, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<UnityEngine.Networking.PlayerConnection.MessageEventArgs>::GetDelegate(System.Object,System.Reflection.MethodInfo) */, };
4c760b0dc78b33f1a1736ed443b622911a55def3
b573caf631684d4dfb51a32460989ca4fcce5389
/articulation_point_using_tarjan_algo.cpp
c9a6f0836553fdc4f73adb5ded503866ef354254
[]
no_license
vinitfaldu/algorithm-
274ef40555b257f2b47db8632c4407238a30a803
fe311da56647032735ef9d0a244b9c60696682c9
refs/heads/master
2022-09-01T18:58:46.852132
2020-05-26T17:02:26
2020-05-26T17:02:26
267,100,358
1
0
null
null
null
null
UTF-8
C++
false
false
1,957
cpp
articulation_point_using_tarjan_algo.cpp
#include<iostream> #include<vector> #include<stack> #include<algorithm> #include<limits> using namespace std; const int MAX=1e4+5; int nodes,edges,distTime[MAX],lowTime[MAX],parent[MAX]; bool visited[MAX],ap[MAX]; stack<int > s; vector<int > adj[MAX]; int min(int x,int y) { return x < y ? x : y; } void initially() { for(int i=0;i<nodes;i++) { visited[i]=false; distTime[i]=-1; lowTime[i]=-1; parent[i]=-1; ap[i]=false; } } void apUtil(int u) { static int t=0; int children=0; visited[u]=true; distTime[u]=lowTime[u]=t++; for(int i=0;i<adj[u].size();i++) { int vertex=adj[u][i]; if(visited[vertex] == false) { children++; parent[vertex]=u; apUtil(vertex); lowTime[u] = min(lowTime[u],lowTime[vertex]); if(parent[u] == -1 && children >= 2) // root node for condination ap[u]=true; if(parent[u] != -1 && distTime[u] <= lowTime[vertex]) // visited time of node <= adj vertex of low time ap[u]=true; } else if(parent[u] != vertex) { lowTime[u]=min(lowTime[u],distTime[vertex]); } } } void articulationPoint() { int i; initially(); for(i=0;i<nodes;i++) { if(visited[i]==false) apUtil(i); } for(i=0;i<nodes;i++) { cout<<"-----"<<i<<"-----"<<endl;; cout<<"visited Time:"<<distTime[i]<<" low Time:"<<lowTime[i]<<endl; cout<<"parent node is "<<parent[i]<<endl; } //int count=0; cout<<"Articulation Point is : "; for(i=0;i<nodes;i++) { if(ap[i]) cout<<i<<" "; } } int main() { int x,y; cin>>nodes>>edges; for(int i=0;i<edges;i++) { cin>>x>>y; adj[x].push_back(y); adj[y].push_back(x); } articulationPoint(); cout<<endl; return 0; } /* input 8 9 0 1 2 0 1 2 2 3 3 4 4 6 6 5 5 4 5 7 output Articulation Point is : 2 3 4 5 input 5 5 1 0 0 2 2 1 0 3 3 4 output Articulation Point is : 0 3 input 4 3 0 1 1 2 2 3 output Articulation Point is : 1 2 input 7 8 0 1 1 2 2 0 1 3 1 4 1 6 3 5 4 5 output Articulation Point is : 1 */
3dd95932517cfcdfdeef44a0475d70d8e7d63c4b
f52f527c3e932fd3d356ce7afa82da70a4fb6f0e
/Busted/busted/Menu.h
7531ad68df894a5189ba39eae96a0f43516fa77f
[]
no_license
fraktalVision/Busted-Its_Up_To_You
582dcc9ea5208d7e61c2289eec2a9a9d1cfb1798
f18c447cac695c71438f8309c618e90e6975e809
refs/heads/master
2021-01-22T13:23:02.041377
2015-05-29T21:54:12
2015-05-29T21:54:12
34,546,908
0
0
null
null
null
null
UTF-8
C++
false
false
10,964
h
Menu.h
/* Menu.h Created by: Jamie Gault Created on 5/07/07 */ #pragma once #include "busted.all.h" #include "Mentor.h" #include "../engine/core/stat_manager/stat_manager.h" #include "../engine/core/Questions/Questions.h" extern enum GENDER; //!class for recording their selections in menus class PlayerSetup { public: typedef std::vector<PlayerSetup> list_t; PlayerSetup() {} PlayerSetup( int player_id, pina* piece, MENTOR_ID men_id, int soundset, GENDER gender); friend bool operator<(const PlayerSetup & lhs, const PlayerSetup & rhs) { return lhs.m_rollvalue > rhs.m_rollvalue; } public: unsigned int m_ID; //!< the player's id number pina* m_boardpiece; //!<pointer to the mesh they want to use MENTOR_ID m_mentor; //i!<d of the mentor they choose int m_soundset; //!<set of sounds that the user chooses GENDER m_gender; //!<gender of the indivdual std::string m_name; //!<player name std::string m_token_name; //!<name of the token assigne to the player int m_rollvalue; //!<value of dices rolled when deciding the order of players }; //!actions that the arrows can preform enum ARROW_ACTION{ AA_NONE, AA_INC, AA_DEC }; //!class for displaying arrows and registering presses class IncDecArrows { public: IncDecArrows(); IncDecArrows( unsigned int defvalue, float xL, float yL, float xR, float yR, unsigned min = 0, unsigned int max = 10, unsigned int inc = 1); IncDecArrows( IncDecArrows &arrow ); IncDecArrows& operator=( IncDecArrows &arrows); void Update(); void Render(); ARROW_ACTION IsPressed(); //!<returns whether or not either button was pressed that turn; void SetValue(int i ); void Reset(); //!<resets the arrows back tot he default value unsigned int m_value; unsigned int m_defvalue; //!<the original value that the arrows started with unsigned int m_min; //!<the minimum value that can be set unsigned int m_max; //!<the max value that can be set unsigned int m_inc; //!<the incremental value for each arrow press ARROW_ACTION m_pressed; Box_2D m_Left_but; //!<button to decrease or move left Box_2D m_Right_but; //!<button to increase or move right }; //!class for general number management like determining the number of players class NumberMenu : public thing { public: NumberMenu(); NumberMenu( Text_Manager* tm, std::string identifier, unsigned defvalue, unsigned min, unsigned max, unsigned int inc, float x, float y, bool displaymax = false); NumberMenu( NumberMenu& menu ); NumberMenu& operator=( NumberMenu& menu ); void Update(); void Render(); void Reset(){ m_arrows.Reset(); UpdateValueDisplay(); } unsigned int GetValue() { return m_arrows.m_value; } void SetValue(unsigned i ) { m_arrows.m_value = i; UpdateValueDisplay();} IncDecArrows m_arrows; //!<buttons for increasing and decreasing private: void UpdateValueDisplay(); TextBox m_identifier; //!< box to say what the number corresponds to TextBox m_value_display; //!<box showing value bool m_displaymax; //!<whether or not to display the maximum along witht he current value }; //!class for options with words instead of numbers class WordMenu : public thing { public: WordMenu(); WordMenu( Text_Manager* tm, std::string identifier, std::list<std::string> &options, float x, float y ); WordMenu( WordMenu& menu ); WordMenu& operator=( WordMenu& menu ); void Update(); void Render(); void Reset() { SetOption(0); } int GetOption() { return m_arrows.m_value; } void SetOption(int i); private: void UpdateDisplay(); std::list<std::string> m_options; std::list<std::string>::iterator m_cur_option; IncDecArrows m_arrows; //!<buttons for increasing and decreasing TextBox m_identifier; // !<box to say what the number corresponds to TextBox m_option_display; //!<box showing value }; //!class for text input class EditMenu : public thing { public: EditMenu(); EditMenu(Text_Manager* tm, std::string identifier, float x, float y, int max_length); void Update(); void Render(); void Reset(); void SetText(const std::string & text); std::string GetText(); private: int m_max_text_length; TextBox m_title_box; TextBox m_input_box; }; //!option for picking pieces class PieceOption { public: PieceOption( pina* obj, std::string name); ~PieceOption(); obj m_piece; //!<Piece pointer bool m_taken; //!< Whether the piece has been taken or not std::string m_token_name; //!<Name of the token assigned. }; enum PIECE_ACTION{ PA_MOVELEFT, PA_MOVERIGHT, PA_PAUSE }; //!menu for managing piece options in the setup menu class PieceMenu { public: PieceMenu(); ~PieceMenu(); void Update(float t); //!<Update position etc. based on current input void Render(); //!<Draw members to the screen void Reset(); //!<Kill all player associations std::list<PieceOption*>::iterator GetSelectedPiece(){ return m_selected_piece; } void OpenPiece( pina* model ); //!<Load a token model PieceOption* ChoosePiece(); //!<Select the hi-lighted token and associate it with the player void SetVisible( bool v, bool all = false); //!< std::list<PieceOption*> m_pie_opt_list; //!<vector of all of the piece options private: void MoveLeft(); //!<Get the next token to the left void MoveRight(); //!<Get the next token to the right void LoadDisplayPieces(); //!<Load all the tokens for drawing void UpdatePiecePos(); //!<Update rotational position void FindUnselected(); //!<Find the next token not already selected by a player float base_pos[3]; //!<the position all tokens have in relation to each other float goal_pos[3]; //!<the position everthing will rotate to PIECE_ACTION m_action; //!<the current action of selectiong (left, right, none) std::list<PieceOption*>::iterator m_selected_piece; //!<Current hi-lighted piece IncDecArrows m_arrows; //!<buttons for increasing and decreasing }; //!options for the mentors class MentorOption { public: MentorOption( Box_2D box, Mentor* men_id ); bool playingPickMe; //!<Is the sound playing bool playingThanks; //!<Is the sound playing void pickMe(void); //!<Play the pleading audio void thanks(void); //!<Play the selection audio MENTOR_ID GetID(); //!<Which mentor is it? void Render(); //!<Draw the mentor Box_2D m_box; //!<The box to frame this mentor in Mentor* m_mentor; //!<The actual mentor bool m_selected; //!<Is this mentor selected }; //!class for manage the mentor options a class MentorMenu { public: MentorMenu(); ~MentorMenu(); MentorOption* PollOptions(); //!<Get the selected mentor option void Render(); void SetSelectedMentor(int id); MentorOption* GetSelectedMentor(); private: std::vector<MentorOption*> m_men_opt_vec; //!vector of all of the mentor options MentorOption* m_selected_mentor; }; //!screen showing the configurations for all screens class ConfigConfirm { public: ConfigConfirm(PlayerSetup::list_t & setups); ~ConfigConfirm(); void Render(); private: std::vector<TextBox*> name_vec; //!<The names of all the players std::vector<Box_2D*> token_pics; //!<The images of the tokens selected by the players std::vector<Box_2D*> mentor_pics; //!<The images of the mentors selected by the players std::vector<Box_2D*> sound_pics; //!<The images of the sounds selected by the players std::vector<TextBox*> gender_vec; //!<The genders of all the players }; //!options for the mentors class PictureOption { public: PictureOption( Box_2D box, int val ): m_box(box), value(val){} Box_2D m_box; int value; }; //!class for manage the mentor options a class PictureMenu { public: PictureMenu(std::vector<unsigned int> &pic_ids, std::vector<int> &menu_ids, float x, float y, int max_row); PictureMenu(std::vector<BtnTextureSet> &pic_ids, std::vector<int> &menu_ids, float x, float y, int max_row); ~PictureMenu(); int PollOptions(); //!<returns the value selected, otherwise returns -1 void Render(); void Reset(); void SetSelectedOpt(int value) { m_selected_option = value; } int GetSelectedOpt() { return m_selected_option; } private: std::vector<PictureOption*> m_pic_opt_vec; //!<vector of all of the mentor options int m_selected_option; }; //!This is the sequence in which the users setup the game DDDD enum SETUP_MENU_STATE { SMS_MAINBACK, SMS_GAME_SETUP, SMS_PLAYER_NAME, SMS_PLAYER_INFO, SMS_PLAYER_TOKEN, SMS_MENTOR, SMS_CONFIRM, SMS_START }; //!Menu system to encorperate all the given menus class SetupMenu { public: SetupMenu(Text_Manager* tm, GLuint t_id = 0); ~SetupMenu(); void Update(float t); //!<general update the system bool StartGame(); //!<gives the flag to start the game bool BackToMain(); //!<return to the main menu check void Render(); unsigned int GetPlayerCount() { return m_player_cnt; } int GetGameRules() { return m_game_mode.GetOption(); } int GetTurnLimit() { return m_roundcount.GetValue(); } int GetGoalScore() { return m_scorecount.GetValue(); } bool GetPrivEnabled(){ return m_priv_on.GetOption() == 1; } int GetPrivLimitVal(){ return m_priv_lim_on.GetOption(); } // enabled privacy starts from index 1 and is equal to 1 bool GetPrivLimEnabled(){return m_priv_lim_on.GetOption() > 0; } PlayerSetup::list_t & getPlayers() { return m_psetup_list; } SETUP_MENU_STATE m_state; //!<state of the menu PieceMenu m_piece_menu; //!<menu for selecting pieces private: void ClearPlayerSetups(); //!<duh void MoveNext(); //!< void MoveBack(); //!< void ActivateGameSetupView(); void DeactivateGameSetupView(); void ActivatePlayerNameView(); void DeactivatePlayerNameView(); void ActivatePlayerInfoView(); void DeactivatePlayerInfoView(); void ActivatePlayerTokenView(); void DeactivatePlayerTokenView(); void ActivateMentorView(); void DeactivateMentorView(); void ActivateConfirmView(); void DeactivateConfirmView(); private: PlayerSetup::list_t m_psetup_list; //!<vector of each players configurations PlayerSetup::list_t::iterator m_cur_setup; //!<iterator to the current player that's setting things up MentorMenu m_ment_menu; //!<menu for selecting menus Answer m_Next_but; //!<button to continue on Answer m_Back_but; //!<button to go back unsigned int m_player_cnt; //!<Number of players NumberMenu m_playercounter; //!<specifies the player counter WordMenu m_game_mode; //!<specifies the rules of winning NumberMenu m_roundcount; //!<specifies limit on rounds NumberMenu m_scorecount; //!<specifies limit on score; WordMenu m_priv_on; //!<menu for selecting whether to have privacy on or not WordMenu m_priv_lim_on; //!<menu for whether or not to limit the number of privacies to be used. PictureMenu* m_soundsetter; //!<specifies the set they choose for their effects WordMenu m_gendersetter; //!<specifies the gender of the user EditMenu m_playername; //!<specifies player name ConfigConfirm* m_confirm; //!<Confirmation dialogue TextBox m_menu_title; //!<Menu title shown on top TextBox m_menu_footer; //!<Menu footer show below };
63e1ff8d8e0e1a43805101b09121db24eca2ff89
a227997e9c9be4b0159edc6a1f06e63836a4a7f3
/dataconnector/src/distributed-data-connector/ddc/splitproducer/src/delimitersplitproducer.h
0190f3e989ecc02ca1c22122b5cd7a6ac3dc4921
[ "Apache-2.0" ]
permissive
vertica/r-dataconnector
893f8221bc04910aa3121dd518549e0996ef8491
ba110fdac21c3c43bab0eab03a6a35d4e709dc7f
refs/heads/master
2020-05-20T05:55:09.306043
2016-01-19T16:29:16
2016-01-19T16:29:16
40,138,460
7
2
null
2016-01-20T16:01:41
2015-08-03T17:28:48
C++
UTF-8
C++
false
false
1,722
h
delimitersplitproducer.h
/* (c) Copyright 2015 Hewlett Packard Enterprise Development LP Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #ifndef DDC_SPLITPRODUCER_DELIMITERSPLITPRODUCER_H #define DDC_SPLITPRODUCER_DELIMITERSPLITPRODUCER_H #include <string> #include <utility> #include <vector> #include "splitproducer/isplitproducer.h" namespace ddc { namespace splitproducer { class DelimiterSplitProducer : public ISplitProducer { public: DelimiterSplitProducer(); ~DelimiterSplitProducer(); SplitPtr next(); bool hasNext(); void configure(base::ConfigurationMap &conf); base::ConfigurationMap getDebugInfo(); private: blockreader::IBlockReaderPtr blockReader_; blockreader::BlockPtr block_; std::string split_; std::string splitCopy_; uint64_t blockSize_; uint64_t fileEnd_; uint64_t offset_; uint64_t offsetInBlock_; uint64_t splitEnd_; uint64_t splitsDiscarded_; uint64_t splitsProduced_; uint8_t delimiter_; bool configured_; bool skipRecord_; bool skipHeader_; std::vector<std::pair<uint64_t,uint64_t> > requestedBlocks_; }; } // namespace splitproducer } // namespace ddc #endif // DDC_SPLITPRODUCER_DELIMITERSPLITPRODUCER_H
f052bc251d3bf8c1af68f66b721c4c8e6d9e4ecf
f70102150ffbadfff73309d3fe1398826572348a
/code/GUI/GUI1/paymentwindow1.h
abcb8192c297010b4559b87b53cccd42c5eda66c
[]
no_license
MagmaMusen/PRJ3_snorautomat
5ab9c8c15775ec7e8d80d546c30dd509a31b3f5c
db63e6ba54b77a56f877c357b2711d4a00fae560
refs/heads/master
2021-05-20T23:44:46.841893
2020-05-26T08:49:30
2020-05-26T08:49:30
252,452,685
0
0
null
null
null
null
UTF-8
C++
false
false
4,643
h
paymentwindow1.h
#ifndef PAYMENTWINDOW1_H #define PAYMENTWINDOW1_H #include "globals1.h" #include <QPushButton> #include <QLineEdit> #include <QSpinBox> #include <QWizardPage> namespace Ui { class paymentWindow1; } //! The class of the second window the customer meets. //! It is the window where the customer can see how much it is missing to pay. class paymentWindow1 : public QWizardPage { Q_OBJECT public: //! The constructor of the class //! It initializes all the attributes explicit paymentWindow1(QWidget *parent = nullptr); //! The destructor of the class ~paymentWindow1(); //! It connects the action decline_ button clicked to the reaktion openOrderRopeWindow void cancelButtonClicked(); //! It connects the spinbox whatYouAreMissingToPay_ to the pointer of the window. //! So that when the amount changes to 0 or less for whatYouAreMissingToPay_ it will open paidWindow. void amountReached(); //! When fiftyCents_ is clicked value of the spinbox whatYouAreMissingToPay_ will the value fall by 0.5 crowns void fiftyOreClicked(); //! When oneCrown_ is clicked the value of the spinbox whatYouAreMissingToPay_ will the value fall by 1 crown void oneCrownClicked(); //! When twoCrowns_ is clicked the value of the spinbox whatYouAreMissingToPay_ will the value fall by 2 crowns void twoCrownClicked(); //! When fiveCrowns_ is clicked the value of the spinbox whatYouAreMissingToPay_ will the value fall by 5 crowns void fiveCrownClicked(); //! When tenCrownss_ is clicked the value of the spinbox whatYouAreMissingToPay_ will the value fall by 10 crowns void tenCrownClicked(); //! When twentyCrowns_ is clicked the value of the spinbox whatYouAreMissingToPay_ withe value fall by 20 crowns void twentyCrownClicked(); private: Ui::paymentWindow1 *ui; //LineEdit //! It says "Du mangler at betale" QLineEdit *youNeedToPay_; //DoubleSpinBox //! It is the spinbox that contains the value of how much the customer are missing to pay for the rope QDoubleSpinBox *whatYouAreMissingToPay_; //PushButtons //! The button that represent 0.5 crowns QPushButton *fiftyCents_; //! The button that represent 1 crown QPushButton *oneCrown_; //! The button that represent 2 crowns QPushButton *twoCrowns_; //! The button that represent 5 crowns QPushButton *fiveCrowns_; //! The button that represent 10 crowns QPushButton *tenCrowns_; //! The button that represent 20 crowns QPushButton *twentyCrowns_; //! The button the customer click on if it wants to cancel the purchase QPushButton *decline_; signals: //! The signal that the value is falling by 0.5 crowns void valueChangedNegativeFiftyOre(double); //! The signal that the value is falling by 1 crown void valueChangedNegativeOne(double); //! The signal that the value is falling by 2 crowns void valueChangedNegativeTwo(double); //! The signal that the value is falling by 5 crowns void valueChangedNegativeFive(double); //! The signal that the value is falling by 10 crowns void valueChangedNegativeTen(double); //! The signal that the value is falling by 20 crowns void valueChangedNegativeTwenty(double); public slots: //! The reaktion that the value is falling by 0.5 crowns void buttonFiftyOreClicked() { emit valueChangedNegativeFiftyOre(price = price - 0.5); } //! The reaktion that the value is falling by 0.5 crowns void buttonOneCrownClicked() { emit valueChangedNegativeOne(price = price - 1); } //! The reaktion that the value is falling by 0.5 crowns void buttonTwoCrownClicked() { emit valueChangedNegativeTwo(price = price - 2); } //! The reaktion that the value is falling by 0.5 crowns void buttonFiveCrownClicked() { emit valueChangedNegativeFive(price = price - 5); } //! The reaktion that the value is falling by 0.5 crowns void buttonTenCrownClicked() { emit valueChangedNegativeTen(price = price - 10); } //! The reaktion that the value is falling by 0.5 crowns void buttonTwentyCrownClicked() { emit valueChangedNegativeTwenty(price = price - 20); } //! It creates a object of orderRopeLengthWindow //! Then it hide all showed windows and after that it shows orderRopeLengthWindow void openOrderRopeLengthWindow(); //! It opens paidWindow and is called in the function amountReached() void openPaidWindow(); }; #endif // PAYMENTWINDOW1_H
3959f779cb4a56bba30615dc3530f61e7d026c84
09c7f2f9ab096f07ad54db2c0b970e2e0a8fe4c5
/Source/KillOrDie/Public/KODCoreTypes.h
fdf9cab2efcc4b0c9bb85929622ab5f998f5206f
[]
no_license
mr-kotov/KillOrDie
91252ac3e6c770da630540065a4d3dd6eb7b53c5
8a1fa1d36c1deb8602b54f50f7b7483deb41ba8e
refs/heads/main
2023-08-05T05:14:34.083368
2021-06-23T16:11:54
2021-06-23T16:11:54
354,571,394
0
0
null
null
null
null
UTF-8
C++
false
false
3,483
h
KODCoreTypes.h
#pragma once #include "KODPlayerStart.h" #include "KODCoreTypes.generated.h" //Weapon class AKODBaseWeapon; DECLARE_MULTICAST_DELEGATE_OneParam(FOnClipEmptySignature, AKODBaseWeapon*); USTRUCT(BlueprintType) struct FAmmoData { GENERATED_BODY() UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Weapon") int32 Bullets; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Weapon", meta = (EditCondition = "!Infinite")) int32 Clips; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Weapon") bool Infinite; }; USTRUCT(BlueprintType) struct FWeaponData { GENERATED_BODY() UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Weapon") TSubclassOf<AKODBaseWeapon> WeaponClass; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Weapon") UAnimMontage* ReloadAnimMontage; }; USTRUCT(BlueprintType) struct FWeaponUIData { GENERATED_BODY() UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="UI") UTexture2D* MainIcon; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Weapon") UTexture2D* CrossHairIcon; }; //health //оповещение умерли или нет DECLARE_MULTICAST_DELEGATE(FOnDeath); DECLARE_MULTICAST_DELEGATE_TwoParams(FOnHealthChanged, float, float); /**VFX*/ class UNiagaraSystem; USTRUCT(BlueprintType) struct FDecalData { GENERATED_BODY() UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="VFX") UMaterialInterface* Material; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="VFX") FVector Size = FVector(10.0f); UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="VFX") float LiftTime = 5.0f; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="VFX") float FadeOutTime = 0.7f; }; USTRUCT(BlueprintType) struct FImpactData { GENERATED_BODY() UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="VFX") UNiagaraSystem* NiagaraEffect; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="VFX") FDecalData DecalData; }; //game USTRUCT(BlueprintType) struct FGameData { GENERATED_BODY() UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Game", meta = (ClampMin = "1", ClampMax = "100")) int32 PlayerNum = 2; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Game", meta = (ClampMin = "1", ClampMax = "10")) int32 RoundsNum = 4; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Game", meta = (ClampMin = "3", ClampMax = "300")) int32 RoundTime = 10; //is seconds UPROPERTY(EditDefaultsOnly, BlueprintReadWrite) FLinearColor DefaultTeamColor = FLinearColor::Red; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite) TArray<FLinearColor> TeamColors; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Game", meta = (ClampMin = "3", ClampMax = "20")) int32 RespawnTime = 5; //is seconds }; UENUM(BlueprintType) enum class EKODMatchState: uint8 { WaitingToStart = 0, InProgress, Pause, GameOver }; DECLARE_MULTICAST_DELEGATE_OneParam(FOnMatchStateChangedSignature, EKODMatchState); USTRUCT(BlueprintType) struct FLevelData { GENERATED_BODY() UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Game") FName LevelName = NAME_None; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Game") FName LevelDisplayName = NAME_None; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Game") UTexture2D* LevelThumb; }; DECLARE_MULTICAST_DELEGATE_OneParam(FOnLevelSelectedSignature, const FLevelData&);
78517b5ca4ee252822527f655e2a5fe662c9af6f
75324b88bd165f1ed3a56efc5918300f6fee2da0
/work1/ADTControl/ADTControl/Control.cpp
c6bc7bd230dd6fe4a186899d127c7fac037fb75b
[]
no_license
each24/MPTDemo
0ddf5bb82daf9f6f8855df9938fb3e881eef51a9
6a11ef1e5a57f6d6a5869f8ccb155813eae5cd09
refs/heads/master
2020-05-17T23:02:27.289779
2019-05-17T13:55:33
2019-05-17T13:55:33
184,019,614
0
0
null
null
null
null
UTF-8
C++
false
false
858
cpp
Control.cpp
#include "stdafx.h" #include "Control.h" int Control::acc() { return (int)round(ed->Acc() * log(Pin) / log(Pout) + 0.5); } int Control::getPin() { return Pin; } int Control::getPout() { return Pout; } void Control::setPin(int pin) { Pin = pin; } void Control::setPout(int pout) { Pout = pout; } bool Control::getSt() { return St; } void Control::setSt(bool state) { St = state; } Control::Control() { St = _Editing; Pin = 10; Pout = 16; ed = new Editor(); his = new History(); } string Control::DoCommand(int n) { if (n == 19) { converter_10_p2 A; double r = A.dval(ed->getNumber(), Pout); converter_p1_10 B; string res = B.DO(r, Pin, acc()); St = _Finished; his->AddRecord(Pin, Pout, ed->getNumber(), res); return res; } else { St = _Editing; return ed->DoEdit(n); } return string(); } Control::~Control() { }
d2593a9f743e712abc3fc382d00291233890c646
5cd30c7bc36af0d37e4c4c0ecd6bf3d84d1e710a
/src/IInputSource.h
3f9a2212239304be41c557dda1d169630977b90d
[]
no_license
Dwergi/prototype-engine
89cb8a4c90344ab046d176beff7b19468abd6d4e
0d792ded0141b2a913200f6f1c27084d65f42627
refs/heads/master
2023-04-27T21:08:31.482645
2023-04-21T09:17:36
2023-04-21T09:17:36
31,064,734
1
0
null
null
null
null
UTF-8
C++
false
false
1,699
h
IInputSource.h
// // IInputSource.h - Interface for input source. // Copyright (C) Sebastian Nordgren // September 27th 2018 // #pragma once #include "DoubleBuffer.h" #include "InputAction.h" #include "InputEvent.h" #include "InputMode.h" namespace dd { struct IInputSource { IInputSource(); void UpdateInput(); bool GotMouseInput() const { return m_gotMouseInput; } IInputSource& SetMousePosition(glm::vec2 position); MousePosition GetMousePosition() const { return m_mousePosition.Read(); } MousePosition GetMouseScroll() const { return m_mouseScroll.Read(); } IInputSource& SetCaptureMouse(bool capture); bool IsMouseCaptured() const { return m_mouseCaptured; } IInputSource& SetCentreMouse(bool centre) { m_mouseRecenter = centre; return *this; } void GetEvents(IArray<InputEvent>& out) const { out = m_events.Read(); } const Array<uint32, InputEvent::MAX_EVENTS>& GetText() const { return m_text.Read(); } protected: // use these to register key events during OnUpdateInput void OnText(uint32 char_code); void OnKey(Key key, ModifierFlags modifiers, InputType action); void OnMousePosition(glm::vec2 absolute); void OnMouseWheel(glm::vec2 delta); private: DoubleBuffer<Array<InputEvent, InputEvent::MAX_EVENTS>> m_events; DoubleBuffer<Array<uint32, InputEvent::MAX_EVENTS>> m_text; DoubleBuffer<MousePosition> m_mousePosition; DoubleBuffer<MousePosition> m_mouseScroll; bool m_gotMouseInput { false }; bool m_mouseCaptured { false }; bool m_mouseRecenter { false }; // implement these virtual void OnUpdateInput() = 0; virtual void OnSetMouseCapture(bool capture) = 0; virtual void OnSetMousePosition(glm::vec2 position) = 0; }; }
32850a001fe43e4c7b4fd44b409ab641599f1eb1
968dbb9efb302670fa00f1420f3fb1bf5a9b5788
/NtRender/ShaderAssemble.cpp
20903f8bf56f0ab54f0c9131c5b8742bd8a9af4a
[]
no_license
NINTING/NtSoftRender
fda77074d20d29d3c12c1b626a8cd31e2c059d56
5868691af30ad80e29f5eba1ac11bfeebc05dc39
refs/heads/master
2022-11-16T04:46:47.476295
2020-07-08T09:29:13
2020-07-08T09:29:13
266,507,230
0
0
null
null
null
null
GB18030
C++
false
false
7,148
cpp
ShaderAssemble.cpp
#include"ShaderAssemble.h" #include"NtRender.h" #include"Nt.h" #include"ShadowMap.h" #include"NtImage.h" #include"Model.h" #include"NtUtility.h" #include"Geometry.h" extern std::shared_ptr<NtWindow> window; void PhoneAssemble(const Model& model, const NtCamera& camera, NtSofterRender* render, const Light& dirctionalLight, const NtVector4&Ambient) { NtMatrix4x4 world = NtMatrix4x4(); PhoneShader*pgs = new PhoneShader(); pgs->diffuseTex = model.GetDiffuseTex(); pgs->w = world; pgs->v = camera.GetViewMatrix(); pgs->p = camera.GetProjMatrix(); pgs->EyePosW = camera.GetPos(); pgs->DirectionalLights.push_back(*dirctionalLight.GetLightConstant()); pgs->mat = model.GetMaterial(); pgs->normalTex = model.GetNormalTex(); pgs->specularTex = model.GetSpecularTex(); pgs->Ambient = Ambient; render->SetVertexBuffer(model.GetVertexsBuffer()); render->SetIndexBuffer(model.GetIndicesBuffer()); render->SetShader(pgs); } void TPhoneAssemble(const Model& model, const NtCamera& camera, NtSofterRender* render, const Light& dirctionalLight, const NtVector4&Ambient) { NtMatrix4x4 world = NtMatrix4x4(); render->SetRenderTarget(BackBufferOn); TPhoneShader*gs = new TPhoneShader(); if (model.GetDiffuseTex()) gs->diffuseTex = model.GetDiffuseTex(); if(model.GetTangentTex()) gs->tangentTex = model.GetTangentTex(); if (model.GetSpecularTex()) gs->specularTex = model.GetSpecularTex(); if (model.GetEmissionTex()) gs->emissionTex = model.GetEmissionTex(); gs->w = model.GetWorld(); gs->v = camera.GetViewMatrix(); gs->p = camera.GetProjMatrix(); gs->EyePosW = camera.GetPos(); gs->DirectionalLights.push_back(*dirctionalLight.GetLightConstant()); gs->mat = model.GetMaterial(); gs->Ambient = Ambient; render->SetVertexBuffer(model.GetVertexsBuffer()); render->SetIndexBuffer(model.GetIndicesBuffer()); render->SetShader(gs); } void STPhoneAssemble(const Model& model, const NtCamera& camera, NtSofterRender* render, const Light& dirctionalLight, const NtVector4&Ambient, const ShadowMap& shadowMap) { NtMatrix4x4 world = NtMatrix4x4(); render->SetRenderTarget(BackBufferOn); STPhoneShader*gs = new STPhoneShader(); gs->diffuseTex = model.GetDiffuseTex(); gs->w = model.GetWorld(); gs->v = camera.GetViewMatrix(); gs->p = camera.GetProjMatrix(); gs->EyePosW = camera.GetPos(); gs->DirectionalLights.push_back(*dirctionalLight.GetLightConstant()); gs->mat = model.GetMaterial(); gs->tangentTex = model.GetTangentTex(); gs->specularTex = model.GetSpecularTex(); gs->Ambient = Ambient; gs->ShadowTex = shadowMap.GetShadowMap(); NtMatrix4x4 T({ 0.5,0,0,0, 0,-0.5,0,0, 0,0,1,0, 0.5,0.5,0,1 }); gs->vpt = shadowMap.GetViewMatrix() * shadowMap.GetProjMatrix()*T; render->SetVertexBuffer(model.GetVertexsBuffer()); render->SetIndexBuffer(model.GetIndicesBuffer()); render->SetShader(gs); } void BlendAssemble(const Model& model, const NtCamera& camera, NtSofterRender* render, const Light& dirctionalLight, const NtVector4&Ambient,float blendScale) { BlendShader*gs = new BlendShader(); NtMatrix4x4 world = NtMatrix4x4(); gs->w = world; gs->v = camera.GetViewMatrix(); gs->p = camera.GetProjMatrix(); gs->DirectionalLight = *dirctionalLight.GetLightConstant(); gs->Ambient = Ambient; gs->BlendScale = blendScale; if(model.GetDiffuseTex()) gs->diffuse = model.GetDiffuseTex(); //准备深度图 render->SetRenderTarget(BlendOn); render->SetRenderTarget(BackBufferOn); render->SetRenderTarget(ZwriteOff); render->SetCullState(CullFront); render->SetBlendFactor(AlphaSrc, OneMinusAlphaDest); render->SetVertexBuffer(model.GetVertexsBuffer()); render->SetIndexBuffer(model.GetIndicesBuffer()); render->SetShader(gs); render->Draw(); //渲染 render->SetRenderTarget(BlendOn); render->SetRenderTarget(ZwriteOn); render->SetCullState(Cullback); render->SetBlendFactor(AlphaSrc, OneMinusAlphaDest); render->SetRenderTarget(BackBufferOn); render->SetVertexBuffer(model.GetVertexsBuffer()); render->SetIndexBuffer(model.GetIndicesBuffer()); } void SSAOAssemble(const Model& model, const NtCamera& camera, NtSofterRender* render, const Light& dirctionalLight, const NtVector4&Ambient) { NtMatrix4x4 world = NtMatrix4x4(); static NtMatrix4x4 T({ 0.5,0,0,0, 0,-0.5,0,0, 0,0,1,0, 0.5,0.5,0,1 }); int ssaow = render->GetBackBuffer()->GetWidth()/2; int ssaoh = render->GetBackBuffer()->GetHeight()/2; static std::shared_ptr<Tex2D_4F> ssaoTex = std::shared_ptr<Tex2D_4F>(new Tex2D_4F(ssaow, ssaoh));; NtMatrix4x4 vpt = camera.GetViewMatrix()*camera.GetProjMatrix()*T; if (!render->IsWireframe()) { WriteNormalShader*ns = new WriteNormalShader(); ns->w = world; ns->v = camera.GetViewMatrix(); ns->p = camera.GetProjMatrix(); //准备法向量图 render->SetRenderState(GroundShading); render->SetRenderTarget(BlendOff); render->SetRenderTarget(BackBufferOn); render->SetRenderTarget(RTTOff); render->SetRenderTarget(ZwriteOn); render->SetCullState(Cullback); render->SetVertexBuffer(model.GetVertexsBuffer()); render->SetIndexBuffer(model.GetIndicesBuffer()); render->SetShader(ns); render->Draw(); //window->Present_image(render->Present()); SSAOShader*ssao = new SSAOShader(); ssao->depthTex = std::make_shared<Tex2D_1F>(*render->GetDepthBuffer()); ssao->normalTex = std::make_shared<Tex2D_4F>(*render->GetBackBuffer()); render->CleanBackAndDepthBuffer(); ssao->OcclusionFadeStart = 0.1f; ssao->OcclusionFadeEnd = 0.2f; ssao->offsetVec = std::shared_ptr<NtVector4>(new NtVector4[14]); NtUtility::RandomOffsetVec(ssao->offsetVec.get()); ssao->w = world; ssao->v = camera.GetViewMatrix(); ssao->p = camera.GetProjMatrix(); ssao->ptM = ssao->p*T; ssao->sampleCount = 14; ssao->surfaceEpsilon = 0.03f; ssao->OcclusionRadius = 0.2f; NtUtility::RandomNormalImage(ssaow, ssaoh, &ssao->randomNormalTex); Model patch2D = Geometry::Patch2D(); //渲染 render->SetRTT(ssaoTex.get()); render->SetRenderTarget(BlendOff); render->SetRenderTarget(ZwriteOff); render->SetCullState(NoCull); render->SetRenderTarget(BackBufferOn); render->SetRenderTarget(RTTOn); render->SetVertexBuffer(patch2D.GetVertexsBuffer()); render->SetIndexBuffer(patch2D.GetIndicesBuffer()); render->SetShader(ssao); render->Draw(); //window->Present_image(Float4ImageToRGBAImage(*ssaoTex)); //window->Present_image(render->Present()); //ssaoTex = std::make_shared<Tex2D_4F>(*render->GetBackBuffer()); render->ResetRTT(); } render->CleanBackAndDepthBuffer(); //应用SSAO AmibentSSAOShader*ambSsao = new AmibentSSAOShader(); ambSsao->SSAOTex = ssaoTex; //window->Present_image(Float4ImageToRGBAImage(*ambSsao->SSAOTex)); ambSsao->w = world; ambSsao->v = camera.GetViewMatrix(); ambSsao->p = camera.GetProjMatrix(); ambSsao->ambient = Ambient; ambSsao->vpt = vpt; render->SetRenderTarget(BlendOff); render->SetRenderTarget(BackBufferOn); render->SetRenderTarget(ZwriteOn); render->SetCullState(Cullback); render->SetVertexBuffer(model.GetVertexsBuffer()); render->SetIndexBuffer(model.GetIndicesBuffer()); render->SetShader(ambSsao); }