blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
986 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
145 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
122 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
ce1413a15235c812f3b65d3915a5eaeb7198548a
d0557489abe73e36f52a057e151a16c310e11876
/base/Config.h
190fa17dbe8afaf65925d6cdc8b2561d7a67db37
[ "MIT" ]
permissive
chntujia/CodfiyAsteriatedGrailServer
762a9de7e7d6567d87e66d5b6354a24c8f797cbe
f2f210aeff062fd5ff27fb099629edcde82eb366
refs/heads/master
2022-03-14T16:13:16.382571
2022-02-13T12:53:57
2022-02-13T12:53:57
49,324,028
40
17
MIT
2019-02-22T01:10:28
2016-01-09T12:46:43
C++
UTF-8
C++
false
false
729
h
#ifndef __CONFIG_H__ #define __CONFIG_H__ #include "zType.h" #include "zMisc.h" #include <string> class ServerConfig : public SingletonBase<ServerConfig> { public: int32_t Init (void); int32_t Load (void); int32_t Reload (void); protected: ServerConfig (void); ~ServerConfig (void); private: ServerConfig (const ServerConfig&); ServerConfig& operator= (const ServerConfig&); friend class SingletonBase<ServerConfig>; public: int32_t m_version; std::string m_strIP; int16_t m_sPort; int32_t m_iThreadNum; int32_t m_iCheckTime; std::string m_strDebugLevel; std::string m_db_hostname; std::string m_db_username; std::string m_db_password; }; #endif // __CONFIG_H__
[ "chntujia@gmail.com" ]
chntujia@gmail.com
8e0b919a00becaa8280d9576c1b8f22b3f458688
ed0fb471daca59daa6255d75d4c68508e58e3454
/ml/include/pcl/ml/impl/ferns/fern_evaluator.hpp
102eed59a832f7d631d11fcd5df91ec05bb61401
[ "BSD-3-Clause" ]
permissive
mujin/pcl
ec9de205e1ee5940fd0a55a012733984a0bb1ff2
9a13da19c792ce1f9dfcb752bc92300f40270bec
refs/heads/master
2023-06-09T13:49:51.928549
2022-04-18T01:03:29
2022-04-18T01:03:29
32,294,758
4
2
NOASSERTION
2023-05-09T03:41:42
2015-03-16T01:43:16
C++
UTF-8
C++
false
false
8,539
hpp
/* * Software License Agreement (BSD License) * * Point Cloud Library (PCL) - www.pointclouds.org * Copyright (c) 2010-2011, Willow Garage, Inc. * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials provided * with the distribution. * * Neither the name of Willow Garage, Inc. nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * */ #ifndef PCL_ML_FERNS_FERN_EVALUATOR_HPP_ #define PCL_ML_FERNS_FERN_EVALUATOR_HPP_ #include <pcl/common/common.h> #include <pcl/ml/ferns/fern.h> #include <pcl/ml/feature_handler.h> #include <pcl/ml/stats_estimator.h> #include <vector> ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// template <class FeatureType, class DataSet, class LabelType, class ExampleIndex, class NodeType> pcl::FernEvaluator<FeatureType, DataSet, LabelType, ExampleIndex, NodeType>::FernEvaluator () { } ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// template <class FeatureType, class DataSet, class LabelType, class ExampleIndex, class NodeType> pcl::FernEvaluator<FeatureType, DataSet, LabelType, ExampleIndex, NodeType>::~FernEvaluator () { } ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// template <class FeatureType, class DataSet, class LabelType, class ExampleIndex, class NodeType> void pcl::FernEvaluator<FeatureType, DataSet, LabelType, ExampleIndex, NodeType>::evaluate ( pcl::Fern<FeatureType, NodeType> & fern, pcl::FeatureHandler<FeatureType, DataSet, ExampleIndex> & feature_handler, pcl::StatsEstimator<LabelType, NodeType, DataSet, ExampleIndex> & stats_estimator, DataSet & data_set, std::vector<ExampleIndex> & examples, std::vector<LabelType> & label_data) { const size_t num_of_examples = examples.size (); const size_t num_of_branches = stats_estimator.getNumOfBranches (); const size_t num_of_features = fern.getNumOfFeatures (); label_data.resize (num_of_examples); std::vector<std::vector<float> > results (num_of_features); std::vector<std::vector<unsigned char> > flags (num_of_features); std::vector<std::vector<unsigned char> > branch_indices (num_of_features); for (size_t feature_index = 0; feature_index < num_of_features; ++feature_index) { results[feature_index].reserve (num_of_examples); flags[feature_index].reserve (num_of_examples); branch_indices[feature_index].reserve (num_of_examples); feature_handler.evaluateFeature (fern.accessFeature (feature_index), data_set, examples, results[feature_index], flags[feature_index]); stats_estimator.computeBranchIndices (results[feature_index], flags[feature_index], fern.accessThreshold (feature_index), branch_indices[feature_index]); } for (size_t example_index = 0; example_index < num_of_examples; ++example_index) { size_t node_index = 0; for (size_t feature_index = 0; feature_index < num_of_features; ++feature_index) { node_index *= num_of_branches; node_index += branch_indices[feature_index][example_index]; } label_data[example_index] = stats_estimator.getLabelOfNode (fern[node_index]); } } ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// template <class FeatureType, class DataSet, class LabelType, class ExampleIndex, class NodeType> void pcl::FernEvaluator<FeatureType, DataSet, LabelType, ExampleIndex, NodeType>::evaluateAndAdd ( pcl::Fern<FeatureType, NodeType> & fern, pcl::FeatureHandler<FeatureType, DataSet, ExampleIndex> & feature_handler, pcl::StatsEstimator<LabelType, NodeType, DataSet, ExampleIndex> & stats_estimator, DataSet & data_set, std::vector<ExampleIndex> & examples, std::vector<LabelType> & label_data) { const size_t num_of_examples = examples.size (); const size_t num_of_branches = stats_estimator.getNumOfBranches (); const size_t num_of_features = fern.getNumOfFeatures (); std::vector<std::vector<float> > results (num_of_features); std::vector<std::vector<unsigned char> > flags (num_of_features); std::vector<std::vector<unsigned char> > branch_indices (num_of_features); for (size_t feature_index = 0; feature_index < num_of_features; ++feature_index) { results[feature_index].reserve (num_of_examples); flags[feature_index].reserve (num_of_examples); branch_indices[feature_index].reserve (num_of_examples); feature_handler.evaluateFeature (fern.accessFeature (feature_index), data_set, examples, results[feature_index], flags[feature_index]); stats_estimator.computeBranchIndices (results[feature_index], flags[feature_index], fern.accessThreshold (feature_index), branch_indices[feature_index]); } for (size_t example_index = 0; example_index < num_of_examples; ++example_index) { size_t node_index = 0; for (size_t feature_index = 0; feature_index < num_of_features; ++feature_index) { node_index *= num_of_branches; node_index += branch_indices[feature_index][example_index]; } label_data[example_index] = stats_estimator.getLabelOfNode (fern[node_index]); } } ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// template <class FeatureType, class DataSet, class LabelType, class ExampleIndex, class NodeType> void pcl::FernEvaluator<FeatureType, DataSet, LabelType, ExampleIndex, NodeType>::getNodes ( pcl::Fern<FeatureType, NodeType> & fern, pcl::FeatureHandler<FeatureType, DataSet, ExampleIndex> & feature_handler, pcl::StatsEstimator<LabelType, NodeType, DataSet, ExampleIndex> & stats_estimator, DataSet & data_set, std::vector<ExampleIndex> & examples, std::vector<NodeType*> & nodes) { const size_t num_of_examples = examples.size (); const size_t num_of_branches = stats_estimator.getNumOfBranches (); const size_t num_of_features = fern.getNumOfFeatures (); nodes.reserve (num_of_examples); std::vector<std::vector<float> > results (num_of_features); std::vector<std::vector<unsigned char> > flags (num_of_features); std::vector<std::vector<unsigned char> > branch_indices (num_of_features); for (size_t feature_index = 0; feature_index < num_of_features; ++feature_index) { results[feature_index].reserve (num_of_examples); flags[feature_index].reserve (num_of_examples); branch_indices[feature_index].reserve (num_of_examples); feature_handler.evaluateFeature (fern.accessFeature (feature_index), data_set, examples, results[feature_index], flags[feature_index]); stats_estimator.computeBranchIndices (results[feature_index], flags[feature_index], fern.accessThreshold (feature_index), branch_indices[feature_index]); } for (size_t example_index = 0; example_index < num_of_examples; ++example_index) { size_t node_index = 0; for (size_t feature_index = 0; feature_index < num_of_features; ++feature_index) { node_index *= num_of_branches; node_index += branch_indices[feature_index][example_index]; } nodes.push_back (&(fern[node_index])); } } #endif
[ "holzers@in.tum.de" ]
holzers@in.tum.de
18c3857238466cc808b013cddc5e9d18304a5e03
79143151a5f5c246a304fc4ee601e144f323fa97
/POJ/3191/7989637_AC_0ms_740kB.cpp
2b8e8237c01f41e72a838ea1862b99d06e693c29
[]
no_license
1468362286/Algorithm
919ab70d1d26a4852edc27b6ece39f3aec8329eb
571e957e369f5dc5644717371efcc3f4578a922d
refs/heads/master
2020-06-01T23:56:22.808465
2019-06-09T08:44:55
2019-06-09T08:44:55
190,970,478
0
0
null
null
null
null
UTF-8
C++
false
false
333
cpp
#include <iostream> using namespace std; int main() { int i,n,k,t,sk[10000],tp; while(cin>>n) { tp = 0; while(n) { k = n % -2; t = n / -2; if(k<0) { k = k + 2; t++; } n = t; sk[++tp]=k; } for( i = tp ; i >= 1; i--) { cout<<sk[i]; } if(tp==0)cout<<"0"; cout<<endl; } return 0; }
[ "noreply@github.com" ]
1468362286.noreply@github.com
4e6e32fe06ec1d400fd788e9eed9154b4bf7ba7c
3fee62a27cffa0853e019a3352ac4fc0e0496a3d
/zCleanupCamSpace/ZenGin/Gothic_I_Classic/API/zPrototypes.h
64c4edb2b8973ad76c8230ab36a58cb5b3492820
[]
no_license
Gratt-5r2/zCleanupCamSpace
f4efcafe95e8a19744347ac40b5b721ddbd73227
77daffabac84c8e8bc45e0d7bcd7289520766068
refs/heads/master
2023-08-20T15:22:49.382145
2021-10-30T12:27:17
2021-10-30T12:27:17
422,874,598
3
0
null
null
null
null
UTF-8
C++
false
false
11,721
h
// Supported with union (c) 2018-2021 Union team #ifndef __ZPROTOTYPES_H__VER0__ #define __ZPROTOTYPES_H__VER0__ namespace Gothic_I_Classic { class zCMemPoolBlock; class zCMallocGeneric; class zCEngine; struct zTLODEdge; struct zTEngineStats; class zCLineCache; struct zTViewportData; class zCCamera; class zCVertex; class zCVertFeature; class zCPolygon; class zCPortal; class zCAccount; class zCAIBase; class zCAIBaseSound; class zCAICamera; struct zSEvasionSearchDesc; struct zSPathSearchResult; struct zSPathSearchState; struct zSPathSearchState_Internal; class zCSphereCoordsCache; class zCPathSearch; class zCMovementTracker; class zCAIPlayer; class zVEC2; class zVEC3; class zVEC4; class zMAT3; class zMAT4; class zCQuat; class zCPackedNormal16; struct zComplex; class zCValueSmooth; class zCVEC3Smooth; class zCArchiverFactory; class zCArchiver; class zCArchiverBinSafe; class zCArchiverGeneric; class zCBinkPlayer; class zCMeshOctreeNode; class zCRayTurbo; class zCRayTurboAdmin; class zCBspBase; class zCBspNode; class zCBspLeaf; class zCBspTree; class zTPolyNode; class zCCBspNode; class zCCBspTree; class zCBspSector; class zCBuildPortal; class zCBuffer; struct zTBCylinder3D; struct zTBSphere3D; struct zTBBox2D; struct zTBBox3D; struct zTNode; class zCOBBox3D; class zCCSCutsceneContext; class zCCSDebugger; struct zTCSBlockPosition; class zCEvMsgCutscene; class zCCSRole; class zCCSBlockBase; class zCCSAtomicBlock; class zCCSBlockPosition; class zCCSBlock; class zCCSSyncBlock; class zCCutscene; class zCCSLib; class zCCSManager; class zCCSPlayer; class zCCSPoolItem; class zCCSProps; class zCCollisionReport; class zCCollisionDetector; class zCCollisionObjectDef; class zCCollisionObject; class zCCollObjectBase; class zCCollObjectUndef; class zCCollObjectPoint; class zCCollObjectProjectile; class zCCollObjectComplex; class zCCollObjectLevelPolys; class zCCollObjectBoxPassThrough; class zCCollObjectBoxBlocker; class zCCollObjectCharacter; class zCConDat; class zCConsole; class zCConvexCollisionCache; class zCConvexPrimitive; class zCConvexPrimitiveUnitSphere; class zCConvexPrimitiveScaleTrans; class zCConvexPrimitiveEllipsoid; class zCCamTrj_KeyFrame; class zCCSCamera_EventMsg; class zCCSCamera_EventMsgActivate; class zCCSCamera; class zDATE; class zFILE_STATS; class zFILE_INFO; class zFILE; class zFILE_FILE; class zPATH; class zFILE_VDFS; class zCMgcEigenD; struct ASSERT_FAIL_INFO; class zERROR; class zCEventManager; class zRandom_Gauss; class zCFFT; class zCFile3DS; class zCFileQuakeBSP; class zCFileBIN; class zCFileCSV; class zCFlash; class zCFont; class zCFontMan; class zCGameInfo; struct TGfx_Gfx; class zCGfx; struct zSKeyMapping; struct zSCtrlValue; class zCInput; class zCInput_Win32; class zCPositionKey; class zCCubicPolynomial; class zCKBSpline; class zCLensFlareFX; class zCTexAniCtrl; class zCMaterial; class zCCircleArc3D; class zCPose; struct zTMallocStats; struct zTMallocProcessStats; class zCMalloc; class zCMallocWin32Debug; class zCVolatileMemoryBase; class zCMemPoolBase; class zCMenu; class zCMenuItem; class zCMenuItemInput; class zCMenuItemText; class zCMenuItemSlider; class zCMenuItemButton; class zCMenuItemChoice; struct zTMenuItemListElement; class zCMenuItemList; class zCModelMeshLib; class zCModelAniEvent; class zCModelNode; struct zTMdl_AniSample; class zCModelAni; class zCModelPrototype; class zCModelAniActive; class zCModelTexAniState; class zCModelNodeInst; struct zTRandAni; struct zTAniAttachment; class zCModel; class zCModelConvertFileHandler; class zCMorphMeshAni; class zCMorphMeshProto; class zCMorphMesh; class zCMorphMeshConvertFileHandler; class zCMoveRecorder; class CMov_Movement; class zCMusicTheme; class zCMusicJingle; class zCMusicSystem; class zCMusicSys_Dummy; class zCEventMusicControler; class zCMusicControler; class zCMusicTheme_DM; class zCMusicJingle_DM; class CMusDrvProperties; class zCMusicSys_DirectMusic; struct zTNetStatistics; class zCNetStatistics; class zCNet; class zCNetEventManager; class zCNetHost; class zCNetManager; struct zTNetMessageHeader; class zCNetMessage; class zCNetMessageQueue; class zCNetSession; class zCNetVersion; class zCNetVobControl; struct zTNetAddress; struct zTNetBufferInfo; struct zTNetPacket; struct zTNetTimeout; class zCLivingObjectsState; class zCClassDef; class zCObject; class zCObjectFactory; class zCOptionEntry; class zCOptionSection; class zCOption; class zCPar_TreeNode; class zCPar_File; class zCParser; class zCPar_StringTable; class zCPar_Symbol; class zCPar_SymbolTable; class zCPar_Stack; class zCPar_DataStack; struct zSParticle; class zCParticleEmitter; class zCParticleEmitterVars; class zCParticleFX; class zCRigidBody; class zCPlayerGroup; class zCPlayerInfo; class zCVertexFeaturePool; class zCPolygonPool; class zCVertexPool; class zCMeshPool; class zCMeshesPool; class zCPolyStrip; class zCLightning; class zCQuadMark; class zCPrime; struct zTPMWedge; struct zTPMTriangle; struct zTPMTriangleEdges; struct zTPMEdge; struct zTPMVertexUpdate; class zCProgMeshProto; class zCProgMeshBuilder; class zCProgMesh; class zCMeshSoftSkin; class zCProgMeshConvertFileHandler; class zCRayCache; class zCRenderLight; class zCRndAlphaSortObject; struct zTRnd_TexFormatInfo; struct zTRnd_DeviceInfo; struct zTRnd_VidModeInfo; struct zTRnd_Stats; struct zTRndSimpleVertex; struct zTRndSurfaceDesc; class zCRenderer; class zCRenderLightContainer; class zCRenderManager; class zCShaderStage; class zCShader; class zCMapDetailTexture; class zCResourceManager; class zCResource; class zD3D_alphaPoly; class zCRnd_D3D; class zCSurfaceCache_D3D; class zCDXTCCache_D3D; struct zD3D_savedTexture; class zCTex_D3D; class zCVertexBuffer_D3D; struct dxDEVICE; struct dxDDMODE; struct zD3DTEX; class zCTex_RndGlide; class zCRnd_Glide; class CDIBSection16; struct zSRndGlide_AlphaPoly; class zCScanDirFileHandler; class zCScanDir; class zCSession; class zCUnderwaterPFX; class zCSkyControler; class zCSkyControler_Mid; class zCSkyControler_Indoor; class zCSkyLayerData; class zCSkyState; class zCSkyLayer; class zCSkyPlanet; class zCSkyControler_Outdoor; class zCOutdoorRainFX; class zCDrvProperties_MSS; class zCActiveSnd; class zCSndChannel; class zCSndFrame; class zCWaveData; class zCSndSys_MSS; class zCSndFX_MSS; class zCHandleManager; class zCSoundSystem; class zCSoundFX; class zCSoundFXDummy; class zCSoundSystemDummy; class zCSoundManager; struct zTErrorMessage; class zCSystemInfo; struct RGBPIXEL; class zCTexConGeneric; struct zTTexPalette; class zCTextureInfo; class zCTextureFileFormat; class zCTextureFileFormatTGA; class zCTextureFileFormatInternal; class zCTextureExchange; class zCTextureConvert; class zCTexture; class zCLightMap; class zCTextureFileHandler; class zCThread; class zCSyncObject; class zCCriticalSection; class zCMutex; class zCTimer; class zCChecksum; class zCChecksum16; class zCFPUControler; struct zCOLOR; struct zTPlane; class zCVertexBuffer; class zCVertexBufferDyn; class zCVertexBufferDyn2; class zCVertexBufferManager; class zCVertexTransform; class zCVideoPlayer; struct VIDEO_INFO; struct VIDMEM_INFO; struct SURFACE_INFO; struct SURFACE; struct VIDMODE; struct BLIT_CMD; struct CUSTOMCAPTION; class zCInputCallback; class zCViewText; class zCView; class zCViewBase; class zCViewDialog; class zCViewDialogChoice; class zCViewDraw; class zCViewFX; class zCPosition; class zCViewObject; class zCViewPrint; class zCViewFont; class zCViewText2; struct zTProgressRange; class zCViewProgressBar; class zCViewWindow; class zCViewStatusBar; struct zTRenderContext; class zCVisual; class zCVisualAnimate; class zCDecal; class zCMesh; class zCEventMessage; class zCEventCore; class zCVob; class zCVobLightData; class zCVobLightPreset; class zCVobLight; class zCVobLevelCompo; class zCVobIdentifier; class zCEventCommon; class zCTriggerBase; class zCTrigger; class zCEventMover; class zCMover; class zCTriggerTeleport; class zCTriggerList; class zCEffect; class zCEarthquake; class zCPFXControler; class zCTouchDamage; class zCVobStair; class zCTouchAnimate; class zCTouchAnimateSound; class zCVobAnimate; class zCVobLensFlare; class zCEventScreenFX; class zCVobScreenFX; class zCMessageFilter; class zCTriggerUntouch; class zCTriggerWorldStart; class zCCodeMaster; class zCMoverControler; class zCVobChar; class zCVobWaypoint; class zCWaypoint; class zCWay; class zCWayNet; class zCRoute; class zCVobSpot; class zCVobStartpoint; class zCCallback; class zCVobCallback; class zCWorldPerFrameCallback; struct zTTraceRayReport; class zCWorld; class zCWorldInfo; class zCBBox3DSorterBase; class zCZone; class zCZoneZFog; class zCZoneZFogDefault; class zCZoneReverb; class zCZoneReverbDefault; class zCZoneMusic; class zCZoneVobFarPlane; class zCZoneVobFarPlaneDefault; class zCVobSound; class zCVobSoundDaytime; class zCTransferConstr; class zCTransfer; class zCPatch; class zCPatchMap; enum zTAICamMsg; enum zTMatIDList; enum zTAnimationMode; enum zELogTopicStatus; enum zELogSection; enum TMobInterDirection; enum TMobMsgSubType; enum TDamageSubType; enum TWeaponSubType; enum TMovementSubType; enum TAttackSubType; enum TUseItemSubType; enum TStateSubType; enum TManipulateSubType; enum TConversationSubType; enum TConversationSubType; enum zTPortalType; enum zTWayPoint; enum zTSurfaceAlignMode; enum zTMovementState; enum zTArchiveMedium; enum zTAccessMode; enum zEOctreeChild; enum zTSpanningMode; enum zTCSPlayResult; enum TCutsceneSubType; enum zTCSRoleFlag; enum zTCSCheckResult; enum zTCSRunBehaviour; enum zEConfigState; enum zTCSCam_EvSubType; enum zTCSCam_ActivateSubType; enum zTCamTrj_FOR; enum zTCamTrj_LoopMode; enum zCOLLECT_MODE; enum zTFileSourceType; enum zTEventMusicControlerSubType; enum zTCamAlign; enum zTTexAniType; enum zTCamLocationHint; enum zTLoopType; enum zTSpeakerType; enum zTSndManMedium; enum zTOperatingSystem; enum zTCpuType; enum zTTexFileDesiredBPP; enum zTThread_Prio; enum LOCK_FLAGS; enum LOCK_FLAGS; enum zTCalcVertNormalMode; enum zTTimeBehavior; enum zTEventCoreSubType; enum zTVobCharClass; enum zTMovementMode; enum zTDynShadowType; enum zTEventCommonSubType; enum zTEventMoverSubType; enum zTMoverState; enum zTMoverAniType; enum zTMoverBehavior; enum zTTouchBehavior; enum zTPosLerpType; enum zTSpeedType; enum zTListProcess; enum zTDamageCollType; enum zTEventScreenFXSubType; enum zTMessageType; enum zTWorldLoadMode; enum zTWorldSaveMode; enum zTWorldLoadMergeMode; enum zTStaticWorldLightMode; enum zTSoundVolType; enum zTSoundMode; enum zTWld_RenderMode; enum zTRnd_ScreenMode; enum zTInfoMgrMode; enum TFAction; enum zETradeDialogSection; enum zEHeading; enum zTViewFX; enum zTViewFX; enum zTViewAlign; enum zTVisualCamAlign; enum zTPMLightingMode; } // namespace Gothic_II_Addon #endif // __ZPROTOTYPES_H__VER0__
[ "amax96@yandex.ru" ]
amax96@yandex.ru
038c8ef349bf163892e58277245e03850f000953
75d303983f1789b3b26b433117d9360001cd37d9
/BIL 105E - Intr to Sci&Eng Comp (C)/Uygulamalar/Uygulama 4/2.cpp
2339a017825e658a7fc852a608d2ca934b8619b4
[]
no_license
tugrulyatagan/itu_comp_eng_lectures
22452ef2af569bbc89de68809595bac5f992d89a
c6f62e142a7df5aaef68e3345833f2092b2f2364
refs/heads/master
2022-12-15T21:18:18.519189
2020-09-20T22:21:46
2020-09-20T22:21:46
297,064,338
14
2
null
null
null
null
UTF-8
C++
false
false
473
cpp
/************************************************************ * ornek : 4-2 * * aciklama: uclu operator ile 2 sayinin karsilastirilmasi * * derleme : g++ -o program_ismi 2.cpp * ************************************************************/ #include <iostream> using namespace std; int main() { int i, j; cout << "Farkli 2 sayi giriniz: "; cin >> i >> j; (i>j) ? cout << i << " > " << j << endl : cout << i << " < " << j << endl; return 0; }
[ "tugrulyatagan@gmail.com" ]
tugrulyatagan@gmail.com
f04b34b8900c1ee0516a49eb8d3c2064afb0a08b
cf9487be08672286ddd67150c46f99348638e536
/OPRoS/OprosDevelopment/IDE/CommonLibrary/include/device/ObjectVelocityData.h
d9e50e459d9d31d0782340c1b54d78b36c153218
[]
no_license
yujinrobot/kobuki_opros
7cfe0ea6913ada4a82118014c7337dbe151c09a2
29ea26f87acc9c966d1b2eae3d80f47f32da887a
refs/heads/master
2021-01-01T05:47:41.270512
2013-11-21T05:00:01
2013-11-21T05:00:01
14,552,448
1
0
null
null
null
null
UTF-8
C++
false
false
2,530
h
/************************************************************* file: ObjectVelocityData.h author: E.C. Shin begin: March 13 2013 copyright: (c) 2012 KITECH, OPRoS email: uncholshin@gmail.com *************************************************************** OPRoS source code is provided under a dual license mode: LGPL and OPRoS individually. LGPL: You can redistribute it and/or modify it under the terms of the Less GNU General Public License as published by the Free Software Foundation, either version 3 of the License. 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 Less GNU General Public License for more details. You should have received a copy of the Less GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. OPRoS individual license: An individual license is a license for modifying the source code of OPRoS and distiributing it in a closed format for commercial purposes. If you are interested in this option, please see <http://www.opros.or.kr>. This license policy may be changed without prior notice. ***************************************************************/ #pragma once #include "ApiTypes.h" namespace OPRoS { class ObjectVelocityData { public: ObjectVelocityData(void) { status = OPROS_SUCCESS; x = y = z = roll = pitch = yaw = 0.0; } ObjectVelocityData(float64_t x, float64_t y, float64_t z, float64_t roll, float64_t pitch, float64_t yaw) { status = OPROS_SUCCESS; this->x = x; this->y = y; this->z = z; this->roll = roll; this->pitch = pitch; this->yaw = yaw; } virtual ~ObjectVelocityData(void) { } ReturnType status; float64_t x; float64_t y; float64_t z; float64_t roll; float64_t pitch; float64_t yaw; void save(opros::archive::oarchive &ar, const unsigned int) { ar << status; ar << x; ar << y; ar << z; ar << roll; ar << pitch; ar << yaw; } void load(opros::archive::iarchive &ar, const unsigned int) { ar >> status; ar >> x; ar >> y; ar >> z; ar >> roll; ar >> pitch; ar >> yaw; } ObjectVelocityData operator=(const ObjectVelocityData &arg) { this->status = arg.status; this->x = arg.x; this->y = arg.y; this->z = arg.z; this->roll = arg.roll; this->pitch = arg.pitch; this->yaw = arg.yaw; return *this; } }; inline std::string typeName(ObjectVelocityData *p) { return "ObjectVelocityData"; } }
[ "hcjung@yujinrobot.com" ]
hcjung@yujinrobot.com
c66ec5d8e6e8a36d424f05f78e0f753edeef2af3
68572da614e34b418daab726a4075fd62eea2375
/practice/4/exercises/1_median.cpp
82581b243b46cc9f8a5e13bf485ad7a1610121f5
[]
no_license
samkots/ppp2e
25ff5e7d2562476f670b439d75bde3564a66e3b7
b84cfa056600415b8136d773427f11f104e32c5e
refs/heads/master
2022-01-24T04:16:55.444701
2019-08-06T16:36:56
2019-08-06T16:36:56
113,661,884
1
0
null
2017-12-31T16:15:44
2017-12-09T10:44:22
C++
UTF-8
C++
false
false
471
cpp
#include "std_lib_facilities.h" int main() { vector<double> temps; //temperatures for (double temp; cin >> temp;) temps.push_back(temp); double sum = 0; for (int x : temps) sum += x; cout << "Aberate temperatures: " << sum / temps.size() << "\n"; sort(temps); cout << "Median temperature: "; if (temps.size() % 2 == 0) cout << ( temps[temps.size() / 2 - 1] + temps[temps.size() / 2] ) / 2; else cout << temps[temps.size() / 2]; cout << "\n"; }
[ "samkots@gmail.com" ]
samkots@gmail.com
8ebe5282de14d31a1104e2394f93379575a20543
e979e16ee30a2a2dcb40daef6df3a7a08abe2a71
/tarea-6/ejercicio6.cpp
e1d52f24dd685c40b3a5d5fa5f5a6928a877af7d
[]
no_license
00303120/funda-progra
b85532b4e2eab4561a8510d0e756c65e2b5c5dd7
5e1ae7b22e7dc84d55f0f16a7a1b54d39832d62d
refs/heads/master
2022-11-17T06:55:57.807427
2020-07-11T19:47:52
2020-07-11T19:47:52
263,180,543
0
0
null
null
null
null
UTF-8
C++
false
false
2,400
cpp
#include <iostream> #include <string> using namespace std; // Escriba un programa que, dado un arreglo y un número entero, cuente cuantas veces // se repite dicho número en el arreglo. // string str_pad(string, int, string); int main(){ int len, num, items; void readArray(int [ ], int); int countInArray(int [ ], int, int); cout << "\n------------------------------------------------------------------------------------\n"; cout << "----------------Inicio: Repeticiones de un número en un Arreglo---------------------\n"; cout << "------------------------------------------------------------------------------------\n\n"; cout << "------------------------------------------------------------------------------------\n"; // Leo los valores ingresados por el usuario cout << "| Digite el número de items del arreglo |: "; cin >> len; cout << "------------------------------------------------------------------------------------\n"; int array[len]; readArray(array,len); cout << "------------------------------------------------------------------------------------\n"; cout << "| Digite el número a buscar |: "; cin >> num; cout << "------------------------------------------------------------------------------------\n"; items = countInArray(array,len, num); cout << "\n------------------------------------------------------------------------------------\n"; cout << "| Número de ocurrencias de " << num <<" |: " << items; cout << "\n------------------------------------------------------------------------------------\n\n"; cout << "------------------------------------------------------------------------------------\n"; cout << "------------------Fin: Repeticiones de un número en un Arreglo----------------------\n"; cout << "------------------------------------------------------------------------------------\n\n"; return 0; } void readArray(int array[], int len){ for (int i = 0; i < len; i++) { cout << "| Digite el número del item " << to_string(i+1) <<" |: "; cin >> array[i]; } } int countInArray(int array[], int len, int num){ int items = 0; for (int i = 0; i < len; i++) { if(array[i] == num){ items ++; } } return items; }
[ "00303120@uca.edu.sv" ]
00303120@uca.edu.sv
6524674d1c57b031604ad7279e61270fb100da27
9467e2502183e843a67736800199e31674b1d8f6
/HybridCLRData/LocalIl2CppData-OSXEditor/il2cpp/libil2cpp/os/Posix/NativeMethods.cpp
d33c9ccc1f7f9d2b962835691d427bb658dd4cfa
[ "Apache-2.0" ]
permissive
yimengfan/BDFramework.Core
3a046fcd755a84ba55d648dd3ad52c37a1cc1a04
81380fce8e84367f912777717665b53f074ab617
refs/heads/master
2023-09-04T10:08:47.644992
2023-07-05T16:22:11
2023-07-05T16:22:11
85,928,537
2,421
497
Apache-2.0
2023-03-21T06:56:21
2017-03-23T09:03:48
C#
UTF-8
C++
false
false
840
cpp
#include "il2cpp-config.h" #if IL2CPP_TARGET_POSIX && !IL2CPP_TINY_WITHOUT_DEBUGGER #include "os/NativeMethods.h" #include "os/Process.h" namespace il2cpp { namespace os { bool NativeMethods::CloseProcess(ProcessHandle* handle) { IL2CPP_NOT_IMPLEMENTED_ICALL(NativeMethods::CloseProcess); IL2CPP_UNREACHABLE; return false; } bool NativeMethods::GetExitCodeProcess(ProcessHandle* handle, int32_t* exitCode) { IL2CPP_NOT_IMPLEMENTED_ICALL(NativeMethods::GetExitCodeProcess); IL2CPP_UNREACHABLE; return false; } int32_t NativeMethods::GetCurrentProcessId() { return Process::GetCurrentProcessId(); } ProcessHandle* NativeMethods::GetCurrentProcess() { return Process::GetProcess(Process::GetCurrentProcessId()); } } } #endif
[ "y755737878@gmail.com" ]
y755737878@gmail.com
b8209e5b2c460b1d7766ebdd583a054dfd5186d6
7518a08a0b1280d86a8190b819ab4fb663df0b5e
/include/h5dspace.h
8bffa0f62361366c738a5faa5f89144f2abeddf4
[]
no_license
rootkit/h5cpp
a96703daa6d2a9188e6cb83f43114574399984fb
47c42ab777c388669dafd6f66ac81902c924697c
refs/heads/master
2021-06-22T20:51:43.658010
2016-07-06T18:35:47
2016-07-06T18:35:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
613
h
#ifndef h5dspace_GUARD_H #define h5dspace_GUARD_H #include "hdf5.h" #include <vector> namespace h5cpp { extern hsize_t inf; struct dataspace { explicit dataspace(std::vector<hsize_t> dims, std::vector<hsize_t> max_dims={}, std::vector<hsize_t> chunk_dims={}, bool compressed=false); explicit dataspace(hid_t dspace_id, hid_t prop_id = H5P_DEFAULT); dataspace() = default; hsize_t drank; std::vector<hsize_t> dims, max_dims, chunk_dims; bool extendable = false, unlimited = false; bool chunked = false, compressed = false; private: void set_bools(); }; } #endif
[ "japarker@uchicago.edu" ]
japarker@uchicago.edu
d1fd5f216ddd717fb9f9106e003108bf791fdabf
53ff367aa3524ae3a5d2d611169d4f12b1f8404d
/src/Sample.h
1c433eae7044a52c3e30ed3305ed25e25b4e88c2
[ "Apache-2.0" ]
permissive
carmanuelz/platform_map_editor
7980f4cc5cc2320106aec12a6361bcfefee1b63b
dfcff940ec1823739a3e073b8b8c1065f49122ba
refs/heads/master
2021-05-31T02:54:39.685077
2016-03-19T16:34:22
2016-03-19T16:34:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,772
h
// // Copyright (c) 2008-2014 the Urho3D project. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. // #pragma once #include "Urho3D/Engine/Application.h" namespace Urho3D { class Node; class Scene; class Sprite; } // All Urho3D classes reside in namespace Urho3D using namespace Urho3D; /// Sample class, as framework for all samples. /// - Initialization of the Urho3D engine (in Application class) /// - Modify engine parameters for windowed mode and to show the class name as title /// - Create Urho3D logo at screen /// - Set custom window title and icon /// - Create Console and Debug HUD, and use F1 and F2 key to toggle them /// - Toggle rendering options from the keys 1-8 /// - Take screenshot with key 9 /// - Handle Esc key down to hide Console or exit application /// - Init touch input on mobile platform using screen joysticks (patched for each individual sample) class Sample : public Application { // Enable type information. URHO3D_OBJECT(Sample, Application); public: /// Construct. Sample(Context* context); /// Setup before engine initialization. Modifies the engine parameters. virtual void Setup(); /// Setup after engine initialization. Creates the logo, console & debug HUD. virtual void Start(); protected: /// Logo sprite. SharedPtr<Sprite> logoSprite_; /// Scene. SharedPtr<Scene> scene_; /// Camera scene node. SharedPtr<Node> cameraNode_; Vector<Vector2> mapnode; private: /// Set custom window Title & Icon void SetWindowTitleAndIcon(); /// Handle key down event to process key controls common to all samples. void HandleKeyDown(StringHash eventType, VariantMap& eventData); }; #include "Sample.inl"
[ "carmanuel.zarate@gmail.com" ]
carmanuel.zarate@gmail.com
415170722f5ea9641efa93b5b3b75b3f2e3eb252
520471cc20647650cee8557cfc666ed01693a22b
/GCHandler_IL2CPPCode/Classes/Native/GenericMethods2.cpp
60672b747da09cebc5526d170a99a552d70db2c3
[]
no_license
asdlei99/IL2CPP_Internals
121bc8f0971a0c3f963bc2bf5801a0d15e73e283
3024679f41b9a23daea6770a47e1a437408045cf
refs/heads/master
2023-01-24T10:07:55.222378
2020-12-11T08:41:31
2020-12-11T08:41:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,678,252
cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <cstring> #include <string.h> #include <stdio.h> #include <cmath> #include <limits> #include <assert.h> #include <stdint.h> #include "il2cpp-class-internals.h" #include "codegen/il2cpp-codegen.h" #include "il2cpp-object-internals.h" template <typename R, typename T1, typename T2, typename T3, typename T4> struct VirtFuncInvoker4 { typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method); } }; template <typename R, typename T1> struct VirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R> struct InterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; // MS.Internal.Xml.Cache.XPathNodeInfoAtom struct XPathNodeInfoAtom_t6FF2C2B2096901C0BB3988616FBA285A67947AC7; // MS.Internal.Xml.Cache.XPathNodeRef[] struct XPathNodeRefU5BU5D_t42E3ACCBD8D6FA1DD321905EB2253ABA6173B1E1; // MS.Internal.Xml.Cache.XPathNode[] struct XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B; // Mono.Globalization.Unicode.CodePointIndexer/TableRange[] struct TableRangeU5BU5D_t6948DE52FB348848EC96FB928C2FCFEFB250C23A; // PInokeDemo/Boss[] struct BossU5BU5D_t732B317799F37FFEDE8CA5EE7CEFD0D447C6A6AE; // System.Action`1<System.Object> struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0; // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1; // System.ArgumentNullException struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA; // System.ArraySegment`1<System.Byte>[] struct ArraySegment_1U5BU5D_tD48E38276F3154239297C16C6458D97ECFC6D066; // System.AsyncCallback struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4; // System.Boolean[] struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040; // System.ByteEnum[] struct ByteEnumU5BU5D_t0C6DF506BED920F322C686A6E35C9D192F3C5D76; // System.Byte[] struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; // System.Char[] struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; // System.Collections.DictionaryEntry[] struct DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56; // System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>[] struct EntryU5BU5D_t09B55F85AF27D0D332699AA879A1B10B193B5586; // System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>[] struct EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>[] struct EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>[] struct EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>[] struct EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>[] struct EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>[] struct EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4; // System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>[] struct EntryU5BU5D_tCE3D39EBBB127037F170BD1FBADFA7D55D88E594; // System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task> struct Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F; // System.Collections.Generic.EqualityComparer`1<System.Boolean> struct EqualityComparer_1_tEF2C39D86C36E82597707B89981FFD60E94C824B; // System.Collections.Generic.EqualityComparer`1<System.Byte> struct EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5; // System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>> struct EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77; // System.Collections.Generic.EqualityComparer`1<System.DateTime> struct EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998; // System.Collections.Generic.EqualityComparer`1<System.DateTimeOffset> struct EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4; // System.Collections.Generic.EqualityComparer`1<System.Decimal> struct EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B; // System.Collections.Generic.EqualityComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo> struct EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF; // System.Collections.Generic.EqualityComparer`1<System.Double> struct EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102; // System.Collections.Generic.EqualityComparer`1<System.Int16> struct EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D; // System.Collections.Generic.EqualityComparer`1<System.Int32> struct EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33; // System.Collections.Generic.EqualityComparer`1<System.Int32Enum> struct EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C; // System.Collections.Generic.EqualityComparer`1<System.Int64> struct EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E; // System.Collections.Generic.EqualityComparer`1<System.Object> struct EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA; // System.Collections.Generic.EqualityComparer`1<System.SByte> struct EqualityComparer_1_t1653BBB342B487357DF28761F33A34441A5A2371; // System.Collections.Generic.EqualityComparer`1<System.Single> struct EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6; // System.Collections.Generic.EqualityComparer`1<System.TimeSpan> struct EqualityComparer_1_tD60BF9630038224362477637F04D8F02D49DA7C4; // System.Collections.Generic.EqualityComparer`1<System.UInt16> struct EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E; // System.Collections.Generic.EqualityComparer`1<System.UInt32> struct EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114; // System.Collections.Generic.EqualityComparer`1<System.UInt64> struct EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13; // System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock> struct EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7; // System.Collections.Generic.EqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest> struct EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79; // System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>[] struct KeyValuePair_2U5BU5D_t09978BE60DE0548A94B8E535D3171CCAC7DCA928; // System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>[] struct KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F; // System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>[] struct KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7; // System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>[] struct KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A; // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>[] struct KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>[] struct KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>[] struct KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[] struct KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>[] struct KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB; // System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>[] struct KeyValuePair_2U5BU5D_t90BD5627DE1270CB7D2384CFC863BF0E5C371EDD; // System.Collections.Hashtable/bucket[] struct bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A; // System.Collections.IDictionary struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7; // System.DateTimeOffset[] struct DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25; // System.DateTime[] struct DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1; // System.Decimal[] struct DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F; // System.DelegateData struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE; // System.Delegate[] struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196; // System.Diagnostics.Tracing.EventProvider/SessionInfo[] struct SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906; // System.Diagnostics.Tracing.EventSource/EventMetadata[] struct EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94; // System.Diagnostics.Tracing.TraceLoggingEventTypes struct TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25; // System.Double[] struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D; // System.EventHandler`1<System.Threading.Tasks.UnobservedTaskExceptionEventArgs> struct EventHandler_1_tF704D003AB4792AFE4B10D9127FF82EEC18615BC; // System.Exception struct Exception_t; // System.Func`1<System.Int32> struct Func_1_t30631A63BE46FE93700939B764202D360449FE30; // System.Func`1<System.Object> struct Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386; // System.Func`1<System.Threading.Tasks.Task/ContingentProperties> struct Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Boolean>> struct Func_2_t185FBBAFD46813778C35A8D4A5FA3AFB4FC0E14C; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Int32>> struct Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>> struct Func_2_t701CADF8EBD45CB33B018417B83025C3FF39ABA3; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Object>> struct Func_2_tDAE4310E42C13AE378CDF0371BD31D6BF4E61EBD; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>> struct Func_2_t9FE43757FE22F96D0EA4E7945B6D146812F2671F; // System.Func`3<System.Object,System.IAsyncResult,System.Int32> struct Func_3_t08CF63B59BC63E8AE004A536A6B44732E99669C3; // System.Func`3<System.Object,System.IAsyncResult,System.Object> struct Func_3_t938004A9DB4ADA4E7536BD2B144046530B9D9F70; // System.Func`3<System.Object,System.IAsyncResult,System.Threading.Tasks.VoidTaskResult> struct Func_3_t10D75DD9A8F9128B5F94D47B701C2C772F970E5C; // System.Func`5<System.Object,System.IO.Stream/ReadWriteParameters,System.AsyncCallback,System.Object,System.IAsyncResult> struct Func_5_tCD28B0DD63B5001780DFA4DA7262B464635EE2DE; // System.Func`5<System.Object,System.Object,System.AsyncCallback,System.Object,System.IAsyncResult> struct Func_5_t96F7CF869D24BEEA26823BBA05B1916FD408399E; // System.Globalization.InternalCodePageDataItem[] struct InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834; // System.Globalization.InternalEncodingDataItem[] struct InternalEncodingDataItemU5BU5D_t0579A8C6FC0871F0230E51290511BF0C9C706C68; // System.Guid[] struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF; // System.IAsyncResult struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598; // System.IO.Stream struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7; // System.IO.TextReader struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A; // System.Int16[] struct Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28; // System.Int32Enum[] struct Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A; // System.Int32[] struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83; // System.Int64[] struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F; // System.IntPtr[] struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD; // System.Net.CookieTokenizer/RecognizedAttribute[] struct RecognizedAttributeU5BU5D_t7397ED532D4301EECF9C9119CFF1F732D3F75A55; // System.Net.HeaderVariantInfo[] struct HeaderVariantInfoU5BU5D_t0E01B2AC4A3A836E5AC79344A8F0CBD547CC8012; // System.Net.Sockets.Socket/WSABUF[] struct WSABUFU5BU5D_t4B8BBCF555CCE5338B6EA731D4126DA68ECE9C80; // System.NotSupportedException struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010; // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; // System.OperationCanceledException struct OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90; // System.ParameterizedStrings/FormatParam[] struct FormatParamU5BU5D_t2F95A3C5AF726E75A42BC28843BAD579B62199B5; // System.Predicate`1<System.Object> struct Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979; // System.Predicate`1<System.Threading.Tasks.Task> struct Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335; // System.RankException struct RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F; // System.Reflection.CustomAttributeNamedArgument[] struct CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828; // System.Reflection.CustomAttributeTypedArgument[] struct CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05; // System.Reflection.MemberInfo struct MemberInfo_t; // System.Reflection.MethodInfo struct MethodInfo_t; // System.Reflection.MonoProperty/GetterAdapter struct GetterAdapter_t74BFEC5259F2A8BF1BD37E9AA4232A397F4BC711; // System.Reflection.MonoProperty/Getter`2<System.Object,System.Object> struct Getter_2_t98CD32D513A740F69F79D73DBD59A1BC8A33711C; // System.Reflection.MonoProperty/StaticGetter`1<System.Object> struct StaticGetter_1_t1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1; // System.Reflection.ParameterInfo[] struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694; // System.Reflection.ParameterModifier[] struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA; // System.Resources.ResourceLocator[] struct ResourceLocatorU5BU5D_t59B7EB7C559188316AF65FCF8AF05BFD7EF9ADCC; // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Threading.Tasks.TaskScheduler,System.Object> struct ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C; // System.Runtime.CompilerServices.Ephemeron[] struct EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10; // System.Runtime.InteropServices.GCHandle[] struct GCHandleU5BU5D_tA6EC6308F1B33AD5233BD26DE6FB431B6CEF1DB7; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770; // System.SByte[] struct SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889; // System.Security.Cryptography.RandomNumberGenerator struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2; // System.Security.Cryptography.X509Certificates.X509ChainStatus[] struct X509ChainStatusU5BU5D_tA8CCC33D50C4BCF6F657063CD1DACCC3B9A7BFBB; // System.Single[] struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5; // System.String struct String_t; // System.Text.Decoder struct Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26; // System.Text.Encoding struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4; // System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping[] struct LowerCaseMappingU5BU5D_t70011E1042888E1D071920A9171989A479C0618D; // System.Threading.CancellationCallbackInfo struct CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36; // System.Threading.CancellationTokenRegistration[] struct CancellationTokenRegistrationU5BU5D_t4B36771A6344CFC66696BB16419C664E286DAF1B; // System.Threading.CancellationTokenSource struct CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE; // System.Threading.ContextCallback struct ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676; // System.Threading.ManualResetEvent struct ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408; // System.Threading.SendOrPostCallback struct SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01; // System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo> struct SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7; // System.Threading.Tasks.StackGuard struct StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9; // System.Threading.Tasks.Task/ContingentProperties struct ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08; // System.Threading.Tasks.TaskFactory struct TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155; // System.Threading.Tasks.TaskFactory`1<System.Boolean> struct TaskFactory_1_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17; // System.Threading.Tasks.TaskFactory`1<System.Int32> struct TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7; // System.Threading.Tasks.TaskFactory`1<System.Nullable`1<System.Int32>> struct TaskFactory_1_tBDEE73CC26733B668E00E1788D332FB0D9CC209E; // System.Threading.Tasks.TaskFactory`1<System.Object> struct TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C; // System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult> struct TaskFactory_1_t3C0D0DC20C0FC00DE4F8740B351BE642467AB03D; // System.Threading.Tasks.TaskScheduler struct TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114; // System.Threading.Tasks.Task`1<System.Boolean> struct Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439; // System.Threading.Tasks.Task`1<System.Int32> struct Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87; // System.Threading.Tasks.Task`1<System.Int32>[] struct Task_1U5BU5D_tF1E5C7D356B3C934B63AB0B3384819D681C4FD20; // System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>> struct Task_1_t8906695C9865566AA79419735634FF27AC74506E; // System.Threading.Tasks.Task`1<System.Object> struct Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09; // System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult> struct Task_1_t1359D75350E9D976BFA28AD96E417450DE277673; // System.TimeSpan[] struct TimeSpanU5BU5D_tCF326C038BD306190A013AE3C9F9B1A525054DD5; // System.Tuple`2<System.Diagnostics.Tracing.EventProvider/SessionInfo,System.Boolean> struct Tuple_2_tFB909554E9029649923EA250C43FBDD4F4548252; // System.Tuple`2<System.Guid,System.Int32> struct Tuple_2_t24BE91BA338C2678B7B104B30F6EB33015FF720E; // System.Tuple`2<System.Int32,System.Int32> struct Tuple_2_t28940D9AA109CFB8C1D8CAEDD0EAF70EAD2F7C63; // System.Tuple`2<System.Object,System.Object> struct Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5; // System.Type struct Type_t; // System.UInt16Enum[] struct UInt16EnumU5BU5D_t59CC59ED969571152B93967388F196CADE982BAF; // System.UInt16[] struct UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E; // System.UInt32Enum[] struct UInt32EnumU5BU5D_t2778403AF5991B56F3099A77451B997447A7780C; // System.UInt32[] struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB; // System.UInt64[] struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4; // System.UIntPtr[] struct UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E; // System.Uri struct Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E; // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017; // System.Xml.IDtdEntityInfo struct IDtdEntityInfo_t4477A2221D64D9E3DB7F89E82E963BB4858A38D2; // System.Xml.Schema.BitSet struct BitSet_t0E4C53EC600670A4B74C5671553596978880138C; // System.Xml.Schema.SequenceNode struct SequenceNode_tAB18F790CB1B5BCD1D984EECC17C841B00881608; // System.Xml.Schema.SequenceNode/SequenceConstructPosContext[] struct SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0; // System.Xml.XmlNamespaceManager/NamespaceDeclaration[] struct NamespaceDeclarationU5BU5D_t92995CBBEC52166860E77B72B8EEFF00E4D64E84; // System.Xml.XmlTextReaderImpl/ParsingState[] struct ParsingStateU5BU5D_t7A5096046F9BF1BA70E9696B2A2479272FC65739; // UnityEngine.BeforeRenderHelper/OrderBlock[] struct OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101; // UnityEngine.Camera struct Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34; // UnityEngine.Events.UnityAction struct UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4; // UnityEngine.Experimental.LowLevel.PlayerLoopSystem/UpdateFunction struct UpdateFunction_tE0936D5A5B8C3367F0E6E464162E1FB1E9F304A8; // UnityEngine.Experimental.LowLevel.PlayerLoopSystem[] struct PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2; // UnityEngine.GameObject struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F; // UnityEngine.Keyframe[] struct KeyframeU5BU5D_tF4DC3E9BD9E6DB77FFF7BDC0B1545B5D6071513D; // UnityEngine.Object struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0; // UnityEngine.Playables.PlayableBinding/CreateOutputMethod struct CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3; // UnityEngine.Playables.PlayableBinding[] struct PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB; // UnityEngine.SendMouseEvents/HitInfo[] struct HitInfoU5BU5D_tA1A7DB3D520CAACEC1B3C3EC4071E4DA2EACA745; // UnityEngine.SocialPlatforms.GameCenter.GcAchievementData[] struct GcAchievementDataU5BU5D_tC79014E784EC39581F7829D8AE60004B54433153; // UnityEngine.SocialPlatforms.GameCenter.GcScoreData[] struct GcScoreDataU5BU5D_tC3FADFA824E9BFBAA13EAE94D6A9BD04A19AE940; // UnityEngine.UnitySynchronizationContext/WorkRequest[] struct WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0; extern RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var; extern RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var; extern RuntimeClass* ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var; extern RuntimeClass* IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598_il2cpp_TypeInfo_var; extern RuntimeClass* Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var; extern RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var; extern RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var; extern RuntimeClass* RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var; extern RuntimeClass* TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var; extern String_t* _stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB; extern String_t* _stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A; extern String_t* _stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA; extern String_t* _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25; extern String_t* _stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D; extern String_t* _stringLiteral34EB4C4EF005207E8B8F916B9F1FFFACCCD6945E; extern String_t* _stringLiteral3D54973F528B01019A58A52D34D518405A01B891; extern String_t* _stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC; extern String_t* _stringLiteral5D42AD1769F229C76031F30A404B4F7863D68DE0; extern String_t* _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56; extern String_t* _stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA; extern String_t* _stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90; extern String_t* _stringLiteralBA7B76F7CEFAFC945D4F1E46E2C21A2894A4FD10; extern String_t* _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346; extern String_t* _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556; extern const RuntimeMethod* Array_Fill_TisRuntimeObject_m17788C749A1F812B9910BAB0DAAFC24E5B2542D9_RuntimeMethod_var; extern const RuntimeMethod* Array_Fill_TisRuntimeObject_mE8179E5A1AFA2F343A691AD05F333C81C7E89177_RuntimeMethod_var; extern const RuntimeMethod* Array_ForEach_TisRuntimeObject_mD8B1EA04C06936E21C2BB9B0FF603E09F75146C0_RuntimeMethod_var; extern const RuntimeMethod* Array_IndexOf_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m74325B7B58F69E259492B67D164BB4479AD17FA9_RuntimeMethod_var; extern const RuntimeMethod* Array_IndexOf_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mB9568EE42C087C0A2EB926E532223177FCC29EBF_RuntimeMethod_var; extern const RuntimeMethod* Array_IndexOf_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mFA65D95FD236AC9B9D57D5424D6EB52C0AEDBEB2_RuntimeMethod_var; extern const RuntimeMethod* Array_IndexOf_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m29593BCE85881B0C6B8456564445363B6149E0E9_RuntimeMethod_var; extern const RuntimeMethod* Array_IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m58E90042E7B17B74CB00683164B0B720BA91A8B5_RuntimeMethod_var; extern const RuntimeMethod* Array_IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mB69F9A4858DC906B554451585199281F230F4EE5_RuntimeMethod_var; extern const RuntimeMethod* Array_IndexOf_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mB542BE30A1D20C2D322F64113EE448F3BDD7F73D_RuntimeMethod_var; extern const RuntimeMethod* Array_IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA3A1313F7FD2A62CE172AEF0501E52E60B7AE9DD_RuntimeMethod_var; extern const RuntimeMethod* Array_IndexOf_TisRuntimeObject_m13B203F08875E17F92EC3ABF6A3C7B76351E79A8_RuntimeMethod_var; extern const RuntimeMethod* Array_IndexOf_TisRuntimeObject_m40554FA47BA74C45E33C913F60628DD0E83DB370_RuntimeMethod_var; extern const RuntimeMethod* Array_IndexOf_TisRuntimeObject_mAA3A139827BE306C01514EBF4F21041FC2285EAF_RuntimeMethod_var; extern const RuntimeMethod* Array_IndexOf_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m8D9D50FFC33517634177128B53BA51CB7A724D3B_RuntimeMethod_var; extern const RuntimeMethod* Array_IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA91455A82DA1E75779F77E30564F3425C79601A4_RuntimeMethod_var; extern const RuntimeMethod* Array_IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m39D77B3B21AD0C5FF6C74D4903289CAFDB17E6B5_RuntimeMethod_var; extern const RuntimeMethod* Array_IndexOf_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mD906003D8041F33D4E100B2551C3F1EF40BE03D3_RuntimeMethod_var; extern const RuntimeMethod* Array_IndexOf_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mC73BEE02B23B512E58EC685F1CA1E94B0F853BE5_RuntimeMethod_var; extern const RuntimeMethod* Array_IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m48022B8A70A2C45E247884ED52141FCA9695A1B0_RuntimeMethod_var; extern const RuntimeMethod* Array_IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m295FA2C782117B117C7C15EA1A40B5C89BCA5A95_RuntimeMethod_var; extern const RuntimeMethod* Array_IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mCE7226D6E0020AF1553F7171B52CD314D7F69356_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_mD419DB7AEBE8E0BFEDA0CEA5273317FBB6A80041_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m532C28C679898CA0B23D07FD800B6382955FAE11_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisBoss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_mE723D423231A8DA65D51AA19B9C04DB4374D4907_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_m78CF9558B4D043BA3A9A59302D8F7F9047279DC6_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m6CE9D938BF844C4B0941F64D66238FF0BAF88E59_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m52F54CCFA1A2F9024D1DFA3C10213AC86AC571CA_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE9876BA14462806C7F0DA620920EDEBBD262679F_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m520DB9E5D654654E0DF9557B69164AF7050C34A1_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mEE8FA99D85B70DFDB094944EDF18BE4A7853B357_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_mD69224E21DC29B25C4E8F23BE71B3A654419DCC8_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mA5B7B5E10D668EF4B1826A8AF5AC8E4C3FE362F3_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m1259069E61BF9090D90CCB226B622D52F568689F_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m750633AE7011FC3270A42BD78A0CD6CFF7A6D339_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m2724CF478D14143A842CE1C9F26C75D6DCB3D405_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m2B59878482B381DD2D3E374BA1A46EB11C398D66_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m8009794B657B23E794B64B064DA14786EB6566BB_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_m0512D75CE3CAA82398399EA0670D22F3BA397B18_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_m0D5BF49E148062C6B0357DC3F6E59FA9392B4BA3_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m41A93018BD641D0F91CA73B1FC145D853E87238B_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m5199D44A7C53600D74D50BA1B99B747E7D6AA7A3_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m7E273D12CF8694A47E9EA3246CCBA06A1DF2699A_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mE3AE4EA3CF71DA2A19BB2BDEE32758232559B8E2_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m7A511A9A1050449575F29E6E1FFA4B1455F69106_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mD43BFA4FE9AD453808D80227303D1A7F522823D8_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m7BDBAA78BB0BFCDE4C13D1FA2E16150B093EE963_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m5AAC663D9FF27C71867B58748C6FF2837B6E856E_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m11726F786B4311D52A4EBF8D264DF4A16D3D8DD2_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_m995196BE31136BA05B37EDDB3635C9045F8787D7_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisGuid_t_m3D3B4189F723AA35BA753196DEE29E21EFEE2895_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_m70D0ED5C29EF6D9368C4A8676290BA2E978DCCAD_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_m6C87F886E98CD03F15B7EAED01FDE0526F0F1C04_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mD7613C38460357CC7D632543AD4BFFADE41372B0_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mDE65E1A5B61F9FFFBA527F0733F213B50CD862A3_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m2846C327D205FD445F46B26A8337AA09A50DCA7F_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4249581FB074DA4BF8020A71CACE1DFC40799D8C_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisIntPtr_t_mA5CCAC9E9CC25E309F3810D44D853D16E68143AE_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_mF0FD4095BC83A9EFD6F73BFAAA1E2806A434D0A8_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m8170459B576E7C3284F5BF388BA5E8E08C49AFA3_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m820870FE13AC7D7DB9B4F697E3ADA0E4ED9F233E_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mE8D83A4F3F4E11B0B90811ABECB3AB0AA225E965_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m5B83ED22E5BB72C1EEE4378606E5AF227418E6E3_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mF64CC542989AA856B9F7C2A3982B92FAED8CF553_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m69320DEF59E083DBD93314746843C843B2339916_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m831BABA68A0669DA8B7D81DAA204DBF0F3B70862_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_m7CD8B9E5262B9148874F8E998E310C57FEED36E5_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_mED931E70FDD5AD80BE58308190296AF4BD2A2697_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mCD5EA65245A856DF4D46C3D1D83EF72D6649850B_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_m7CEF12B4E04306C2460EFF6B385303EDDEA9D10B_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m01C5CA55DB16B19394FD41FD3FCF5963951FE0CE_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m1776112EB9AF5A4FD01E374AE176D398A5D99272_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_m505616E356F55AE033B4E3EA64CE7EEA45EE364A_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA65A034C66A7843760B091E310C34D7E6A12319F_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m73A4C9FDB30642B0ABD7FAE47BC50C05EED42773_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mCA45F46B8202BA37C90B520537CAB7144F49CCA5_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m3DAF5EED039DF627E5A4021A1C889AA08D481DD3_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m98626C08538A34093C548E5F84681643FF2416A7_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m8D8FF259F8659ADEC0AE0A20610112656208931E_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m2EA0B46DC9C64F0BE418A85AAD5C9D51B42D9DC6_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisRuntimeObject_m0CCC0B9275EC8F89A85603F037804A668B41D6D7_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mACD698DB2EBC900286A7C038977637C855CACCE3_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m4C453CA95196F0F8236C8F1F8224F3E5731A0F1D_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m7AA0A527A2968388C17316F50F47678B4C1DB702_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mC0E828AAE8E2E46C8979EAEC50A8982717CD0959_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m41DC5285B61D03EDE86E49660265291FCB45E655_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m9447DCF7C9EEF7F6DD9C48083050A1A25AA28612_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_mEDC32AEEE8BA32C24A816F60B8A3F5C60BFAE12D_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mFAF3113B4A5963AB0BE38DEC63FB97971C7AF399_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_m13C196FD9E689117F225F55346057A56DE66BE1D_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mF287F6C0BE00077C872A4549CA38D6E0AB2CAB9F_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mC20BC01F1B502A5A125289CFD752F1274394A228_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisUIntPtr_t_m544443A94C05D083C3564BA6390987FB980A973A_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m606FE0393448E134D644CBE11555429A87722975_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m386448E6879CAE69737FA5FD60B804A2DF74F3F6_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_m029715C61AD85A107E0A9AF57775290BEC444656_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_m52EE21EFC47B98D715C87F254350015F18D41B6B_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_mF9AC98FDB7266A5B961E49E41917EAF7E0DD2AC7_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Add_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mB1C869D60E06C6306DEAAFBE85B4F06498C00CB4_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_mA2528857F521849E2F14BCE79FC3EDE70D42A4DB_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mC20BDC11F0575D4DDACD88DEAB020A75B564F11A_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisBoss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_m126F95D7ABF88805DA031E278DE1D09199D780A6_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_mB68275DACDBA8E7A31E8D4F94E29DE490C338846_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m29830CD9ACA0126B5E56A827D3E7C1EEFDAFFB8D_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m4092D39CA7E10BB63153F83830BC5B5D7119420C_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m8F737294D199447E8600FE272EF4B479D43BB930_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mAEB6C20A49EBEF1C32DBDA22711297F67A8324AF_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mDFEC6896DCE2B058F5B5A3589D67846EA61E1B7E_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m6367CE2E8CA64ACDCC54F816D81EF971659E9C0E_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m084940E8F2B606B8BF3A920943FA09B72FEAF9B9_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m256F348E2E222F2E84330A5649768C4F512B542E_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m9B747BA30199C9DEF5EFC5DDDCC6B41417445BD0_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m60845F7DCED5E45FA673B44E8DED8216501B3AE6_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m17FA206B6160A89ECE120941608D1B89D499203C_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m9E5B158A4C9B0A5FA3027E4177DA98DA6264A56C_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_m933B5C88D0FFDA109ACB00FD5F4FA361DAB4BC4C_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_m8B245106DF16D6928F9254467A3A36F7DC706474_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m3AECD5FB3B18910B3F0C8107C6EF08B1CEA10CCF_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m6CCE60ED174301858C1887A8DCEED6A2986F8510_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_mFCE0B6A27B30770A4B512BEDB254E192D5280D29_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBB075A2082A735C0ECB89547222A737D30DBBCC4_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m8B6C9962831994B1A8145034E0FC12D35DDF501A_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mD23818720ABA66BBD11AED8E8A714DB6194316AC_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_mBE12D8BD5A5303A11702F3DD6BACE684356B8F8D_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mB91156111C75E912C4DFE9C211F38E92A545F47C_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_mB8CE2101FF6E0E88A78DD42B272B1B3F639C23CE_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_mD9457D7567B4D60A03DC4DCF877F25A949F875A1_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisGuid_t_m663A30B0AC00832F23B734DE47889449C5422462_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mE478F0695ABB70E4112338210E32C38147786E20_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_m4179B7B21F7F8703575F5E7B14EAB494587CA2C3_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m5A3048CD7DD988CF1EAD557351B6A21BD9D37E19_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mA87E7254C64CF9CEE21A7B2EFF4EBA9159FE65A5_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mDFBFE353F08EDAFC6A507A56A24A5397D746C884_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mBAC8D474AD6C3CC84914CD1A6B687B6A93B5993E_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisIntPtr_t_m65565733C00CA67DA68AEB8764D4A4789F7F377E_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m8CB89746670D49E7D68E1B784D4902DB14B10191_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m02968552358CC33A7F34E3499B8AF85E173E2E33_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m4918F1A608A3EFBAE42BA98870BAF1D3F2F66072_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mD7B60B9965226E9CC04E946CA4C1F33A3923BE7B_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_mDBF23DF5BD427035EB0989C37936C066EBB80E3F_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m9D0B60E51BFBDE958FEF0FEA0559377BD587966C_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m739A55FED52BC421DC9BDA024BE349CD2D135C19_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m0531B1C9002D75197E0184136B83D014DE315618_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mB1E74A86E1E594EFDC925F9C97FE109DE05495A9_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m84E363DDEA7D4D7264474D49C05D77CC975B2A8C_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m4B25A8A2624679B8A2C001D9CD3912AB9A711E26_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_m104632AFFFFAA0522433EC83A8C64BB996C2954B_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m2A1F2D54AC27D60943B635063075055B75674696_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m50C7AF57F38E6EEA158BBDE0B5D39AE0F9AFE4B2_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_m5001179FCF3E32AF60F67B79D4CA24757023DF9D_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m48EC0B072029484476C1B68DAE233AD692768D45_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m09812D9D61C7DF24E8DB955422A24BB7308073CB_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mDEE06A6106FE2552A6E7E6283B54F078381EA255_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m731D346C66C900C7E2F6027BDFEEA6A123C76131_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m87CE1CDF757010A3D49F7C90504FE35CF9F7B583_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m4B6FCD7D11365EE0EAFEF7097349DE98E5632F80_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_mFF5622E291EE7AAA6A39CCAE7964981D9981D224_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisRuntimeObject_mD9574236A28C1D455D77EF7E065529093F1EDAD8_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mC287C8F1C070FC45DBDAA415D6AED52E8476B372_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m0F7E5662035EA3D2E49D5B2641EB040CEC4D3658_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mE0D1987E0D8C110542B25F9D557DB67F27C02218_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mFB848FBCE0A749265630F5326810CD0A999D2DC9_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m293EA28BAD3E4A83929BAE545B1011CC6143CEBB_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m92CB442176DFBBC33279FEA81AF578E77F9B6E5B_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_m287C1B0FF8DB50E12668016BDCD9B2405A0412A4_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m9E5D797D44D08C05CCC74DC6B0297A3A0F3B5199_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_mE94545AEE458C31936BE79C99834B7C7004A01F2_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCC2550228ABC522CB0A98028515525D393ED7A5E_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m553FB75E321F334628E34EB120BA285A550B5FF7_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisUIntPtr_t_mF4144AFE6DAE5427FE5827C9C9838D91F97F78C8_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_mDF3BDE908EA33126BB6B7E7393B8965217533EBD_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m6A2718BCF487507EB48D3ED041DBF07DA1932303_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_m4C1BE5D4CE7E0EB8477ED7E25D9F32FF60A568DA_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_m5C16C27F486B27AF9EEC7776E1A207D75F516EFB_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_mB0AA8BC37F4A6CAE64285429AEA1AF3BDA7CB373_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__IndexOf_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m194BF9E958CDA9357DC5B9A2818EFAD70B463320_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_mD8C12E9537ADB27575F599896B3D15D5BBA75D9B_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mE9F6E0D310E603EA96A953EF1DD6C68F39730C9C_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisBoss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_mD121EBD777DF2A5F9A737A0E016457CF2A420A0A_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_m7F6A6780F368FE04054FC52535DA7A65F71EEAA9_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m39C0E1BB2E4639B675A0B24E8F7C369E05F25685_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m306EA880334E146139F06691FA435F36589DDB63_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m2E9DF91734F88A23FAB1941B8BEB5A251046DF63_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mD4885C4B8D8E8E3097D1765E6A92ECF8F94AE5C7_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_m07D073239E468F11F0A92423F8C45E08E1B6D21E_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m5B1BFF4BD07F7DE1A1F0AA346CAB42D57B22D1F2_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mC1A470EC548C3EECA307AB7491C7C03ACBEB6295_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m506AB5C14FB35E185FF78BED19CFF4B12D2D79E2_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mC3AAD833A34DF3BF2CD9916A94EEBF85F84571D8_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m1F8E0FD15BFA1B3337DB17BB8862E5E7FDE3E7BE_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m80D0262056AB6132787D162EC685AC57C2ABBF51_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m04DE7DE6F8761B7C1A649CB503F3FB80435FAF53_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_mBC990E523C5FAC4D18228EE959A605F31DE2DBA9_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_mBF0F64B2BA1CEA72F9E93BF8D1CE8B760D30FE6E_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_mFC47BD3B041BC417842362A130A22922CA9D5210_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m23A4919E880F5BC6B4A8E4E947CFC6865CE7BD54_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m28D08A743D67FCCDD725EDF748AD9271AA31F7E0_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBFA6837DC3148B8268BBDC819CC2B30C9B98D344_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m658F98B159EDE3EB39E0C386903E16BA2002FF44_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_m0DDF0DDB5D5A4EA8FA34F057FAD4F3EC47D5BE79_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_mC0FD985A43489A501E702CA511A3859032A6CE9A_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m2256A0CF02F23CF41324F1D4CE6212928B4CAD7A_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m4E75EEDD697C75CF9A84DBD14ADB59660315AB6C_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_mDF4D4CA32B3DF183947742756F8D06E8289EA2AD_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisGuid_t_m9FD816450B7080391B67F48C9E123DB561466EF2_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mAF811887FDC7242E77CBC4B52D8BCB59C50603F4_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_mB217196A981DF20A78F821A5676196C3E1EB852B_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mF074234522318193EE734BC9138E605CD9622EB5_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mAF387A609B4339D2D5B2A4E8863A5D517599D7B1_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m87666E66010673C970F94E1C303DE5E8FAE0C8C3_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4A9A88250BBA3249C36F53140B0F15D826777325_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisIntPtr_t_mEF1B13612BA6200225FA42B47519FD25D74B81B1_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01B1B14297575D96EE9191074E5632BC0B51A914_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mF0B68FA4FB992EB82E6A755613ED52A537C1D7D7_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mC942C668F49633E4DF42559D07500C0398440CB8_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m5AAE842F1F6C7FAE42D1DBE719201D49C6205C8A_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m0D2B5DDB8A92DC3C243626688F7C70607526A03D_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m0AA4311C56D9888BBA00A9F3E6FE48C48E62C104_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mFF6322E2EE3565369974ADC72D6091611498CEFB_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m8117EAB836397B8746CE03DC38BDBE3688F41A5A_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_m982908B8D1321B92E6706BA118232673F1FCB2CD_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_mF052ED2BAC7CB313FC0CA4022B0237BA62DD08A9_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m1DC1D2CE7F27B6861D32667F792056810F14E6A2_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_mCE8A2D462A033FB0B3BEC9AC0EA8A1AE4F880E8C_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m814415ACE0DDA6F9C3599F01F4BCCFF52739BEDF_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_mA2AA8A2A95A3FEF70897324987502AD1FE53E6F0_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_mE3564ADC7AFC168B70B3AEEBBDB30F1C791D4712_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m88C1919D27F6B04E25EE64B03245DB35B5211870_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m71900E28A11269D320A0F0CBFBD9355A0451531C_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mC7B4F06520A4EEAFF045AF217D29F9A4AC243ED3_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m84D093DCACA5ECE7F072D319DD1210DFE9800023_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_mF5D0703796BCE5A44665238F9AB08E5BB84A4AC6_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m0EA2E0CEAB796505E0618FD2931EEE5BFF7E5507_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m8957E8B1D262157330910E34C749D6A0FBF12005_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisRuntimeObject_m2621683E821AC4AE9C55CD7C1DA21EBCC57807D1_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m0FA77EEA9554B1BFC19FF42D1F5855E48A0D0576_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m59902BE357936A7D2C61F26C3E99E9FFB4515D8A_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA4ECE1E944CD19885D8C51D9C886E2E8BCDC78B0_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mAB37BBB9EF7D4C308D99207D279EC86DA722CA7C_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m267C106765C42662477BE62A7981DEF7141F8BEC_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mF4A9D9A3E13AE916760E1657B1D4660B6A07AEBB_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_mD3EC6C124E65BE8F0737D39BC922938073D5BDC6_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mA151CCECC244AE62A4B8B19078AEDE5BFD0717DC_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_mA2F7CF78455B07E081841B7C94161A3ABA89817B_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m18E5BCFA5461B75371A4DB4699F58B1475EA38FF_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mA37D54F63F446397EF7403D2E47F9E498D2F845D_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisUIntPtr_t_mE9F3BBBCA98F05DEBFA3E90283BA265EA49B91F7_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m33154784D5C9F542C931B2806494AD1443E8757B_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mBEBE18F36496F5A8B9D865FB0B5AEE286734BE33_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_mC34C7EE0C657A7A2ECD59A49D3C4119D7B351C8E_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_m5F87DE759E7703D63097A9BFE4656BB09D59591B_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_m28C5F0A6FE9A07DCBCAD82A2A72AB1A5A8B77605_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__Insert_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mEE93EA250C3399D4F5A3779DB444AF83C9A2BB11_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_m81CC827C340D0C5C16F52071A5919E9E17A430C4_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mB9E04DFA60220793747B0BADE85AE771411DE6DE_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisBoss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_m07AA86CFAE2F1068174875472D94A068FF5A13AB_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_mBD0AEC628B67C57DAEA5BE0B927BBCC23D681BD7_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m2315763EAE562CFBE6768B790ACAB530EFED59DD_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_mDA777866F7C2C3DF5607C5E02203D0E4AD21F84C_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m46A5FA0AE653560A66BD34B6645630720A80A1B4_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mAC4F4CA3698520D49EE6BB44ABE2BBC0A37EE067_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mC9140CDF26AC80354547CC651B0E757E367A6F38_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m7C8FB45D060CA50EDD5B5C225EE4509E3F742D42_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mA2EF7A58C4ACCA4433B7332867EB6A62C14C2819_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m8E583065C3CD257589C4429EE98FE2B50D545FAC_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mCA9729A1813FE31DF596F39E419B8010BBEEB973_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mF5A23A42B5B90A3C220801FA122C97860E711C3D_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m083A2C255147C4C62B2DB027B133172B9879D882_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m5814A5A9E71DE6ED93768D79458CA91590D61472_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_mB455BAB142D1A043E32226158D446F3BAA7036CF_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_mA4F36AD2B0748741888E3AB54E767EF770459EFF_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m7488CF10C54CA7604BCB1CCB55DED55EA17257A6_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m61D547E71DB2B8DB94B8C060A09809419C801944_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m8C94F368595DFDB063D08EE2CB48ABD1579CA754_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mE6457E2A2BE2EE3F14218AE6531C96F30356C5E0_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_mFCD14858BB3985147E82A080074A3C6A4D66D81B_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_m76CAA80AE578B1BBA2C35EB9273EE7436DDC840B_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m5965B9608DC4898C968E4E05ABF2796E3490AC38_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mAD2875DFFF3C67D3752B6E49D8E9B0E78F4787E3_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m4ECDD9F013D455EC83B7B52B3CD47880927B938B_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_m380B42619C8946FCE3816058A73AC26EF2FEA018_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisGuid_t_m9FDD0AC842503D6E29C8E53FB550982C2230CF0F_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mFDA0A9185276BCF79A0A695E6E458771496533FD_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_m49F0BDE5938059294C1227B99C92773DEEA415D0_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mA74AF4E123BCFF15EEA312570636C08F5880316D_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m7FCC674B564F0B8C20DC59A4B5EE9CBD9F2C02AB_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m7FE5131FCEEB55A0429D246C4AC726EE85232F71_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4FC592A9C1479783C221F1A0CCC037BB73E1F056_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisIntPtr_t_m7BAFE0B0F88A620FF81E179BCE3A57BACD0ED0E7_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01421A3FB2F89AEC3CF2DF7FBC708921953DEB81_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m51EDD22D64367274BA4B0ED594BB6D34508E90D7_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mE0361BCD39481331E7C04D2F52B469AACA99D63F_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mCDA3FBE262877EEF5D0FABB97F1834EF45F01E9C_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m469D5CF79A08F150A62943BED71A8E21B25BE679_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m5A46A4E4EF23FD4ADFB21D892EEE6ABF9B7CBC6B_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mF2E103D39EC274030BB69C6CFFED255712EB5332_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m18D3FDD2AC51D4E5865CA5B88707340A6B8C098D_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mBA59CD16C7B776DB1D433ADB02059F0C03F5BE2E_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m0698983A52FE4D26E8DE7724576E187842487673_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mAEDCD5F9CDC7238903F102934677BB6694BBD9D4_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_m657785C7F9593EC322747AD1567BA87494FF4410_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m647D9E49C5279A4E2EFF764FC1B3B787E97ECC12_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m88D31F15A9828B472A8FBD06CE6499A4B9AA5095_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_m041818B062D2A9874641ACC96D97BBDDFC518C52_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mF8D46CC13EFBC4D2AE93483CCDD2E6B01CC689F9_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m14F79BE795265B3A064C920941AB20EF80837C55_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mE9F2B59D6000F54B4632CAA735F1A2A34139E037_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_mAF5BFF3E5EF25739091384771958CE9F7B36E8F5_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m6A076451AA3F77754FFF77EF535DEA8A9128740C_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m6ECC7721B4496EEDC51766A22FFE1135262E601D_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m4FFDCA3412C2992784DBE5BF1803BAF71928C129_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisRuntimeObject_m84D4DC68A1BAC27655D58180AE6E26C0544F3D2A_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mBAC38A7C35E4854032C95707A505B884BB39E874_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m8A8858F5E13DEB3C5B2A24037554624E8E8B720C_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mC6C786952BA59DDAE83E8466E6397EED35D601E0_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m8C9703F6B9F64F8CD5706B3540D7F9A800AEC130_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m1E3FB931A3C3E10DD605E8840C2EAA72C76E7B93_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mDA3BD26CE863007EBB9125B0B5F01EF95A47FCC2_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_m914235EFA3494019D9B603F7DDF34C27FBC41C00_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m1B9EF7FC63165E4C71551F5CEE2D365C782B76D7_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_m60DE3B4B58501B91F9E6E51B5696412405C7303D_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mE83E8853FB0AA3C1C84FB6D5F188A7DFBF7B58E0_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m2BEE0E74F5ACF236586C3154499DA4DF4B764AD2_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisUIntPtr_t_m2648349D11C655B444AF3BEFC6C0E73E123B92A9_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m9DCFFB6848DF1AA9BC6E62F9018AD5245E27A703_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m191595B96A5B85F3248B0C78DA9A1B0E37F24CAD_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_m76BCDEC0C6DD3F60200FE513484FF5A10A9BC18A_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_mA19E1C4BB875ED58BB61451E5B0EB428F7A93576_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_mFE35EEA664F4AFF1B9DA92B5656485E9655C4DCA_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__set_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m74A70583E6C9B4212D199F1B1E5FF06158C913BE_RuntimeMethod_var; extern const RuntimeMethod* Array_LastIndexOf_TisRuntimeObject_m4C8C52470386439C1FB8B125159092C85B59550B_RuntimeMethod_var; extern const RuntimeMethod* Array_LastIndexOf_TisRuntimeObject_mA211142720D626D9CB6D880E7F2BC27DD673478D_RuntimeMethod_var; extern const RuntimeMethod* Array_LastIndexOf_TisRuntimeObject_mADF32BA8AC5E3F1C5D224A446DA3C1F0E9CBC324_RuntimeMethod_var; extern const RuntimeMethod* Array_Resize_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m06AF58E490AA366B34FFAAA68EF7179C85828C62_RuntimeMethod_var; extern const RuntimeMethod* Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC_RuntimeMethod_var; extern const RuntimeMethod* Array_Resize_TisRuntimeObject_m5DDE22DC2BDD151FF241480E31970F64BE8FF63F_RuntimeMethod_var; extern const RuntimeMethod* Array_Resize_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m3A6E3BB1A813660FBAC90C9449EB01DD71F2D723_RuntimeMethod_var; extern const RuntimeMethod* Array_Reverse_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m3185FC6FBAF4AB44EB30798AFB1D1F33B1FC512C_RuntimeMethod_var; extern const RuntimeMethod* Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m03D674052100D1E9D6214ADD31FE7E5F7E6788DA_RuntimeMethod_var; extern const RuntimeMethod* Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mC6D04DB36698F31262134DEEF6B9C03026200F13_RuntimeMethod_var; extern const RuntimeMethod* Array_Reverse_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m3D1CB4EBFE0546C88F25CEE130CA0973D0812963_RuntimeMethod_var; extern const RuntimeMethod* Array_Reverse_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m6D57F65828B620E5BFF0B7C05DD772FA7E7CD02D_RuntimeMethod_var; extern const RuntimeMethod* Array_Reverse_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mF3127FBEBF3264D006E8A59EED6FDAC172A99E4D_RuntimeMethod_var; extern const RuntimeMethod* Array_Reverse_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m2D1A9466E1EA5576CD58C21530B78D6CA3B61023_RuntimeMethod_var; extern const RuntimeMethod* Array_Reverse_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mD8757F39E77A7C7D678EB7C18B6E66B1E340A0CD_RuntimeMethod_var; extern const RuntimeMethod* Array_Reverse_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m38D4AFBD190745AEEB6F25799F8EF1212FB4EFCE_RuntimeMethod_var; extern const RuntimeMethod* Task_FromCancellation_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m1D2F3D8D751533AB2C2C6571998736C242E908CB_RuntimeMethod_var; extern const RuntimeMethod* Task_FromCancellation_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m3F9DA3B6F9A2DF0807A103225BA6D71C431ED15B_RuntimeMethod_var; extern const RuntimeMethod* Task_FromCancellation_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m9308AB377C21815221796A65F008519EA9FE7DE6_RuntimeMethod_var; extern const RuntimeMethod* Task_FromCancellation_TisRuntimeObject_m045C8E197F0C7F13DCCA288894DDCC35493AD96E_RuntimeMethod_var; extern const RuntimeMethod* Task_FromCancellation_TisRuntimeObject_m4A9F178EC4392613B8FF7759C8EB3322DF483199_RuntimeMethod_var; extern const RuntimeMethod* Task_FromCancellation_TisVoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40_mC730A05E6E531AE6941EEF59F6A48D84748CA1D3_RuntimeMethod_var; extern const RuntimeMethod* Task_FromException_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mF3C6382F7FF59C06CCB6AF3DEDF0C7E42B3EFC52_RuntimeMethod_var; extern const RuntimeMethod* Task_FromException_TisRuntimeObject_m4975DA3A5E73288D167C18378DF487241808F1F8_RuntimeMethod_var; extern const RuntimeMethod* Task_FromException_TisVoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40_mF0D5B2C3E0E9A2245559F271CB88AAA19ADCE0E9_RuntimeMethod_var; extern const uint32_t Array_Fill_TisRuntimeObject_m17788C749A1F812B9910BAB0DAAFC24E5B2542D9_MetadataUsageId; extern const uint32_t Array_Fill_TisRuntimeObject_mE8179E5A1AFA2F343A691AD05F333C81C7E89177_MetadataUsageId; extern const uint32_t Array_ForEach_TisRuntimeObject_mD8B1EA04C06936E21C2BB9B0FF603E09F75146C0_MetadataUsageId; extern const uint32_t Array_IndexOf_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m74325B7B58F69E259492B67D164BB4479AD17FA9_MetadataUsageId; extern const uint32_t Array_IndexOf_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mB9568EE42C087C0A2EB926E532223177FCC29EBF_MetadataUsageId; extern const uint32_t Array_IndexOf_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mFA65D95FD236AC9B9D57D5424D6EB52C0AEDBEB2_MetadataUsageId; extern const uint32_t Array_IndexOf_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m29593BCE85881B0C6B8456564445363B6149E0E9_MetadataUsageId; extern const uint32_t Array_IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m58E90042E7B17B74CB00683164B0B720BA91A8B5_MetadataUsageId; extern const uint32_t Array_IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mB69F9A4858DC906B554451585199281F230F4EE5_MetadataUsageId; extern const uint32_t Array_IndexOf_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mB542BE30A1D20C2D322F64113EE448F3BDD7F73D_MetadataUsageId; extern const uint32_t Array_IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA3A1313F7FD2A62CE172AEF0501E52E60B7AE9DD_MetadataUsageId; extern const uint32_t Array_IndexOf_TisRuntimeObject_m13B203F08875E17F92EC3ABF6A3C7B76351E79A8_MetadataUsageId; extern const uint32_t Array_IndexOf_TisRuntimeObject_m40554FA47BA74C45E33C913F60628DD0E83DB370_MetadataUsageId; extern const uint32_t Array_IndexOf_TisRuntimeObject_mAA3A139827BE306C01514EBF4F21041FC2285EAF_MetadataUsageId; extern const uint32_t Array_IndexOf_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m8D9D50FFC33517634177128B53BA51CB7A724D3B_MetadataUsageId; extern const uint32_t Array_IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA91455A82DA1E75779F77E30564F3425C79601A4_MetadataUsageId; extern const uint32_t Array_IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m39D77B3B21AD0C5FF6C74D4903289CAFDB17E6B5_MetadataUsageId; extern const uint32_t Array_IndexOf_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mD906003D8041F33D4E100B2551C3F1EF40BE03D3_MetadataUsageId; extern const uint32_t Array_IndexOf_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mC73BEE02B23B512E58EC685F1CA1E94B0F853BE5_MetadataUsageId; extern const uint32_t Array_IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m48022B8A70A2C45E247884ED52141FCA9695A1B0_MetadataUsageId; extern const uint32_t Array_IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m295FA2C782117B117C7C15EA1A40B5C89BCA5A95_MetadataUsageId; extern const uint32_t Array_IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mCE7226D6E0020AF1553F7171B52CD314D7F69356_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_mD419DB7AEBE8E0BFEDA0CEA5273317FBB6A80041_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m532C28C679898CA0B23D07FD800B6382955FAE11_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisBoss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_mE723D423231A8DA65D51AA19B9C04DB4374D4907_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_m78CF9558B4D043BA3A9A59302D8F7F9047279DC6_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m6CE9D938BF844C4B0941F64D66238FF0BAF88E59_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m52F54CCFA1A2F9024D1DFA3C10213AC86AC571CA_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE9876BA14462806C7F0DA620920EDEBBD262679F_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m520DB9E5D654654E0DF9557B69164AF7050C34A1_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mEE8FA99D85B70DFDB094944EDF18BE4A7853B357_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_mD69224E21DC29B25C4E8F23BE71B3A654419DCC8_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mA5B7B5E10D668EF4B1826A8AF5AC8E4C3FE362F3_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m1259069E61BF9090D90CCB226B622D52F568689F_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m750633AE7011FC3270A42BD78A0CD6CFF7A6D339_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m2724CF478D14143A842CE1C9F26C75D6DCB3D405_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m2B59878482B381DD2D3E374BA1A46EB11C398D66_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m8009794B657B23E794B64B064DA14786EB6566BB_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_m0512D75CE3CAA82398399EA0670D22F3BA397B18_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_m0D5BF49E148062C6B0357DC3F6E59FA9392B4BA3_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m41A93018BD641D0F91CA73B1FC145D853E87238B_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m5199D44A7C53600D74D50BA1B99B747E7D6AA7A3_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m7E273D12CF8694A47E9EA3246CCBA06A1DF2699A_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mE3AE4EA3CF71DA2A19BB2BDEE32758232559B8E2_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m7A511A9A1050449575F29E6E1FFA4B1455F69106_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mD43BFA4FE9AD453808D80227303D1A7F522823D8_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m7BDBAA78BB0BFCDE4C13D1FA2E16150B093EE963_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m5AAC663D9FF27C71867B58748C6FF2837B6E856E_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m11726F786B4311D52A4EBF8D264DF4A16D3D8DD2_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_m995196BE31136BA05B37EDDB3635C9045F8787D7_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisGuid_t_m3D3B4189F723AA35BA753196DEE29E21EFEE2895_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_m70D0ED5C29EF6D9368C4A8676290BA2E978DCCAD_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_m6C87F886E98CD03F15B7EAED01FDE0526F0F1C04_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mD7613C38460357CC7D632543AD4BFFADE41372B0_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mDE65E1A5B61F9FFFBA527F0733F213B50CD862A3_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m2846C327D205FD445F46B26A8337AA09A50DCA7F_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4249581FB074DA4BF8020A71CACE1DFC40799D8C_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisIntPtr_t_mA5CCAC9E9CC25E309F3810D44D853D16E68143AE_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_mF0FD4095BC83A9EFD6F73BFAAA1E2806A434D0A8_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m8170459B576E7C3284F5BF388BA5E8E08C49AFA3_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m820870FE13AC7D7DB9B4F697E3ADA0E4ED9F233E_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mE8D83A4F3F4E11B0B90811ABECB3AB0AA225E965_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m5B83ED22E5BB72C1EEE4378606E5AF227418E6E3_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mF64CC542989AA856B9F7C2A3982B92FAED8CF553_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m69320DEF59E083DBD93314746843C843B2339916_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m831BABA68A0669DA8B7D81DAA204DBF0F3B70862_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_m7CD8B9E5262B9148874F8E998E310C57FEED36E5_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_mED931E70FDD5AD80BE58308190296AF4BD2A2697_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mCD5EA65245A856DF4D46C3D1D83EF72D6649850B_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_m7CEF12B4E04306C2460EFF6B385303EDDEA9D10B_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m01C5CA55DB16B19394FD41FD3FCF5963951FE0CE_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m1776112EB9AF5A4FD01E374AE176D398A5D99272_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_m505616E356F55AE033B4E3EA64CE7EEA45EE364A_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA65A034C66A7843760B091E310C34D7E6A12319F_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m73A4C9FDB30642B0ABD7FAE47BC50C05EED42773_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mCA45F46B8202BA37C90B520537CAB7144F49CCA5_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m3DAF5EED039DF627E5A4021A1C889AA08D481DD3_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m98626C08538A34093C548E5F84681643FF2416A7_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m8D8FF259F8659ADEC0AE0A20610112656208931E_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m2EA0B46DC9C64F0BE418A85AAD5C9D51B42D9DC6_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisRuntimeObject_m0CCC0B9275EC8F89A85603F037804A668B41D6D7_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mACD698DB2EBC900286A7C038977637C855CACCE3_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m4C453CA95196F0F8236C8F1F8224F3E5731A0F1D_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m7AA0A527A2968388C17316F50F47678B4C1DB702_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mC0E828AAE8E2E46C8979EAEC50A8982717CD0959_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m41DC5285B61D03EDE86E49660265291FCB45E655_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m9447DCF7C9EEF7F6DD9C48083050A1A25AA28612_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_mEDC32AEEE8BA32C24A816F60B8A3F5C60BFAE12D_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mFAF3113B4A5963AB0BE38DEC63FB97971C7AF399_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_m13C196FD9E689117F225F55346057A56DE66BE1D_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mF287F6C0BE00077C872A4549CA38D6E0AB2CAB9F_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mC20BC01F1B502A5A125289CFD752F1274394A228_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisUIntPtr_t_m544443A94C05D083C3564BA6390987FB980A973A_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m606FE0393448E134D644CBE11555429A87722975_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m386448E6879CAE69737FA5FD60B804A2DF74F3F6_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_m029715C61AD85A107E0A9AF57775290BEC444656_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_m52EE21EFC47B98D715C87F254350015F18D41B6B_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_mF9AC98FDB7266A5B961E49E41917EAF7E0DD2AC7_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Add_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mB1C869D60E06C6306DEAAFBE85B4F06498C00CB4_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_mA2528857F521849E2F14BCE79FC3EDE70D42A4DB_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mC20BDC11F0575D4DDACD88DEAB020A75B564F11A_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisBoss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_m126F95D7ABF88805DA031E278DE1D09199D780A6_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_mB68275DACDBA8E7A31E8D4F94E29DE490C338846_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m29830CD9ACA0126B5E56A827D3E7C1EEFDAFFB8D_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m4092D39CA7E10BB63153F83830BC5B5D7119420C_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m8F737294D199447E8600FE272EF4B479D43BB930_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mAEB6C20A49EBEF1C32DBDA22711297F67A8324AF_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mDFEC6896DCE2B058F5B5A3589D67846EA61E1B7E_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m6367CE2E8CA64ACDCC54F816D81EF971659E9C0E_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m084940E8F2B606B8BF3A920943FA09B72FEAF9B9_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m256F348E2E222F2E84330A5649768C4F512B542E_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m9B747BA30199C9DEF5EFC5DDDCC6B41417445BD0_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m60845F7DCED5E45FA673B44E8DED8216501B3AE6_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m17FA206B6160A89ECE120941608D1B89D499203C_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m9E5B158A4C9B0A5FA3027E4177DA98DA6264A56C_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_m933B5C88D0FFDA109ACB00FD5F4FA361DAB4BC4C_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_m8B245106DF16D6928F9254467A3A36F7DC706474_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m3AECD5FB3B18910B3F0C8107C6EF08B1CEA10CCF_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m6CCE60ED174301858C1887A8DCEED6A2986F8510_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_mFCE0B6A27B30770A4B512BEDB254E192D5280D29_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBB075A2082A735C0ECB89547222A737D30DBBCC4_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m8B6C9962831994B1A8145034E0FC12D35DDF501A_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mD23818720ABA66BBD11AED8E8A714DB6194316AC_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_mBE12D8BD5A5303A11702F3DD6BACE684356B8F8D_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mB91156111C75E912C4DFE9C211F38E92A545F47C_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_mB8CE2101FF6E0E88A78DD42B272B1B3F639C23CE_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_mD9457D7567B4D60A03DC4DCF877F25A949F875A1_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisGuid_t_m663A30B0AC00832F23B734DE47889449C5422462_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mE478F0695ABB70E4112338210E32C38147786E20_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_m4179B7B21F7F8703575F5E7B14EAB494587CA2C3_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m5A3048CD7DD988CF1EAD557351B6A21BD9D37E19_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mA87E7254C64CF9CEE21A7B2EFF4EBA9159FE65A5_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mDFBFE353F08EDAFC6A507A56A24A5397D746C884_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mBAC8D474AD6C3CC84914CD1A6B687B6A93B5993E_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisIntPtr_t_m65565733C00CA67DA68AEB8764D4A4789F7F377E_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m8CB89746670D49E7D68E1B784D4902DB14B10191_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m02968552358CC33A7F34E3499B8AF85E173E2E33_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m4918F1A608A3EFBAE42BA98870BAF1D3F2F66072_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mD7B60B9965226E9CC04E946CA4C1F33A3923BE7B_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_mDBF23DF5BD427035EB0989C37936C066EBB80E3F_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m9D0B60E51BFBDE958FEF0FEA0559377BD587966C_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m739A55FED52BC421DC9BDA024BE349CD2D135C19_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m0531B1C9002D75197E0184136B83D014DE315618_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mB1E74A86E1E594EFDC925F9C97FE109DE05495A9_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m84E363DDEA7D4D7264474D49C05D77CC975B2A8C_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m4B25A8A2624679B8A2C001D9CD3912AB9A711E26_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_m104632AFFFFAA0522433EC83A8C64BB996C2954B_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m2A1F2D54AC27D60943B635063075055B75674696_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m50C7AF57F38E6EEA158BBDE0B5D39AE0F9AFE4B2_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_m5001179FCF3E32AF60F67B79D4CA24757023DF9D_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m48EC0B072029484476C1B68DAE233AD692768D45_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m09812D9D61C7DF24E8DB955422A24BB7308073CB_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mDEE06A6106FE2552A6E7E6283B54F078381EA255_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m731D346C66C900C7E2F6027BDFEEA6A123C76131_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m87CE1CDF757010A3D49F7C90504FE35CF9F7B583_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m4B6FCD7D11365EE0EAFEF7097349DE98E5632F80_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_mFF5622E291EE7AAA6A39CCAE7964981D9981D224_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisRuntimeObject_mD9574236A28C1D455D77EF7E065529093F1EDAD8_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mC287C8F1C070FC45DBDAA415D6AED52E8476B372_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m0F7E5662035EA3D2E49D5B2641EB040CEC4D3658_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mE0D1987E0D8C110542B25F9D557DB67F27C02218_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mFB848FBCE0A749265630F5326810CD0A999D2DC9_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m293EA28BAD3E4A83929BAE545B1011CC6143CEBB_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m92CB442176DFBBC33279FEA81AF578E77F9B6E5B_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_m287C1B0FF8DB50E12668016BDCD9B2405A0412A4_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m9E5D797D44D08C05CCC74DC6B0297A3A0F3B5199_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_mE94545AEE458C31936BE79C99834B7C7004A01F2_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCC2550228ABC522CB0A98028515525D393ED7A5E_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m553FB75E321F334628E34EB120BA285A550B5FF7_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisUIntPtr_t_mF4144AFE6DAE5427FE5827C9C9838D91F97F78C8_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_mDF3BDE908EA33126BB6B7E7393B8965217533EBD_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m6A2718BCF487507EB48D3ED041DBF07DA1932303_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_m4C1BE5D4CE7E0EB8477ED7E25D9F32FF60A568DA_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_m5C16C27F486B27AF9EEC7776E1A207D75F516EFB_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_mB0AA8BC37F4A6CAE64285429AEA1AF3BDA7CB373_MetadataUsageId; extern const uint32_t Array_InternalArray__IndexOf_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m194BF9E958CDA9357DC5B9A2818EFAD70B463320_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_mD8C12E9537ADB27575F599896B3D15D5BBA75D9B_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mE9F6E0D310E603EA96A953EF1DD6C68F39730C9C_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisBoss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_mD121EBD777DF2A5F9A737A0E016457CF2A420A0A_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_m7F6A6780F368FE04054FC52535DA7A65F71EEAA9_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m39C0E1BB2E4639B675A0B24E8F7C369E05F25685_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m306EA880334E146139F06691FA435F36589DDB63_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m2E9DF91734F88A23FAB1941B8BEB5A251046DF63_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mD4885C4B8D8E8E3097D1765E6A92ECF8F94AE5C7_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_m07D073239E468F11F0A92423F8C45E08E1B6D21E_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m5B1BFF4BD07F7DE1A1F0AA346CAB42D57B22D1F2_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mC1A470EC548C3EECA307AB7491C7C03ACBEB6295_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m506AB5C14FB35E185FF78BED19CFF4B12D2D79E2_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mC3AAD833A34DF3BF2CD9916A94EEBF85F84571D8_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m1F8E0FD15BFA1B3337DB17BB8862E5E7FDE3E7BE_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m80D0262056AB6132787D162EC685AC57C2ABBF51_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m04DE7DE6F8761B7C1A649CB503F3FB80435FAF53_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_mBC990E523C5FAC4D18228EE959A605F31DE2DBA9_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_mBF0F64B2BA1CEA72F9E93BF8D1CE8B760D30FE6E_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_mFC47BD3B041BC417842362A130A22922CA9D5210_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m23A4919E880F5BC6B4A8E4E947CFC6865CE7BD54_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m28D08A743D67FCCDD725EDF748AD9271AA31F7E0_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBFA6837DC3148B8268BBDC819CC2B30C9B98D344_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m658F98B159EDE3EB39E0C386903E16BA2002FF44_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_m0DDF0DDB5D5A4EA8FA34F057FAD4F3EC47D5BE79_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_mC0FD985A43489A501E702CA511A3859032A6CE9A_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m2256A0CF02F23CF41324F1D4CE6212928B4CAD7A_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m4E75EEDD697C75CF9A84DBD14ADB59660315AB6C_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_mDF4D4CA32B3DF183947742756F8D06E8289EA2AD_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisGuid_t_m9FD816450B7080391B67F48C9E123DB561466EF2_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mAF811887FDC7242E77CBC4B52D8BCB59C50603F4_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_mB217196A981DF20A78F821A5676196C3E1EB852B_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mF074234522318193EE734BC9138E605CD9622EB5_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mAF387A609B4339D2D5B2A4E8863A5D517599D7B1_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m87666E66010673C970F94E1C303DE5E8FAE0C8C3_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4A9A88250BBA3249C36F53140B0F15D826777325_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisIntPtr_t_mEF1B13612BA6200225FA42B47519FD25D74B81B1_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01B1B14297575D96EE9191074E5632BC0B51A914_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mF0B68FA4FB992EB82E6A755613ED52A537C1D7D7_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mC942C668F49633E4DF42559D07500C0398440CB8_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m5AAE842F1F6C7FAE42D1DBE719201D49C6205C8A_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m0D2B5DDB8A92DC3C243626688F7C70607526A03D_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m0AA4311C56D9888BBA00A9F3E6FE48C48E62C104_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mFF6322E2EE3565369974ADC72D6091611498CEFB_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m8117EAB836397B8746CE03DC38BDBE3688F41A5A_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_m982908B8D1321B92E6706BA118232673F1FCB2CD_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_mF052ED2BAC7CB313FC0CA4022B0237BA62DD08A9_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m1DC1D2CE7F27B6861D32667F792056810F14E6A2_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_mCE8A2D462A033FB0B3BEC9AC0EA8A1AE4F880E8C_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m814415ACE0DDA6F9C3599F01F4BCCFF52739BEDF_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_mA2AA8A2A95A3FEF70897324987502AD1FE53E6F0_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_mE3564ADC7AFC168B70B3AEEBBDB30F1C791D4712_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m88C1919D27F6B04E25EE64B03245DB35B5211870_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m71900E28A11269D320A0F0CBFBD9355A0451531C_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mC7B4F06520A4EEAFF045AF217D29F9A4AC243ED3_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m84D093DCACA5ECE7F072D319DD1210DFE9800023_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_mF5D0703796BCE5A44665238F9AB08E5BB84A4AC6_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m0EA2E0CEAB796505E0618FD2931EEE5BFF7E5507_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m8957E8B1D262157330910E34C749D6A0FBF12005_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisRuntimeObject_m2621683E821AC4AE9C55CD7C1DA21EBCC57807D1_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m0FA77EEA9554B1BFC19FF42D1F5855E48A0D0576_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m59902BE357936A7D2C61F26C3E99E9FFB4515D8A_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA4ECE1E944CD19885D8C51D9C886E2E8BCDC78B0_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mAB37BBB9EF7D4C308D99207D279EC86DA722CA7C_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m267C106765C42662477BE62A7981DEF7141F8BEC_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mF4A9D9A3E13AE916760E1657B1D4660B6A07AEBB_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_mD3EC6C124E65BE8F0737D39BC922938073D5BDC6_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mA151CCECC244AE62A4B8B19078AEDE5BFD0717DC_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_mA2F7CF78455B07E081841B7C94161A3ABA89817B_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m18E5BCFA5461B75371A4DB4699F58B1475EA38FF_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mA37D54F63F446397EF7403D2E47F9E498D2F845D_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisUIntPtr_t_mE9F3BBBCA98F05DEBFA3E90283BA265EA49B91F7_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m33154784D5C9F542C931B2806494AD1443E8757B_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mBEBE18F36496F5A8B9D865FB0B5AEE286734BE33_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_mC34C7EE0C657A7A2ECD59A49D3C4119D7B351C8E_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_m5F87DE759E7703D63097A9BFE4656BB09D59591B_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_m28C5F0A6FE9A07DCBCAD82A2A72AB1A5A8B77605_MetadataUsageId; extern const uint32_t Array_InternalArray__Insert_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mEE93EA250C3399D4F5A3779DB444AF83C9A2BB11_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_m81CC827C340D0C5C16F52071A5919E9E17A430C4_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mB9E04DFA60220793747B0BADE85AE771411DE6DE_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisBoss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_m07AA86CFAE2F1068174875472D94A068FF5A13AB_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_mBD0AEC628B67C57DAEA5BE0B927BBCC23D681BD7_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m2315763EAE562CFBE6768B790ACAB530EFED59DD_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_mDA777866F7C2C3DF5607C5E02203D0E4AD21F84C_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m46A5FA0AE653560A66BD34B6645630720A80A1B4_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mAC4F4CA3698520D49EE6BB44ABE2BBC0A37EE067_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mC9140CDF26AC80354547CC651B0E757E367A6F38_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m7C8FB45D060CA50EDD5B5C225EE4509E3F742D42_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mA2EF7A58C4ACCA4433B7332867EB6A62C14C2819_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m8E583065C3CD257589C4429EE98FE2B50D545FAC_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mCA9729A1813FE31DF596F39E419B8010BBEEB973_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mF5A23A42B5B90A3C220801FA122C97860E711C3D_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m083A2C255147C4C62B2DB027B133172B9879D882_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m5814A5A9E71DE6ED93768D79458CA91590D61472_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_mB455BAB142D1A043E32226158D446F3BAA7036CF_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_mA4F36AD2B0748741888E3AB54E767EF770459EFF_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m7488CF10C54CA7604BCB1CCB55DED55EA17257A6_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m61D547E71DB2B8DB94B8C060A09809419C801944_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m8C94F368595DFDB063D08EE2CB48ABD1579CA754_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mE6457E2A2BE2EE3F14218AE6531C96F30356C5E0_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_mFCD14858BB3985147E82A080074A3C6A4D66D81B_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_m76CAA80AE578B1BBA2C35EB9273EE7436DDC840B_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m5965B9608DC4898C968E4E05ABF2796E3490AC38_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mAD2875DFFF3C67D3752B6E49D8E9B0E78F4787E3_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m4ECDD9F013D455EC83B7B52B3CD47880927B938B_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_m380B42619C8946FCE3816058A73AC26EF2FEA018_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisGuid_t_m9FDD0AC842503D6E29C8E53FB550982C2230CF0F_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mFDA0A9185276BCF79A0A695E6E458771496533FD_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_m49F0BDE5938059294C1227B99C92773DEEA415D0_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mA74AF4E123BCFF15EEA312570636C08F5880316D_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m7FCC674B564F0B8C20DC59A4B5EE9CBD9F2C02AB_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m7FE5131FCEEB55A0429D246C4AC726EE85232F71_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4FC592A9C1479783C221F1A0CCC037BB73E1F056_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisIntPtr_t_m7BAFE0B0F88A620FF81E179BCE3A57BACD0ED0E7_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01421A3FB2F89AEC3CF2DF7FBC708921953DEB81_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m51EDD22D64367274BA4B0ED594BB6D34508E90D7_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mE0361BCD39481331E7C04D2F52B469AACA99D63F_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mCDA3FBE262877EEF5D0FABB97F1834EF45F01E9C_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m469D5CF79A08F150A62943BED71A8E21B25BE679_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m5A46A4E4EF23FD4ADFB21D892EEE6ABF9B7CBC6B_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mF2E103D39EC274030BB69C6CFFED255712EB5332_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m18D3FDD2AC51D4E5865CA5B88707340A6B8C098D_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mBA59CD16C7B776DB1D433ADB02059F0C03F5BE2E_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m0698983A52FE4D26E8DE7724576E187842487673_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mAEDCD5F9CDC7238903F102934677BB6694BBD9D4_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_m657785C7F9593EC322747AD1567BA87494FF4410_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m647D9E49C5279A4E2EFF764FC1B3B787E97ECC12_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m88D31F15A9828B472A8FBD06CE6499A4B9AA5095_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_m041818B062D2A9874641ACC96D97BBDDFC518C52_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mF8D46CC13EFBC4D2AE93483CCDD2E6B01CC689F9_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m14F79BE795265B3A064C920941AB20EF80837C55_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mE9F2B59D6000F54B4632CAA735F1A2A34139E037_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_mAF5BFF3E5EF25739091384771958CE9F7B36E8F5_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m6A076451AA3F77754FFF77EF535DEA8A9128740C_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m6ECC7721B4496EEDC51766A22FFE1135262E601D_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m4FFDCA3412C2992784DBE5BF1803BAF71928C129_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisRuntimeObject_m84D4DC68A1BAC27655D58180AE6E26C0544F3D2A_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mBAC38A7C35E4854032C95707A505B884BB39E874_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m8A8858F5E13DEB3C5B2A24037554624E8E8B720C_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mC6C786952BA59DDAE83E8466E6397EED35D601E0_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m8C9703F6B9F64F8CD5706B3540D7F9A800AEC130_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m1E3FB931A3C3E10DD605E8840C2EAA72C76E7B93_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mDA3BD26CE863007EBB9125B0B5F01EF95A47FCC2_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_m914235EFA3494019D9B603F7DDF34C27FBC41C00_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m1B9EF7FC63165E4C71551F5CEE2D365C782B76D7_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_m60DE3B4B58501B91F9E6E51B5696412405C7303D_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mE83E8853FB0AA3C1C84FB6D5F188A7DFBF7B58E0_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m2BEE0E74F5ACF236586C3154499DA4DF4B764AD2_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisUIntPtr_t_m2648349D11C655B444AF3BEFC6C0E73E123B92A9_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m9DCFFB6848DF1AA9BC6E62F9018AD5245E27A703_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m191595B96A5B85F3248B0C78DA9A1B0E37F24CAD_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_m76BCDEC0C6DD3F60200FE513484FF5A10A9BC18A_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_mA19E1C4BB875ED58BB61451E5B0EB428F7A93576_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_mFE35EEA664F4AFF1B9DA92B5656485E9655C4DCA_MetadataUsageId; extern const uint32_t Array_InternalArray__set_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m74A70583E6C9B4212D199F1B1E5FF06158C913BE_MetadataUsageId; extern const uint32_t Array_LastIndexOf_TisRuntimeObject_m4C8C52470386439C1FB8B125159092C85B59550B_MetadataUsageId; extern const uint32_t Array_LastIndexOf_TisRuntimeObject_mA211142720D626D9CB6D880E7F2BC27DD673478D_MetadataUsageId; extern const uint32_t Array_LastIndexOf_TisRuntimeObject_mADF32BA8AC5E3F1C5D224A446DA3C1F0E9CBC324_MetadataUsageId; extern const uint32_t Array_Resize_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m06AF58E490AA366B34FFAAA68EF7179C85828C62_MetadataUsageId; extern const uint32_t Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC_MetadataUsageId; extern const uint32_t Array_Resize_TisRuntimeObject_m5DDE22DC2BDD151FF241480E31970F64BE8FF63F_MetadataUsageId; extern const uint32_t Array_Resize_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m3A6E3BB1A813660FBAC90C9449EB01DD71F2D723_MetadataUsageId; extern const uint32_t Array_Reverse_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m3185FC6FBAF4AB44EB30798AFB1D1F33B1FC512C_MetadataUsageId; extern const uint32_t Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m03D674052100D1E9D6214ADD31FE7E5F7E6788DA_MetadataUsageId; extern const uint32_t Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mC6D04DB36698F31262134DEEF6B9C03026200F13_MetadataUsageId; extern const uint32_t Array_Reverse_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m3D1CB4EBFE0546C88F25CEE130CA0973D0812963_MetadataUsageId; extern const uint32_t Array_Reverse_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m6D57F65828B620E5BFF0B7C05DD772FA7E7CD02D_MetadataUsageId; extern const uint32_t Array_Reverse_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mF3127FBEBF3264D006E8A59EED6FDAC172A99E4D_MetadataUsageId; extern const uint32_t Array_Reverse_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m2D1A9466E1EA5576CD58C21530B78D6CA3B61023_MetadataUsageId; extern const uint32_t Array_Reverse_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mD8757F39E77A7C7D678EB7C18B6E66B1E340A0CD_MetadataUsageId; extern const uint32_t Array_Reverse_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m38D4AFBD190745AEEB6F25799F8EF1212FB4EFCE_MetadataUsageId; extern const uint32_t Marshal_UnsafeAddrOfPinnedArrayElement_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m0F1B760143B0C170B0274CA8B82FE6C3F74D7962_MetadataUsageId; extern const uint32_t Marshal_UnsafeAddrOfPinnedArrayElement_TisRuntimeObject_mDA8E41437A28DD9BD4D9CD3FE151A6C3239DA0EE_MetadataUsageId; extern const uint32_t TaskFactory_1_FromAsyncTrim_TisRuntimeObject_TisReadWriteParameters_t5A9E416E0129249869039FC606326558DA3B597F_m1C8F0D4733E079FD02E85727AB4EFC2FA3AF1211_MetadataUsageId; extern const uint32_t TaskFactory_1_FromAsyncTrim_TisRuntimeObject_TisReadWriteParameters_t5A9E416E0129249869039FC606326558DA3B597F_m93223AD35FD0CC5A9815361B3030A32FC432C16B_MetadataUsageId; extern const uint32_t TaskFactory_1_FromAsyncTrim_TisRuntimeObject_TisRuntimeObject_mD5873D34918B6AE89DB41E0B5412D10B6541849C_MetadataUsageId; extern const uint32_t Task_FromCancellation_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m1D2F3D8D751533AB2C2C6571998736C242E908CB_MetadataUsageId; extern const uint32_t Task_FromCancellation_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m3F9DA3B6F9A2DF0807A103225BA6D71C431ED15B_MetadataUsageId; extern const uint32_t Task_FromCancellation_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m9308AB377C21815221796A65F008519EA9FE7DE6_MetadataUsageId; extern const uint32_t Task_FromCancellation_TisRuntimeObject_m045C8E197F0C7F13DCCA288894DDCC35493AD96E_MetadataUsageId; extern const uint32_t Task_FromCancellation_TisRuntimeObject_m4A9F178EC4392613B8FF7759C8EB3322DF483199_MetadataUsageId; extern const uint32_t Task_FromCancellation_TisVoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40_mC730A05E6E531AE6941EEF59F6A48D84748CA1D3_MetadataUsageId; extern const uint32_t Task_FromException_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mF3C6382F7FF59C06CCB6AF3DEDF0C7E42B3EFC52_MetadataUsageId; extern const uint32_t Task_FromException_TisRuntimeObject_m4975DA3A5E73288D167C18378DF487241808F1F8_MetadataUsageId; extern const uint32_t Task_FromException_TisVoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40_mF0D5B2C3E0E9A2245559F271CB88AAA19ADCE0E9_MetadataUsageId; extern const uint32_t Task_Run_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m11A2B12F2DF2E9E71644C83D3A1601E8BCC4929A_MetadataUsageId; extern const uint32_t Task_Run_TisRuntimeObject_mCF998C68623C833934353D12C469C935C60E5948_MetadataUsageId; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com; struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com; struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke; struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_com; struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_pinvoke; struct XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_com; struct XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_pinvoke; struct XPathNodeRefU5BU5D_t42E3ACCBD8D6FA1DD321905EB2253ABA6173B1E1; struct XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B; struct TableRangeU5BU5D_t6948DE52FB348848EC96FB928C2FCFEFB250C23A; struct BossU5BU5D_t732B317799F37FFEDE8CA5EE7CEFD0D447C6A6AE; struct ArraySegment_1U5BU5D_tD48E38276F3154239297C16C6458D97ECFC6D066; struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040; struct ByteEnumU5BU5D_t0C6DF506BED920F322C686A6E35C9D192F3C5D76; struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; struct DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56; struct EntryU5BU5D_t09B55F85AF27D0D332699AA879A1B10B193B5586; struct EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE; struct EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285; struct EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D; struct EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9; struct EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6; struct EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4; struct EntryU5BU5D_tCE3D39EBBB127037F170BD1FBADFA7D55D88E594; struct KeyValuePair_2U5BU5D_t09978BE60DE0548A94B8E535D3171CCAC7DCA928; struct KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F; struct KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7; struct KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A; struct KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B; struct KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E; struct KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB; struct KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262; struct KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB; struct KeyValuePair_2U5BU5D_t90BD5627DE1270CB7D2384CFC863BF0E5C371EDD; struct bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A; struct DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25; struct DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1; struct DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F; struct SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906; struct EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94; struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D; struct InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834; struct InternalEncodingDataItemU5BU5D_t0579A8C6FC0871F0230E51290511BF0C9C706C68; struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF; struct Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28; struct Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A; struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83; struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F; struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD; struct RecognizedAttributeU5BU5D_t7397ED532D4301EECF9C9119CFF1F732D3F75A55; struct HeaderVariantInfoU5BU5D_t0E01B2AC4A3A836E5AC79344A8F0CBD547CC8012; struct WSABUFU5BU5D_t4B8BBCF555CCE5338B6EA731D4126DA68ECE9C80; struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; struct FormatParamU5BU5D_t2F95A3C5AF726E75A42BC28843BAD579B62199B5; struct CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828; struct CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05; struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA; struct ResourceLocatorU5BU5D_t59B7EB7C559188316AF65FCF8AF05BFD7EF9ADCC; struct EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10; struct GCHandleU5BU5D_tA6EC6308F1B33AD5233BD26DE6FB431B6CEF1DB7; struct SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889; struct X509ChainStatusU5BU5D_tA8CCC33D50C4BCF6F657063CD1DACCC3B9A7BFBB; struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5; struct LowerCaseMappingU5BU5D_t70011E1042888E1D071920A9171989A479C0618D; struct CancellationTokenRegistrationU5BU5D_t4B36771A6344CFC66696BB16419C664E286DAF1B; struct TimeSpanU5BU5D_tCF326C038BD306190A013AE3C9F9B1A525054DD5; struct UInt16EnumU5BU5D_t59CC59ED969571152B93967388F196CADE982BAF; struct UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E; struct UInt32EnumU5BU5D_t2778403AF5991B56F3099A77451B997447A7780C; struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB; struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4; struct UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E; struct SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0; struct NamespaceDeclarationU5BU5D_t92995CBBEC52166860E77B72B8EEFF00E4D64E84; struct ParsingStateU5BU5D_t7A5096046F9BF1BA70E9696B2A2479272FC65739; struct OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101; struct PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2; struct KeyframeU5BU5D_tF4DC3E9BD9E6DB77FFF7BDC0B1545B5D6071513D; struct PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB; struct HitInfoU5BU5D_tA1A7DB3D520CAACEC1B3C3EC4071E4DA2EACA745; struct GcAchievementDataU5BU5D_tC79014E784EC39581F7829D8AE60004B54433153; struct GcScoreDataU5BU5D_tC3FADFA824E9BFBAA13EAE94D6A9BD04A19AE940; struct WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0; #ifndef RUNTIMEOBJECT_H #define RUNTIMEOBJECT_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEOBJECT_H struct Il2CppArrayBounds; #ifndef RUNTIMEARRAY_H #define RUNTIMEARRAY_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEARRAY_H #ifndef EQUALITYCOMPARER_1_TEF2C39D86C36E82597707B89981FFD60E94C824B_H #define EQUALITYCOMPARER_1_TEF2C39D86C36E82597707B89981FFD60E94C824B_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Boolean> struct EqualityComparer_1_tEF2C39D86C36E82597707B89981FFD60E94C824B : public RuntimeObject { public: public: }; struct EqualityComparer_1_tEF2C39D86C36E82597707B89981FFD60E94C824B_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tEF2C39D86C36E82597707B89981FFD60E94C824B * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tEF2C39D86C36E82597707B89981FFD60E94C824B_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tEF2C39D86C36E82597707B89981FFD60E94C824B * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tEF2C39D86C36E82597707B89981FFD60E94C824B ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tEF2C39D86C36E82597707B89981FFD60E94C824B * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_TEF2C39D86C36E82597707B89981FFD60E94C824B_H #ifndef EQUALITYCOMPARER_1_T3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5_H #define EQUALITYCOMPARER_1_T3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Byte> struct EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5_H #ifndef EQUALITYCOMPARER_1_T41502C277E18047AC2005F5FB63267CB4C010B77_H #define EQUALITYCOMPARER_1_T41502C277E18047AC2005F5FB63267CB4C010B77_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>> struct EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T41502C277E18047AC2005F5FB63267CB4C010B77_H #ifndef EQUALITYCOMPARER_1_T21E166DB6F02E6294F8D979F22ACE807F6743998_H #define EQUALITYCOMPARER_1_T21E166DB6F02E6294F8D979F22ACE807F6743998_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.DateTime> struct EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T21E166DB6F02E6294F8D979F22ACE807F6743998_H #ifndef EQUALITYCOMPARER_1_T7BCF66E24804C5E258DB12209117B0722FC3FDE4_H #define EQUALITYCOMPARER_1_T7BCF66E24804C5E258DB12209117B0722FC3FDE4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.DateTimeOffset> struct EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T7BCF66E24804C5E258DB12209117B0722FC3FDE4_H #ifndef EQUALITYCOMPARER_1_T5F84660374B493F86CCE91B7723DB110A0025F6B_H #define EQUALITYCOMPARER_1_T5F84660374B493F86CCE91B7723DB110A0025F6B_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Decimal> struct EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B : public RuntimeObject { public: public: }; struct EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T5F84660374B493F86CCE91B7723DB110A0025F6B_H #ifndef EQUALITYCOMPARER_1_T998EC77AE710777CF628230235325EFCE0737BEF_H #define EQUALITYCOMPARER_1_T998EC77AE710777CF628230235325EFCE0737BEF_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Diagnostics.Tracing.EventProvider_SessionInfo> struct EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF : public RuntimeObject { public: public: }; struct EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T998EC77AE710777CF628230235325EFCE0737BEF_H #ifndef EQUALITYCOMPARER_1_T2284CDD98A505FC763285959CB32BF8796788102_H #define EQUALITYCOMPARER_1_T2284CDD98A505FC763285959CB32BF8796788102_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Double> struct EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T2284CDD98A505FC763285959CB32BF8796788102_H #ifndef EQUALITYCOMPARER_1_T4CD1CCB3DD1E825E044304118760FAF6CBEE389D_H #define EQUALITYCOMPARER_1_T4CD1CCB3DD1E825E044304118760FAF6CBEE389D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Int16> struct EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D : public RuntimeObject { public: public: }; struct EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T4CD1CCB3DD1E825E044304118760FAF6CBEE389D_H #ifndef EQUALITYCOMPARER_1_TF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33_H #define EQUALITYCOMPARER_1_TF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Int32> struct EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33 : public RuntimeObject { public: public: }; struct EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_TF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33_H #ifndef EQUALITYCOMPARER_1_TEC6595561CF074BEB11B6E8C286DCCD35D21136C_H #define EQUALITYCOMPARER_1_TEC6595561CF074BEB11B6E8C286DCCD35D21136C_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Int32Enum> struct EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C : public RuntimeObject { public: public: }; struct EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_TEC6595561CF074BEB11B6E8C286DCCD35D21136C_H #ifndef EQUALITYCOMPARER_1_TFC9F2864754EE91CB606761D0C5B0E139497309E_H #define EQUALITYCOMPARER_1_TFC9F2864754EE91CB606761D0C5B0E139497309E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Int64> struct EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E : public RuntimeObject { public: public: }; struct EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_TFC9F2864754EE91CB606761D0C5B0E139497309E_H #ifndef EQUALITYCOMPARER_1_T54972BA287ED38B066E4BE7A3B21F49803B62EBA_H #define EQUALITYCOMPARER_1_T54972BA287ED38B066E4BE7A3B21F49803B62EBA_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Object> struct EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA : public RuntimeObject { public: public: }; struct EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T54972BA287ED38B066E4BE7A3B21F49803B62EBA_H #ifndef EQUALITYCOMPARER_1_T1653BBB342B487357DF28761F33A34441A5A2371_H #define EQUALITYCOMPARER_1_T1653BBB342B487357DF28761F33A34441A5A2371_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.SByte> struct EqualityComparer_1_t1653BBB342B487357DF28761F33A34441A5A2371 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t1653BBB342B487357DF28761F33A34441A5A2371_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t1653BBB342B487357DF28761F33A34441A5A2371 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t1653BBB342B487357DF28761F33A34441A5A2371_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t1653BBB342B487357DF28761F33A34441A5A2371 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t1653BBB342B487357DF28761F33A34441A5A2371 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t1653BBB342B487357DF28761F33A34441A5A2371 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T1653BBB342B487357DF28761F33A34441A5A2371_H #ifndef EQUALITYCOMPARER_1_TB4B41F25BC08C22B3E91BB2941802C39586AC6B6_H #define EQUALITYCOMPARER_1_TB4B41F25BC08C22B3E91BB2941802C39586AC6B6_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Single> struct EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6 : public RuntimeObject { public: public: }; struct EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_TB4B41F25BC08C22B3E91BB2941802C39586AC6B6_H #ifndef EQUALITYCOMPARER_1_TD60BF9630038224362477637F04D8F02D49DA7C4_H #define EQUALITYCOMPARER_1_TD60BF9630038224362477637F04D8F02D49DA7C4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.TimeSpan> struct EqualityComparer_1_tD60BF9630038224362477637F04D8F02D49DA7C4 : public RuntimeObject { public: public: }; struct EqualityComparer_1_tD60BF9630038224362477637F04D8F02D49DA7C4_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tD60BF9630038224362477637F04D8F02D49DA7C4 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tD60BF9630038224362477637F04D8F02D49DA7C4_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tD60BF9630038224362477637F04D8F02D49DA7C4 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tD60BF9630038224362477637F04D8F02D49DA7C4 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tD60BF9630038224362477637F04D8F02D49DA7C4 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_TD60BF9630038224362477637F04D8F02D49DA7C4_H #ifndef EQUALITYCOMPARER_1_T5A44736F4237D4F477AE641C097FBDC592BEA03E_H #define EQUALITYCOMPARER_1_T5A44736F4237D4F477AE641C097FBDC592BEA03E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.UInt16> struct EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E : public RuntimeObject { public: public: }; struct EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T5A44736F4237D4F477AE641C097FBDC592BEA03E_H #ifndef EQUALITYCOMPARER_1_TDDD15C1EE67655D8910B42D856F52279F5E62114_H #define EQUALITYCOMPARER_1_TDDD15C1EE67655D8910B42D856F52279F5E62114_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.UInt32> struct EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 : public RuntimeObject { public: public: }; struct EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_TDDD15C1EE67655D8910B42D856F52279F5E62114_H #ifndef EQUALITYCOMPARER_1_T5F0C8F88704710D11293F02D38AE92D81C964F13_H #define EQUALITYCOMPARER_1_T5F0C8F88704710D11293F02D38AE92D81C964F13_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.UInt64> struct EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T5F0C8F88704710D11293F02D38AE92D81C964F13_H #ifndef EQUALITYCOMPARER_1_T0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7_H #define EQUALITYCOMPARER_1_T0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper_OrderBlock> struct EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7_H #ifndef EQUALITYCOMPARER_1_T3BC42857E36209A693BF3CE884A5A4699FC68B79_H #define EQUALITYCOMPARER_1_T3BC42857E36209A693BF3CE884A5A4699FC68B79_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<UnityEngine.UnitySynchronizationContext_WorkRequest> struct EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T3BC42857E36209A693BF3CE884A5A4699FC68B79_H #ifndef EXCEPTION_T_H #define EXCEPTION_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((&____className_1), value); } inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((&____message_2), value); } inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((&____data_3), value); } inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((&____innerException_4), value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((&____helpURL_5), value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((&____stackTrace_6), value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((&____stackTraceString_7), value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((&____remoteStackTraceString_8), value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((&____dynamicMethods_10), value); } inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((&____source_12), value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((&____safeSerializationManager_13), value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((&___captured_traces_14), value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((&___native_trace_ips_15), value); } }; struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((&___s_EDILock_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; intptr_t* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; intptr_t* ___native_trace_ips_15; }; #endif // EXCEPTION_T_H #ifndef MEMBERINFO_T_H #define MEMBERINFO_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MEMBERINFO_T_H #ifndef ASYNCTASKCACHE_T34A97832FCD6948CE68777740FA37AEAB550E6CF_H #define ASYNCTASKCACHE_T34A97832FCD6948CE68777740FA37AEAB550E6CF_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.CompilerServices.AsyncTaskCache struct AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF : public RuntimeObject { public: public: }; struct AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_StaticFields { public: // System.Threading.Tasks.Task`1<System.Boolean> System.Runtime.CompilerServices.AsyncTaskCache::TrueTask Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___TrueTask_0; // System.Threading.Tasks.Task`1<System.Boolean> System.Runtime.CompilerServices.AsyncTaskCache::FalseTask Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___FalseTask_1; // System.Threading.Tasks.Task`1<System.Int32>[] System.Runtime.CompilerServices.AsyncTaskCache::Int32Tasks Task_1U5BU5D_tF1E5C7D356B3C934B63AB0B3384819D681C4FD20* ___Int32Tasks_2; public: inline static int32_t get_offset_of_TrueTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_StaticFields, ___TrueTask_0)); } inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * get_TrueTask_0() const { return ___TrueTask_0; } inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 ** get_address_of_TrueTask_0() { return &___TrueTask_0; } inline void set_TrueTask_0(Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * value) { ___TrueTask_0 = value; Il2CppCodeGenWriteBarrier((&___TrueTask_0), value); } inline static int32_t get_offset_of_FalseTask_1() { return static_cast<int32_t>(offsetof(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_StaticFields, ___FalseTask_1)); } inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * get_FalseTask_1() const { return ___FalseTask_1; } inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 ** get_address_of_FalseTask_1() { return &___FalseTask_1; } inline void set_FalseTask_1(Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * value) { ___FalseTask_1 = value; Il2CppCodeGenWriteBarrier((&___FalseTask_1), value); } inline static int32_t get_offset_of_Int32Tasks_2() { return static_cast<int32_t>(offsetof(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_StaticFields, ___Int32Tasks_2)); } inline Task_1U5BU5D_tF1E5C7D356B3C934B63AB0B3384819D681C4FD20* get_Int32Tasks_2() const { return ___Int32Tasks_2; } inline Task_1U5BU5D_tF1E5C7D356B3C934B63AB0B3384819D681C4FD20** get_address_of_Int32Tasks_2() { return &___Int32Tasks_2; } inline void set_Int32Tasks_2(Task_1U5BU5D_tF1E5C7D356B3C934B63AB0B3384819D681C4FD20* value) { ___Int32Tasks_2 = value; Il2CppCodeGenWriteBarrier((&___Int32Tasks_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ASYNCTASKCACHE_T34A97832FCD6948CE68777740FA37AEAB550E6CF_H #ifndef JITHELPERS_T6BCD6CAFCA9C54EDD15CC80B7D7416E8711E8AAB_H #define JITHELPERS_T6BCD6CAFCA9C54EDD15CC80B7D7416E8711E8AAB_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.CompilerServices.JitHelpers struct JitHelpers_t6BCD6CAFCA9C54EDD15CC80B7D7416E8711E8AAB : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // JITHELPERS_T6BCD6CAFCA9C54EDD15CC80B7D7416E8711E8AAB_H #ifndef MARSHAL_TC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_H #define MARSHAL_TC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.InteropServices.Marshal struct Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40 : public RuntimeObject { public: public: }; struct Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_StaticFields { public: // System.Int32 System.Runtime.InteropServices.Marshal::SystemMaxDBCSCharSize int32_t ___SystemMaxDBCSCharSize_0; // System.Int32 System.Runtime.InteropServices.Marshal::SystemDefaultCharSize int32_t ___SystemDefaultCharSize_1; public: inline static int32_t get_offset_of_SystemMaxDBCSCharSize_0() { return static_cast<int32_t>(offsetof(Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_StaticFields, ___SystemMaxDBCSCharSize_0)); } inline int32_t get_SystemMaxDBCSCharSize_0() const { return ___SystemMaxDBCSCharSize_0; } inline int32_t* get_address_of_SystemMaxDBCSCharSize_0() { return &___SystemMaxDBCSCharSize_0; } inline void set_SystemMaxDBCSCharSize_0(int32_t value) { ___SystemMaxDBCSCharSize_0 = value; } inline static int32_t get_offset_of_SystemDefaultCharSize_1() { return static_cast<int32_t>(offsetof(Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_StaticFields, ___SystemDefaultCharSize_1)); } inline int32_t get_SystemDefaultCharSize_1() const { return ___SystemDefaultCharSize_1; } inline int32_t* get_address_of_SystemDefaultCharSize_1() { return &___SystemDefaultCharSize_1; } inline void set_SystemDefaultCharSize_1(int32_t value) { ___SystemDefaultCharSize_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MARSHAL_TC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_H #ifndef STRING_T_H #define STRING_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::m_stringLength int32_t ___m_stringLength_0; // System.Char System.String::m_firstChar Il2CppChar ___m_firstChar_1; public: inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); } inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; } inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; } inline void set_m_stringLength_0(int32_t value) { ___m_stringLength_0 = value; } inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); } inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; } inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; } inline void set_m_firstChar_1(Il2CppChar value) { ___m_firstChar_1 = value; } }; struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_5; public: inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); } inline String_t* get_Empty_5() const { return ___Empty_5; } inline String_t** get_address_of_Empty_5() { return &___Empty_5; } inline void set_Empty_5(String_t* value) { ___Empty_5 = value; Il2CppCodeGenWriteBarrier((&___Empty_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STRING_T_H #ifndef TUPLE_TEC0E79AD4C7F35789E477B876F50D5854D890C52_H #define TUPLE_TEC0E79AD4C7F35789E477B876F50D5854D890C52_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Tuple struct Tuple_tEC0E79AD4C7F35789E477B876F50D5854D890C52 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TUPLE_TEC0E79AD4C7F35789E477B876F50D5854D890C52_H #ifndef TUPLE_2_T28940D9AA109CFB8C1D8CAEDD0EAF70EAD2F7C63_H #define TUPLE_2_T28940D9AA109CFB8C1D8CAEDD0EAF70EAD2F7C63_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Tuple`2<System.Int32,System.Int32> struct Tuple_2_t28940D9AA109CFB8C1D8CAEDD0EAF70EAD2F7C63 : public RuntimeObject { public: // T1 System.Tuple`2::m_Item1 int32_t ___m_Item1_0; // T2 System.Tuple`2::m_Item2 int32_t ___m_Item2_1; public: inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_t28940D9AA109CFB8C1D8CAEDD0EAF70EAD2F7C63, ___m_Item1_0)); } inline int32_t get_m_Item1_0() const { return ___m_Item1_0; } inline int32_t* get_address_of_m_Item1_0() { return &___m_Item1_0; } inline void set_m_Item1_0(int32_t value) { ___m_Item1_0 = value; } inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_t28940D9AA109CFB8C1D8CAEDD0EAF70EAD2F7C63, ___m_Item2_1)); } inline int32_t get_m_Item2_1() const { return ___m_Item2_1; } inline int32_t* get_address_of_m_Item2_1() { return &___m_Item2_1; } inline void set_m_Item2_1(int32_t value) { ___m_Item2_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TUPLE_2_T28940D9AA109CFB8C1D8CAEDD0EAF70EAD2F7C63_H #ifndef TUPLE_2_T66BEEC45F61266028F5253B4045F569CB4C812F5_H #define TUPLE_2_T66BEEC45F61266028F5253B4045F569CB4C812F5_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Tuple`2<System.Object,System.Object> struct Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5 : public RuntimeObject { public: // T1 System.Tuple`2::m_Item1 RuntimeObject * ___m_Item1_0; // T2 System.Tuple`2::m_Item2 RuntimeObject * ___m_Item2_1; public: inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5, ___m_Item1_0)); } inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; } inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; } inline void set_m_Item1_0(RuntimeObject * value) { ___m_Item1_0 = value; Il2CppCodeGenWriteBarrier((&___m_Item1_0), value); } inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5, ___m_Item2_1)); } inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; } inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; } inline void set_m_Item2_1(RuntimeObject * value) { ___m_Item2_1 = value; Il2CppCodeGenWriteBarrier((&___m_Item2_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TUPLE_2_T66BEEC45F61266028F5253B4045F569CB4C812F5_H #ifndef VALUETYPE_T4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_H #define VALUETYPE_T4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com { }; #endif // VALUETYPE_T4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_H #ifndef XPATHNODE_TC207ED6C653E80055FE6C5ECD3E6137A326659A0_H #define XPATHNODE_TC207ED6C653E80055FE6C5ECD3E6137A326659A0_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // MS.Internal.Xml.Cache.XPathNode struct XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 { public: // MS.Internal.Xml.Cache.XPathNodeInfoAtom MS.Internal.Xml.Cache.XPathNode::info XPathNodeInfoAtom_t6FF2C2B2096901C0BB3988616FBA285A67947AC7 * ___info_0; // System.UInt16 MS.Internal.Xml.Cache.XPathNode::idxSibling uint16_t ___idxSibling_1; // System.UInt16 MS.Internal.Xml.Cache.XPathNode::idxParent uint16_t ___idxParent_2; // System.UInt16 MS.Internal.Xml.Cache.XPathNode::idxSimilar uint16_t ___idxSimilar_3; // System.UInt16 MS.Internal.Xml.Cache.XPathNode::posOffset uint16_t ___posOffset_4; // System.UInt32 MS.Internal.Xml.Cache.XPathNode::props uint32_t ___props_5; // System.String MS.Internal.Xml.Cache.XPathNode::value String_t* ___value_6; public: inline static int32_t get_offset_of_info_0() { return static_cast<int32_t>(offsetof(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0, ___info_0)); } inline XPathNodeInfoAtom_t6FF2C2B2096901C0BB3988616FBA285A67947AC7 * get_info_0() const { return ___info_0; } inline XPathNodeInfoAtom_t6FF2C2B2096901C0BB3988616FBA285A67947AC7 ** get_address_of_info_0() { return &___info_0; } inline void set_info_0(XPathNodeInfoAtom_t6FF2C2B2096901C0BB3988616FBA285A67947AC7 * value) { ___info_0 = value; Il2CppCodeGenWriteBarrier((&___info_0), value); } inline static int32_t get_offset_of_idxSibling_1() { return static_cast<int32_t>(offsetof(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0, ___idxSibling_1)); } inline uint16_t get_idxSibling_1() const { return ___idxSibling_1; } inline uint16_t* get_address_of_idxSibling_1() { return &___idxSibling_1; } inline void set_idxSibling_1(uint16_t value) { ___idxSibling_1 = value; } inline static int32_t get_offset_of_idxParent_2() { return static_cast<int32_t>(offsetof(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0, ___idxParent_2)); } inline uint16_t get_idxParent_2() const { return ___idxParent_2; } inline uint16_t* get_address_of_idxParent_2() { return &___idxParent_2; } inline void set_idxParent_2(uint16_t value) { ___idxParent_2 = value; } inline static int32_t get_offset_of_idxSimilar_3() { return static_cast<int32_t>(offsetof(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0, ___idxSimilar_3)); } inline uint16_t get_idxSimilar_3() const { return ___idxSimilar_3; } inline uint16_t* get_address_of_idxSimilar_3() { return &___idxSimilar_3; } inline void set_idxSimilar_3(uint16_t value) { ___idxSimilar_3 = value; } inline static int32_t get_offset_of_posOffset_4() { return static_cast<int32_t>(offsetof(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0, ___posOffset_4)); } inline uint16_t get_posOffset_4() const { return ___posOffset_4; } inline uint16_t* get_address_of_posOffset_4() { return &___posOffset_4; } inline void set_posOffset_4(uint16_t value) { ___posOffset_4 = value; } inline static int32_t get_offset_of_props_5() { return static_cast<int32_t>(offsetof(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0, ___props_5)); } inline uint32_t get_props_5() const { return ___props_5; } inline uint32_t* get_address_of_props_5() { return &___props_5; } inline void set_props_5(uint32_t value) { ___props_5 = value; } inline static int32_t get_offset_of_value_6() { return static_cast<int32_t>(offsetof(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0, ___value_6)); } inline String_t* get_value_6() const { return ___value_6; } inline String_t** get_address_of_value_6() { return &___value_6; } inline void set_value_6(String_t* value) { ___value_6 = value; Il2CppCodeGenWriteBarrier((&___value_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of MS.Internal.Xml.Cache.XPathNode struct XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_pinvoke { XPathNodeInfoAtom_t6FF2C2B2096901C0BB3988616FBA285A67947AC7 * ___info_0; uint16_t ___idxSibling_1; uint16_t ___idxParent_2; uint16_t ___idxSimilar_3; uint16_t ___posOffset_4; uint32_t ___props_5; char* ___value_6; }; // Native definition for COM marshalling of MS.Internal.Xml.Cache.XPathNode struct XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_com { XPathNodeInfoAtom_t6FF2C2B2096901C0BB3988616FBA285A67947AC7 * ___info_0; uint16_t ___idxSibling_1; uint16_t ___idxParent_2; uint16_t ___idxSimilar_3; uint16_t ___posOffset_4; uint32_t ___props_5; Il2CppChar* ___value_6; }; #endif // XPATHNODE_TC207ED6C653E80055FE6C5ECD3E6137A326659A0_H #ifndef XPATHNODEREF_T6F631244BF7B58CE7DB9239662B4EE745CD54E14_H #define XPATHNODEREF_T6F631244BF7B58CE7DB9239662B4EE745CD54E14_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // MS.Internal.Xml.Cache.XPathNodeRef struct XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 { public: // MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathNodeRef::page XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B* ___page_0; // System.Int32 MS.Internal.Xml.Cache.XPathNodeRef::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_page_0() { return static_cast<int32_t>(offsetof(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14, ___page_0)); } inline XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B* get_page_0() const { return ___page_0; } inline XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B** get_address_of_page_0() { return &___page_0; } inline void set_page_0(XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B* value) { ___page_0 = value; Il2CppCodeGenWriteBarrier((&___page_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of MS.Internal.Xml.Cache.XPathNodeRef struct XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_marshaled_pinvoke { XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_pinvoke* ___page_0; int32_t ___idx_1; }; // Native definition for COM marshalling of MS.Internal.Xml.Cache.XPathNodeRef struct XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_marshaled_com { XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_com* ___page_0; int32_t ___idx_1; }; #endif // XPATHNODEREF_T6F631244BF7B58CE7DB9239662B4EE745CD54E14_H #ifndef TABLERANGE_T485CF0807771CC05023466CFCB0AE25C46648100_H #define TABLERANGE_T485CF0807771CC05023466CFCB0AE25C46648100_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Globalization.Unicode.CodePointIndexer_TableRange struct TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 { public: // System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::Start int32_t ___Start_0; // System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::End int32_t ___End_1; // System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::Count int32_t ___Count_2; // System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::IndexStart int32_t ___IndexStart_3; // System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::IndexEnd int32_t ___IndexEnd_4; public: inline static int32_t get_offset_of_Start_0() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___Start_0)); } inline int32_t get_Start_0() const { return ___Start_0; } inline int32_t* get_address_of_Start_0() { return &___Start_0; } inline void set_Start_0(int32_t value) { ___Start_0 = value; } inline static int32_t get_offset_of_End_1() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___End_1)); } inline int32_t get_End_1() const { return ___End_1; } inline int32_t* get_address_of_End_1() { return &___End_1; } inline void set_End_1(int32_t value) { ___End_1 = value; } inline static int32_t get_offset_of_Count_2() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___Count_2)); } inline int32_t get_Count_2() const { return ___Count_2; } inline int32_t* get_address_of_Count_2() { return &___Count_2; } inline void set_Count_2(int32_t value) { ___Count_2 = value; } inline static int32_t get_offset_of_IndexStart_3() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___IndexStart_3)); } inline int32_t get_IndexStart_3() const { return ___IndexStart_3; } inline int32_t* get_address_of_IndexStart_3() { return &___IndexStart_3; } inline void set_IndexStart_3(int32_t value) { ___IndexStart_3 = value; } inline static int32_t get_offset_of_IndexEnd_4() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___IndexEnd_4)); } inline int32_t get_IndexEnd_4() const { return ___IndexEnd_4; } inline int32_t* get_address_of_IndexEnd_4() { return &___IndexEnd_4; } inline void set_IndexEnd_4(int32_t value) { ___IndexEnd_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TABLERANGE_T485CF0807771CC05023466CFCB0AE25C46648100_H #ifndef BOSS_T4DFCA8B70274E8A527C98C58DFBFAC4530831020_H #define BOSS_T4DFCA8B70274E8A527C98C58DFBFAC4530831020_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // PInokeDemo_Boss struct Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 { public: // System.String PInokeDemo_Boss::name String_t* ___name_0; // System.Int32 PInokeDemo_Boss::health int32_t ___health_1; public: inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((&___name_0), value); } inline static int32_t get_offset_of_health_1() { return static_cast<int32_t>(offsetof(Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020, ___health_1)); } inline int32_t get_health_1() const { return ___health_1; } inline int32_t* get_address_of_health_1() { return &___health_1; } inline void set_health_1(int32_t value) { ___health_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of PInokeDemo/Boss struct Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_marshaled_pinvoke { char* ___name_0; int32_t ___health_1; }; // Native definition for COM marshalling of PInokeDemo/Boss struct Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_marshaled_com { Il2CppChar* ___name_0; int32_t ___health_1; }; #endif // BOSS_T4DFCA8B70274E8A527C98C58DFBFAC4530831020_H #ifndef ARRAYSEGMENT_1_T5B17204266E698CC035E2A7F6435A4F78286D0FA_H #define ARRAYSEGMENT_1_T5B17204266E698CC035E2A7F6435A4F78286D0FA_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArraySegment`1<System.Byte> struct ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA { public: // T[] System.ArraySegment`1::_array ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____array_0; // System.Int32 System.ArraySegment`1::_offset int32_t ____offset_1; // System.Int32 System.ArraySegment`1::_count int32_t ____count_2; public: inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA, ____array_0)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__array_0() const { return ____array_0; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__array_0() { return &____array_0; } inline void set__array_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((&____array_0), value); } inline static int32_t get_offset_of__offset_1() { return static_cast<int32_t>(offsetof(ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA, ____offset_1)); } inline int32_t get__offset_1() const { return ____offset_1; } inline int32_t* get_address_of__offset_1() { return &____offset_1; } inline void set__offset_1(int32_t value) { ____offset_1 = value; } inline static int32_t get_offset_of__count_2() { return static_cast<int32_t>(offsetof(ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA, ____count_2)); } inline int32_t get__count_2() const { return ____count_2; } inline int32_t* get_address_of__count_2() { return &____count_2; } inline void set__count_2(int32_t value) { ____count_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARRAYSEGMENT_1_T5B17204266E698CC035E2A7F6435A4F78286D0FA_H #ifndef BOOLEAN_TB53F6830F670160873277339AA58F15CAED4399C_H #define BOOLEAN_TB53F6830F670160873277339AA58F15CAED4399C_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((&___TrueString_5), value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((&___FalseString_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BOOLEAN_TB53F6830F670160873277339AA58F15CAED4399C_H #ifndef BYTE_TF87C579059BD4633E6840EBBBEEF899C6E33EF07_H #define BYTE_TF87C579059BD4633E6840EBBBEEF899C6E33EF07_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Byte struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); } inline uint8_t get_m_value_0() const { return ___m_value_0; } inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint8_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BYTE_TF87C579059BD4633E6840EBBBEEF899C6E33EF07_H #ifndef CHAR_TBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_H #define CHAR_TBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Char struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___m_value_0)); } inline Il2CppChar get_m_value_0() const { return ___m_value_0; } inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(Il2CppChar value) { ___m_value_0 = value; } }; struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((&___categoryForLatin1_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CHAR_TBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_H #ifndef DICTIONARYENTRY_TB5348A26B94274FCC1DD77185BD5946E283B11A4_H #define DICTIONARYENTRY_TB5348A26B94274FCC1DD77185BD5946E283B11A4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.DictionaryEntry struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 { public: // System.Object System.Collections.DictionaryEntry::_key RuntimeObject * ____key_0; // System.Object System.Collections.DictionaryEntry::_value RuntimeObject * ____value_1; public: inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____key_0)); } inline RuntimeObject * get__key_0() const { return ____key_0; } inline RuntimeObject ** get_address_of__key_0() { return &____key_0; } inline void set__key_0(RuntimeObject * value) { ____key_0 = value; Il2CppCodeGenWriteBarrier((&____key_0), value); } inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____value_1)); } inline RuntimeObject * get__value_1() const { return ____value_1; } inline RuntimeObject ** get_address_of__value_1() { return &____value_1; } inline void set__value_1(RuntimeObject * value) { ____value_1 = value; Il2CppCodeGenWriteBarrier((&____value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_pinvoke { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // Native definition for COM marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_com { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; #endif // DICTIONARYENTRY_TB5348A26B94274FCC1DD77185BD5946E283B11A4_H #ifndef ENTRY_T7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_H #define ENTRY_T7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object> struct Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((&___value_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_H #ifndef ENTRY_T495C47A91D5A1899AF832D603308B663495EC5A8_H #define ENTRY_T495C47A91D5A1899AF832D603308B663495EC5A8_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Boolean> struct Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value bool ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t495C47A91D5A1899AF832D603308B663495EC5A8, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t495C47A91D5A1899AF832D603308B663495EC5A8, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t495C47A91D5A1899AF832D603308B663495EC5A8, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((&___key_2), value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t495C47A91D5A1899AF832D603308B663495EC5A8, ___value_3)); } inline bool get_value_3() const { return ___value_3; } inline bool* get_address_of_value_3() { return &___value_3; } inline void set_value_3(bool value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T495C47A91D5A1899AF832D603308B663495EC5A8_H #ifndef ENTRY_T06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_H #define ENTRY_T06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32> struct Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value int32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((&___key_2), value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___value_3)); } inline int32_t get_value_3() const { return ___value_3; } inline int32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int32_t value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_H #ifndef ENTRY_T03898C03E4E291FD6780D28D81A25E3CACF2BADA_H #define ENTRY_T03898C03E4E291FD6780D28D81A25E3CACF2BADA_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object> struct Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((&___key_2), value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((&___value_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T03898C03E4E291FD6780D28D81A25E3CACF2BADA_H #ifndef ENTRY_TF00169F106D087C791655821B46CB7BBDEAC4A29_H #define ENTRY_TF00169F106D087C791655821B46CB7BBDEAC4A29_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object> struct Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key uint64_t ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29, ___key_2)); } inline uint64_t get_key_2() const { return ___key_2; } inline uint64_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(uint64_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((&___value_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_TF00169F106D087C791655821B46CB7BBDEAC4A29_H #ifndef KEYVALUEPAIR_2_T86464C52F9602337EAC68825E6BE06951D7530CE_H #define KEYVALUEPAIR_2_T86464C52F9602337EAC68825E6BE06951D7530CE_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object> struct KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T86464C52F9602337EAC68825E6BE06951D7530CE_H #ifndef KEYVALUEPAIR_2_TF975BF5238F06AC9CCA19111DD41484E071258C1_H #define KEYVALUEPAIR_2_TF975BF5238F06AC9CCA19111DD41484E071258C1_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean> struct KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value bool ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1, ___value_1)); } inline bool get_value_1() const { return ___value_1; } inline bool* get_address_of_value_1() { return &___value_1; } inline void set_value_1(bool value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_TF975BF5238F06AC9CCA19111DD41484E071258C1_H #ifndef KEYVALUEPAIR_2_T3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_H #define KEYVALUEPAIR_2_T3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32> struct KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_H #ifndef KEYVALUEPAIR_2_T23481547E419E16E3B96A303578C1EB685C99EEE_H #define KEYVALUEPAIR_2_T23481547E419E16E3B96A303578C1EB685C99EEE_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object> struct KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T23481547E419E16E3B96A303578C1EB685C99EEE_H #ifndef KEYVALUEPAIR_2_TBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_H #define KEYVALUEPAIR_2_TBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object> struct KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 { public: // TKey System.Collections.Generic.KeyValuePair`2::key uint64_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4, ___key_0)); } inline uint64_t get_key_0() const { return ___key_0; } inline uint64_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(uint64_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_TBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_H #ifndef BUCKET_T1C848488DF65838689F7773D46F9E7E8C881B083_H #define BUCKET_T1C848488DF65838689F7773D46F9E7E8C881B083_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Hashtable_bucket struct bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 { public: // System.Object System.Collections.Hashtable_bucket::key RuntimeObject * ___key_0; // System.Object System.Collections.Hashtable_bucket::val RuntimeObject * ___val_1; // System.Int32 System.Collections.Hashtable_bucket::hash_coll int32_t ___hash_coll_2; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_val_1() { return static_cast<int32_t>(offsetof(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, ___val_1)); } inline RuntimeObject * get_val_1() const { return ___val_1; } inline RuntimeObject ** get_address_of_val_1() { return &___val_1; } inline void set_val_1(RuntimeObject * value) { ___val_1 = value; Il2CppCodeGenWriteBarrier((&___val_1), value); } inline static int32_t get_offset_of_hash_coll_2() { return static_cast<int32_t>(offsetof(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, ___hash_coll_2)); } inline int32_t get_hash_coll_2() const { return ___hash_coll_2; } inline int32_t* get_address_of_hash_coll_2() { return &___hash_coll_2; } inline void set_hash_coll_2(int32_t value) { ___hash_coll_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Collections.Hashtable/bucket struct bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshaled_pinvoke { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___val_1; int32_t ___hash_coll_2; }; // Native definition for COM marshalling of System.Collections.Hashtable/bucket struct bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshaled_com { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___val_1; int32_t ___hash_coll_2; }; #endif // BUCKET_T1C848488DF65838689F7773D46F9E7E8C881B083_H #ifndef DATETIME_T349B7449FBAAFF4192636E2B7A07694DA9236132_H #define DATETIME_T349B7449FBAAFF4192636E2B7A07694DA9236132_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTime struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 { public: // System.UInt64 System.DateTime::dateData uint64_t ___dateData_44; public: inline static int32_t get_offset_of_dateData_44() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, ___dateData_44)); } inline uint64_t get_dateData_44() const { return ___dateData_44; } inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; } inline void set_dateData_44(uint64_t value) { ___dateData_44 = value; } }; struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields { public: // System.Int32[] System.DateTime::DaysToMonth365 Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth365_29; // System.Int32[] System.DateTime::DaysToMonth366 Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth366_30; // System.DateTime System.DateTime::MinValue DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MinValue_31; // System.DateTime System.DateTime::MaxValue DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MaxValue_32; public: inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth365_29)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; } inline void set_DaysToMonth365_29(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___DaysToMonth365_29 = value; Il2CppCodeGenWriteBarrier((&___DaysToMonth365_29), value); } inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth366_30)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; } inline void set_DaysToMonth366_30(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___DaysToMonth366_30 = value; Il2CppCodeGenWriteBarrier((&___DaysToMonth366_30), value); } inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MinValue_31)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MinValue_31() const { return ___MinValue_31; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MinValue_31() { return &___MinValue_31; } inline void set_MinValue_31(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___MinValue_31 = value; } inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MaxValue_32)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MaxValue_32() const { return ___MaxValue_32; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MaxValue_32() { return &___MaxValue_32; } inline void set_MaxValue_32(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___MaxValue_32 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DATETIME_T349B7449FBAAFF4192636E2B7A07694DA9236132_H #ifndef DECIMAL_T44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_H #define DECIMAL_T44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Decimal struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 { public: // System.Int32 System.Decimal::flags int32_t ___flags_14; // System.Int32 System.Decimal::hi int32_t ___hi_15; // System.Int32 System.Decimal::lo int32_t ___lo_16; // System.Int32 System.Decimal::mid int32_t ___mid_17; public: inline static int32_t get_offset_of_flags_14() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___flags_14)); } inline int32_t get_flags_14() const { return ___flags_14; } inline int32_t* get_address_of_flags_14() { return &___flags_14; } inline void set_flags_14(int32_t value) { ___flags_14 = value; } inline static int32_t get_offset_of_hi_15() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___hi_15)); } inline int32_t get_hi_15() const { return ___hi_15; } inline int32_t* get_address_of_hi_15() { return &___hi_15; } inline void set_hi_15(int32_t value) { ___hi_15 = value; } inline static int32_t get_offset_of_lo_16() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___lo_16)); } inline int32_t get_lo_16() const { return ___lo_16; } inline int32_t* get_address_of_lo_16() { return &___lo_16; } inline void set_lo_16(int32_t value) { ___lo_16 = value; } inline static int32_t get_offset_of_mid_17() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___mid_17)); } inline int32_t get_mid_17() const { return ___mid_17; } inline int32_t* get_address_of_mid_17() { return &___mid_17; } inline void set_mid_17(int32_t value) { ___mid_17 = value; } }; struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields { public: // System.UInt32[] System.Decimal::Powers10 UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___Powers10_6; // System.Decimal System.Decimal::Zero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___Zero_7; // System.Decimal System.Decimal::One Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___One_8; // System.Decimal System.Decimal::MinusOne Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinusOne_9; // System.Decimal System.Decimal::MaxValue Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MaxValue_10; // System.Decimal System.Decimal::MinValue Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinValue_11; // System.Decimal System.Decimal::NearNegativeZero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearNegativeZero_12; // System.Decimal System.Decimal::NearPositiveZero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearPositiveZero_13; public: inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Powers10_6)); } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_Powers10_6() const { return ___Powers10_6; } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_Powers10_6() { return &___Powers10_6; } inline void set_Powers10_6(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value) { ___Powers10_6 = value; Il2CppCodeGenWriteBarrier((&___Powers10_6), value); } inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Zero_7)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_Zero_7() const { return ___Zero_7; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_Zero_7() { return &___Zero_7; } inline void set_Zero_7(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___Zero_7 = value; } inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___One_8)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_One_8() const { return ___One_8; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_One_8() { return &___One_8; } inline void set_One_8(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___One_8 = value; } inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinusOne_9)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinusOne_9() const { return ___MinusOne_9; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinusOne_9() { return &___MinusOne_9; } inline void set_MinusOne_9(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MinusOne_9 = value; } inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MaxValue_10)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MaxValue_10() const { return ___MaxValue_10; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MaxValue_10() { return &___MaxValue_10; } inline void set_MaxValue_10(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MaxValue_10 = value; } inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinValue_11)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinValue_11() const { return ___MinValue_11; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinValue_11() { return &___MinValue_11; } inline void set_MinValue_11(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MinValue_11 = value; } inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearNegativeZero_12)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; } inline void set_NearNegativeZero_12(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___NearNegativeZero_12 = value; } inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearPositiveZero_13)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; } inline void set_NearPositiveZero_13(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___NearPositiveZero_13 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DECIMAL_T44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_H #ifndef EVENTDESCRIPTOR_T0DB21DFB13157AE81D79A01C853DF3729072B38E_H #define EVENTDESCRIPTOR_T0DB21DFB13157AE81D79A01C853DF3729072B38E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Diagnostics.Tracing.EventDescriptor struct EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E { public: union { struct { union { #pragma pack(push, tp, 1) struct { // System.Int32 System.Diagnostics.Tracing.EventDescriptor::m_traceloggingId int32_t ___m_traceloggingId_0; }; #pragma pack(pop, tp) struct { int32_t ___m_traceloggingId_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.UInt16 System.Diagnostics.Tracing.EventDescriptor::m_id uint16_t ___m_id_1; }; #pragma pack(pop, tp) struct { uint16_t ___m_id_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_version_2_OffsetPadding[2]; // System.Byte System.Diagnostics.Tracing.EventDescriptor::m_version uint8_t ___m_version_2; }; #pragma pack(pop, tp) struct { char ___m_version_2_OffsetPadding_forAlignmentOnly[2]; uint8_t ___m_version_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_channel_3_OffsetPadding[3]; // System.Byte System.Diagnostics.Tracing.EventDescriptor::m_channel uint8_t ___m_channel_3; }; #pragma pack(pop, tp) struct { char ___m_channel_3_OffsetPadding_forAlignmentOnly[3]; uint8_t ___m_channel_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_level_4_OffsetPadding[4]; // System.Byte System.Diagnostics.Tracing.EventDescriptor::m_level uint8_t ___m_level_4; }; #pragma pack(pop, tp) struct { char ___m_level_4_OffsetPadding_forAlignmentOnly[4]; uint8_t ___m_level_4_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_opcode_5_OffsetPadding[5]; // System.Byte System.Diagnostics.Tracing.EventDescriptor::m_opcode uint8_t ___m_opcode_5; }; #pragma pack(pop, tp) struct { char ___m_opcode_5_OffsetPadding_forAlignmentOnly[5]; uint8_t ___m_opcode_5_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_task_6_OffsetPadding[6]; // System.UInt16 System.Diagnostics.Tracing.EventDescriptor::m_task uint16_t ___m_task_6; }; #pragma pack(pop, tp) struct { char ___m_task_6_OffsetPadding_forAlignmentOnly[6]; uint16_t ___m_task_6_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_keywords_7_OffsetPadding[8]; // System.Int64 System.Diagnostics.Tracing.EventDescriptor::m_keywords int64_t ___m_keywords_7; }; #pragma pack(pop, tp) struct { char ___m_keywords_7_OffsetPadding_forAlignmentOnly[8]; int64_t ___m_keywords_7_forAlignmentOnly; }; }; }; uint8_t EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E__padding[16]; }; public: inline static int32_t get_offset_of_m_traceloggingId_0() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_traceloggingId_0)); } inline int32_t get_m_traceloggingId_0() const { return ___m_traceloggingId_0; } inline int32_t* get_address_of_m_traceloggingId_0() { return &___m_traceloggingId_0; } inline void set_m_traceloggingId_0(int32_t value) { ___m_traceloggingId_0 = value; } inline static int32_t get_offset_of_m_id_1() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_id_1)); } inline uint16_t get_m_id_1() const { return ___m_id_1; } inline uint16_t* get_address_of_m_id_1() { return &___m_id_1; } inline void set_m_id_1(uint16_t value) { ___m_id_1 = value; } inline static int32_t get_offset_of_m_version_2() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_version_2)); } inline uint8_t get_m_version_2() const { return ___m_version_2; } inline uint8_t* get_address_of_m_version_2() { return &___m_version_2; } inline void set_m_version_2(uint8_t value) { ___m_version_2 = value; } inline static int32_t get_offset_of_m_channel_3() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_channel_3)); } inline uint8_t get_m_channel_3() const { return ___m_channel_3; } inline uint8_t* get_address_of_m_channel_3() { return &___m_channel_3; } inline void set_m_channel_3(uint8_t value) { ___m_channel_3 = value; } inline static int32_t get_offset_of_m_level_4() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_level_4)); } inline uint8_t get_m_level_4() const { return ___m_level_4; } inline uint8_t* get_address_of_m_level_4() { return &___m_level_4; } inline void set_m_level_4(uint8_t value) { ___m_level_4 = value; } inline static int32_t get_offset_of_m_opcode_5() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_opcode_5)); } inline uint8_t get_m_opcode_5() const { return ___m_opcode_5; } inline uint8_t* get_address_of_m_opcode_5() { return &___m_opcode_5; } inline void set_m_opcode_5(uint8_t value) { ___m_opcode_5 = value; } inline static int32_t get_offset_of_m_task_6() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_task_6)); } inline uint16_t get_m_task_6() const { return ___m_task_6; } inline uint16_t* get_address_of_m_task_6() { return &___m_task_6; } inline void set_m_task_6(uint16_t value) { ___m_task_6 = value; } inline static int32_t get_offset_of_m_keywords_7() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_keywords_7)); } inline int64_t get_m_keywords_7() const { return ___m_keywords_7; } inline int64_t* get_address_of_m_keywords_7() { return &___m_keywords_7; } inline void set_m_keywords_7(int64_t value) { ___m_keywords_7 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EVENTDESCRIPTOR_T0DB21DFB13157AE81D79A01C853DF3729072B38E_H #ifndef SESSIONINFO_TEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_H #define SESSIONINFO_TEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Diagnostics.Tracing.EventProvider_SessionInfo struct SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A { public: // System.Int32 System.Diagnostics.Tracing.EventProvider_SessionInfo::sessionIdBit int32_t ___sessionIdBit_0; // System.Int32 System.Diagnostics.Tracing.EventProvider_SessionInfo::etwSessionId int32_t ___etwSessionId_1; public: inline static int32_t get_offset_of_sessionIdBit_0() { return static_cast<int32_t>(offsetof(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A, ___sessionIdBit_0)); } inline int32_t get_sessionIdBit_0() const { return ___sessionIdBit_0; } inline int32_t* get_address_of_sessionIdBit_0() { return &___sessionIdBit_0; } inline void set_sessionIdBit_0(int32_t value) { ___sessionIdBit_0 = value; } inline static int32_t get_offset_of_etwSessionId_1() { return static_cast<int32_t>(offsetof(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A, ___etwSessionId_1)); } inline int32_t get_etwSessionId_1() const { return ___etwSessionId_1; } inline int32_t* get_address_of_etwSessionId_1() { return &___etwSessionId_1; } inline void set_etwSessionId_1(int32_t value) { ___etwSessionId_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SESSIONINFO_TEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_H #ifndef DOUBLE_T358B8F23BDC52A5DD700E727E204F9F7CDE12409_H #define DOUBLE_T358B8F23BDC52A5DD700E727E204F9F7CDE12409_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Double struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 { public: // System.Double System.Double::m_value double ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, ___m_value_0)); } inline double get_m_value_0() const { return ___m_value_0; } inline double* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(double value) { ___m_value_0 = value; } }; struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields { public: // System.Double System.Double::NegativeZero double ___NegativeZero_7; public: inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields, ___NegativeZero_7)); } inline double get_NegativeZero_7() const { return ___NegativeZero_7; } inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; } inline void set_NegativeZero_7(double value) { ___NegativeZero_7 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DOUBLE_T358B8F23BDC52A5DD700E727E204F9F7CDE12409_H #ifndef ENUM_T2AF27C02B8653AE29442467390005ABC74D8F521_H #define ENUM_T2AF27C02B8653AE29442467390005ABC74D8F521_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF { public: public: }; struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((&___enumSeperatorCharArray_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com { }; #endif // ENUM_T2AF27C02B8653AE29442467390005ABC74D8F521_H #ifndef INTERNALCODEPAGEDATAITEM_T34EE39DE4A481B875348BB9BC6751E2A109AD0D4_H #define INTERNALCODEPAGEDATAITEM_T34EE39DE4A481B875348BB9BC6751E2A109AD0D4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.InternalCodePageDataItem struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 { public: // System.UInt16 System.Globalization.InternalCodePageDataItem::codePage uint16_t ___codePage_0; // System.UInt16 System.Globalization.InternalCodePageDataItem::uiFamilyCodePage uint16_t ___uiFamilyCodePage_1; // System.UInt32 System.Globalization.InternalCodePageDataItem::flags uint32_t ___flags_2; // System.String System.Globalization.InternalCodePageDataItem::Names String_t* ___Names_3; public: inline static int32_t get_offset_of_codePage_0() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___codePage_0)); } inline uint16_t get_codePage_0() const { return ___codePage_0; } inline uint16_t* get_address_of_codePage_0() { return &___codePage_0; } inline void set_codePage_0(uint16_t value) { ___codePage_0 = value; } inline static int32_t get_offset_of_uiFamilyCodePage_1() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___uiFamilyCodePage_1)); } inline uint16_t get_uiFamilyCodePage_1() const { return ___uiFamilyCodePage_1; } inline uint16_t* get_address_of_uiFamilyCodePage_1() { return &___uiFamilyCodePage_1; } inline void set_uiFamilyCodePage_1(uint16_t value) { ___uiFamilyCodePage_1 = value; } inline static int32_t get_offset_of_flags_2() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___flags_2)); } inline uint32_t get_flags_2() const { return ___flags_2; } inline uint32_t* get_address_of_flags_2() { return &___flags_2; } inline void set_flags_2(uint32_t value) { ___flags_2 = value; } inline static int32_t get_offset_of_Names_3() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___Names_3)); } inline String_t* get_Names_3() const { return ___Names_3; } inline String_t** get_address_of_Names_3() { return &___Names_3; } inline void set_Names_3(String_t* value) { ___Names_3 = value; Il2CppCodeGenWriteBarrier((&___Names_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Globalization.InternalCodePageDataItem struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_marshaled_pinvoke { uint16_t ___codePage_0; uint16_t ___uiFamilyCodePage_1; uint32_t ___flags_2; char* ___Names_3; }; // Native definition for COM marshalling of System.Globalization.InternalCodePageDataItem struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_marshaled_com { uint16_t ___codePage_0; uint16_t ___uiFamilyCodePage_1; uint32_t ___flags_2; Il2CppChar* ___Names_3; }; #endif // INTERNALCODEPAGEDATAITEM_T34EE39DE4A481B875348BB9BC6751E2A109AD0D4_H #ifndef INTERNALENCODINGDATAITEM_T34BEF550D56496035752E8E0607127CD43378211_H #define INTERNALENCODINGDATAITEM_T34BEF550D56496035752E8E0607127CD43378211_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.InternalEncodingDataItem struct InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 { public: // System.String System.Globalization.InternalEncodingDataItem::webName String_t* ___webName_0; // System.UInt16 System.Globalization.InternalEncodingDataItem::codePage uint16_t ___codePage_1; public: inline static int32_t get_offset_of_webName_0() { return static_cast<int32_t>(offsetof(InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211, ___webName_0)); } inline String_t* get_webName_0() const { return ___webName_0; } inline String_t** get_address_of_webName_0() { return &___webName_0; } inline void set_webName_0(String_t* value) { ___webName_0 = value; Il2CppCodeGenWriteBarrier((&___webName_0), value); } inline static int32_t get_offset_of_codePage_1() { return static_cast<int32_t>(offsetof(InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211, ___codePage_1)); } inline uint16_t get_codePage_1() const { return ___codePage_1; } inline uint16_t* get_address_of_codePage_1() { return &___codePage_1; } inline void set_codePage_1(uint16_t value) { ___codePage_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Globalization.InternalEncodingDataItem struct InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_marshaled_pinvoke { char* ___webName_0; uint16_t ___codePage_1; }; // Native definition for COM marshalling of System.Globalization.InternalEncodingDataItem struct InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_marshaled_com { Il2CppChar* ___webName_0; uint16_t ___codePage_1; }; #endif // INTERNALENCODINGDATAITEM_T34BEF550D56496035752E8E0607127CD43378211_H #ifndef GUID_T_H #define GUID_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Guid struct Guid_t { public: // System.Int32 System.Guid::_a int32_t ____a_1; // System.Int16 System.Guid::_b int16_t ____b_2; // System.Int16 System.Guid::_c int16_t ____c_3; // System.Byte System.Guid::_d uint8_t ____d_4; // System.Byte System.Guid::_e uint8_t ____e_5; // System.Byte System.Guid::_f uint8_t ____f_6; // System.Byte System.Guid::_g uint8_t ____g_7; // System.Byte System.Guid::_h uint8_t ____h_8; // System.Byte System.Guid::_i uint8_t ____i_9; // System.Byte System.Guid::_j uint8_t ____j_10; // System.Byte System.Guid::_k uint8_t ____k_11; public: inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); } inline int32_t get__a_1() const { return ____a_1; } inline int32_t* get_address_of__a_1() { return &____a_1; } inline void set__a_1(int32_t value) { ____a_1 = value; } inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); } inline int16_t get__b_2() const { return ____b_2; } inline int16_t* get_address_of__b_2() { return &____b_2; } inline void set__b_2(int16_t value) { ____b_2 = value; } inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); } inline int16_t get__c_3() const { return ____c_3; } inline int16_t* get_address_of__c_3() { return &____c_3; } inline void set__c_3(int16_t value) { ____c_3 = value; } inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); } inline uint8_t get__d_4() const { return ____d_4; } inline uint8_t* get_address_of__d_4() { return &____d_4; } inline void set__d_4(uint8_t value) { ____d_4 = value; } inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); } inline uint8_t get__e_5() const { return ____e_5; } inline uint8_t* get_address_of__e_5() { return &____e_5; } inline void set__e_5(uint8_t value) { ____e_5 = value; } inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); } inline uint8_t get__f_6() const { return ____f_6; } inline uint8_t* get_address_of__f_6() { return &____f_6; } inline void set__f_6(uint8_t value) { ____f_6 = value; } inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); } inline uint8_t get__g_7() const { return ____g_7; } inline uint8_t* get_address_of__g_7() { return &____g_7; } inline void set__g_7(uint8_t value) { ____g_7 = value; } inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); } inline uint8_t get__h_8() const { return ____h_8; } inline uint8_t* get_address_of__h_8() { return &____h_8; } inline void set__h_8(uint8_t value) { ____h_8 = value; } inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); } inline uint8_t get__i_9() const { return ____i_9; } inline uint8_t* get_address_of__i_9() { return &____i_9; } inline void set__i_9(uint8_t value) { ____i_9 = value; } inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); } inline uint8_t get__j_10() const { return ____j_10; } inline uint8_t* get_address_of__j_10() { return &____j_10; } inline void set__j_10(uint8_t value) { ____j_10 = value; } inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); } inline uint8_t get__k_11() const { return ____k_11; } inline uint8_t* get_address_of__k_11() { return &____k_11; } inline void set__k_11(uint8_t value) { ____k_11 = value; } }; struct Guid_t_StaticFields { public: // System.Guid System.Guid::Empty Guid_t ___Empty_0; // System.Object System.Guid::_rngAccess RuntimeObject * ____rngAccess_12; // System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____rng_13; public: inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); } inline Guid_t get_Empty_0() const { return ___Empty_0; } inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; } inline void set_Empty_0(Guid_t value) { ___Empty_0 = value; } inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); } inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; } inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; } inline void set__rngAccess_12(RuntimeObject * value) { ____rngAccess_12 = value; Il2CppCodeGenWriteBarrier((&____rngAccess_12), value); } inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); } inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__rng_13() const { return ____rng_13; } inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__rng_13() { return &____rng_13; } inline void set__rng_13(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value) { ____rng_13 = value; Il2CppCodeGenWriteBarrier((&____rng_13), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // GUID_T_H #ifndef READWRITEPARAMETERS_T5A9E416E0129249869039FC606326558DA3B597F_H #define READWRITEPARAMETERS_T5A9E416E0129249869039FC606326558DA3B597F_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IO.Stream_ReadWriteParameters struct ReadWriteParameters_t5A9E416E0129249869039FC606326558DA3B597F { public: // System.Byte[] System.IO.Stream_ReadWriteParameters::Buffer ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___Buffer_0; // System.Int32 System.IO.Stream_ReadWriteParameters::Offset int32_t ___Offset_1; // System.Int32 System.IO.Stream_ReadWriteParameters::Count int32_t ___Count_2; public: inline static int32_t get_offset_of_Buffer_0() { return static_cast<int32_t>(offsetof(ReadWriteParameters_t5A9E416E0129249869039FC606326558DA3B597F, ___Buffer_0)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_Buffer_0() const { return ___Buffer_0; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_Buffer_0() { return &___Buffer_0; } inline void set_Buffer_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___Buffer_0 = value; Il2CppCodeGenWriteBarrier((&___Buffer_0), value); } inline static int32_t get_offset_of_Offset_1() { return static_cast<int32_t>(offsetof(ReadWriteParameters_t5A9E416E0129249869039FC606326558DA3B597F, ___Offset_1)); } inline int32_t get_Offset_1() const { return ___Offset_1; } inline int32_t* get_address_of_Offset_1() { return &___Offset_1; } inline void set_Offset_1(int32_t value) { ___Offset_1 = value; } inline static int32_t get_offset_of_Count_2() { return static_cast<int32_t>(offsetof(ReadWriteParameters_t5A9E416E0129249869039FC606326558DA3B597F, ___Count_2)); } inline int32_t get_Count_2() const { return ___Count_2; } inline int32_t* get_address_of_Count_2() { return &___Count_2; } inline void set_Count_2(int32_t value) { ___Count_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // READWRITEPARAMETERS_T5A9E416E0129249869039FC606326558DA3B597F_H #ifndef INT16_T823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_H #define INT16_T823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int16 struct Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D { public: // System.Int16 System.Int16::m_value int16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, ___m_value_0)); } inline int16_t get_m_value_0() const { return ___m_value_0; } inline int16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int16_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT16_T823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_H #ifndef INT32_T585191389E07734F19F3156FF88FB3EF4800D102_H #define INT32_T585191389E07734F19F3156FF88FB3EF4800D102_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT32_T585191389E07734F19F3156FF88FB3EF4800D102_H #ifndef INT64_T7A386C2FF7B0280A0F516992401DDFCF0FF7B436_H #define INT64_T7A386C2FF7B0280A0F516992401DDFCF0FF7B436_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int64 struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT64_T7A386C2FF7B0280A0F516992401DDFCF0FF7B436_H #ifndef INTPTR_T_H #define INTPTR_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTPTR_T_H #ifndef NULLABLE_1_T0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB_H #define NULLABLE_1_T0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Nullable`1<System.Int32> struct Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB { public: // T System.Nullable`1::value int32_t ___value_0; // System.Boolean System.Nullable`1::has_value bool ___has_value_1; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB, ___value_0)); } inline int32_t get_value_0() const { return ___value_0; } inline int32_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(int32_t value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NULLABLE_1_T0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB_H #ifndef FORMATPARAM_T1901DD0E7CD1B3A17B09040A6E2FCA5307328800_H #define FORMATPARAM_T1901DD0E7CD1B3A17B09040A6E2FCA5307328800_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ParameterizedStrings_FormatParam struct FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 { public: // System.Int32 System.ParameterizedStrings_FormatParam::_int32 int32_t ____int32_0; // System.String System.ParameterizedStrings_FormatParam::_string String_t* ____string_1; public: inline static int32_t get_offset_of__int32_0() { return static_cast<int32_t>(offsetof(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800, ____int32_0)); } inline int32_t get__int32_0() const { return ____int32_0; } inline int32_t* get_address_of__int32_0() { return &____int32_0; } inline void set__int32_0(int32_t value) { ____int32_0 = value; } inline static int32_t get_offset_of__string_1() { return static_cast<int32_t>(offsetof(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800, ____string_1)); } inline String_t* get__string_1() const { return ____string_1; } inline String_t** get_address_of__string_1() { return &____string_1; } inline void set__string_1(String_t* value) { ____string_1 = value; Il2CppCodeGenWriteBarrier((&____string_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.ParameterizedStrings/FormatParam struct FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_marshaled_pinvoke { int32_t ____int32_0; char* ____string_1; }; // Native definition for COM marshalling of System.ParameterizedStrings/FormatParam struct FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_marshaled_com { int32_t ____int32_0; Il2CppChar* ____string_1; }; #endif // FORMATPARAM_T1901DD0E7CD1B3A17B09040A6E2FCA5307328800_H #ifndef CUSTOMATTRIBUTETYPEDARGUMENT_T238ACCB3A438CB5EDE4A924C637B288CCEC958E8_H #define CUSTOMATTRIBUTETYPEDARGUMENT_T238ACCB3A438CB5EDE4A924C637B288CCEC958E8_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.CustomAttributeTypedArgument struct CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 { public: // System.Type System.Reflection.CustomAttributeTypedArgument::argumentType Type_t * ___argumentType_0; // System.Object System.Reflection.CustomAttributeTypedArgument::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_argumentType_0() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8, ___argumentType_0)); } inline Type_t * get_argumentType_0() const { return ___argumentType_0; } inline Type_t ** get_address_of_argumentType_0() { return &___argumentType_0; } inline void set_argumentType_0(Type_t * value) { ___argumentType_0 = value; Il2CppCodeGenWriteBarrier((&___argumentType_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeTypedArgument struct CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_pinvoke { Type_t * ___argumentType_0; Il2CppIUnknown* ___value_1; }; // Native definition for COM marshalling of System.Reflection.CustomAttributeTypedArgument struct CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_com { Type_t * ___argumentType_0; Il2CppIUnknown* ___value_1; }; #endif // CUSTOMATTRIBUTETYPEDARGUMENT_T238ACCB3A438CB5EDE4A924C637B288CCEC958E8_H #ifndef PARAMETERMODIFIER_T7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_H #define PARAMETERMODIFIER_T7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.ParameterModifier struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E { public: // System.Boolean[] System.Reflection.ParameterModifier::_byRef BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ____byRef_0; public: inline static int32_t get_offset_of__byRef_0() { return static_cast<int32_t>(offsetof(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E, ____byRef_0)); } inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* get__byRef_0() const { return ____byRef_0; } inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040** get_address_of__byRef_0() { return &____byRef_0; } inline void set__byRef_0(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* value) { ____byRef_0 = value; Il2CppCodeGenWriteBarrier((&____byRef_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_pinvoke { int32_t* ____byRef_0; }; // Native definition for COM marshalling of System.Reflection.ParameterModifier struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_com { int32_t* ____byRef_0; }; #endif // PARAMETERMODIFIER_T7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_H #ifndef PROPERTYINFO_T_H #define PROPERTYINFO_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.PropertyInfo struct PropertyInfo_t : public MemberInfo_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PROPERTYINFO_T_H #ifndef RESOURCELOCATOR_T1783916E271C27CB09DF57E7E5ED08ECA4B3275C_H #define RESOURCELOCATOR_T1783916E271C27CB09DF57E7E5ED08ECA4B3275C_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Resources.ResourceLocator struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C { public: // System.Object System.Resources.ResourceLocator::_value RuntimeObject * ____value_0; // System.Int32 System.Resources.ResourceLocator::_dataPos int32_t ____dataPos_1; public: inline static int32_t get_offset_of__value_0() { return static_cast<int32_t>(offsetof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, ____value_0)); } inline RuntimeObject * get__value_0() const { return ____value_0; } inline RuntimeObject ** get_address_of__value_0() { return &____value_0; } inline void set__value_0(RuntimeObject * value) { ____value_0 = value; Il2CppCodeGenWriteBarrier((&____value_0), value); } inline static int32_t get_offset_of__dataPos_1() { return static_cast<int32_t>(offsetof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, ____dataPos_1)); } inline int32_t get__dataPos_1() const { return ____dataPos_1; } inline int32_t* get_address_of__dataPos_1() { return &____dataPos_1; } inline void set__dataPos_1(int32_t value) { ____dataPos_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Resources.ResourceLocator struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_marshaled_pinvoke { Il2CppIUnknown* ____value_0; int32_t ____dataPos_1; }; // Native definition for COM marshalling of System.Resources.ResourceLocator struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_marshaled_com { Il2CppIUnknown* ____value_0; int32_t ____dataPos_1; }; #endif // RESOURCELOCATOR_T1783916E271C27CB09DF57E7E5ED08ECA4B3275C_H #ifndef EPHEMERON_T6F0B12401657FF132AB44052E5BCD06D358FF1BA_H #define EPHEMERON_T6F0B12401657FF132AB44052E5BCD06D358FF1BA_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.CompilerServices.Ephemeron struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA { public: // System.Object System.Runtime.CompilerServices.Ephemeron::key RuntimeObject * ___key_0; // System.Object System.Runtime.CompilerServices.Ephemeron::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.Ephemeron struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_marshaled_pinvoke { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___value_1; }; // Native definition for COM marshalling of System.Runtime.CompilerServices.Ephemeron struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_marshaled_com { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___value_1; }; #endif // EPHEMERON_T6F0B12401657FF132AB44052E5BCD06D358FF1BA_H #ifndef GCHANDLE_T39FAEE3EA592432C93B574A31DD83B87F1847DE3_H #define GCHANDLE_T39FAEE3EA592432C93B574A31DD83B87F1847DE3_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.InteropServices.GCHandle struct GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 { public: // System.Int32 System.Runtime.InteropServices.GCHandle::handle int32_t ___handle_0; public: inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3, ___handle_0)); } inline int32_t get_handle_0() const { return ___handle_0; } inline int32_t* get_address_of_handle_0() { return &___handle_0; } inline void set_handle_0(int32_t value) { ___handle_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // GCHANDLE_T39FAEE3EA592432C93B574A31DD83B87F1847DE3_H #ifndef SBYTE_T9070AEA2966184235653CB9B4D33B149CDA831DF_H #define SBYTE_T9070AEA2966184235653CB9B4D33B149CDA831DF_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.SByte struct SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF { public: // System.SByte System.SByte::m_value int8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, ___m_value_0)); } inline int8_t get_m_value_0() const { return ___m_value_0; } inline int8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int8_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SBYTE_T9070AEA2966184235653CB9B4D33B149CDA831DF_H #ifndef SINGLE_TDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_H #define SINGLE_TDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Single struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 { public: // System.Single System.Single::m_value float ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___m_value_0)); } inline float get_m_value_0() const { return ___m_value_0; } inline float* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(float value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SINGLE_TDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_H #ifndef SYSTEMEXCEPTION_T5380468142AA850BE4A341D7AF3EAB9C78746782_H #define SYSTEMEXCEPTION_T5380468142AA850BE4A341D7AF3EAB9C78746782_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.SystemException struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SYSTEMEXCEPTION_T5380468142AA850BE4A341D7AF3EAB9C78746782_H #ifndef LOWERCASEMAPPING_T3F087D71A4D7A309FD5492CE33501FD4F4709D7B_H #define LOWERCASEMAPPING_T3F087D71A4D7A309FD5492CE33501FD4F4709D7B_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping struct LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B { public: // System.Char System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_chMin Il2CppChar ____chMin_0; // System.Char System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_chMax Il2CppChar ____chMax_1; // System.Int32 System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_lcOp int32_t ____lcOp_2; // System.Int32 System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_data int32_t ____data_3; public: inline static int32_t get_offset_of__chMin_0() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____chMin_0)); } inline Il2CppChar get__chMin_0() const { return ____chMin_0; } inline Il2CppChar* get_address_of__chMin_0() { return &____chMin_0; } inline void set__chMin_0(Il2CppChar value) { ____chMin_0 = value; } inline static int32_t get_offset_of__chMax_1() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____chMax_1)); } inline Il2CppChar get__chMax_1() const { return ____chMax_1; } inline Il2CppChar* get_address_of__chMax_1() { return &____chMax_1; } inline void set__chMax_1(Il2CppChar value) { ____chMax_1 = value; } inline static int32_t get_offset_of__lcOp_2() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____lcOp_2)); } inline int32_t get__lcOp_2() const { return ____lcOp_2; } inline int32_t* get_address_of__lcOp_2() { return &____lcOp_2; } inline void set__lcOp_2(int32_t value) { ____lcOp_2 = value; } inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____data_3)); } inline int32_t get__data_3() const { return ____data_3; } inline int32_t* get_address_of__data_3() { return &____data_3; } inline void set__data_3(int32_t value) { ____data_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping struct LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_marshaled_pinvoke { uint8_t ____chMin_0; uint8_t ____chMax_1; int32_t ____lcOp_2; int32_t ____data_3; }; // Native definition for COM marshalling of System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping struct LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_marshaled_com { uint8_t ____chMin_0; uint8_t ____chMax_1; int32_t ____lcOp_2; int32_t ____data_3; }; #endif // LOWERCASEMAPPING_T3F087D71A4D7A309FD5492CE33501FD4F4709D7B_H #ifndef CANCELLATIONTOKEN_T9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_H #define CANCELLATIONTOKEN_T9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.CancellationToken struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB { public: // System.Threading.CancellationTokenSource System.Threading.CancellationToken::m_source CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ___m_source_0; public: inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, ___m_source_0)); } inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * get_m_source_0() const { return ___m_source_0; } inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE ** get_address_of_m_source_0() { return &___m_source_0; } inline void set_m_source_0(CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * value) { ___m_source_0 = value; Il2CppCodeGenWriteBarrier((&___m_source_0), value); } }; struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_StaticFields { public: // System.Action`1<System.Object> System.Threading.CancellationToken::s_ActionToActionObjShunt Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ___s_ActionToActionObjShunt_1; public: inline static int32_t get_offset_of_s_ActionToActionObjShunt_1() { return static_cast<int32_t>(offsetof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_StaticFields, ___s_ActionToActionObjShunt_1)); } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get_s_ActionToActionObjShunt_1() const { return ___s_ActionToActionObjShunt_1; } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of_s_ActionToActionObjShunt_1() { return &___s_ActionToActionObjShunt_1; } inline void set_s_ActionToActionObjShunt_1(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value) { ___s_ActionToActionObjShunt_1 = value; Il2CppCodeGenWriteBarrier((&___s_ActionToActionObjShunt_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Threading.CancellationToken struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_marshaled_pinvoke { CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ___m_source_0; }; // Native definition for COM marshalling of System.Threading.CancellationToken struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_marshaled_com { CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ___m_source_0; }; #endif // CANCELLATIONTOKEN_T9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_H #ifndef SPARSELYPOPULATEDARRAYADDINFO_1_T0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE_H #define SPARSELYPOPULATEDARRAYADDINFO_1_T0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo> struct SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE { public: // System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1::m_source SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * ___m_source_0; // System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1::m_index int32_t ___m_index_1; public: inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE, ___m_source_0)); } inline SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * get_m_source_0() const { return ___m_source_0; } inline SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 ** get_address_of_m_source_0() { return &___m_source_0; } inline void set_m_source_0(SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * value) { ___m_source_0 = value; Il2CppCodeGenWriteBarrier((&___m_source_0), value); } inline static int32_t get_offset_of_m_index_1() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE, ___m_index_1)); } inline int32_t get_m_index_1() const { return ___m_index_1; } inline int32_t* get_address_of_m_index_1() { return &___m_index_1; } inline void set_m_index_1(int32_t value) { ___m_index_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SPARSELYPOPULATEDARRAYADDINFO_1_T0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE_H #ifndef VOIDTASKRESULT_T66EBC10DDE738848DB00F6EC1A2536D7D4715F40_H #define VOIDTASKRESULT_T66EBC10DDE738848DB00F6EC1A2536D7D4715F40_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.Tasks.VoidTaskResult struct VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 { public: union { struct { }; uint8_t VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40__padding[1]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VOIDTASKRESULT_T66EBC10DDE738848DB00F6EC1A2536D7D4715F40_H #ifndef UINT16_TAE45CEF73BF720100519F6867F32145D075F928E_H #define UINT16_TAE45CEF73BF720100519F6867F32145D075F928E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UInt16 struct UInt16_tAE45CEF73BF720100519F6867F32145D075F928E { public: // System.UInt16 System.UInt16::m_value uint16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E, ___m_value_0)); } inline uint16_t get_m_value_0() const { return ___m_value_0; } inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint16_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINT16_TAE45CEF73BF720100519F6867F32145D075F928E_H #ifndef UINT32_T4980FA09003AFAAB5A6E361BA2748EA9A005709B_H #define UINT32_T4980FA09003AFAAB5A6E361BA2748EA9A005709B_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UInt32 struct UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINT32_T4980FA09003AFAAB5A6E361BA2748EA9A005709B_H #ifndef UINT64_TA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_H #define UINT64_TA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UInt64 struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E { public: // System.UInt64 System.UInt64::m_value uint64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E, ___m_value_0)); } inline uint64_t get_m_value_0() const { return ___m_value_0; } inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint64_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINT64_TA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_H #ifndef UINTPTR_T_H #define UINTPTR_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UIntPtr struct UIntPtr_t { public: // System.Void* System.UIntPtr::_pointer void* ____pointer_1; public: inline static int32_t get_offset_of__pointer_1() { return static_cast<int32_t>(offsetof(UIntPtr_t, ____pointer_1)); } inline void* get__pointer_1() const { return ____pointer_1; } inline void** get_address_of__pointer_1() { return &____pointer_1; } inline void set__pointer_1(void* value) { ____pointer_1 = value; } }; struct UIntPtr_t_StaticFields { public: // System.UIntPtr System.UIntPtr::Zero uintptr_t ___Zero_0; public: inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(UIntPtr_t_StaticFields, ___Zero_0)); } inline uintptr_t get_Zero_0() const { return ___Zero_0; } inline uintptr_t* get_address_of_Zero_0() { return &___Zero_0; } inline void set_Zero_0(uintptr_t value) { ___Zero_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINTPTR_T_H #ifndef VOID_T22962CB4C05B1D89B55A6E1139F0E87A90987017_H #define VOID_T22962CB4C05B1D89B55A6E1139F0E87A90987017_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017 { public: union { struct { }; uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VOID_T22962CB4C05B1D89B55A6E1139F0E87A90987017_H #ifndef SEQUENCECONSTRUCTPOSCONTEXT_T72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_H #define SEQUENCECONSTRUCTPOSCONTEXT_T72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.SequenceNode_SequenceConstructPosContext struct SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 { public: // System.Xml.Schema.SequenceNode System.Xml.Schema.SequenceNode_SequenceConstructPosContext::this_ SequenceNode_tAB18F790CB1B5BCD1D984EECC17C841B00881608 * ___this__0; // System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode_SequenceConstructPosContext::firstpos BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___firstpos_1; // System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode_SequenceConstructPosContext::lastpos BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___lastpos_2; // System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode_SequenceConstructPosContext::lastposLeft BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___lastposLeft_3; // System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode_SequenceConstructPosContext::firstposRight BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___firstposRight_4; public: inline static int32_t get_offset_of_this__0() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1, ___this__0)); } inline SequenceNode_tAB18F790CB1B5BCD1D984EECC17C841B00881608 * get_this__0() const { return ___this__0; } inline SequenceNode_tAB18F790CB1B5BCD1D984EECC17C841B00881608 ** get_address_of_this__0() { return &___this__0; } inline void set_this__0(SequenceNode_tAB18F790CB1B5BCD1D984EECC17C841B00881608 * value) { ___this__0 = value; Il2CppCodeGenWriteBarrier((&___this__0), value); } inline static int32_t get_offset_of_firstpos_1() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1, ___firstpos_1)); } inline BitSet_t0E4C53EC600670A4B74C5671553596978880138C * get_firstpos_1() const { return ___firstpos_1; } inline BitSet_t0E4C53EC600670A4B74C5671553596978880138C ** get_address_of_firstpos_1() { return &___firstpos_1; } inline void set_firstpos_1(BitSet_t0E4C53EC600670A4B74C5671553596978880138C * value) { ___firstpos_1 = value; Il2CppCodeGenWriteBarrier((&___firstpos_1), value); } inline static int32_t get_offset_of_lastpos_2() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1, ___lastpos_2)); } inline BitSet_t0E4C53EC600670A4B74C5671553596978880138C * get_lastpos_2() const { return ___lastpos_2; } inline BitSet_t0E4C53EC600670A4B74C5671553596978880138C ** get_address_of_lastpos_2() { return &___lastpos_2; } inline void set_lastpos_2(BitSet_t0E4C53EC600670A4B74C5671553596978880138C * value) { ___lastpos_2 = value; Il2CppCodeGenWriteBarrier((&___lastpos_2), value); } inline static int32_t get_offset_of_lastposLeft_3() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1, ___lastposLeft_3)); } inline BitSet_t0E4C53EC600670A4B74C5671553596978880138C * get_lastposLeft_3() const { return ___lastposLeft_3; } inline BitSet_t0E4C53EC600670A4B74C5671553596978880138C ** get_address_of_lastposLeft_3() { return &___lastposLeft_3; } inline void set_lastposLeft_3(BitSet_t0E4C53EC600670A4B74C5671553596978880138C * value) { ___lastposLeft_3 = value; Il2CppCodeGenWriteBarrier((&___lastposLeft_3), value); } inline static int32_t get_offset_of_firstposRight_4() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1, ___firstposRight_4)); } inline BitSet_t0E4C53EC600670A4B74C5671553596978880138C * get_firstposRight_4() const { return ___firstposRight_4; } inline BitSet_t0E4C53EC600670A4B74C5671553596978880138C ** get_address_of_firstposRight_4() { return &___firstposRight_4; } inline void set_firstposRight_4(BitSet_t0E4C53EC600670A4B74C5671553596978880138C * value) { ___firstposRight_4 = value; Il2CppCodeGenWriteBarrier((&___firstposRight_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Xml.Schema.SequenceNode/SequenceConstructPosContext struct SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_marshaled_pinvoke { SequenceNode_tAB18F790CB1B5BCD1D984EECC17C841B00881608 * ___this__0; BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___firstpos_1; BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___lastpos_2; BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___lastposLeft_3; BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___firstposRight_4; }; // Native definition for COM marshalling of System.Xml.Schema.SequenceNode/SequenceConstructPosContext struct SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_marshaled_com { SequenceNode_tAB18F790CB1B5BCD1D984EECC17C841B00881608 * ___this__0; BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___firstpos_1; BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___lastpos_2; BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___lastposLeft_3; BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___firstposRight_4; }; #endif // SEQUENCECONSTRUCTPOSCONTEXT_T72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_H #ifndef NAMESPACEDECLARATION_TFD9A771E0585F887CE869FA7D0FAD365A40D436A_H #define NAMESPACEDECLARATION_TFD9A771E0585F887CE869FA7D0FAD365A40D436A_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlNamespaceManager_NamespaceDeclaration struct NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A { public: // System.String System.Xml.XmlNamespaceManager_NamespaceDeclaration::prefix String_t* ___prefix_0; // System.String System.Xml.XmlNamespaceManager_NamespaceDeclaration::uri String_t* ___uri_1; // System.Int32 System.Xml.XmlNamespaceManager_NamespaceDeclaration::scopeId int32_t ___scopeId_2; // System.Int32 System.Xml.XmlNamespaceManager_NamespaceDeclaration::previousNsIndex int32_t ___previousNsIndex_3; public: inline static int32_t get_offset_of_prefix_0() { return static_cast<int32_t>(offsetof(NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A, ___prefix_0)); } inline String_t* get_prefix_0() const { return ___prefix_0; } inline String_t** get_address_of_prefix_0() { return &___prefix_0; } inline void set_prefix_0(String_t* value) { ___prefix_0 = value; Il2CppCodeGenWriteBarrier((&___prefix_0), value); } inline static int32_t get_offset_of_uri_1() { return static_cast<int32_t>(offsetof(NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A, ___uri_1)); } inline String_t* get_uri_1() const { return ___uri_1; } inline String_t** get_address_of_uri_1() { return &___uri_1; } inline void set_uri_1(String_t* value) { ___uri_1 = value; Il2CppCodeGenWriteBarrier((&___uri_1), value); } inline static int32_t get_offset_of_scopeId_2() { return static_cast<int32_t>(offsetof(NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A, ___scopeId_2)); } inline int32_t get_scopeId_2() const { return ___scopeId_2; } inline int32_t* get_address_of_scopeId_2() { return &___scopeId_2; } inline void set_scopeId_2(int32_t value) { ___scopeId_2 = value; } inline static int32_t get_offset_of_previousNsIndex_3() { return static_cast<int32_t>(offsetof(NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A, ___previousNsIndex_3)); } inline int32_t get_previousNsIndex_3() const { return ___previousNsIndex_3; } inline int32_t* get_address_of_previousNsIndex_3() { return &___previousNsIndex_3; } inline void set_previousNsIndex_3(int32_t value) { ___previousNsIndex_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Xml.XmlNamespaceManager/NamespaceDeclaration struct NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_marshaled_pinvoke { char* ___prefix_0; char* ___uri_1; int32_t ___scopeId_2; int32_t ___previousNsIndex_3; }; // Native definition for COM marshalling of System.Xml.XmlNamespaceManager/NamespaceDeclaration struct NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_marshaled_com { Il2CppChar* ___prefix_0; Il2CppChar* ___uri_1; int32_t ___scopeId_2; int32_t ___previousNsIndex_3; }; #endif // NAMESPACEDECLARATION_TFD9A771E0585F887CE869FA7D0FAD365A40D436A_H #ifndef PARSINGSTATE_TE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_H #define PARSINGSTATE_TE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlTextReaderImpl_ParsingState struct ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 { public: // System.Char[] System.Xml.XmlTextReaderImpl_ParsingState::chars CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___chars_0; // System.Int32 System.Xml.XmlTextReaderImpl_ParsingState::charPos int32_t ___charPos_1; // System.Int32 System.Xml.XmlTextReaderImpl_ParsingState::charsUsed int32_t ___charsUsed_2; // System.Text.Encoding System.Xml.XmlTextReaderImpl_ParsingState::encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding_3; // System.Boolean System.Xml.XmlTextReaderImpl_ParsingState::appendMode bool ___appendMode_4; // System.IO.Stream System.Xml.XmlTextReaderImpl_ParsingState::stream Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream_5; // System.Text.Decoder System.Xml.XmlTextReaderImpl_ParsingState::decoder Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * ___decoder_6; // System.Byte[] System.Xml.XmlTextReaderImpl_ParsingState::bytes ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes_7; // System.Int32 System.Xml.XmlTextReaderImpl_ParsingState::bytePos int32_t ___bytePos_8; // System.Int32 System.Xml.XmlTextReaderImpl_ParsingState::bytesUsed int32_t ___bytesUsed_9; // System.IO.TextReader System.Xml.XmlTextReaderImpl_ParsingState::textReader TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___textReader_10; // System.Int32 System.Xml.XmlTextReaderImpl_ParsingState::lineNo int32_t ___lineNo_11; // System.Int32 System.Xml.XmlTextReaderImpl_ParsingState::lineStartPos int32_t ___lineStartPos_12; // System.String System.Xml.XmlTextReaderImpl_ParsingState::baseUriStr String_t* ___baseUriStr_13; // System.Uri System.Xml.XmlTextReaderImpl_ParsingState::baseUri Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___baseUri_14; // System.Boolean System.Xml.XmlTextReaderImpl_ParsingState::isEof bool ___isEof_15; // System.Boolean System.Xml.XmlTextReaderImpl_ParsingState::isStreamEof bool ___isStreamEof_16; // System.Xml.IDtdEntityInfo System.Xml.XmlTextReaderImpl_ParsingState::entity RuntimeObject* ___entity_17; // System.Int32 System.Xml.XmlTextReaderImpl_ParsingState::entityId int32_t ___entityId_18; // System.Boolean System.Xml.XmlTextReaderImpl_ParsingState::eolNormalized bool ___eolNormalized_19; // System.Boolean System.Xml.XmlTextReaderImpl_ParsingState::entityResolvedManually bool ___entityResolvedManually_20; public: inline static int32_t get_offset_of_chars_0() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___chars_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_chars_0() const { return ___chars_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_chars_0() { return &___chars_0; } inline void set_chars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___chars_0 = value; Il2CppCodeGenWriteBarrier((&___chars_0), value); } inline static int32_t get_offset_of_charPos_1() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___charPos_1)); } inline int32_t get_charPos_1() const { return ___charPos_1; } inline int32_t* get_address_of_charPos_1() { return &___charPos_1; } inline void set_charPos_1(int32_t value) { ___charPos_1 = value; } inline static int32_t get_offset_of_charsUsed_2() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___charsUsed_2)); } inline int32_t get_charsUsed_2() const { return ___charsUsed_2; } inline int32_t* get_address_of_charsUsed_2() { return &___charsUsed_2; } inline void set_charsUsed_2(int32_t value) { ___charsUsed_2 = value; } inline static int32_t get_offset_of_encoding_3() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___encoding_3)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_encoding_3() const { return ___encoding_3; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_encoding_3() { return &___encoding_3; } inline void set_encoding_3(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___encoding_3 = value; Il2CppCodeGenWriteBarrier((&___encoding_3), value); } inline static int32_t get_offset_of_appendMode_4() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___appendMode_4)); } inline bool get_appendMode_4() const { return ___appendMode_4; } inline bool* get_address_of_appendMode_4() { return &___appendMode_4; } inline void set_appendMode_4(bool value) { ___appendMode_4 = value; } inline static int32_t get_offset_of_stream_5() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___stream_5)); } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_stream_5() const { return ___stream_5; } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_stream_5() { return &___stream_5; } inline void set_stream_5(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value) { ___stream_5 = value; Il2CppCodeGenWriteBarrier((&___stream_5), value); } inline static int32_t get_offset_of_decoder_6() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___decoder_6)); } inline Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * get_decoder_6() const { return ___decoder_6; } inline Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 ** get_address_of_decoder_6() { return &___decoder_6; } inline void set_decoder_6(Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * value) { ___decoder_6 = value; Il2CppCodeGenWriteBarrier((&___decoder_6), value); } inline static int32_t get_offset_of_bytes_7() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___bytes_7)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_bytes_7() const { return ___bytes_7; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_bytes_7() { return &___bytes_7; } inline void set_bytes_7(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___bytes_7 = value; Il2CppCodeGenWriteBarrier((&___bytes_7), value); } inline static int32_t get_offset_of_bytePos_8() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___bytePos_8)); } inline int32_t get_bytePos_8() const { return ___bytePos_8; } inline int32_t* get_address_of_bytePos_8() { return &___bytePos_8; } inline void set_bytePos_8(int32_t value) { ___bytePos_8 = value; } inline static int32_t get_offset_of_bytesUsed_9() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___bytesUsed_9)); } inline int32_t get_bytesUsed_9() const { return ___bytesUsed_9; } inline int32_t* get_address_of_bytesUsed_9() { return &___bytesUsed_9; } inline void set_bytesUsed_9(int32_t value) { ___bytesUsed_9 = value; } inline static int32_t get_offset_of_textReader_10() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___textReader_10)); } inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * get_textReader_10() const { return ___textReader_10; } inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A ** get_address_of_textReader_10() { return &___textReader_10; } inline void set_textReader_10(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * value) { ___textReader_10 = value; Il2CppCodeGenWriteBarrier((&___textReader_10), value); } inline static int32_t get_offset_of_lineNo_11() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___lineNo_11)); } inline int32_t get_lineNo_11() const { return ___lineNo_11; } inline int32_t* get_address_of_lineNo_11() { return &___lineNo_11; } inline void set_lineNo_11(int32_t value) { ___lineNo_11 = value; } inline static int32_t get_offset_of_lineStartPos_12() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___lineStartPos_12)); } inline int32_t get_lineStartPos_12() const { return ___lineStartPos_12; } inline int32_t* get_address_of_lineStartPos_12() { return &___lineStartPos_12; } inline void set_lineStartPos_12(int32_t value) { ___lineStartPos_12 = value; } inline static int32_t get_offset_of_baseUriStr_13() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___baseUriStr_13)); } inline String_t* get_baseUriStr_13() const { return ___baseUriStr_13; } inline String_t** get_address_of_baseUriStr_13() { return &___baseUriStr_13; } inline void set_baseUriStr_13(String_t* value) { ___baseUriStr_13 = value; Il2CppCodeGenWriteBarrier((&___baseUriStr_13), value); } inline static int32_t get_offset_of_baseUri_14() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___baseUri_14)); } inline Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * get_baseUri_14() const { return ___baseUri_14; } inline Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E ** get_address_of_baseUri_14() { return &___baseUri_14; } inline void set_baseUri_14(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * value) { ___baseUri_14 = value; Il2CppCodeGenWriteBarrier((&___baseUri_14), value); } inline static int32_t get_offset_of_isEof_15() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___isEof_15)); } inline bool get_isEof_15() const { return ___isEof_15; } inline bool* get_address_of_isEof_15() { return &___isEof_15; } inline void set_isEof_15(bool value) { ___isEof_15 = value; } inline static int32_t get_offset_of_isStreamEof_16() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___isStreamEof_16)); } inline bool get_isStreamEof_16() const { return ___isStreamEof_16; } inline bool* get_address_of_isStreamEof_16() { return &___isStreamEof_16; } inline void set_isStreamEof_16(bool value) { ___isStreamEof_16 = value; } inline static int32_t get_offset_of_entity_17() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___entity_17)); } inline RuntimeObject* get_entity_17() const { return ___entity_17; } inline RuntimeObject** get_address_of_entity_17() { return &___entity_17; } inline void set_entity_17(RuntimeObject* value) { ___entity_17 = value; Il2CppCodeGenWriteBarrier((&___entity_17), value); } inline static int32_t get_offset_of_entityId_18() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___entityId_18)); } inline int32_t get_entityId_18() const { return ___entityId_18; } inline int32_t* get_address_of_entityId_18() { return &___entityId_18; } inline void set_entityId_18(int32_t value) { ___entityId_18 = value; } inline static int32_t get_offset_of_eolNormalized_19() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___eolNormalized_19)); } inline bool get_eolNormalized_19() const { return ___eolNormalized_19; } inline bool* get_address_of_eolNormalized_19() { return &___eolNormalized_19; } inline void set_eolNormalized_19(bool value) { ___eolNormalized_19 = value; } inline static int32_t get_offset_of_entityResolvedManually_20() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___entityResolvedManually_20)); } inline bool get_entityResolvedManually_20() const { return ___entityResolvedManually_20; } inline bool* get_address_of_entityResolvedManually_20() { return &___entityResolvedManually_20; } inline void set_entityResolvedManually_20(bool value) { ___entityResolvedManually_20 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Xml.XmlTextReaderImpl/ParsingState struct ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_marshaled_pinvoke { uint8_t* ___chars_0; int32_t ___charPos_1; int32_t ___charsUsed_2; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding_3; int32_t ___appendMode_4; Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream_5; Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * ___decoder_6; uint8_t* ___bytes_7; int32_t ___bytePos_8; int32_t ___bytesUsed_9; TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___textReader_10; int32_t ___lineNo_11; int32_t ___lineStartPos_12; char* ___baseUriStr_13; Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___baseUri_14; int32_t ___isEof_15; int32_t ___isStreamEof_16; RuntimeObject* ___entity_17; int32_t ___entityId_18; int32_t ___eolNormalized_19; int32_t ___entityResolvedManually_20; }; // Native definition for COM marshalling of System.Xml.XmlTextReaderImpl/ParsingState struct ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_marshaled_com { uint8_t* ___chars_0; int32_t ___charPos_1; int32_t ___charsUsed_2; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding_3; int32_t ___appendMode_4; Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream_5; Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * ___decoder_6; uint8_t* ___bytes_7; int32_t ___bytePos_8; int32_t ___bytesUsed_9; TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___textReader_10; int32_t ___lineNo_11; int32_t ___lineStartPos_12; Il2CppChar* ___baseUriStr_13; Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___baseUri_14; int32_t ___isEof_15; int32_t ___isStreamEof_16; RuntimeObject* ___entity_17; int32_t ___entityId_18; int32_t ___eolNormalized_19; int32_t ___entityResolvedManually_20; }; #endif // PARSINGSTATE_TE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_H #ifndef ORDERBLOCK_T3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_H #define ORDERBLOCK_T3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.BeforeRenderHelper_OrderBlock struct OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 { public: // System.Int32 UnityEngine.BeforeRenderHelper_OrderBlock::order int32_t ___order_0; // UnityEngine.Events.UnityAction UnityEngine.BeforeRenderHelper_OrderBlock::callback UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * ___callback_1; public: inline static int32_t get_offset_of_order_0() { return static_cast<int32_t>(offsetof(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727, ___order_0)); } inline int32_t get_order_0() const { return ___order_0; } inline int32_t* get_address_of_order_0() { return &___order_0; } inline void set_order_0(int32_t value) { ___order_0 = value; } inline static int32_t get_offset_of_callback_1() { return static_cast<int32_t>(offsetof(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727, ___callback_1)); } inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * get_callback_1() const { return ___callback_1; } inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 ** get_address_of_callback_1() { return &___callback_1; } inline void set_callback_1(UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * value) { ___callback_1 = value; Il2CppCodeGenWriteBarrier((&___callback_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.BeforeRenderHelper/OrderBlock struct OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_marshaled_pinvoke { int32_t ___order_0; Il2CppMethodPointer ___callback_1; }; // Native definition for COM marshalling of UnityEngine.BeforeRenderHelper/OrderBlock struct OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_marshaled_com { int32_t ___order_0; Il2CppMethodPointer ___callback_1; }; #endif // ORDERBLOCK_T3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_H #ifndef KEYFRAME_T9E945CACC5AC36E067B15A634096A223A06D2D74_H #define KEYFRAME_T9E945CACC5AC36E067B15A634096A223A06D2D74_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Keyframe struct Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 { public: // System.Single UnityEngine.Keyframe::m_Time float ___m_Time_0; // System.Single UnityEngine.Keyframe::m_Value float ___m_Value_1; // System.Single UnityEngine.Keyframe::m_InTangent float ___m_InTangent_2; // System.Single UnityEngine.Keyframe::m_OutTangent float ___m_OutTangent_3; // System.Int32 UnityEngine.Keyframe::m_WeightedMode int32_t ___m_WeightedMode_4; // System.Single UnityEngine.Keyframe::m_InWeight float ___m_InWeight_5; // System.Single UnityEngine.Keyframe::m_OutWeight float ___m_OutWeight_6; public: inline static int32_t get_offset_of_m_Time_0() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_Time_0)); } inline float get_m_Time_0() const { return ___m_Time_0; } inline float* get_address_of_m_Time_0() { return &___m_Time_0; } inline void set_m_Time_0(float value) { ___m_Time_0 = value; } inline static int32_t get_offset_of_m_Value_1() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_Value_1)); } inline float get_m_Value_1() const { return ___m_Value_1; } inline float* get_address_of_m_Value_1() { return &___m_Value_1; } inline void set_m_Value_1(float value) { ___m_Value_1 = value; } inline static int32_t get_offset_of_m_InTangent_2() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_InTangent_2)); } inline float get_m_InTangent_2() const { return ___m_InTangent_2; } inline float* get_address_of_m_InTangent_2() { return &___m_InTangent_2; } inline void set_m_InTangent_2(float value) { ___m_InTangent_2 = value; } inline static int32_t get_offset_of_m_OutTangent_3() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_OutTangent_3)); } inline float get_m_OutTangent_3() const { return ___m_OutTangent_3; } inline float* get_address_of_m_OutTangent_3() { return &___m_OutTangent_3; } inline void set_m_OutTangent_3(float value) { ___m_OutTangent_3 = value; } inline static int32_t get_offset_of_m_WeightedMode_4() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_WeightedMode_4)); } inline int32_t get_m_WeightedMode_4() const { return ___m_WeightedMode_4; } inline int32_t* get_address_of_m_WeightedMode_4() { return &___m_WeightedMode_4; } inline void set_m_WeightedMode_4(int32_t value) { ___m_WeightedMode_4 = value; } inline static int32_t get_offset_of_m_InWeight_5() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_InWeight_5)); } inline float get_m_InWeight_5() const { return ___m_InWeight_5; } inline float* get_address_of_m_InWeight_5() { return &___m_InWeight_5; } inline void set_m_InWeight_5(float value) { ___m_InWeight_5 = value; } inline static int32_t get_offset_of_m_OutWeight_6() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_OutWeight_6)); } inline float get_m_OutWeight_6() const { return ___m_OutWeight_6; } inline float* get_address_of_m_OutWeight_6() { return &___m_OutWeight_6; } inline void set_m_OutWeight_6(float value) { ___m_OutWeight_6 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYFRAME_T9E945CACC5AC36E067B15A634096A223A06D2D74_H #ifndef HITINFO_T3DDACA0CB28E94463E17542FA7F04245A8AE1C12_H #define HITINFO_T3DDACA0CB28E94463E17542FA7F04245A8AE1C12_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.SendMouseEvents_HitInfo struct HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 { public: // UnityEngine.GameObject UnityEngine.SendMouseEvents_HitInfo::target GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target_0; // UnityEngine.Camera UnityEngine.SendMouseEvents_HitInfo::camera Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___camera_1; public: inline static int32_t get_offset_of_target_0() { return static_cast<int32_t>(offsetof(HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12, ___target_0)); } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_target_0() const { return ___target_0; } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_target_0() { return &___target_0; } inline void set_target_0(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value) { ___target_0 = value; Il2CppCodeGenWriteBarrier((&___target_0), value); } inline static int32_t get_offset_of_camera_1() { return static_cast<int32_t>(offsetof(HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12, ___camera_1)); } inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * get_camera_1() const { return ___camera_1; } inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 ** get_address_of_camera_1() { return &___camera_1; } inline void set_camera_1(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * value) { ___camera_1 = value; Il2CppCodeGenWriteBarrier((&___camera_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.SendMouseEvents/HitInfo struct HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_marshaled_pinvoke { GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target_0; Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___camera_1; }; // Native definition for COM marshalling of UnityEngine.SendMouseEvents/HitInfo struct HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_marshaled_com { GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target_0; Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___camera_1; }; #endif // HITINFO_T3DDACA0CB28E94463E17542FA7F04245A8AE1C12_H #ifndef GCACHIEVEMENTDATA_T5CBCF44628981C91C76C552716A7D551670DCE55_H #define GCACHIEVEMENTDATA_T5CBCF44628981C91C76C552716A7D551670DCE55_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.SocialPlatforms.GameCenter.GcAchievementData struct GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 { public: // System.String UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_Identifier String_t* ___m_Identifier_0; // System.Double UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_PercentCompleted double ___m_PercentCompleted_1; // System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_Completed int32_t ___m_Completed_2; // System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_Hidden int32_t ___m_Hidden_3; // System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_LastReportedDate int32_t ___m_LastReportedDate_4; public: inline static int32_t get_offset_of_m_Identifier_0() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_Identifier_0)); } inline String_t* get_m_Identifier_0() const { return ___m_Identifier_0; } inline String_t** get_address_of_m_Identifier_0() { return &___m_Identifier_0; } inline void set_m_Identifier_0(String_t* value) { ___m_Identifier_0 = value; Il2CppCodeGenWriteBarrier((&___m_Identifier_0), value); } inline static int32_t get_offset_of_m_PercentCompleted_1() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_PercentCompleted_1)); } inline double get_m_PercentCompleted_1() const { return ___m_PercentCompleted_1; } inline double* get_address_of_m_PercentCompleted_1() { return &___m_PercentCompleted_1; } inline void set_m_PercentCompleted_1(double value) { ___m_PercentCompleted_1 = value; } inline static int32_t get_offset_of_m_Completed_2() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_Completed_2)); } inline int32_t get_m_Completed_2() const { return ___m_Completed_2; } inline int32_t* get_address_of_m_Completed_2() { return &___m_Completed_2; } inline void set_m_Completed_2(int32_t value) { ___m_Completed_2 = value; } inline static int32_t get_offset_of_m_Hidden_3() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_Hidden_3)); } inline int32_t get_m_Hidden_3() const { return ___m_Hidden_3; } inline int32_t* get_address_of_m_Hidden_3() { return &___m_Hidden_3; } inline void set_m_Hidden_3(int32_t value) { ___m_Hidden_3 = value; } inline static int32_t get_offset_of_m_LastReportedDate_4() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_LastReportedDate_4)); } inline int32_t get_m_LastReportedDate_4() const { return ___m_LastReportedDate_4; } inline int32_t* get_address_of_m_LastReportedDate_4() { return &___m_LastReportedDate_4; } inline void set_m_LastReportedDate_4(int32_t value) { ___m_LastReportedDate_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.SocialPlatforms.GameCenter.GcAchievementData struct GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_marshaled_pinvoke { char* ___m_Identifier_0; double ___m_PercentCompleted_1; int32_t ___m_Completed_2; int32_t ___m_Hidden_3; int32_t ___m_LastReportedDate_4; }; // Native definition for COM marshalling of UnityEngine.SocialPlatforms.GameCenter.GcAchievementData struct GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_marshaled_com { Il2CppChar* ___m_Identifier_0; double ___m_PercentCompleted_1; int32_t ___m_Completed_2; int32_t ___m_Hidden_3; int32_t ___m_LastReportedDate_4; }; #endif // GCACHIEVEMENTDATA_T5CBCF44628981C91C76C552716A7D551670DCE55_H #ifndef GCSCOREDATA_T45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_H #define GCSCOREDATA_T45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.SocialPlatforms.GameCenter.GcScoreData struct GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A { public: // System.String UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_Category String_t* ___m_Category_0; // System.UInt32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_ValueLow uint32_t ___m_ValueLow_1; // System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_ValueHigh int32_t ___m_ValueHigh_2; // System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_Date int32_t ___m_Date_3; // System.String UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_FormattedValue String_t* ___m_FormattedValue_4; // System.String UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_PlayerID String_t* ___m_PlayerID_5; // System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_Rank int32_t ___m_Rank_6; public: inline static int32_t get_offset_of_m_Category_0() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_Category_0)); } inline String_t* get_m_Category_0() const { return ___m_Category_0; } inline String_t** get_address_of_m_Category_0() { return &___m_Category_0; } inline void set_m_Category_0(String_t* value) { ___m_Category_0 = value; Il2CppCodeGenWriteBarrier((&___m_Category_0), value); } inline static int32_t get_offset_of_m_ValueLow_1() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_ValueLow_1)); } inline uint32_t get_m_ValueLow_1() const { return ___m_ValueLow_1; } inline uint32_t* get_address_of_m_ValueLow_1() { return &___m_ValueLow_1; } inline void set_m_ValueLow_1(uint32_t value) { ___m_ValueLow_1 = value; } inline static int32_t get_offset_of_m_ValueHigh_2() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_ValueHigh_2)); } inline int32_t get_m_ValueHigh_2() const { return ___m_ValueHigh_2; } inline int32_t* get_address_of_m_ValueHigh_2() { return &___m_ValueHigh_2; } inline void set_m_ValueHigh_2(int32_t value) { ___m_ValueHigh_2 = value; } inline static int32_t get_offset_of_m_Date_3() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_Date_3)); } inline int32_t get_m_Date_3() const { return ___m_Date_3; } inline int32_t* get_address_of_m_Date_3() { return &___m_Date_3; } inline void set_m_Date_3(int32_t value) { ___m_Date_3 = value; } inline static int32_t get_offset_of_m_FormattedValue_4() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_FormattedValue_4)); } inline String_t* get_m_FormattedValue_4() const { return ___m_FormattedValue_4; } inline String_t** get_address_of_m_FormattedValue_4() { return &___m_FormattedValue_4; } inline void set_m_FormattedValue_4(String_t* value) { ___m_FormattedValue_4 = value; Il2CppCodeGenWriteBarrier((&___m_FormattedValue_4), value); } inline static int32_t get_offset_of_m_PlayerID_5() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_PlayerID_5)); } inline String_t* get_m_PlayerID_5() const { return ___m_PlayerID_5; } inline String_t** get_address_of_m_PlayerID_5() { return &___m_PlayerID_5; } inline void set_m_PlayerID_5(String_t* value) { ___m_PlayerID_5 = value; Il2CppCodeGenWriteBarrier((&___m_PlayerID_5), value); } inline static int32_t get_offset_of_m_Rank_6() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_Rank_6)); } inline int32_t get_m_Rank_6() const { return ___m_Rank_6; } inline int32_t* get_address_of_m_Rank_6() { return &___m_Rank_6; } inline void set_m_Rank_6(int32_t value) { ___m_Rank_6 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.SocialPlatforms.GameCenter.GcScoreData struct GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_marshaled_pinvoke { char* ___m_Category_0; uint32_t ___m_ValueLow_1; int32_t ___m_ValueHigh_2; int32_t ___m_Date_3; char* ___m_FormattedValue_4; char* ___m_PlayerID_5; int32_t ___m_Rank_6; }; // Native definition for COM marshalling of UnityEngine.SocialPlatforms.GameCenter.GcScoreData struct GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_marshaled_com { Il2CppChar* ___m_Category_0; uint32_t ___m_ValueLow_1; int32_t ___m_ValueHigh_2; int32_t ___m_Date_3; Il2CppChar* ___m_FormattedValue_4; Il2CppChar* ___m_PlayerID_5; int32_t ___m_Rank_6; }; #endif // GCSCOREDATA_T45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_H #ifndef WORKREQUEST_T0247B62D135204EAA95FC0B2EC829CB27B433F94_H #define WORKREQUEST_T0247B62D135204EAA95FC0B2EC829CB27B433F94_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UnitySynchronizationContext_WorkRequest struct WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 { public: // System.Threading.SendOrPostCallback UnityEngine.UnitySynchronizationContext_WorkRequest::m_DelagateCallback SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 * ___m_DelagateCallback_0; // System.Object UnityEngine.UnitySynchronizationContext_WorkRequest::m_DelagateState RuntimeObject * ___m_DelagateState_1; // System.Threading.ManualResetEvent UnityEngine.UnitySynchronizationContext_WorkRequest::m_WaitHandle ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_WaitHandle_2; public: inline static int32_t get_offset_of_m_DelagateCallback_0() { return static_cast<int32_t>(offsetof(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, ___m_DelagateCallback_0)); } inline SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 * get_m_DelagateCallback_0() const { return ___m_DelagateCallback_0; } inline SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 ** get_address_of_m_DelagateCallback_0() { return &___m_DelagateCallback_0; } inline void set_m_DelagateCallback_0(SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 * value) { ___m_DelagateCallback_0 = value; Il2CppCodeGenWriteBarrier((&___m_DelagateCallback_0), value); } inline static int32_t get_offset_of_m_DelagateState_1() { return static_cast<int32_t>(offsetof(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, ___m_DelagateState_1)); } inline RuntimeObject * get_m_DelagateState_1() const { return ___m_DelagateState_1; } inline RuntimeObject ** get_address_of_m_DelagateState_1() { return &___m_DelagateState_1; } inline void set_m_DelagateState_1(RuntimeObject * value) { ___m_DelagateState_1 = value; Il2CppCodeGenWriteBarrier((&___m_DelagateState_1), value); } inline static int32_t get_offset_of_m_WaitHandle_2() { return static_cast<int32_t>(offsetof(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, ___m_WaitHandle_2)); } inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * get_m_WaitHandle_2() const { return ___m_WaitHandle_2; } inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 ** get_address_of_m_WaitHandle_2() { return &___m_WaitHandle_2; } inline void set_m_WaitHandle_2(ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * value) { ___m_WaitHandle_2 = value; Il2CppCodeGenWriteBarrier((&___m_WaitHandle_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest struct WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_marshaled_pinvoke { Il2CppMethodPointer ___m_DelagateCallback_0; Il2CppIUnknown* ___m_DelagateState_1; ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_WaitHandle_2; }; // Native definition for COM marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest struct WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_marshaled_com { Il2CppMethodPointer ___m_DelagateCallback_0; Il2CppIUnknown* ___m_DelagateState_1; ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_WaitHandle_2; }; #endif // WORKREQUEST_T0247B62D135204EAA95FC0B2EC829CB27B433F94_H #ifndef ARGUMENTEXCEPTION_TEDCD16F20A09ECE461C3DA766C16EDA8864057D1_H #define ARGUMENTEXCEPTION_TEDCD16F20A09ECE461C3DA766C16EDA8864057D1_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.String System.ArgumentException::m_paramName String_t* ___m_paramName_17; public: inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((&___m_paramName_17), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTEXCEPTION_TEDCD16F20A09ECE461C3DA766C16EDA8864057D1_H #ifndef BYTEENUM_T406C975039F6312CDE58A265A6ECFD861F8C06CD_H #define BYTEENUM_T406C975039F6312CDE58A265A6ECFD861F8C06CD_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ByteEnum struct ByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD { public: // System.Byte System.ByteEnum::value__ uint8_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD, ___value___2)); } inline uint8_t get_value___2() const { return ___value___2; } inline uint8_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint8_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BYTEENUM_T406C975039F6312CDE58A265A6ECFD861F8C06CD_H #ifndef ENTRY_TC1463A26CB3583633B8650196083947E916945AD_H #define ENTRY_TC1463A26CB3583633B8650196083947E916945AD_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2_Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef> struct Entry_tC1463A26CB3583633B8650196083947E916945AD { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tC1463A26CB3583633B8650196083947E916945AD, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tC1463A26CB3583633B8650196083947E916945AD, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tC1463A26CB3583633B8650196083947E916945AD, ___key_2)); } inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 get_key_2() const { return ___key_2; } inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 * get_address_of_key_2() { return &___key_2; } inline void set_key_2(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tC1463A26CB3583633B8650196083947E916945AD, ___value_3)); } inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 get_value_3() const { return ___value_3; } inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_TC1463A26CB3583633B8650196083947E916945AD_H #ifndef ENTRY_T6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_H #define ENTRY_T6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2_Entry<System.Guid,System.Object> struct Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key Guid_t ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B, ___key_2)); } inline Guid_t get_key_2() const { return ___key_2; } inline Guid_t * get_address_of_key_2() { return &___key_2; } inline void set_key_2(Guid_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((&___value_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_H #ifndef ENTRY_TF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_H #define ENTRY_TF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator> struct Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((&___key_2), value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___value_3)); } inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C get_value_3() const { return ___value_3; } inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * get_address_of_value_3() { return &___value_3; } inline void set_value_3(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_TF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_H #ifndef KEYVALUEPAIR_2_T7021B3989E46B5E2ED55D76D82C8176A7AF6B443_H #define KEYVALUEPAIR_2_T7021B3989E46B5E2ED55D76D82C8176A7AF6B443_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef> struct KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 { public: // TKey System.Collections.Generic.KeyValuePair`2::key XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443, ___key_0)); } inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 get_key_0() const { return ___key_0; } inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 * get_address_of_key_0() { return &___key_0; } inline void set_key_0(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443, ___value_1)); } inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 get_value_1() const { return ___value_1; } inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T7021B3989E46B5E2ED55D76D82C8176A7AF6B443_H #ifndef KEYVALUEPAIR_2_T5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_H #define KEYVALUEPAIR_2_T5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object> struct KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B { public: // TKey System.Collections.Generic.KeyValuePair`2::key DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, ___key_0)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_key_0() const { return ___key_0; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_key_0() { return &___key_0; } inline void set_key_0(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_H #ifndef KEYVALUEPAIR_2_T12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_H #define KEYVALUEPAIR_2_T12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32> struct KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 { public: // TKey System.Collections.Generic.KeyValuePair`2::key Guid_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937, ___key_0)); } inline Guid_t get_key_0() const { return ___key_0; } inline Guid_t * get_address_of_key_0() { return &___key_0; } inline void set_key_0(Guid_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_H #ifndef KEYVALUEPAIR_2_TD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_H #define KEYVALUEPAIR_2_TD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object> struct KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 { public: // TKey System.Collections.Generic.KeyValuePair`2::key Guid_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78, ___key_0)); } inline Guid_t get_key_0() const { return ___key_0; } inline Guid_t * get_address_of_key_0() { return &___key_0; } inline void set_key_0(Guid_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_TD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_H #ifndef KEYVALUEPAIR_2_T2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_H #define KEYVALUEPAIR_2_T2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator> struct KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, ___value_1)); } inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C get_value_1() const { return ___value_1; } inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * get_address_of_value_1() { return &___value_1; } inline void set_value_1(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_H #ifndef DATETIMEOFFSET_T6C333873402CAD576160B4F8E159EB6834F06B85_H #define DATETIMEOFFSET_T6C333873402CAD576160B4F8E159EB6834F06B85_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTimeOffset struct DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 { public: // System.DateTime System.DateTimeOffset::m_dateTime DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___m_dateTime_2; // System.Int16 System.DateTimeOffset::m_offsetMinutes int16_t ___m_offsetMinutes_3; public: inline static int32_t get_offset_of_m_dateTime_2() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85, ___m_dateTime_2)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_m_dateTime_2() const { return ___m_dateTime_2; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_m_dateTime_2() { return &___m_dateTime_2; } inline void set_m_dateTime_2(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___m_dateTime_2 = value; } inline static int32_t get_offset_of_m_offsetMinutes_3() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85, ___m_offsetMinutes_3)); } inline int16_t get_m_offsetMinutes_3() const { return ___m_offsetMinutes_3; } inline int16_t* get_address_of_m_offsetMinutes_3() { return &___m_offsetMinutes_3; } inline void set_m_offsetMinutes_3(int16_t value) { ___m_offsetMinutes_3 = value; } }; struct DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_StaticFields { public: // System.DateTimeOffset System.DateTimeOffset::MinValue DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___MinValue_0; // System.DateTimeOffset System.DateTimeOffset::MaxValue DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___MaxValue_1; public: inline static int32_t get_offset_of_MinValue_0() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_StaticFields, ___MinValue_0)); } inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 get_MinValue_0() const { return ___MinValue_0; } inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 * get_address_of_MinValue_0() { return &___MinValue_0; } inline void set_MinValue_0(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 value) { ___MinValue_0 = value; } inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_StaticFields, ___MaxValue_1)); } inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 get_MaxValue_1() const { return ___MaxValue_1; } inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 * get_address_of_MaxValue_1() { return &___MaxValue_1; } inline void set_MaxValue_1(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 value) { ___MaxValue_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DATETIMEOFFSET_T6C333873402CAD576160B4F8E159EB6834F06B85_H #ifndef DELEGATE_T_H #define DELEGATE_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Delegate struct Delegate_t : public RuntimeObject { public: // System.IntPtr System.Delegate::method_ptr Il2CppMethodPointer ___method_ptr_0; // System.IntPtr System.Delegate::invoke_impl intptr_t ___invoke_impl_1; // System.Object System.Delegate::m_target RuntimeObject * ___m_target_2; // System.IntPtr System.Delegate::method intptr_t ___method_3; // System.IntPtr System.Delegate::delegate_trampoline intptr_t ___delegate_trampoline_4; // System.IntPtr System.Delegate::extra_arg intptr_t ___extra_arg_5; // System.IntPtr System.Delegate::method_code intptr_t ___method_code_6; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_7; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_8; // System.DelegateData System.Delegate::data DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_10; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); } inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; } inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; } inline void set_method_ptr_0(Il2CppMethodPointer value) { ___method_ptr_0 = value; } inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); } inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; } inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; } inline void set_invoke_impl_1(intptr_t value) { ___invoke_impl_1 = value; } inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); } inline RuntimeObject * get_m_target_2() const { return ___m_target_2; } inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; } inline void set_m_target_2(RuntimeObject * value) { ___m_target_2 = value; Il2CppCodeGenWriteBarrier((&___m_target_2), value); } inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); } inline intptr_t get_method_3() const { return ___method_3; } inline intptr_t* get_address_of_method_3() { return &___method_3; } inline void set_method_3(intptr_t value) { ___method_3 = value; } inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); } inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; } inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; } inline void set_delegate_trampoline_4(intptr_t value) { ___delegate_trampoline_4 = value; } inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); } inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; } inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; } inline void set_extra_arg_5(intptr_t value) { ___extra_arg_5 = value; } inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); } inline intptr_t get_method_code_6() const { return ___method_code_6; } inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; } inline void set_method_code_6(intptr_t value) { ___method_code_6 = value; } inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); } inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; } inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; } inline void set_method_info_7(MethodInfo_t * value) { ___method_info_7 = value; Il2CppCodeGenWriteBarrier((&___method_info_7), value); } inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); } inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; } inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; } inline void set_original_method_info_8(MethodInfo_t * value) { ___original_method_info_8 = value; Il2CppCodeGenWriteBarrier((&___original_method_info_8), value); } inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); } inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; } inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; } inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value) { ___data_9 = value; Il2CppCodeGenWriteBarrier((&___data_9), value); } inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); } inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; } inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; } inline void set_method_is_virtual_10(bool value) { ___method_is_virtual_10 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Delegate struct Delegate_t_marshaled_pinvoke { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; int32_t ___method_is_virtual_10; }; // Native definition for COM marshalling of System.Delegate struct Delegate_t_marshaled_com { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; int32_t ___method_is_virtual_10; }; #endif // DELEGATE_T_H #ifndef EVENTACTIVITYOPTIONS_T929DC56692200C1AE8FD9194A2510B6149D69168_H #define EVENTACTIVITYOPTIONS_T929DC56692200C1AE8FD9194A2510B6149D69168_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Diagnostics.Tracing.EventActivityOptions struct EventActivityOptions_t929DC56692200C1AE8FD9194A2510B6149D69168 { public: // System.Int32 System.Diagnostics.Tracing.EventActivityOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventActivityOptions_t929DC56692200C1AE8FD9194A2510B6149D69168, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EVENTACTIVITYOPTIONS_T929DC56692200C1AE8FD9194A2510B6149D69168_H #ifndef EVENTTAGS_T886E6B89C75F05A5BA40FBC96790AA6C5F24A712_H #define EVENTTAGS_T886E6B89C75F05A5BA40FBC96790AA6C5F24A712_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Diagnostics.Tracing.EventTags struct EventTags_t886E6B89C75F05A5BA40FBC96790AA6C5F24A712 { public: // System.Int32 System.Diagnostics.Tracing.EventTags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventTags_t886E6B89C75F05A5BA40FBC96790AA6C5F24A712, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EVENTTAGS_T886E6B89C75F05A5BA40FBC96790AA6C5F24A712_H #ifndef INT32ENUM_T6312CE4586C17FE2E2E513D2E7655B574F10FDCD_H #define INT32ENUM_T6312CE4586C17FE2E2E513D2E7655B574F10FDCD_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32Enum struct Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD { public: // System.Int32 System.Int32Enum::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT32ENUM_T6312CE4586C17FE2E2E513D2E7655B574F10FDCD_H #ifndef COOKIETOKEN_TB2F88831DE62615EAABB9CBF6CCFDFCD0A0D88B8_H #define COOKIETOKEN_TB2F88831DE62615EAABB9CBF6CCFDFCD0A0D88B8_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.CookieToken struct CookieToken_tB2F88831DE62615EAABB9CBF6CCFDFCD0A0D88B8 { public: // System.Int32 System.Net.CookieToken::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CookieToken_tB2F88831DE62615EAABB9CBF6CCFDFCD0A0D88B8, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COOKIETOKEN_TB2F88831DE62615EAABB9CBF6CCFDFCD0A0D88B8_H #ifndef COOKIEVARIANT_T896D38AC6FBE01ADFB532B04C5E0E19842256CFC_H #define COOKIEVARIANT_T896D38AC6FBE01ADFB532B04C5E0E19842256CFC_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.CookieVariant struct CookieVariant_t896D38AC6FBE01ADFB532B04C5E0E19842256CFC { public: // System.Int32 System.Net.CookieVariant::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CookieVariant_t896D38AC6FBE01ADFB532B04C5E0E19842256CFC, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COOKIEVARIANT_T896D38AC6FBE01ADFB532B04C5E0E19842256CFC_H #ifndef WSABUF_TFC99449E36506806B55A93B6293AC7D2D10D3CEE_H #define WSABUF_TFC99449E36506806B55A93B6293AC7D2D10D3CEE_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.Sockets.Socket_WSABUF struct WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE { public: // System.Int32 System.Net.Sockets.Socket_WSABUF::len int32_t ___len_0; // System.IntPtr System.Net.Sockets.Socket_WSABUF::buf intptr_t ___buf_1; public: inline static int32_t get_offset_of_len_0() { return static_cast<int32_t>(offsetof(WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE, ___len_0)); } inline int32_t get_len_0() const { return ___len_0; } inline int32_t* get_address_of_len_0() { return &___len_0; } inline void set_len_0(int32_t value) { ___len_0 = value; } inline static int32_t get_offset_of_buf_1() { return static_cast<int32_t>(offsetof(WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE, ___buf_1)); } inline intptr_t get_buf_1() const { return ___buf_1; } inline intptr_t* get_address_of_buf_1() { return &___buf_1; } inline void set_buf_1(intptr_t value) { ___buf_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WSABUF_TFC99449E36506806B55A93B6293AC7D2D10D3CEE_H #ifndef NOTSUPPORTEDEXCEPTION_TE75B318D6590A02A5D9B29FD97409B1750FA0010_H #define NOTSUPPORTEDEXCEPTION_TE75B318D6590A02A5D9B29FD97409B1750FA0010_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.NotSupportedException struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NOTSUPPORTEDEXCEPTION_TE75B318D6590A02A5D9B29FD97409B1750FA0010_H #ifndef OPERATIONCANCELEDEXCEPTION_TD28B1AE59ACCE4D46333BFE398395B8D75D76A90_H #define OPERATIONCANCELEDEXCEPTION_TD28B1AE59ACCE4D46333BFE398395B8D75D76A90_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.OperationCanceledException struct OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.Threading.CancellationToken System.OperationCanceledException::_cancellationToken CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ____cancellationToken_17; public: inline static int32_t get_offset_of__cancellationToken_17() { return static_cast<int32_t>(offsetof(OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90, ____cancellationToken_17)); } inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB get__cancellationToken_17() const { return ____cancellationToken_17; } inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * get_address_of__cancellationToken_17() { return &____cancellationToken_17; } inline void set__cancellationToken_17(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB value) { ____cancellationToken_17 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OPERATIONCANCELEDEXCEPTION_TD28B1AE59ACCE4D46333BFE398395B8D75D76A90_H #ifndef RANKEXCEPTION_T85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_H #define RANKEXCEPTION_T85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.RankException struct RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RANKEXCEPTION_T85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_H #ifndef CUSTOMATTRIBUTENAMEDARGUMENT_T08BA731A94FD7F173551DF3098384CB9B3056E9E_H #define CUSTOMATTRIBUTENAMEDARGUMENT_T08BA731A94FD7F173551DF3098384CB9B3056E9E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.CustomAttributeNamedArgument struct CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E { public: // System.Reflection.CustomAttributeTypedArgument System.Reflection.CustomAttributeNamedArgument::typedArgument CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 ___typedArgument_0; // System.Reflection.MemberInfo System.Reflection.CustomAttributeNamedArgument::memberInfo MemberInfo_t * ___memberInfo_1; public: inline static int32_t get_offset_of_typedArgument_0() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E, ___typedArgument_0)); } inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 get_typedArgument_0() const { return ___typedArgument_0; } inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 * get_address_of_typedArgument_0() { return &___typedArgument_0; } inline void set_typedArgument_0(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 value) { ___typedArgument_0 = value; } inline static int32_t get_offset_of_memberInfo_1() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E, ___memberInfo_1)); } inline MemberInfo_t * get_memberInfo_1() const { return ___memberInfo_1; } inline MemberInfo_t ** get_address_of_memberInfo_1() { return &___memberInfo_1; } inline void set_memberInfo_1(MemberInfo_t * value) { ___memberInfo_1 = value; Il2CppCodeGenWriteBarrier((&___memberInfo_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeNamedArgument struct CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_marshaled_pinvoke { CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_pinvoke ___typedArgument_0; MemberInfo_t * ___memberInfo_1; }; // Native definition for COM marshalling of System.Reflection.CustomAttributeNamedArgument struct CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_marshaled_com { CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_com ___typedArgument_0; MemberInfo_t * ___memberInfo_1; }; #endif // CUSTOMATTRIBUTENAMEDARGUMENT_T08BA731A94FD7F173551DF3098384CB9B3056E9E_H #ifndef PINFO_TACD8A5FBDB18A8362483985E0F90A0D66781986B_H #define PINFO_TACD8A5FBDB18A8362483985E0F90A0D66781986B_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.PInfo struct PInfo_tACD8A5FBDB18A8362483985E0F90A0D66781986B { public: // System.Int32 System.Reflection.PInfo::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PInfo_tACD8A5FBDB18A8362483985E0F90A0D66781986B, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PINFO_TACD8A5FBDB18A8362483985E0F90A0D66781986B_H #ifndef PROPERTYATTRIBUTES_T4301E7E94CEE49B5C03DF6D72B38B7940040FE6C_H #define PROPERTYATTRIBUTES_T4301E7E94CEE49B5C03DF6D72B38B7940040FE6C_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.PropertyAttributes struct PropertyAttributes_t4301E7E94CEE49B5C03DF6D72B38B7940040FE6C { public: // System.Int32 System.Reflection.PropertyAttributes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PropertyAttributes_t4301E7E94CEE49B5C03DF6D72B38B7940040FE6C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PROPERTYATTRIBUTES_T4301E7E94CEE49B5C03DF6D72B38B7940040FE6C_H #ifndef RUNTIMEPROPERTYINFO_T241956A29299F26A2F8B8829685E9D1F0345C5E4_H #define RUNTIMEPROPERTYINFO_T241956A29299F26A2F8B8829685E9D1F0345C5E4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.RuntimePropertyInfo struct RuntimePropertyInfo_t241956A29299F26A2F8B8829685E9D1F0345C5E4 : public PropertyInfo_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEPROPERTYINFO_T241956A29299F26A2F8B8829685E9D1F0345C5E4_H #ifndef X509CHAINSTATUSFLAGS_T208E1E90A6014521B09653B6B237D045A8573E5B_H #define X509CHAINSTATUSFLAGS_T208E1E90A6014521B09653B6B237D045A8573E5B_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Cryptography.X509Certificates.X509ChainStatusFlags struct X509ChainStatusFlags_t208E1E90A6014521B09653B6B237D045A8573E5B { public: // System.Int32 System.Security.Cryptography.X509Certificates.X509ChainStatusFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(X509ChainStatusFlags_t208E1E90A6014521B09653B6B237D045A8573E5B, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // X509CHAINSTATUSFLAGS_T208E1E90A6014521B09653B6B237D045A8573E5B_H #ifndef CANCELLATIONTOKENREGISTRATION_TCDB9825D1854DD0D7FF737C82B099FC468107BB2_H #define CANCELLATIONTOKENREGISTRATION_TCDB9825D1854DD0D7FF737C82B099FC468107BB2_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.CancellationTokenRegistration struct CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 { public: // System.Threading.CancellationCallbackInfo System.Threading.CancellationTokenRegistration::m_callbackInfo CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * ___m_callbackInfo_0; // System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo> System.Threading.CancellationTokenRegistration::m_registrationInfo SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE ___m_registrationInfo_1; public: inline static int32_t get_offset_of_m_callbackInfo_0() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2, ___m_callbackInfo_0)); } inline CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * get_m_callbackInfo_0() const { return ___m_callbackInfo_0; } inline CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 ** get_address_of_m_callbackInfo_0() { return &___m_callbackInfo_0; } inline void set_m_callbackInfo_0(CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * value) { ___m_callbackInfo_0 = value; Il2CppCodeGenWriteBarrier((&___m_callbackInfo_0), value); } inline static int32_t get_offset_of_m_registrationInfo_1() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2, ___m_registrationInfo_1)); } inline SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE get_m_registrationInfo_1() const { return ___m_registrationInfo_1; } inline SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE * get_address_of_m_registrationInfo_1() { return &___m_registrationInfo_1; } inline void set_m_registrationInfo_1(SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE value) { ___m_registrationInfo_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Threading.CancellationTokenRegistration struct CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_marshaled_pinvoke { CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * ___m_callbackInfo_0; SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE ___m_registrationInfo_1; }; // Native definition for COM marshalling of System.Threading.CancellationTokenRegistration struct CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_marshaled_com { CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * ___m_callbackInfo_0; SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE ___m_registrationInfo_1; }; #endif // CANCELLATIONTOKENREGISTRATION_TCDB9825D1854DD0D7FF737C82B099FC468107BB2_H #ifndef STACKCRAWLMARK_T857D8DE506F124E737FD26BB7ADAAAAD13E4F943_H #define STACKCRAWLMARK_T857D8DE506F124E737FD26BB7ADAAAAD13E4F943_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.StackCrawlMark struct StackCrawlMark_t857D8DE506F124E737FD26BB7ADAAAAD13E4F943 { public: // System.Int32 System.Threading.StackCrawlMark::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StackCrawlMark_t857D8DE506F124E737FD26BB7ADAAAAD13E4F943, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STACKCRAWLMARK_T857D8DE506F124E737FD26BB7ADAAAAD13E4F943_H #ifndef INTERNALTASKOPTIONS_T370B96BF359DE59C57EB5444F9310B8FFFA2AA6A_H #define INTERNALTASKOPTIONS_T370B96BF359DE59C57EB5444F9310B8FFFA2AA6A_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.Tasks.InternalTaskOptions struct InternalTaskOptions_t370B96BF359DE59C57EB5444F9310B8FFFA2AA6A { public: // System.Int32 System.Threading.Tasks.InternalTaskOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InternalTaskOptions_t370B96BF359DE59C57EB5444F9310B8FFFA2AA6A, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALTASKOPTIONS_T370B96BF359DE59C57EB5444F9310B8FFFA2AA6A_H #ifndef TASK_T1F48C203E163126EBC69ACCA679D1A462DEE9EB2_H #define TASK_T1F48C203E163126EBC69ACCA679D1A462DEE9EB2_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.Tasks.Task struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 : public RuntimeObject { public: // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_taskId int32_t ___m_taskId_4; // System.Object System.Threading.Tasks.Task::m_action RuntimeObject * ___m_action_5; // System.Object System.Threading.Tasks.Task::m_stateObject RuntimeObject * ___m_stateObject_6; // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.Task::m_taskScheduler TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___m_taskScheduler_7; // System.Threading.Tasks.Task System.Threading.Tasks.Task::m_parent Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___m_parent_8; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_stateFlags int32_t ___m_stateFlags_9; // System.Object modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_continuationObject RuntimeObject * ___m_continuationObject_10; // System.Threading.Tasks.Task_ContingentProperties modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_contingentProperties ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * ___m_contingentProperties_15; public: inline static int32_t get_offset_of_m_taskId_4() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_taskId_4)); } inline int32_t get_m_taskId_4() const { return ___m_taskId_4; } inline int32_t* get_address_of_m_taskId_4() { return &___m_taskId_4; } inline void set_m_taskId_4(int32_t value) { ___m_taskId_4 = value; } inline static int32_t get_offset_of_m_action_5() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_action_5)); } inline RuntimeObject * get_m_action_5() const { return ___m_action_5; } inline RuntimeObject ** get_address_of_m_action_5() { return &___m_action_5; } inline void set_m_action_5(RuntimeObject * value) { ___m_action_5 = value; Il2CppCodeGenWriteBarrier((&___m_action_5), value); } inline static int32_t get_offset_of_m_stateObject_6() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_stateObject_6)); } inline RuntimeObject * get_m_stateObject_6() const { return ___m_stateObject_6; } inline RuntimeObject ** get_address_of_m_stateObject_6() { return &___m_stateObject_6; } inline void set_m_stateObject_6(RuntimeObject * value) { ___m_stateObject_6 = value; Il2CppCodeGenWriteBarrier((&___m_stateObject_6), value); } inline static int32_t get_offset_of_m_taskScheduler_7() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_taskScheduler_7)); } inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * get_m_taskScheduler_7() const { return ___m_taskScheduler_7; } inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 ** get_address_of_m_taskScheduler_7() { return &___m_taskScheduler_7; } inline void set_m_taskScheduler_7(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * value) { ___m_taskScheduler_7 = value; Il2CppCodeGenWriteBarrier((&___m_taskScheduler_7), value); } inline static int32_t get_offset_of_m_parent_8() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_parent_8)); } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_m_parent_8() const { return ___m_parent_8; } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_m_parent_8() { return &___m_parent_8; } inline void set_m_parent_8(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value) { ___m_parent_8 = value; Il2CppCodeGenWriteBarrier((&___m_parent_8), value); } inline static int32_t get_offset_of_m_stateFlags_9() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_stateFlags_9)); } inline int32_t get_m_stateFlags_9() const { return ___m_stateFlags_9; } inline int32_t* get_address_of_m_stateFlags_9() { return &___m_stateFlags_9; } inline void set_m_stateFlags_9(int32_t value) { ___m_stateFlags_9 = value; } inline static int32_t get_offset_of_m_continuationObject_10() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_continuationObject_10)); } inline RuntimeObject * get_m_continuationObject_10() const { return ___m_continuationObject_10; } inline RuntimeObject ** get_address_of_m_continuationObject_10() { return &___m_continuationObject_10; } inline void set_m_continuationObject_10(RuntimeObject * value) { ___m_continuationObject_10 = value; Il2CppCodeGenWriteBarrier((&___m_continuationObject_10), value); } inline static int32_t get_offset_of_m_contingentProperties_15() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_contingentProperties_15)); } inline ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * get_m_contingentProperties_15() const { return ___m_contingentProperties_15; } inline ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 ** get_address_of_m_contingentProperties_15() { return &___m_contingentProperties_15; } inline void set_m_contingentProperties_15(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * value) { ___m_contingentProperties_15 = value; Il2CppCodeGenWriteBarrier((&___m_contingentProperties_15), value); } }; struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields { public: // System.Int32 System.Threading.Tasks.Task::s_taskIdCounter int32_t ___s_taskIdCounter_2; // System.Threading.Tasks.TaskFactory System.Threading.Tasks.Task::s_factory TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 * ___s_factory_3; // System.Object System.Threading.Tasks.Task::s_taskCompletionSentinel RuntimeObject * ___s_taskCompletionSentinel_11; // System.Boolean System.Threading.Tasks.Task::s_asyncDebuggingEnabled bool ___s_asyncDebuggingEnabled_12; // System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_currentActiveTasks Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F * ___s_currentActiveTasks_13; // System.Object System.Threading.Tasks.Task::s_activeTasksLock RuntimeObject * ___s_activeTasksLock_14; // System.Action`1<System.Object> System.Threading.Tasks.Task::s_taskCancelCallback Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ___s_taskCancelCallback_16; // System.Func`1<System.Threading.Tasks.Task_ContingentProperties> System.Threading.Tasks.Task::s_createContingentProperties Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F * ___s_createContingentProperties_17; // System.Threading.Tasks.Task System.Threading.Tasks.Task::s_completedTask Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___s_completedTask_18; // System.Predicate`1<System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_IsExceptionObservedByParentPredicate Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 * ___s_IsExceptionObservedByParentPredicate_19; // System.Threading.ContextCallback System.Threading.Tasks.Task::s_ecCallback ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * ___s_ecCallback_20; // System.Predicate`1<System.Object> System.Threading.Tasks.Task::s_IsTaskContinuationNullPredicate Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___s_IsTaskContinuationNullPredicate_21; public: inline static int32_t get_offset_of_s_taskIdCounter_2() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_taskIdCounter_2)); } inline int32_t get_s_taskIdCounter_2() const { return ___s_taskIdCounter_2; } inline int32_t* get_address_of_s_taskIdCounter_2() { return &___s_taskIdCounter_2; } inline void set_s_taskIdCounter_2(int32_t value) { ___s_taskIdCounter_2 = value; } inline static int32_t get_offset_of_s_factory_3() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_factory_3)); } inline TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 * get_s_factory_3() const { return ___s_factory_3; } inline TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 ** get_address_of_s_factory_3() { return &___s_factory_3; } inline void set_s_factory_3(TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 * value) { ___s_factory_3 = value; Il2CppCodeGenWriteBarrier((&___s_factory_3), value); } inline static int32_t get_offset_of_s_taskCompletionSentinel_11() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_taskCompletionSentinel_11)); } inline RuntimeObject * get_s_taskCompletionSentinel_11() const { return ___s_taskCompletionSentinel_11; } inline RuntimeObject ** get_address_of_s_taskCompletionSentinel_11() { return &___s_taskCompletionSentinel_11; } inline void set_s_taskCompletionSentinel_11(RuntimeObject * value) { ___s_taskCompletionSentinel_11 = value; Il2CppCodeGenWriteBarrier((&___s_taskCompletionSentinel_11), value); } inline static int32_t get_offset_of_s_asyncDebuggingEnabled_12() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_asyncDebuggingEnabled_12)); } inline bool get_s_asyncDebuggingEnabled_12() const { return ___s_asyncDebuggingEnabled_12; } inline bool* get_address_of_s_asyncDebuggingEnabled_12() { return &___s_asyncDebuggingEnabled_12; } inline void set_s_asyncDebuggingEnabled_12(bool value) { ___s_asyncDebuggingEnabled_12 = value; } inline static int32_t get_offset_of_s_currentActiveTasks_13() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_currentActiveTasks_13)); } inline Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F * get_s_currentActiveTasks_13() const { return ___s_currentActiveTasks_13; } inline Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F ** get_address_of_s_currentActiveTasks_13() { return &___s_currentActiveTasks_13; } inline void set_s_currentActiveTasks_13(Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F * value) { ___s_currentActiveTasks_13 = value; Il2CppCodeGenWriteBarrier((&___s_currentActiveTasks_13), value); } inline static int32_t get_offset_of_s_activeTasksLock_14() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_activeTasksLock_14)); } inline RuntimeObject * get_s_activeTasksLock_14() const { return ___s_activeTasksLock_14; } inline RuntimeObject ** get_address_of_s_activeTasksLock_14() { return &___s_activeTasksLock_14; } inline void set_s_activeTasksLock_14(RuntimeObject * value) { ___s_activeTasksLock_14 = value; Il2CppCodeGenWriteBarrier((&___s_activeTasksLock_14), value); } inline static int32_t get_offset_of_s_taskCancelCallback_16() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_taskCancelCallback_16)); } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get_s_taskCancelCallback_16() const { return ___s_taskCancelCallback_16; } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of_s_taskCancelCallback_16() { return &___s_taskCancelCallback_16; } inline void set_s_taskCancelCallback_16(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value) { ___s_taskCancelCallback_16 = value; Il2CppCodeGenWriteBarrier((&___s_taskCancelCallback_16), value); } inline static int32_t get_offset_of_s_createContingentProperties_17() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_createContingentProperties_17)); } inline Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F * get_s_createContingentProperties_17() const { return ___s_createContingentProperties_17; } inline Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F ** get_address_of_s_createContingentProperties_17() { return &___s_createContingentProperties_17; } inline void set_s_createContingentProperties_17(Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F * value) { ___s_createContingentProperties_17 = value; Il2CppCodeGenWriteBarrier((&___s_createContingentProperties_17), value); } inline static int32_t get_offset_of_s_completedTask_18() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_completedTask_18)); } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_s_completedTask_18() const { return ___s_completedTask_18; } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_s_completedTask_18() { return &___s_completedTask_18; } inline void set_s_completedTask_18(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value) { ___s_completedTask_18 = value; Il2CppCodeGenWriteBarrier((&___s_completedTask_18), value); } inline static int32_t get_offset_of_s_IsExceptionObservedByParentPredicate_19() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_IsExceptionObservedByParentPredicate_19)); } inline Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 * get_s_IsExceptionObservedByParentPredicate_19() const { return ___s_IsExceptionObservedByParentPredicate_19; } inline Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 ** get_address_of_s_IsExceptionObservedByParentPredicate_19() { return &___s_IsExceptionObservedByParentPredicate_19; } inline void set_s_IsExceptionObservedByParentPredicate_19(Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 * value) { ___s_IsExceptionObservedByParentPredicate_19 = value; Il2CppCodeGenWriteBarrier((&___s_IsExceptionObservedByParentPredicate_19), value); } inline static int32_t get_offset_of_s_ecCallback_20() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_ecCallback_20)); } inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * get_s_ecCallback_20() const { return ___s_ecCallback_20; } inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 ** get_address_of_s_ecCallback_20() { return &___s_ecCallback_20; } inline void set_s_ecCallback_20(ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * value) { ___s_ecCallback_20 = value; Il2CppCodeGenWriteBarrier((&___s_ecCallback_20), value); } inline static int32_t get_offset_of_s_IsTaskContinuationNullPredicate_21() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_IsTaskContinuationNullPredicate_21)); } inline Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * get_s_IsTaskContinuationNullPredicate_21() const { return ___s_IsTaskContinuationNullPredicate_21; } inline Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 ** get_address_of_s_IsTaskContinuationNullPredicate_21() { return &___s_IsTaskContinuationNullPredicate_21; } inline void set_s_IsTaskContinuationNullPredicate_21(Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * value) { ___s_IsTaskContinuationNullPredicate_21 = value; Il2CppCodeGenWriteBarrier((&___s_IsTaskContinuationNullPredicate_21), value); } }; struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_ThreadStaticFields { public: // System.Threading.Tasks.Task System.Threading.Tasks.Task::t_currentTask Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___t_currentTask_0; // System.Threading.Tasks.StackGuard System.Threading.Tasks.Task::t_stackGuard StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * ___t_stackGuard_1; public: inline static int32_t get_offset_of_t_currentTask_0() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_ThreadStaticFields, ___t_currentTask_0)); } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_t_currentTask_0() const { return ___t_currentTask_0; } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_t_currentTask_0() { return &___t_currentTask_0; } inline void set_t_currentTask_0(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value) { ___t_currentTask_0 = value; Il2CppCodeGenWriteBarrier((&___t_currentTask_0), value); } inline static int32_t get_offset_of_t_stackGuard_1() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_ThreadStaticFields, ___t_stackGuard_1)); } inline StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * get_t_stackGuard_1() const { return ___t_stackGuard_1; } inline StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 ** get_address_of_t_stackGuard_1() { return &___t_stackGuard_1; } inline void set_t_stackGuard_1(StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * value) { ___t_stackGuard_1 = value; Il2CppCodeGenWriteBarrier((&___t_stackGuard_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TASK_T1F48C203E163126EBC69ACCA679D1A462DEE9EB2_H #ifndef TASKCONTINUATIONOPTIONS_T749581ABDD24D74BD051F09EC4E3408C209121A2_H #define TASKCONTINUATIONOPTIONS_T749581ABDD24D74BD051F09EC4E3408C209121A2_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.Tasks.TaskContinuationOptions struct TaskContinuationOptions_t749581ABDD24D74BD051F09EC4E3408C209121A2 { public: // System.Int32 System.Threading.Tasks.TaskContinuationOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TaskContinuationOptions_t749581ABDD24D74BD051F09EC4E3408C209121A2, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TASKCONTINUATIONOPTIONS_T749581ABDD24D74BD051F09EC4E3408C209121A2_H #ifndef TASKCREATIONOPTIONS_T73D75E64925AACDF2A90DDB3D508192A8E74D375_H #define TASKCREATIONOPTIONS_T73D75E64925AACDF2A90DDB3D508192A8E74D375_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.Tasks.TaskCreationOptions struct TaskCreationOptions_t73D75E64925AACDF2A90DDB3D508192A8E74D375 { public: // System.Int32 System.Threading.Tasks.TaskCreationOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TaskCreationOptions_t73D75E64925AACDF2A90DDB3D508192A8E74D375, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TASKCREATIONOPTIONS_T73D75E64925AACDF2A90DDB3D508192A8E74D375_H #ifndef TASKSCHEDULER_T966F2798F198FA90A0DA8EFC92BAC08297793114_H #define TASKSCHEDULER_T966F2798F198FA90A0DA8EFC92BAC08297793114_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.Tasks.TaskScheduler struct TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 : public RuntimeObject { public: // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskScheduler::m_taskSchedulerId int32_t ___m_taskSchedulerId_3; public: inline static int32_t get_offset_of_m_taskSchedulerId_3() { return static_cast<int32_t>(offsetof(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114, ___m_taskSchedulerId_3)); } inline int32_t get_m_taskSchedulerId_3() const { return ___m_taskSchedulerId_3; } inline int32_t* get_address_of_m_taskSchedulerId_3() { return &___m_taskSchedulerId_3; } inline void set_m_taskSchedulerId_3(int32_t value) { ___m_taskSchedulerId_3 = value; } }; struct TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields { public: // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Threading.Tasks.TaskScheduler,System.Object> System.Threading.Tasks.TaskScheduler::s_activeTaskSchedulers ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C * ___s_activeTaskSchedulers_0; // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskScheduler::s_defaultTaskScheduler TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___s_defaultTaskScheduler_1; // System.Int32 System.Threading.Tasks.TaskScheduler::s_taskSchedulerIdCounter int32_t ___s_taskSchedulerIdCounter_2; // System.EventHandler`1<System.Threading.Tasks.UnobservedTaskExceptionEventArgs> System.Threading.Tasks.TaskScheduler::_unobservedTaskException EventHandler_1_tF704D003AB4792AFE4B10D9127FF82EEC18615BC * ____unobservedTaskException_4; // System.Object System.Threading.Tasks.TaskScheduler::_unobservedTaskExceptionLockObject RuntimeObject * ____unobservedTaskExceptionLockObject_5; public: inline static int32_t get_offset_of_s_activeTaskSchedulers_0() { return static_cast<int32_t>(offsetof(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields, ___s_activeTaskSchedulers_0)); } inline ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C * get_s_activeTaskSchedulers_0() const { return ___s_activeTaskSchedulers_0; } inline ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C ** get_address_of_s_activeTaskSchedulers_0() { return &___s_activeTaskSchedulers_0; } inline void set_s_activeTaskSchedulers_0(ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C * value) { ___s_activeTaskSchedulers_0 = value; Il2CppCodeGenWriteBarrier((&___s_activeTaskSchedulers_0), value); } inline static int32_t get_offset_of_s_defaultTaskScheduler_1() { return static_cast<int32_t>(offsetof(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields, ___s_defaultTaskScheduler_1)); } inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * get_s_defaultTaskScheduler_1() const { return ___s_defaultTaskScheduler_1; } inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 ** get_address_of_s_defaultTaskScheduler_1() { return &___s_defaultTaskScheduler_1; } inline void set_s_defaultTaskScheduler_1(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * value) { ___s_defaultTaskScheduler_1 = value; Il2CppCodeGenWriteBarrier((&___s_defaultTaskScheduler_1), value); } inline static int32_t get_offset_of_s_taskSchedulerIdCounter_2() { return static_cast<int32_t>(offsetof(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields, ___s_taskSchedulerIdCounter_2)); } inline int32_t get_s_taskSchedulerIdCounter_2() const { return ___s_taskSchedulerIdCounter_2; } inline int32_t* get_address_of_s_taskSchedulerIdCounter_2() { return &___s_taskSchedulerIdCounter_2; } inline void set_s_taskSchedulerIdCounter_2(int32_t value) { ___s_taskSchedulerIdCounter_2 = value; } inline static int32_t get_offset_of__unobservedTaskException_4() { return static_cast<int32_t>(offsetof(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields, ____unobservedTaskException_4)); } inline EventHandler_1_tF704D003AB4792AFE4B10D9127FF82EEC18615BC * get__unobservedTaskException_4() const { return ____unobservedTaskException_4; } inline EventHandler_1_tF704D003AB4792AFE4B10D9127FF82EEC18615BC ** get_address_of__unobservedTaskException_4() { return &____unobservedTaskException_4; } inline void set__unobservedTaskException_4(EventHandler_1_tF704D003AB4792AFE4B10D9127FF82EEC18615BC * value) { ____unobservedTaskException_4 = value; Il2CppCodeGenWriteBarrier((&____unobservedTaskException_4), value); } inline static int32_t get_offset_of__unobservedTaskExceptionLockObject_5() { return static_cast<int32_t>(offsetof(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields, ____unobservedTaskExceptionLockObject_5)); } inline RuntimeObject * get__unobservedTaskExceptionLockObject_5() const { return ____unobservedTaskExceptionLockObject_5; } inline RuntimeObject ** get_address_of__unobservedTaskExceptionLockObject_5() { return &____unobservedTaskExceptionLockObject_5; } inline void set__unobservedTaskExceptionLockObject_5(RuntimeObject * value) { ____unobservedTaskExceptionLockObject_5 = value; Il2CppCodeGenWriteBarrier((&____unobservedTaskExceptionLockObject_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TASKSCHEDULER_T966F2798F198FA90A0DA8EFC92BAC08297793114_H #ifndef TIMESPAN_TA8069278ACE8A74D6DF7D514A9CD4432433F64C4_H #define TIMESPAN_TA8069278ACE8A74D6DF7D514A9CD4432433F64C4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.TimeSpan struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 { public: // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_3; public: inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, ____ticks_3)); } inline int64_t get__ticks_3() const { return ____ticks_3; } inline int64_t* get_address_of__ticks_3() { return &____ticks_3; } inline void set__ticks_3(int64_t value) { ____ticks_3 = value; } }; struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields { public: // System.TimeSpan System.TimeSpan::Zero TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___Zero_0; // System.TimeSpan System.TimeSpan::MaxValue TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MaxValue_1; // System.TimeSpan System.TimeSpan::MinValue TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MinValue_2; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked bool ____legacyConfigChecked_4; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode bool ____legacyMode_5; public: inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___Zero_0)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_Zero_0() const { return ___Zero_0; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_Zero_0() { return &___Zero_0; } inline void set_Zero_0(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___Zero_0 = value; } inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MaxValue_1)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MaxValue_1() const { return ___MaxValue_1; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MaxValue_1() { return &___MaxValue_1; } inline void set_MaxValue_1(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___MaxValue_1 = value; } inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MinValue_2)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MinValue_2() const { return ___MinValue_2; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MinValue_2() { return &___MinValue_2; } inline void set_MinValue_2(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___MinValue_2 = value; } inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyConfigChecked_4)); } inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; } inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; } inline void set__legacyConfigChecked_4(bool value) { ____legacyConfigChecked_4 = value; } inline static int32_t get_offset_of__legacyMode_5() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyMode_5)); } inline bool get__legacyMode_5() const { return ____legacyMode_5; } inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; } inline void set__legacyMode_5(bool value) { ____legacyMode_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TIMESPAN_TA8069278ACE8A74D6DF7D514A9CD4432433F64C4_H #ifndef TUPLE_2_TFB909554E9029649923EA250C43FBDD4F4548252_H #define TUPLE_2_TFB909554E9029649923EA250C43FBDD4F4548252_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Tuple`2<System.Diagnostics.Tracing.EventProvider_SessionInfo,System.Boolean> struct Tuple_2_tFB909554E9029649923EA250C43FBDD4F4548252 : public RuntimeObject { public: // T1 System.Tuple`2::m_Item1 SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A ___m_Item1_0; // T2 System.Tuple`2::m_Item2 bool ___m_Item2_1; public: inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_tFB909554E9029649923EA250C43FBDD4F4548252, ___m_Item1_0)); } inline SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A get_m_Item1_0() const { return ___m_Item1_0; } inline SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A * get_address_of_m_Item1_0() { return &___m_Item1_0; } inline void set_m_Item1_0(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A value) { ___m_Item1_0 = value; } inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_tFB909554E9029649923EA250C43FBDD4F4548252, ___m_Item2_1)); } inline bool get_m_Item2_1() const { return ___m_Item2_1; } inline bool* get_address_of_m_Item2_1() { return &___m_Item2_1; } inline void set_m_Item2_1(bool value) { ___m_Item2_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TUPLE_2_TFB909554E9029649923EA250C43FBDD4F4548252_H #ifndef TUPLE_2_T24BE91BA338C2678B7B104B30F6EB33015FF720E_H #define TUPLE_2_T24BE91BA338C2678B7B104B30F6EB33015FF720E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Tuple`2<System.Guid,System.Int32> struct Tuple_2_t24BE91BA338C2678B7B104B30F6EB33015FF720E : public RuntimeObject { public: // T1 System.Tuple`2::m_Item1 Guid_t ___m_Item1_0; // T2 System.Tuple`2::m_Item2 int32_t ___m_Item2_1; public: inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_t24BE91BA338C2678B7B104B30F6EB33015FF720E, ___m_Item1_0)); } inline Guid_t get_m_Item1_0() const { return ___m_Item1_0; } inline Guid_t * get_address_of_m_Item1_0() { return &___m_Item1_0; } inline void set_m_Item1_0(Guid_t value) { ___m_Item1_0 = value; } inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_t24BE91BA338C2678B7B104B30F6EB33015FF720E, ___m_Item2_1)); } inline int32_t get_m_Item2_1() const { return ___m_Item2_1; } inline int32_t* get_address_of_m_Item2_1() { return &___m_Item2_1; } inline void set_m_Item2_1(int32_t value) { ___m_Item2_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TUPLE_2_T24BE91BA338C2678B7B104B30F6EB33015FF720E_H #ifndef UINT16ENUM_TB3380938EFBC6B524E2C8143A7982637F0EA4456_H #define UINT16ENUM_TB3380938EFBC6B524E2C8143A7982637F0EA4456_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UInt16Enum struct UInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456 { public: // System.UInt16 System.UInt16Enum::value__ uint16_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456, ___value___2)); } inline uint16_t get_value___2() const { return ___value___2; } inline uint16_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint16_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINT16ENUM_TB3380938EFBC6B524E2C8143A7982637F0EA4456_H #ifndef UINT32ENUM_TE44175EB3151A633676D60A642EDA3BD5C6760DA_H #define UINT32ENUM_TE44175EB3151A633676D60A642EDA3BD5C6760DA_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UInt32Enum struct UInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA { public: // System.UInt32 System.UInt32Enum::value__ uint32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA, ___value___2)); } inline uint32_t get_value___2() const { return ___value___2; } inline uint32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINT32ENUM_TE44175EB3151A633676D60A642EDA3BD5C6760DA_H #ifndef PLAYERLOOPSYSTEM_T89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_H #define PLAYERLOOPSYSTEM_T89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Experimental.LowLevel.PlayerLoopSystem struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D { public: // System.Type UnityEngine.Experimental.LowLevel.PlayerLoopSystem::type Type_t * ___type_0; // UnityEngine.Experimental.LowLevel.PlayerLoopSystem[] UnityEngine.Experimental.LowLevel.PlayerLoopSystem::subSystemList PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2* ___subSystemList_1; // UnityEngine.Experimental.LowLevel.PlayerLoopSystem_UpdateFunction UnityEngine.Experimental.LowLevel.PlayerLoopSystem::updateDelegate UpdateFunction_tE0936D5A5B8C3367F0E6E464162E1FB1E9F304A8 * ___updateDelegate_2; // System.IntPtr UnityEngine.Experimental.LowLevel.PlayerLoopSystem::updateFunction intptr_t ___updateFunction_3; // System.IntPtr UnityEngine.Experimental.LowLevel.PlayerLoopSystem::loopConditionFunction intptr_t ___loopConditionFunction_4; public: inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, ___type_0)); } inline Type_t * get_type_0() const { return ___type_0; } inline Type_t ** get_address_of_type_0() { return &___type_0; } inline void set_type_0(Type_t * value) { ___type_0 = value; Il2CppCodeGenWriteBarrier((&___type_0), value); } inline static int32_t get_offset_of_subSystemList_1() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, ___subSystemList_1)); } inline PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2* get_subSystemList_1() const { return ___subSystemList_1; } inline PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2** get_address_of_subSystemList_1() { return &___subSystemList_1; } inline void set_subSystemList_1(PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2* value) { ___subSystemList_1 = value; Il2CppCodeGenWriteBarrier((&___subSystemList_1), value); } inline static int32_t get_offset_of_updateDelegate_2() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, ___updateDelegate_2)); } inline UpdateFunction_tE0936D5A5B8C3367F0E6E464162E1FB1E9F304A8 * get_updateDelegate_2() const { return ___updateDelegate_2; } inline UpdateFunction_tE0936D5A5B8C3367F0E6E464162E1FB1E9F304A8 ** get_address_of_updateDelegate_2() { return &___updateDelegate_2; } inline void set_updateDelegate_2(UpdateFunction_tE0936D5A5B8C3367F0E6E464162E1FB1E9F304A8 * value) { ___updateDelegate_2 = value; Il2CppCodeGenWriteBarrier((&___updateDelegate_2), value); } inline static int32_t get_offset_of_updateFunction_3() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, ___updateFunction_3)); } inline intptr_t get_updateFunction_3() const { return ___updateFunction_3; } inline intptr_t* get_address_of_updateFunction_3() { return &___updateFunction_3; } inline void set_updateFunction_3(intptr_t value) { ___updateFunction_3 = value; } inline static int32_t get_offset_of_loopConditionFunction_4() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, ___loopConditionFunction_4)); } inline intptr_t get_loopConditionFunction_4() const { return ___loopConditionFunction_4; } inline intptr_t* get_address_of_loopConditionFunction_4() { return &___loopConditionFunction_4; } inline void set_loopConditionFunction_4(intptr_t value) { ___loopConditionFunction_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.Experimental.LowLevel.PlayerLoopSystem struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_pinvoke { Type_t * ___type_0; PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_pinvoke* ___subSystemList_1; Il2CppMethodPointer ___updateDelegate_2; intptr_t ___updateFunction_3; intptr_t ___loopConditionFunction_4; }; // Native definition for COM marshalling of UnityEngine.Experimental.LowLevel.PlayerLoopSystem struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_com { Type_t * ___type_0; PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_com* ___subSystemList_1; Il2CppMethodPointer ___updateDelegate_2; intptr_t ___updateFunction_3; intptr_t ___loopConditionFunction_4; }; #endif // PLAYERLOOPSYSTEM_T89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_H #ifndef OBJECT_TAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_H #define OBJECT_TAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Object struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 : public RuntimeObject { public: // System.IntPtr UnityEngine.Object::m_CachedPtr intptr_t ___m_CachedPtr_0; public: inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0, ___m_CachedPtr_0)); } inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; } inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; } inline void set_m_CachedPtr_0(intptr_t value) { ___m_CachedPtr_0 = value; } }; struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields { public: // System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1; public: inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); } inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; } inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; } inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value) { ___OffsetOfInstanceIDInCPlusPlusObject_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.Object struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke { intptr_t ___m_CachedPtr_0; }; // Native definition for COM marshalling of UnityEngine.Object struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com { intptr_t ___m_CachedPtr_0; }; #endif // OBJECT_TAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_H #ifndef ARGUMENTNULLEXCEPTION_T581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_H #define ARGUMENTNULLEXCEPTION_T581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArgumentNullException struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTNULLEXCEPTION_T581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_H #ifndef ARGUMENTOUTOFRANGEEXCEPTION_T94D19DF918A54511AEDF4784C9A08741BAD1DEDA_H #define ARGUMENTOUTOFRANGEEXCEPTION_T94D19DF918A54511AEDF4784C9A08741BAD1DEDA_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 { public: // System.Object System.ArgumentOutOfRangeException::m_actualValue RuntimeObject * ___m_actualValue_19; public: inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA, ___m_actualValue_19)); } inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; } inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; } inline void set_m_actualValue_19(RuntimeObject * value) { ___m_actualValue_19 = value; Il2CppCodeGenWriteBarrier((&___m_actualValue_19), value); } }; struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields { public: // System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage String_t* ____rangeMessage_18; public: inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields, ____rangeMessage_18)); } inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; } inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; } inline void set__rangeMessage_18(String_t* value) { ____rangeMessage_18 = value; Il2CppCodeGenWriteBarrier((&____rangeMessage_18), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTOUTOFRANGEEXCEPTION_T94D19DF918A54511AEDF4784C9A08741BAD1DEDA_H #ifndef EVENTMETADATA_TDC146079349635A3A29F84F4655C39D480BBCF0B_H #define EVENTMETADATA_TDC146079349635A3A29F84F4655C39D480BBCF0B_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Diagnostics.Tracing.EventSource_EventMetadata struct EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B { public: // System.Diagnostics.Tracing.EventDescriptor System.Diagnostics.Tracing.EventSource_EventMetadata::Descriptor EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E ___Descriptor_0; // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.EventSource_EventMetadata::Tags int32_t ___Tags_1; // System.Boolean System.Diagnostics.Tracing.EventSource_EventMetadata::EnabledForAnyListener bool ___EnabledForAnyListener_2; // System.Boolean System.Diagnostics.Tracing.EventSource_EventMetadata::EnabledForETW bool ___EnabledForETW_3; // System.Boolean System.Diagnostics.Tracing.EventSource_EventMetadata::HasRelatedActivityID bool ___HasRelatedActivityID_4; // System.Byte System.Diagnostics.Tracing.EventSource_EventMetadata::TriggersActivityTracking uint8_t ___TriggersActivityTracking_5; // System.String System.Diagnostics.Tracing.EventSource_EventMetadata::Name String_t* ___Name_6; // System.String System.Diagnostics.Tracing.EventSource_EventMetadata::Message String_t* ___Message_7; // System.Reflection.ParameterInfo[] System.Diagnostics.Tracing.EventSource_EventMetadata::Parameters ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* ___Parameters_8; // System.Diagnostics.Tracing.TraceLoggingEventTypes System.Diagnostics.Tracing.EventSource_EventMetadata::TraceLoggingEventTypes TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * ___TraceLoggingEventTypes_9; // System.Diagnostics.Tracing.EventActivityOptions System.Diagnostics.Tracing.EventSource_EventMetadata::ActivityOptions int32_t ___ActivityOptions_10; public: inline static int32_t get_offset_of_Descriptor_0() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Descriptor_0)); } inline EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E get_Descriptor_0() const { return ___Descriptor_0; } inline EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E * get_address_of_Descriptor_0() { return &___Descriptor_0; } inline void set_Descriptor_0(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E value) { ___Descriptor_0 = value; } inline static int32_t get_offset_of_Tags_1() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Tags_1)); } inline int32_t get_Tags_1() const { return ___Tags_1; } inline int32_t* get_address_of_Tags_1() { return &___Tags_1; } inline void set_Tags_1(int32_t value) { ___Tags_1 = value; } inline static int32_t get_offset_of_EnabledForAnyListener_2() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___EnabledForAnyListener_2)); } inline bool get_EnabledForAnyListener_2() const { return ___EnabledForAnyListener_2; } inline bool* get_address_of_EnabledForAnyListener_2() { return &___EnabledForAnyListener_2; } inline void set_EnabledForAnyListener_2(bool value) { ___EnabledForAnyListener_2 = value; } inline static int32_t get_offset_of_EnabledForETW_3() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___EnabledForETW_3)); } inline bool get_EnabledForETW_3() const { return ___EnabledForETW_3; } inline bool* get_address_of_EnabledForETW_3() { return &___EnabledForETW_3; } inline void set_EnabledForETW_3(bool value) { ___EnabledForETW_3 = value; } inline static int32_t get_offset_of_HasRelatedActivityID_4() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___HasRelatedActivityID_4)); } inline bool get_HasRelatedActivityID_4() const { return ___HasRelatedActivityID_4; } inline bool* get_address_of_HasRelatedActivityID_4() { return &___HasRelatedActivityID_4; } inline void set_HasRelatedActivityID_4(bool value) { ___HasRelatedActivityID_4 = value; } inline static int32_t get_offset_of_TriggersActivityTracking_5() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___TriggersActivityTracking_5)); } inline uint8_t get_TriggersActivityTracking_5() const { return ___TriggersActivityTracking_5; } inline uint8_t* get_address_of_TriggersActivityTracking_5() { return &___TriggersActivityTracking_5; } inline void set_TriggersActivityTracking_5(uint8_t value) { ___TriggersActivityTracking_5 = value; } inline static int32_t get_offset_of_Name_6() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Name_6)); } inline String_t* get_Name_6() const { return ___Name_6; } inline String_t** get_address_of_Name_6() { return &___Name_6; } inline void set_Name_6(String_t* value) { ___Name_6 = value; Il2CppCodeGenWriteBarrier((&___Name_6), value); } inline static int32_t get_offset_of_Message_7() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Message_7)); } inline String_t* get_Message_7() const { return ___Message_7; } inline String_t** get_address_of_Message_7() { return &___Message_7; } inline void set_Message_7(String_t* value) { ___Message_7 = value; Il2CppCodeGenWriteBarrier((&___Message_7), value); } inline static int32_t get_offset_of_Parameters_8() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Parameters_8)); } inline ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* get_Parameters_8() const { return ___Parameters_8; } inline ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694** get_address_of_Parameters_8() { return &___Parameters_8; } inline void set_Parameters_8(ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* value) { ___Parameters_8 = value; Il2CppCodeGenWriteBarrier((&___Parameters_8), value); } inline static int32_t get_offset_of_TraceLoggingEventTypes_9() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___TraceLoggingEventTypes_9)); } inline TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * get_TraceLoggingEventTypes_9() const { return ___TraceLoggingEventTypes_9; } inline TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 ** get_address_of_TraceLoggingEventTypes_9() { return &___TraceLoggingEventTypes_9; } inline void set_TraceLoggingEventTypes_9(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * value) { ___TraceLoggingEventTypes_9 = value; Il2CppCodeGenWriteBarrier((&___TraceLoggingEventTypes_9), value); } inline static int32_t get_offset_of_ActivityOptions_10() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___ActivityOptions_10)); } inline int32_t get_ActivityOptions_10() const { return ___ActivityOptions_10; } inline int32_t* get_address_of_ActivityOptions_10() { return &___ActivityOptions_10; } inline void set_ActivityOptions_10(int32_t value) { ___ActivityOptions_10 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Diagnostics.Tracing.EventSource/EventMetadata struct EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_pinvoke { EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E ___Descriptor_0; int32_t ___Tags_1; int32_t ___EnabledForAnyListener_2; int32_t ___EnabledForETW_3; int32_t ___HasRelatedActivityID_4; uint8_t ___TriggersActivityTracking_5; char* ___Name_6; char* ___Message_7; ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke** ___Parameters_8; TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * ___TraceLoggingEventTypes_9; int32_t ___ActivityOptions_10; }; // Native definition for COM marshalling of System.Diagnostics.Tracing.EventSource/EventMetadata struct EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_com { EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E ___Descriptor_0; int32_t ___Tags_1; int32_t ___EnabledForAnyListener_2; int32_t ___EnabledForETW_3; int32_t ___HasRelatedActivityID_4; uint8_t ___TriggersActivityTracking_5; Il2CppChar* ___Name_6; Il2CppChar* ___Message_7; ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com** ___Parameters_8; TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * ___TraceLoggingEventTypes_9; int32_t ___ActivityOptions_10; }; #endif // EVENTMETADATA_TDC146079349635A3A29F84F4655C39D480BBCF0B_H #ifndef MULTICASTDELEGATE_T_H #define MULTICASTDELEGATE_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t { public: // System.Delegate[] System.MulticastDelegate::delegates DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11; public: inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); } inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; } inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; } inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value) { ___delegates_11 = value; Il2CppCodeGenWriteBarrier((&___delegates_11), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke { Delegate_t_marshaled_pinvoke** ___delegates_11; }; // Native definition for COM marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com { Delegate_t_marshaled_com** ___delegates_11; }; #endif // MULTICASTDELEGATE_T_H #ifndef RECOGNIZEDATTRIBUTE_T300D9F628CDAED6F665BFE996936B9CE0FA0D95B_H #define RECOGNIZEDATTRIBUTE_T300D9F628CDAED6F665BFE996936B9CE0FA0D95B_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.CookieTokenizer_RecognizedAttribute struct RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B { public: // System.String System.Net.CookieTokenizer_RecognizedAttribute::m_name String_t* ___m_name_0; // System.Net.CookieToken System.Net.CookieTokenizer_RecognizedAttribute::m_token int32_t ___m_token_1; public: inline static int32_t get_offset_of_m_name_0() { return static_cast<int32_t>(offsetof(RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B, ___m_name_0)); } inline String_t* get_m_name_0() const { return ___m_name_0; } inline String_t** get_address_of_m_name_0() { return &___m_name_0; } inline void set_m_name_0(String_t* value) { ___m_name_0 = value; Il2CppCodeGenWriteBarrier((&___m_name_0), value); } inline static int32_t get_offset_of_m_token_1() { return static_cast<int32_t>(offsetof(RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B, ___m_token_1)); } inline int32_t get_m_token_1() const { return ___m_token_1; } inline int32_t* get_address_of_m_token_1() { return &___m_token_1; } inline void set_m_token_1(int32_t value) { ___m_token_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Net.CookieTokenizer/RecognizedAttribute struct RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_marshaled_pinvoke { char* ___m_name_0; int32_t ___m_token_1; }; // Native definition for COM marshalling of System.Net.CookieTokenizer/RecognizedAttribute struct RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_marshaled_com { Il2CppChar* ___m_name_0; int32_t ___m_token_1; }; #endif // RECOGNIZEDATTRIBUTE_T300D9F628CDAED6F665BFE996936B9CE0FA0D95B_H #ifndef HEADERVARIANTINFO_TFF12EDB71F2B9508779B160689F99BA209DA9E64_H #define HEADERVARIANTINFO_TFF12EDB71F2B9508779B160689F99BA209DA9E64_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.HeaderVariantInfo struct HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 { public: // System.String System.Net.HeaderVariantInfo::m_name String_t* ___m_name_0; // System.Net.CookieVariant System.Net.HeaderVariantInfo::m_variant int32_t ___m_variant_1; public: inline static int32_t get_offset_of_m_name_0() { return static_cast<int32_t>(offsetof(HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64, ___m_name_0)); } inline String_t* get_m_name_0() const { return ___m_name_0; } inline String_t** get_address_of_m_name_0() { return &___m_name_0; } inline void set_m_name_0(String_t* value) { ___m_name_0 = value; Il2CppCodeGenWriteBarrier((&___m_name_0), value); } inline static int32_t get_offset_of_m_variant_1() { return static_cast<int32_t>(offsetof(HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64, ___m_variant_1)); } inline int32_t get_m_variant_1() const { return ___m_variant_1; } inline int32_t* get_address_of_m_variant_1() { return &___m_variant_1; } inline void set_m_variant_1(int32_t value) { ___m_variant_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Net.HeaderVariantInfo struct HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_marshaled_pinvoke { char* ___m_name_0; int32_t ___m_variant_1; }; // Native definition for COM marshalling of System.Net.HeaderVariantInfo struct HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_marshaled_com { Il2CppChar* ___m_name_0; int32_t ___m_variant_1; }; #endif // HEADERVARIANTINFO_TFF12EDB71F2B9508779B160689F99BA209DA9E64_H #ifndef MONOPROPERTYINFO_TC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F_H #define MONOPROPERTYINFO_TC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.MonoPropertyInfo struct MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F { public: // System.Type System.Reflection.MonoPropertyInfo::parent Type_t * ___parent_0; // System.Type System.Reflection.MonoPropertyInfo::declaring_type Type_t * ___declaring_type_1; // System.String System.Reflection.MonoPropertyInfo::name String_t* ___name_2; // System.Reflection.MethodInfo System.Reflection.MonoPropertyInfo::get_method MethodInfo_t * ___get_method_3; // System.Reflection.MethodInfo System.Reflection.MonoPropertyInfo::set_method MethodInfo_t * ___set_method_4; // System.Reflection.PropertyAttributes System.Reflection.MonoPropertyInfo::attrs int32_t ___attrs_5; public: inline static int32_t get_offset_of_parent_0() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___parent_0)); } inline Type_t * get_parent_0() const { return ___parent_0; } inline Type_t ** get_address_of_parent_0() { return &___parent_0; } inline void set_parent_0(Type_t * value) { ___parent_0 = value; Il2CppCodeGenWriteBarrier((&___parent_0), value); } inline static int32_t get_offset_of_declaring_type_1() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___declaring_type_1)); } inline Type_t * get_declaring_type_1() const { return ___declaring_type_1; } inline Type_t ** get_address_of_declaring_type_1() { return &___declaring_type_1; } inline void set_declaring_type_1(Type_t * value) { ___declaring_type_1 = value; Il2CppCodeGenWriteBarrier((&___declaring_type_1), value); } inline static int32_t get_offset_of_name_2() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___name_2)); } inline String_t* get_name_2() const { return ___name_2; } inline String_t** get_address_of_name_2() { return &___name_2; } inline void set_name_2(String_t* value) { ___name_2 = value; Il2CppCodeGenWriteBarrier((&___name_2), value); } inline static int32_t get_offset_of_get_method_3() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___get_method_3)); } inline MethodInfo_t * get_get_method_3() const { return ___get_method_3; } inline MethodInfo_t ** get_address_of_get_method_3() { return &___get_method_3; } inline void set_get_method_3(MethodInfo_t * value) { ___get_method_3 = value; Il2CppCodeGenWriteBarrier((&___get_method_3), value); } inline static int32_t get_offset_of_set_method_4() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___set_method_4)); } inline MethodInfo_t * get_set_method_4() const { return ___set_method_4; } inline MethodInfo_t ** get_address_of_set_method_4() { return &___set_method_4; } inline void set_set_method_4(MethodInfo_t * value) { ___set_method_4 = value; Il2CppCodeGenWriteBarrier((&___set_method_4), value); } inline static int32_t get_offset_of_attrs_5() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___attrs_5)); } inline int32_t get_attrs_5() const { return ___attrs_5; } inline int32_t* get_address_of_attrs_5() { return &___attrs_5; } inline void set_attrs_5(int32_t value) { ___attrs_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Reflection.MonoPropertyInfo struct MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F_marshaled_pinvoke { Type_t * ___parent_0; Type_t * ___declaring_type_1; char* ___name_2; MethodInfo_t * ___get_method_3; MethodInfo_t * ___set_method_4; int32_t ___attrs_5; }; // Native definition for COM marshalling of System.Reflection.MonoPropertyInfo struct MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F_marshaled_com { Type_t * ___parent_0; Type_t * ___declaring_type_1; Il2CppChar* ___name_2; MethodInfo_t * ___get_method_3; MethodInfo_t * ___set_method_4; int32_t ___attrs_5; }; #endif // MONOPROPERTYINFO_TC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F_H #ifndef X509CHAINSTATUS_T9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_H #define X509CHAINSTATUS_T9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Cryptography.X509Certificates.X509ChainStatus struct X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C { public: // System.Security.Cryptography.X509Certificates.X509ChainStatusFlags System.Security.Cryptography.X509Certificates.X509ChainStatus::status int32_t ___status_0; // System.String System.Security.Cryptography.X509Certificates.X509ChainStatus::info String_t* ___info_1; public: inline static int32_t get_offset_of_status_0() { return static_cast<int32_t>(offsetof(X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C, ___status_0)); } inline int32_t get_status_0() const { return ___status_0; } inline int32_t* get_address_of_status_0() { return &___status_0; } inline void set_status_0(int32_t value) { ___status_0 = value; } inline static int32_t get_offset_of_info_1() { return static_cast<int32_t>(offsetof(X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C, ___info_1)); } inline String_t* get_info_1() const { return ___info_1; } inline String_t** get_address_of_info_1() { return &___info_1; } inline void set_info_1(String_t* value) { ___info_1 = value; Il2CppCodeGenWriteBarrier((&___info_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Security.Cryptography.X509Certificates.X509ChainStatus struct X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_marshaled_pinvoke { int32_t ___status_0; char* ___info_1; }; // Native definition for COM marshalling of System.Security.Cryptography.X509Certificates.X509ChainStatus struct X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_marshaled_com { int32_t ___status_0; Il2CppChar* ___info_1; }; #endif // X509CHAINSTATUS_T9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_H #ifndef TASKFACTORY_1_T35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7_H #define TASKFACTORY_1_T35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.Tasks.TaskFactory`1<System.Int32> struct TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 : public RuntimeObject { public: // System.Threading.CancellationToken System.Threading.Tasks.TaskFactory`1::m_defaultCancellationToken CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___m_defaultCancellationToken_0; // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskFactory`1::m_defaultScheduler TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___m_defaultScheduler_1; // System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.TaskFactory`1::m_defaultCreationOptions int32_t ___m_defaultCreationOptions_2; // System.Threading.Tasks.TaskContinuationOptions System.Threading.Tasks.TaskFactory`1::m_defaultContinuationOptions int32_t ___m_defaultContinuationOptions_3; public: inline static int32_t get_offset_of_m_defaultCancellationToken_0() { return static_cast<int32_t>(offsetof(TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7, ___m_defaultCancellationToken_0)); } inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB get_m_defaultCancellationToken_0() const { return ___m_defaultCancellationToken_0; } inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * get_address_of_m_defaultCancellationToken_0() { return &___m_defaultCancellationToken_0; } inline void set_m_defaultCancellationToken_0(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB value) { ___m_defaultCancellationToken_0 = value; } inline static int32_t get_offset_of_m_defaultScheduler_1() { return static_cast<int32_t>(offsetof(TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7, ___m_defaultScheduler_1)); } inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * get_m_defaultScheduler_1() const { return ___m_defaultScheduler_1; } inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 ** get_address_of_m_defaultScheduler_1() { return &___m_defaultScheduler_1; } inline void set_m_defaultScheduler_1(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * value) { ___m_defaultScheduler_1 = value; Il2CppCodeGenWriteBarrier((&___m_defaultScheduler_1), value); } inline static int32_t get_offset_of_m_defaultCreationOptions_2() { return static_cast<int32_t>(offsetof(TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7, ___m_defaultCreationOptions_2)); } inline int32_t get_m_defaultCreationOptions_2() const { return ___m_defaultCreationOptions_2; } inline int32_t* get_address_of_m_defaultCreationOptions_2() { return &___m_defaultCreationOptions_2; } inline void set_m_defaultCreationOptions_2(int32_t value) { ___m_defaultCreationOptions_2 = value; } inline static int32_t get_offset_of_m_defaultContinuationOptions_3() { return static_cast<int32_t>(offsetof(TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7, ___m_defaultContinuationOptions_3)); } inline int32_t get_m_defaultContinuationOptions_3() const { return ___m_defaultContinuationOptions_3; } inline int32_t* get_address_of_m_defaultContinuationOptions_3() { return &___m_defaultContinuationOptions_3; } inline void set_m_defaultContinuationOptions_3(int32_t value) { ___m_defaultContinuationOptions_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TASKFACTORY_1_T35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7_H #ifndef TASKFACTORY_1_TA50D9207CAE2C505277DD5F03CBE64700177257C_H #define TASKFACTORY_1_TA50D9207CAE2C505277DD5F03CBE64700177257C_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.Tasks.TaskFactory`1<System.Object> struct TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C : public RuntimeObject { public: // System.Threading.CancellationToken System.Threading.Tasks.TaskFactory`1::m_defaultCancellationToken CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___m_defaultCancellationToken_0; // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskFactory`1::m_defaultScheduler TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___m_defaultScheduler_1; // System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.TaskFactory`1::m_defaultCreationOptions int32_t ___m_defaultCreationOptions_2; // System.Threading.Tasks.TaskContinuationOptions System.Threading.Tasks.TaskFactory`1::m_defaultContinuationOptions int32_t ___m_defaultContinuationOptions_3; public: inline static int32_t get_offset_of_m_defaultCancellationToken_0() { return static_cast<int32_t>(offsetof(TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C, ___m_defaultCancellationToken_0)); } inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB get_m_defaultCancellationToken_0() const { return ___m_defaultCancellationToken_0; } inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * get_address_of_m_defaultCancellationToken_0() { return &___m_defaultCancellationToken_0; } inline void set_m_defaultCancellationToken_0(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB value) { ___m_defaultCancellationToken_0 = value; } inline static int32_t get_offset_of_m_defaultScheduler_1() { return static_cast<int32_t>(offsetof(TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C, ___m_defaultScheduler_1)); } inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * get_m_defaultScheduler_1() const { return ___m_defaultScheduler_1; } inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 ** get_address_of_m_defaultScheduler_1() { return &___m_defaultScheduler_1; } inline void set_m_defaultScheduler_1(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * value) { ___m_defaultScheduler_1 = value; Il2CppCodeGenWriteBarrier((&___m_defaultScheduler_1), value); } inline static int32_t get_offset_of_m_defaultCreationOptions_2() { return static_cast<int32_t>(offsetof(TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C, ___m_defaultCreationOptions_2)); } inline int32_t get_m_defaultCreationOptions_2() const { return ___m_defaultCreationOptions_2; } inline int32_t* get_address_of_m_defaultCreationOptions_2() { return &___m_defaultCreationOptions_2; } inline void set_m_defaultCreationOptions_2(int32_t value) { ___m_defaultCreationOptions_2 = value; } inline static int32_t get_offset_of_m_defaultContinuationOptions_3() { return static_cast<int32_t>(offsetof(TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C, ___m_defaultContinuationOptions_3)); } inline int32_t get_m_defaultContinuationOptions_3() const { return ___m_defaultContinuationOptions_3; } inline int32_t* get_address_of_m_defaultContinuationOptions_3() { return &___m_defaultContinuationOptions_3; } inline void set_m_defaultContinuationOptions_3(int32_t value) { ___m_defaultContinuationOptions_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TASKFACTORY_1_TA50D9207CAE2C505277DD5F03CBE64700177257C_H #ifndef TASKFACTORY_1_T3C0D0DC20C0FC00DE4F8740B351BE642467AB03D_H #define TASKFACTORY_1_T3C0D0DC20C0FC00DE4F8740B351BE642467AB03D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult> struct TaskFactory_1_t3C0D0DC20C0FC00DE4F8740B351BE642467AB03D : public RuntimeObject { public: // System.Threading.CancellationToken System.Threading.Tasks.TaskFactory`1::m_defaultCancellationToken CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___m_defaultCancellationToken_0; // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskFactory`1::m_defaultScheduler TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___m_defaultScheduler_1; // System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.TaskFactory`1::m_defaultCreationOptions int32_t ___m_defaultCreationOptions_2; // System.Threading.Tasks.TaskContinuationOptions System.Threading.Tasks.TaskFactory`1::m_defaultContinuationOptions int32_t ___m_defaultContinuationOptions_3; public: inline static int32_t get_offset_of_m_defaultCancellationToken_0() { return static_cast<int32_t>(offsetof(TaskFactory_1_t3C0D0DC20C0FC00DE4F8740B351BE642467AB03D, ___m_defaultCancellationToken_0)); } inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB get_m_defaultCancellationToken_0() const { return ___m_defaultCancellationToken_0; } inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * get_address_of_m_defaultCancellationToken_0() { return &___m_defaultCancellationToken_0; } inline void set_m_defaultCancellationToken_0(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB value) { ___m_defaultCancellationToken_0 = value; } inline static int32_t get_offset_of_m_defaultScheduler_1() { return static_cast<int32_t>(offsetof(TaskFactory_1_t3C0D0DC20C0FC00DE4F8740B351BE642467AB03D, ___m_defaultScheduler_1)); } inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * get_m_defaultScheduler_1() const { return ___m_defaultScheduler_1; } inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 ** get_address_of_m_defaultScheduler_1() { return &___m_defaultScheduler_1; } inline void set_m_defaultScheduler_1(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * value) { ___m_defaultScheduler_1 = value; Il2CppCodeGenWriteBarrier((&___m_defaultScheduler_1), value); } inline static int32_t get_offset_of_m_defaultCreationOptions_2() { return static_cast<int32_t>(offsetof(TaskFactory_1_t3C0D0DC20C0FC00DE4F8740B351BE642467AB03D, ___m_defaultCreationOptions_2)); } inline int32_t get_m_defaultCreationOptions_2() const { return ___m_defaultCreationOptions_2; } inline int32_t* get_address_of_m_defaultCreationOptions_2() { return &___m_defaultCreationOptions_2; } inline void set_m_defaultCreationOptions_2(int32_t value) { ___m_defaultCreationOptions_2 = value; } inline static int32_t get_offset_of_m_defaultContinuationOptions_3() { return static_cast<int32_t>(offsetof(TaskFactory_1_t3C0D0DC20C0FC00DE4F8740B351BE642467AB03D, ___m_defaultContinuationOptions_3)); } inline int32_t get_m_defaultContinuationOptions_3() const { return ___m_defaultContinuationOptions_3; } inline int32_t* get_address_of_m_defaultContinuationOptions_3() { return &___m_defaultContinuationOptions_3; } inline void set_m_defaultContinuationOptions_3(int32_t value) { ___m_defaultContinuationOptions_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TASKFACTORY_1_T3C0D0DC20C0FC00DE4F8740B351BE642467AB03D_H #ifndef TASK_1_TD6131FE3A3A2F1D58DB886B6CF31A2672B75B439_H #define TASK_1_TD6131FE3A3A2F1D58DB886B6CF31A2672B75B439_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.Tasks.Task`1<System.Boolean> struct Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 : public Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 { public: // TResult System.Threading.Tasks.Task`1::m_result bool ___m_result_22; public: inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439, ___m_result_22)); } inline bool get_m_result_22() const { return ___m_result_22; } inline bool* get_address_of_m_result_22() { return &___m_result_22; } inline void set_m_result_22(bool value) { ___m_result_22 = value; } }; struct Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439_StaticFields { public: // System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17 * ___s_Factory_23; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast Func_2_t185FBBAFD46813778C35A8D4A5FA3AFB4FC0E14C * ___TaskWhenAnyCast_24; public: inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439_StaticFields, ___s_Factory_23)); } inline TaskFactory_1_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17 * get_s_Factory_23() const { return ___s_Factory_23; } inline TaskFactory_1_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17 ** get_address_of_s_Factory_23() { return &___s_Factory_23; } inline void set_s_Factory_23(TaskFactory_1_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17 * value) { ___s_Factory_23 = value; Il2CppCodeGenWriteBarrier((&___s_Factory_23), value); } inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439_StaticFields, ___TaskWhenAnyCast_24)); } inline Func_2_t185FBBAFD46813778C35A8D4A5FA3AFB4FC0E14C * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; } inline Func_2_t185FBBAFD46813778C35A8D4A5FA3AFB4FC0E14C ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; } inline void set_TaskWhenAnyCast_24(Func_2_t185FBBAFD46813778C35A8D4A5FA3AFB4FC0E14C * value) { ___TaskWhenAnyCast_24 = value; Il2CppCodeGenWriteBarrier((&___TaskWhenAnyCast_24), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TASK_1_TD6131FE3A3A2F1D58DB886B6CF31A2672B75B439_H #ifndef TASK_1_T640F0CBB720BB9CD14B90B7B81624471A9F56D87_H #define TASK_1_T640F0CBB720BB9CD14B90B7B81624471A9F56D87_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.Tasks.Task`1<System.Int32> struct Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 : public Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 { public: // TResult System.Threading.Tasks.Task`1::m_result int32_t ___m_result_22; public: inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87, ___m_result_22)); } inline int32_t get_m_result_22() const { return ___m_result_22; } inline int32_t* get_address_of_m_result_22() { return &___m_result_22; } inline void set_m_result_22(int32_t value) { ___m_result_22 = value; } }; struct Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87_StaticFields { public: // System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 * ___s_Factory_23; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 * ___TaskWhenAnyCast_24; public: inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87_StaticFields, ___s_Factory_23)); } inline TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 * get_s_Factory_23() const { return ___s_Factory_23; } inline TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 ** get_address_of_s_Factory_23() { return &___s_Factory_23; } inline void set_s_Factory_23(TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 * value) { ___s_Factory_23 = value; Il2CppCodeGenWriteBarrier((&___s_Factory_23), value); } inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87_StaticFields, ___TaskWhenAnyCast_24)); } inline Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; } inline Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; } inline void set_TaskWhenAnyCast_24(Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 * value) { ___TaskWhenAnyCast_24 = value; Il2CppCodeGenWriteBarrier((&___TaskWhenAnyCast_24), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TASK_1_T640F0CBB720BB9CD14B90B7B81624471A9F56D87_H #ifndef TASK_1_T8906695C9865566AA79419735634FF27AC74506E_H #define TASK_1_T8906695C9865566AA79419735634FF27AC74506E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>> struct Task_1_t8906695C9865566AA79419735634FF27AC74506E : public Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 { public: // TResult System.Threading.Tasks.Task`1::m_result Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ___m_result_22; public: inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t8906695C9865566AA79419735634FF27AC74506E, ___m_result_22)); } inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB get_m_result_22() const { return ___m_result_22; } inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * get_address_of_m_result_22() { return &___m_result_22; } inline void set_m_result_22(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB value) { ___m_result_22 = value; } }; struct Task_1_t8906695C9865566AA79419735634FF27AC74506E_StaticFields { public: // System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_tBDEE73CC26733B668E00E1788D332FB0D9CC209E * ___s_Factory_23; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast Func_2_t701CADF8EBD45CB33B018417B83025C3FF39ABA3 * ___TaskWhenAnyCast_24; public: inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t8906695C9865566AA79419735634FF27AC74506E_StaticFields, ___s_Factory_23)); } inline TaskFactory_1_tBDEE73CC26733B668E00E1788D332FB0D9CC209E * get_s_Factory_23() const { return ___s_Factory_23; } inline TaskFactory_1_tBDEE73CC26733B668E00E1788D332FB0D9CC209E ** get_address_of_s_Factory_23() { return &___s_Factory_23; } inline void set_s_Factory_23(TaskFactory_1_tBDEE73CC26733B668E00E1788D332FB0D9CC209E * value) { ___s_Factory_23 = value; Il2CppCodeGenWriteBarrier((&___s_Factory_23), value); } inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t8906695C9865566AA79419735634FF27AC74506E_StaticFields, ___TaskWhenAnyCast_24)); } inline Func_2_t701CADF8EBD45CB33B018417B83025C3FF39ABA3 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; } inline Func_2_t701CADF8EBD45CB33B018417B83025C3FF39ABA3 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; } inline void set_TaskWhenAnyCast_24(Func_2_t701CADF8EBD45CB33B018417B83025C3FF39ABA3 * value) { ___TaskWhenAnyCast_24 = value; Il2CppCodeGenWriteBarrier((&___TaskWhenAnyCast_24), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TASK_1_T8906695C9865566AA79419735634FF27AC74506E_H #ifndef TASK_1_TA56001ED5270173CA1432EDFCD84EABB1024BC09_H #define TASK_1_TA56001ED5270173CA1432EDFCD84EABB1024BC09_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.Tasks.Task`1<System.Object> struct Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 : public Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 { public: // TResult System.Threading.Tasks.Task`1::m_result RuntimeObject * ___m_result_22; public: inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09, ___m_result_22)); } inline RuntimeObject * get_m_result_22() const { return ___m_result_22; } inline RuntimeObject ** get_address_of_m_result_22() { return &___m_result_22; } inline void set_m_result_22(RuntimeObject * value) { ___m_result_22 = value; Il2CppCodeGenWriteBarrier((&___m_result_22), value); } }; struct Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09_StaticFields { public: // System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C * ___s_Factory_23; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast Func_2_tDAE4310E42C13AE378CDF0371BD31D6BF4E61EBD * ___TaskWhenAnyCast_24; public: inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09_StaticFields, ___s_Factory_23)); } inline TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C * get_s_Factory_23() const { return ___s_Factory_23; } inline TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C ** get_address_of_s_Factory_23() { return &___s_Factory_23; } inline void set_s_Factory_23(TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C * value) { ___s_Factory_23 = value; Il2CppCodeGenWriteBarrier((&___s_Factory_23), value); } inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09_StaticFields, ___TaskWhenAnyCast_24)); } inline Func_2_tDAE4310E42C13AE378CDF0371BD31D6BF4E61EBD * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; } inline Func_2_tDAE4310E42C13AE378CDF0371BD31D6BF4E61EBD ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; } inline void set_TaskWhenAnyCast_24(Func_2_tDAE4310E42C13AE378CDF0371BD31D6BF4E61EBD * value) { ___TaskWhenAnyCast_24 = value; Il2CppCodeGenWriteBarrier((&___TaskWhenAnyCast_24), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TASK_1_TA56001ED5270173CA1432EDFCD84EABB1024BC09_H #ifndef TASK_1_T1359D75350E9D976BFA28AD96E417450DE277673_H #define TASK_1_T1359D75350E9D976BFA28AD96E417450DE277673_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult> struct Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 : public Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 { public: // TResult System.Threading.Tasks.Task`1::m_result VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 ___m_result_22; public: inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t1359D75350E9D976BFA28AD96E417450DE277673, ___m_result_22)); } inline VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 get_m_result_22() const { return ___m_result_22; } inline VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 * get_address_of_m_result_22() { return &___m_result_22; } inline void set_m_result_22(VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 value) { ___m_result_22 = value; } }; struct Task_1_t1359D75350E9D976BFA28AD96E417450DE277673_StaticFields { public: // System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_t3C0D0DC20C0FC00DE4F8740B351BE642467AB03D * ___s_Factory_23; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast Func_2_t9FE43757FE22F96D0EA4E7945B6D146812F2671F * ___TaskWhenAnyCast_24; public: inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t1359D75350E9D976BFA28AD96E417450DE277673_StaticFields, ___s_Factory_23)); } inline TaskFactory_1_t3C0D0DC20C0FC00DE4F8740B351BE642467AB03D * get_s_Factory_23() const { return ___s_Factory_23; } inline TaskFactory_1_t3C0D0DC20C0FC00DE4F8740B351BE642467AB03D ** get_address_of_s_Factory_23() { return &___s_Factory_23; } inline void set_s_Factory_23(TaskFactory_1_t3C0D0DC20C0FC00DE4F8740B351BE642467AB03D * value) { ___s_Factory_23 = value; Il2CppCodeGenWriteBarrier((&___s_Factory_23), value); } inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t1359D75350E9D976BFA28AD96E417450DE277673_StaticFields, ___TaskWhenAnyCast_24)); } inline Func_2_t9FE43757FE22F96D0EA4E7945B6D146812F2671F * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; } inline Func_2_t9FE43757FE22F96D0EA4E7945B6D146812F2671F ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; } inline void set_TaskWhenAnyCast_24(Func_2_t9FE43757FE22F96D0EA4E7945B6D146812F2671F * value) { ___TaskWhenAnyCast_24 = value; Il2CppCodeGenWriteBarrier((&___TaskWhenAnyCast_24), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TASK_1_T1359D75350E9D976BFA28AD96E417450DE277673_H #ifndef PLAYABLEBINDING_T4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_H #define PLAYABLEBINDING_T4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Playables.PlayableBinding struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 { public: // System.String UnityEngine.Playables.PlayableBinding::m_StreamName String_t* ___m_StreamName_0; // UnityEngine.Object UnityEngine.Playables.PlayableBinding::m_SourceObject Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___m_SourceObject_1; // System.Type UnityEngine.Playables.PlayableBinding::m_SourceBindingType Type_t * ___m_SourceBindingType_2; // UnityEngine.Playables.PlayableBinding_CreateOutputMethod UnityEngine.Playables.PlayableBinding::m_CreateOutputMethod CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 * ___m_CreateOutputMethod_3; public: inline static int32_t get_offset_of_m_StreamName_0() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_StreamName_0)); } inline String_t* get_m_StreamName_0() const { return ___m_StreamName_0; } inline String_t** get_address_of_m_StreamName_0() { return &___m_StreamName_0; } inline void set_m_StreamName_0(String_t* value) { ___m_StreamName_0 = value; Il2CppCodeGenWriteBarrier((&___m_StreamName_0), value); } inline static int32_t get_offset_of_m_SourceObject_1() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_SourceObject_1)); } inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * get_m_SourceObject_1() const { return ___m_SourceObject_1; } inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 ** get_address_of_m_SourceObject_1() { return &___m_SourceObject_1; } inline void set_m_SourceObject_1(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * value) { ___m_SourceObject_1 = value; Il2CppCodeGenWriteBarrier((&___m_SourceObject_1), value); } inline static int32_t get_offset_of_m_SourceBindingType_2() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_SourceBindingType_2)); } inline Type_t * get_m_SourceBindingType_2() const { return ___m_SourceBindingType_2; } inline Type_t ** get_address_of_m_SourceBindingType_2() { return &___m_SourceBindingType_2; } inline void set_m_SourceBindingType_2(Type_t * value) { ___m_SourceBindingType_2 = value; Il2CppCodeGenWriteBarrier((&___m_SourceBindingType_2), value); } inline static int32_t get_offset_of_m_CreateOutputMethod_3() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_CreateOutputMethod_3)); } inline CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 * get_m_CreateOutputMethod_3() const { return ___m_CreateOutputMethod_3; } inline CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 ** get_address_of_m_CreateOutputMethod_3() { return &___m_CreateOutputMethod_3; } inline void set_m_CreateOutputMethod_3(CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 * value) { ___m_CreateOutputMethod_3 = value; Il2CppCodeGenWriteBarrier((&___m_CreateOutputMethod_3), value); } }; struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_StaticFields { public: // UnityEngine.Playables.PlayableBinding[] UnityEngine.Playables.PlayableBinding::None PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* ___None_4; // System.Double UnityEngine.Playables.PlayableBinding::DefaultDuration double ___DefaultDuration_5; public: inline static int32_t get_offset_of_None_4() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_StaticFields, ___None_4)); } inline PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* get_None_4() const { return ___None_4; } inline PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB** get_address_of_None_4() { return &___None_4; } inline void set_None_4(PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* value) { ___None_4 = value; Il2CppCodeGenWriteBarrier((&___None_4), value); } inline static int32_t get_offset_of_DefaultDuration_5() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_StaticFields, ___DefaultDuration_5)); } inline double get_DefaultDuration_5() const { return ___DefaultDuration_5; } inline double* get_address_of_DefaultDuration_5() { return &___DefaultDuration_5; } inline void set_DefaultDuration_5(double value) { ___DefaultDuration_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.Playables.PlayableBinding struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_marshaled_pinvoke { char* ___m_StreamName_0; Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke ___m_SourceObject_1; Type_t * ___m_SourceBindingType_2; Il2CppMethodPointer ___m_CreateOutputMethod_3; }; // Native definition for COM marshalling of UnityEngine.Playables.PlayableBinding struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_marshaled_com { Il2CppChar* ___m_StreamName_0; Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com* ___m_SourceObject_1; Type_t * ___m_SourceBindingType_2; Il2CppMethodPointer ___m_CreateOutputMethod_3; }; #endif // PLAYABLEBINDING_T4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_H #ifndef ACTION_1_T551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_H #define ACTION_1_T551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Action`1<System.Object> struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ACTION_1_T551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_H #ifndef ASYNCCALLBACK_T3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4_H #define ASYNCCALLBACK_T3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.AsyncCallback struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ASYNCCALLBACK_T3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4_H #ifndef FUNC_1_T30631A63BE46FE93700939B764202D360449FE30_H #define FUNC_1_T30631A63BE46FE93700939B764202D360449FE30_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Func`1<System.Int32> struct Func_1_t30631A63BE46FE93700939B764202D360449FE30 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FUNC_1_T30631A63BE46FE93700939B764202D360449FE30_H #ifndef FUNC_1_T59BE545225A69AFD7B2056D169D0083051F6D386_H #define FUNC_1_T59BE545225A69AFD7B2056D169D0083051F6D386_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Func`1<System.Object> struct Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FUNC_1_T59BE545225A69AFD7B2056D169D0083051F6D386_H #ifndef FUNC_3_T08CF63B59BC63E8AE004A536A6B44732E99669C3_H #define FUNC_3_T08CF63B59BC63E8AE004A536A6B44732E99669C3_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Func`3<System.Object,System.IAsyncResult,System.Int32> struct Func_3_t08CF63B59BC63E8AE004A536A6B44732E99669C3 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FUNC_3_T08CF63B59BC63E8AE004A536A6B44732E99669C3_H #ifndef FUNC_3_T938004A9DB4ADA4E7536BD2B144046530B9D9F70_H #define FUNC_3_T938004A9DB4ADA4E7536BD2B144046530B9D9F70_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Func`3<System.Object,System.IAsyncResult,System.Object> struct Func_3_t938004A9DB4ADA4E7536BD2B144046530B9D9F70 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FUNC_3_T938004A9DB4ADA4E7536BD2B144046530B9D9F70_H #ifndef FUNC_3_T10D75DD9A8F9128B5F94D47B701C2C772F970E5C_H #define FUNC_3_T10D75DD9A8F9128B5F94D47B701C2C772F970E5C_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Func`3<System.Object,System.IAsyncResult,System.Threading.Tasks.VoidTaskResult> struct Func_3_t10D75DD9A8F9128B5F94D47B701C2C772F970E5C : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FUNC_3_T10D75DD9A8F9128B5F94D47B701C2C772F970E5C_H #ifndef FUNC_5_TCD28B0DD63B5001780DFA4DA7262B464635EE2DE_H #define FUNC_5_TCD28B0DD63B5001780DFA4DA7262B464635EE2DE_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Func`5<System.Object,System.IO.Stream_ReadWriteParameters,System.AsyncCallback,System.Object,System.IAsyncResult> struct Func_5_tCD28B0DD63B5001780DFA4DA7262B464635EE2DE : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FUNC_5_TCD28B0DD63B5001780DFA4DA7262B464635EE2DE_H #ifndef FUNC_5_T96F7CF869D24BEEA26823BBA05B1916FD408399E_H #define FUNC_5_T96F7CF869D24BEEA26823BBA05B1916FD408399E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Func`5<System.Object,System.Object,System.AsyncCallback,System.Object,System.IAsyncResult> struct Func_5_t96F7CF869D24BEEA26823BBA05B1916FD408399E : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FUNC_5_T96F7CF869D24BEEA26823BBA05B1916FD408399E_H #ifndef MONOPROPERTY_T_H #define MONOPROPERTY_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.MonoProperty struct MonoProperty_t : public RuntimePropertyInfo_t241956A29299F26A2F8B8829685E9D1F0345C5E4 { public: // System.IntPtr System.Reflection.MonoProperty::klass intptr_t ___klass_0; // System.IntPtr System.Reflection.MonoProperty::prop intptr_t ___prop_1; // System.Reflection.MonoPropertyInfo System.Reflection.MonoProperty::info MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F ___info_2; // System.Reflection.PInfo System.Reflection.MonoProperty::cached int32_t ___cached_3; // System.Reflection.MonoProperty_GetterAdapter System.Reflection.MonoProperty::cached_getter GetterAdapter_t74BFEC5259F2A8BF1BD37E9AA4232A397F4BC711 * ___cached_getter_4; public: inline static int32_t get_offset_of_klass_0() { return static_cast<int32_t>(offsetof(MonoProperty_t, ___klass_0)); } inline intptr_t get_klass_0() const { return ___klass_0; } inline intptr_t* get_address_of_klass_0() { return &___klass_0; } inline void set_klass_0(intptr_t value) { ___klass_0 = value; } inline static int32_t get_offset_of_prop_1() { return static_cast<int32_t>(offsetof(MonoProperty_t, ___prop_1)); } inline intptr_t get_prop_1() const { return ___prop_1; } inline intptr_t* get_address_of_prop_1() { return &___prop_1; } inline void set_prop_1(intptr_t value) { ___prop_1 = value; } inline static int32_t get_offset_of_info_2() { return static_cast<int32_t>(offsetof(MonoProperty_t, ___info_2)); } inline MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F get_info_2() const { return ___info_2; } inline MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F * get_address_of_info_2() { return &___info_2; } inline void set_info_2(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F value) { ___info_2 = value; } inline static int32_t get_offset_of_cached_3() { return static_cast<int32_t>(offsetof(MonoProperty_t, ___cached_3)); } inline int32_t get_cached_3() const { return ___cached_3; } inline int32_t* get_address_of_cached_3() { return &___cached_3; } inline void set_cached_3(int32_t value) { ___cached_3 = value; } inline static int32_t get_offset_of_cached_getter_4() { return static_cast<int32_t>(offsetof(MonoProperty_t, ___cached_getter_4)); } inline GetterAdapter_t74BFEC5259F2A8BF1BD37E9AA4232A397F4BC711 * get_cached_getter_4() const { return ___cached_getter_4; } inline GetterAdapter_t74BFEC5259F2A8BF1BD37E9AA4232A397F4BC711 ** get_address_of_cached_getter_4() { return &___cached_getter_4; } inline void set_cached_getter_4(GetterAdapter_t74BFEC5259F2A8BF1BD37E9AA4232A397F4BC711 * value) { ___cached_getter_4 = value; Il2CppCodeGenWriteBarrier((&___cached_getter_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MONOPROPERTY_T_H #ifndef GETTER_2_T98CD32D513A740F69F79D73DBD59A1BC8A33711C_H #define GETTER_2_T98CD32D513A740F69F79D73DBD59A1BC8A33711C_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.MonoProperty_Getter`2<System.Object,System.Object> struct Getter_2_t98CD32D513A740F69F79D73DBD59A1BC8A33711C : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // GETTER_2_T98CD32D513A740F69F79D73DBD59A1BC8A33711C_H #ifndef STATICGETTER_1_T1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1_H #define STATICGETTER_1_T1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.MonoProperty_StaticGetter`1<System.Object> struct StaticGetter_1_t1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STATICGETTER_1_T1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1_H #ifndef FROMASYNCTRIMPROMISE_1_T02F2AB515E92AE3A7C56C8AE76930166ACA741BE_H #define FROMASYNCTRIMPROMISE_1_T02F2AB515E92AE3A7C56C8AE76930166ACA741BE_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.Tasks.TaskFactory`1_FromAsyncTrimPromise`1<System.Int32,System.Object> struct FromAsyncTrimPromise_1_t02F2AB515E92AE3A7C56C8AE76930166ACA741BE : public Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 { public: // TInstance System.Threading.Tasks.TaskFactory`1_FromAsyncTrimPromise`1::m_thisRef RuntimeObject * ___m_thisRef_26; // System.Func`3<TInstance,System.IAsyncResult,TResult> System.Threading.Tasks.TaskFactory`1_FromAsyncTrimPromise`1::m_endMethod Func_3_t08CF63B59BC63E8AE004A536A6B44732E99669C3 * ___m_endMethod_27; public: inline static int32_t get_offset_of_m_thisRef_26() { return static_cast<int32_t>(offsetof(FromAsyncTrimPromise_1_t02F2AB515E92AE3A7C56C8AE76930166ACA741BE, ___m_thisRef_26)); } inline RuntimeObject * get_m_thisRef_26() const { return ___m_thisRef_26; } inline RuntimeObject ** get_address_of_m_thisRef_26() { return &___m_thisRef_26; } inline void set_m_thisRef_26(RuntimeObject * value) { ___m_thisRef_26 = value; Il2CppCodeGenWriteBarrier((&___m_thisRef_26), value); } inline static int32_t get_offset_of_m_endMethod_27() { return static_cast<int32_t>(offsetof(FromAsyncTrimPromise_1_t02F2AB515E92AE3A7C56C8AE76930166ACA741BE, ___m_endMethod_27)); } inline Func_3_t08CF63B59BC63E8AE004A536A6B44732E99669C3 * get_m_endMethod_27() const { return ___m_endMethod_27; } inline Func_3_t08CF63B59BC63E8AE004A536A6B44732E99669C3 ** get_address_of_m_endMethod_27() { return &___m_endMethod_27; } inline void set_m_endMethod_27(Func_3_t08CF63B59BC63E8AE004A536A6B44732E99669C3 * value) { ___m_endMethod_27 = value; Il2CppCodeGenWriteBarrier((&___m_endMethod_27), value); } }; struct FromAsyncTrimPromise_1_t02F2AB515E92AE3A7C56C8AE76930166ACA741BE_StaticFields { public: // System.AsyncCallback System.Threading.Tasks.TaskFactory`1_FromAsyncTrimPromise`1::s_completeFromAsyncResult AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___s_completeFromAsyncResult_25; public: inline static int32_t get_offset_of_s_completeFromAsyncResult_25() { return static_cast<int32_t>(offsetof(FromAsyncTrimPromise_1_t02F2AB515E92AE3A7C56C8AE76930166ACA741BE_StaticFields, ___s_completeFromAsyncResult_25)); } inline AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * get_s_completeFromAsyncResult_25() const { return ___s_completeFromAsyncResult_25; } inline AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 ** get_address_of_s_completeFromAsyncResult_25() { return &___s_completeFromAsyncResult_25; } inline void set_s_completeFromAsyncResult_25(AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * value) { ___s_completeFromAsyncResult_25 = value; Il2CppCodeGenWriteBarrier((&___s_completeFromAsyncResult_25), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FROMASYNCTRIMPROMISE_1_T02F2AB515E92AE3A7C56C8AE76930166ACA741BE_H #ifndef FROMASYNCTRIMPROMISE_1_T6A0DAAFFA9593953A9C8FD963327BF792F643432_H #define FROMASYNCTRIMPROMISE_1_T6A0DAAFFA9593953A9C8FD963327BF792F643432_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.Tasks.TaskFactory`1_FromAsyncTrimPromise`1<System.Object,System.Object> struct FromAsyncTrimPromise_1_t6A0DAAFFA9593953A9C8FD963327BF792F643432 : public Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 { public: // TInstance System.Threading.Tasks.TaskFactory`1_FromAsyncTrimPromise`1::m_thisRef RuntimeObject * ___m_thisRef_26; // System.Func`3<TInstance,System.IAsyncResult,TResult> System.Threading.Tasks.TaskFactory`1_FromAsyncTrimPromise`1::m_endMethod Func_3_t938004A9DB4ADA4E7536BD2B144046530B9D9F70 * ___m_endMethod_27; public: inline static int32_t get_offset_of_m_thisRef_26() { return static_cast<int32_t>(offsetof(FromAsyncTrimPromise_1_t6A0DAAFFA9593953A9C8FD963327BF792F643432, ___m_thisRef_26)); } inline RuntimeObject * get_m_thisRef_26() const { return ___m_thisRef_26; } inline RuntimeObject ** get_address_of_m_thisRef_26() { return &___m_thisRef_26; } inline void set_m_thisRef_26(RuntimeObject * value) { ___m_thisRef_26 = value; Il2CppCodeGenWriteBarrier((&___m_thisRef_26), value); } inline static int32_t get_offset_of_m_endMethod_27() { return static_cast<int32_t>(offsetof(FromAsyncTrimPromise_1_t6A0DAAFFA9593953A9C8FD963327BF792F643432, ___m_endMethod_27)); } inline Func_3_t938004A9DB4ADA4E7536BD2B144046530B9D9F70 * get_m_endMethod_27() const { return ___m_endMethod_27; } inline Func_3_t938004A9DB4ADA4E7536BD2B144046530B9D9F70 ** get_address_of_m_endMethod_27() { return &___m_endMethod_27; } inline void set_m_endMethod_27(Func_3_t938004A9DB4ADA4E7536BD2B144046530B9D9F70 * value) { ___m_endMethod_27 = value; Il2CppCodeGenWriteBarrier((&___m_endMethod_27), value); } }; struct FromAsyncTrimPromise_1_t6A0DAAFFA9593953A9C8FD963327BF792F643432_StaticFields { public: // System.AsyncCallback System.Threading.Tasks.TaskFactory`1_FromAsyncTrimPromise`1::s_completeFromAsyncResult AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___s_completeFromAsyncResult_25; public: inline static int32_t get_offset_of_s_completeFromAsyncResult_25() { return static_cast<int32_t>(offsetof(FromAsyncTrimPromise_1_t6A0DAAFFA9593953A9C8FD963327BF792F643432_StaticFields, ___s_completeFromAsyncResult_25)); } inline AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * get_s_completeFromAsyncResult_25() const { return ___s_completeFromAsyncResult_25; } inline AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 ** get_address_of_s_completeFromAsyncResult_25() { return &___s_completeFromAsyncResult_25; } inline void set_s_completeFromAsyncResult_25(AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * value) { ___s_completeFromAsyncResult_25 = value; Il2CppCodeGenWriteBarrier((&___s_completeFromAsyncResult_25), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FROMASYNCTRIMPROMISE_1_T6A0DAAFFA9593953A9C8FD963327BF792F643432_H #ifndef FROMASYNCTRIMPROMISE_1_TDDEB30E1591F0B8294D587632679758BA0917F25_H #define FROMASYNCTRIMPROMISE_1_TDDEB30E1591F0B8294D587632679758BA0917F25_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.Tasks.TaskFactory`1_FromAsyncTrimPromise`1<System.Threading.Tasks.VoidTaskResult,System.Object> struct FromAsyncTrimPromise_1_tDDEB30E1591F0B8294D587632679758BA0917F25 : public Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 { public: // TInstance System.Threading.Tasks.TaskFactory`1_FromAsyncTrimPromise`1::m_thisRef RuntimeObject * ___m_thisRef_26; // System.Func`3<TInstance,System.IAsyncResult,TResult> System.Threading.Tasks.TaskFactory`1_FromAsyncTrimPromise`1::m_endMethod Func_3_t10D75DD9A8F9128B5F94D47B701C2C772F970E5C * ___m_endMethod_27; public: inline static int32_t get_offset_of_m_thisRef_26() { return static_cast<int32_t>(offsetof(FromAsyncTrimPromise_1_tDDEB30E1591F0B8294D587632679758BA0917F25, ___m_thisRef_26)); } inline RuntimeObject * get_m_thisRef_26() const { return ___m_thisRef_26; } inline RuntimeObject ** get_address_of_m_thisRef_26() { return &___m_thisRef_26; } inline void set_m_thisRef_26(RuntimeObject * value) { ___m_thisRef_26 = value; Il2CppCodeGenWriteBarrier((&___m_thisRef_26), value); } inline static int32_t get_offset_of_m_endMethod_27() { return static_cast<int32_t>(offsetof(FromAsyncTrimPromise_1_tDDEB30E1591F0B8294D587632679758BA0917F25, ___m_endMethod_27)); } inline Func_3_t10D75DD9A8F9128B5F94D47B701C2C772F970E5C * get_m_endMethod_27() const { return ___m_endMethod_27; } inline Func_3_t10D75DD9A8F9128B5F94D47B701C2C772F970E5C ** get_address_of_m_endMethod_27() { return &___m_endMethod_27; } inline void set_m_endMethod_27(Func_3_t10D75DD9A8F9128B5F94D47B701C2C772F970E5C * value) { ___m_endMethod_27 = value; Il2CppCodeGenWriteBarrier((&___m_endMethod_27), value); } }; struct FromAsyncTrimPromise_1_tDDEB30E1591F0B8294D587632679758BA0917F25_StaticFields { public: // System.AsyncCallback System.Threading.Tasks.TaskFactory`1_FromAsyncTrimPromise`1::s_completeFromAsyncResult AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___s_completeFromAsyncResult_25; public: inline static int32_t get_offset_of_s_completeFromAsyncResult_25() { return static_cast<int32_t>(offsetof(FromAsyncTrimPromise_1_tDDEB30E1591F0B8294D587632679758BA0917F25_StaticFields, ___s_completeFromAsyncResult_25)); } inline AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * get_s_completeFromAsyncResult_25() const { return ___s_completeFromAsyncResult_25; } inline AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 ** get_address_of_s_completeFromAsyncResult_25() { return &___s_completeFromAsyncResult_25; } inline void set_s_completeFromAsyncResult_25(AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * value) { ___s_completeFromAsyncResult_25 = value; Il2CppCodeGenWriteBarrier((&___s_completeFromAsyncResult_25), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FROMASYNCTRIMPROMISE_1_TDDEB30E1591F0B8294D587632679758BA0917F25_H // System.DateTimeOffset[] struct DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25 : public RuntimeArray { public: ALIGN_FIELD (8) DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 m_Items[1]; public: inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 value) { m_Items[index] = value; } }; // System.Decimal[] struct DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F : public RuntimeArray { public: ALIGN_FIELD (8) Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 m_Items[1]; public: inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { m_Items[index] = value; } }; // System.Diagnostics.Tracing.EventProvider_SessionInfo[] struct SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906 : public RuntimeArray { public: ALIGN_FIELD (8) SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A m_Items[1]; public: inline SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A value) { m_Items[index] = value; } }; // System.Double[] struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D : public RuntimeArray { public: ALIGN_FIELD (8) double m_Items[1]; public: inline double GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline double* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, double value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline double GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline double* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, double value) { m_Items[index] = value; } }; // System.Int16[] struct Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28 : public RuntimeArray { public: ALIGN_FIELD (8) int16_t m_Items[1]; public: inline int16_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int16_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int16_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int16_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int16_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int16_t value) { m_Items[index] = value; } }; // System.Int32[] struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83 : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: inline int32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value) { m_Items[index] = value; } }; // System.Int32Enum[] struct Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: inline int32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value) { m_Items[index] = value; } }; // System.Int64[] struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F : public RuntimeArray { public: ALIGN_FIELD (8) int64_t m_Items[1]; public: inline int64_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int64_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int64_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int64_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int64_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int64_t value) { m_Items[index] = value; } }; // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: inline RuntimeObject * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.SByte[] struct SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889 : public RuntimeArray { public: ALIGN_FIELD (8) int8_t m_Items[1]; public: inline int8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int8_t value) { m_Items[index] = value; } }; // System.Single[] struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5 : public RuntimeArray { public: ALIGN_FIELD (8) float m_Items[1]; public: inline float GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline float* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, float value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline float GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline float* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, float value) { m_Items[index] = value; } }; // System.TimeSpan[] struct TimeSpanU5BU5D_tCF326C038BD306190A013AE3C9F9B1A525054DD5 : public RuntimeArray { public: ALIGN_FIELD (8) TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 m_Items[1]; public: inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { m_Items[index] = value; } }; // System.UInt16[] struct UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E : public RuntimeArray { public: ALIGN_FIELD (8) uint16_t m_Items[1]; public: inline uint16_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint16_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint16_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint16_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint16_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint16_t value) { m_Items[index] = value; } }; // System.UInt32[] struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB : public RuntimeArray { public: ALIGN_FIELD (8) uint32_t m_Items[1]; public: inline uint32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint32_t value) { m_Items[index] = value; } }; // System.UInt64[] struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4 : public RuntimeArray { public: ALIGN_FIELD (8) uint64_t m_Items[1]; public: inline uint64_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint64_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint64_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint64_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint64_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint64_t value) { m_Items[index] = value; } }; // UnityEngine.BeforeRenderHelper_OrderBlock[] struct OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101 : public RuntimeArray { public: ALIGN_FIELD (8) OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 m_Items[1]; public: inline OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 value) { m_Items[index] = value; } }; // UnityEngine.UnitySynchronizationContext_WorkRequest[] struct WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0 : public RuntimeArray { public: ALIGN_FIELD (8) WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 m_Items[1]; public: inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 value) { m_Items[index] = value; } }; // System.Boolean[] struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040 : public RuntimeArray { public: ALIGN_FIELD (8) bool m_Items[1]; public: inline bool GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline bool* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, bool value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline bool GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, bool value) { m_Items[index] = value; } }; // System.Byte[] struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821 : public RuntimeArray { public: ALIGN_FIELD (8) uint8_t m_Items[1]; public: inline uint8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>[] struct KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B m_Items[1]; public: inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B value) { m_Items[index] = value; } }; // System.DateTime[] struct DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1 : public RuntimeArray { public: ALIGN_FIELD (8) DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 m_Items[1]; public: inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { m_Items[index] = value; } }; // MS.Internal.Xml.Cache.XPathNode[] struct XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B : public RuntimeArray { public: ALIGN_FIELD (8) XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 m_Items[1]; public: inline XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 value) { m_Items[index] = value; } }; // MS.Internal.Xml.Cache.XPathNodeRef[] struct XPathNodeRefU5BU5D_t42E3ACCBD8D6FA1DD321905EB2253ABA6173B1E1 : public RuntimeArray { public: ALIGN_FIELD (8) XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 m_Items[1]; public: inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 value) { m_Items[index] = value; } }; // Mono.Globalization.Unicode.CodePointIndexer_TableRange[] struct TableRangeU5BU5D_t6948DE52FB348848EC96FB928C2FCFEFB250C23A : public RuntimeArray { public: ALIGN_FIELD (8) TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 m_Items[1]; public: inline TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 value) { m_Items[index] = value; } }; // PInokeDemo_Boss[] struct BossU5BU5D_t732B317799F37FFEDE8CA5EE7CEFD0D447C6A6AE : public RuntimeArray { public: ALIGN_FIELD (8) Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 m_Items[1]; public: inline Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 value) { m_Items[index] = value; } }; // System.ArraySegment`1<System.Byte>[] struct ArraySegment_1U5BU5D_tD48E38276F3154239297C16C6458D97ECFC6D066 : public RuntimeArray { public: ALIGN_FIELD (8) ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA m_Items[1]; public: inline ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA value) { m_Items[index] = value; } }; // System.ByteEnum[] struct ByteEnumU5BU5D_t0C6DF506BED920F322C686A6E35C9D192F3C5D76 : public RuntimeArray { public: ALIGN_FIELD (8) uint8_t m_Items[1]; public: inline uint8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value) { m_Items[index] = value; } }; // System.Char[] struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2 : public RuntimeArray { public: ALIGN_FIELD (8) Il2CppChar m_Items[1]; public: inline Il2CppChar GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Il2CppChar value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value) { m_Items[index] = value; } }; // System.Collections.DictionaryEntry[] struct DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56 : public RuntimeArray { public: ALIGN_FIELD (8) DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 m_Items[1]; public: inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2_Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>[] struct EntryU5BU5D_t09B55F85AF27D0D332699AA879A1B10B193B5586 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tC1463A26CB3583633B8650196083947E916945AD m_Items[1]; public: inline Entry_tC1463A26CB3583633B8650196083947E916945AD GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tC1463A26CB3583633B8650196083947E916945AD * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tC1463A26CB3583633B8650196083947E916945AD value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_tC1463A26CB3583633B8650196083947E916945AD GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tC1463A26CB3583633B8650196083947E916945AD * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tC1463A26CB3583633B8650196083947E916945AD value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2_Entry<System.Guid,System.Object>[] struct EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B m_Items[1]; public: inline Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>[] struct EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D m_Items[1]; public: inline Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Boolean>[] struct EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 m_Items[1]; public: inline Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>[] struct EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE m_Items[1]; public: inline Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>[] struct EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA m_Items[1]; public: inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>[] struct EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D m_Items[1]; public: inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>[] struct EntryU5BU5D_tCE3D39EBBB127037F170BD1FBADFA7D55D88E594 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 m_Items[1]; public: inline Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>[] struct KeyValuePair_2U5BU5D_t09978BE60DE0548A94B8E535D3171CCAC7DCA928 : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 m_Items[1]; public: inline KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>[] struct KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7 : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 m_Items[1]; public: inline KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>[] struct KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 m_Items[1]; public: inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>[] struct KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE m_Items[1]; public: inline KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>[] struct KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 m_Items[1]; public: inline KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>[] struct KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E m_Items[1]; public: inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[] struct KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262 : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE m_Items[1]; public: inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>[] struct KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 m_Items[1]; public: inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>[] struct KeyValuePair_2U5BU5D_t90BD5627DE1270CB7D2384CFC863BF0E5C371EDD : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 m_Items[1]; public: inline KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 value) { m_Items[index] = value; } }; // System.Collections.Hashtable_bucket[] struct bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A : public RuntimeArray { public: ALIGN_FIELD (8) bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 m_Items[1]; public: inline bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 value) { m_Items[index] = value; } }; // System.Diagnostics.Tracing.EventSource_EventMetadata[] struct EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94 : public RuntimeArray { public: ALIGN_FIELD (8) EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B m_Items[1]; public: inline EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B value) { m_Items[index] = value; } }; // System.Globalization.InternalCodePageDataItem[] struct InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834 : public RuntimeArray { public: ALIGN_FIELD (8) InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 m_Items[1]; public: inline InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 value) { m_Items[index] = value; } }; // System.Globalization.InternalEncodingDataItem[] struct InternalEncodingDataItemU5BU5D_t0579A8C6FC0871F0230E51290511BF0C9C706C68 : public RuntimeArray { public: ALIGN_FIELD (8) InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 m_Items[1]; public: inline InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 value) { m_Items[index] = value; } }; // System.Guid[] struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF : public RuntimeArray { public: ALIGN_FIELD (8) Guid_t m_Items[1]; public: inline Guid_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Guid_t * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Guid_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Guid_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Guid_t * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Guid_t value) { m_Items[index] = value; } }; // System.IntPtr[] struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD : public RuntimeArray { public: ALIGN_FIELD (8) intptr_t m_Items[1]; public: inline intptr_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline intptr_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, intptr_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline intptr_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline intptr_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, intptr_t value) { m_Items[index] = value; } }; // System.Net.CookieTokenizer_RecognizedAttribute[] struct RecognizedAttributeU5BU5D_t7397ED532D4301EECF9C9119CFF1F732D3F75A55 : public RuntimeArray { public: ALIGN_FIELD (8) RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B m_Items[1]; public: inline RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B value) { m_Items[index] = value; } }; // System.Net.HeaderVariantInfo[] struct HeaderVariantInfoU5BU5D_t0E01B2AC4A3A836E5AC79344A8F0CBD547CC8012 : public RuntimeArray { public: ALIGN_FIELD (8) HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 m_Items[1]; public: inline HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 value) { m_Items[index] = value; } }; // System.Net.Sockets.Socket_WSABUF[] struct WSABUFU5BU5D_t4B8BBCF555CCE5338B6EA731D4126DA68ECE9C80 : public RuntimeArray { public: ALIGN_FIELD (8) WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE m_Items[1]; public: inline WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE value) { m_Items[index] = value; } }; // System.ParameterizedStrings_FormatParam[] struct FormatParamU5BU5D_t2F95A3C5AF726E75A42BC28843BAD579B62199B5 : public RuntimeArray { public: ALIGN_FIELD (8) FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 m_Items[1]; public: inline FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 value) { m_Items[index] = value; } }; // System.Reflection.CustomAttributeNamedArgument[] struct CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828 : public RuntimeArray { public: ALIGN_FIELD (8) CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E m_Items[1]; public: inline CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E value) { m_Items[index] = value; } }; // System.Reflection.CustomAttributeTypedArgument[] struct CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05 : public RuntimeArray { public: ALIGN_FIELD (8) CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 m_Items[1]; public: inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 value) { m_Items[index] = value; } }; // System.Reflection.ParameterModifier[] struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA : public RuntimeArray { public: ALIGN_FIELD (8) ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E m_Items[1]; public: inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E value) { m_Items[index] = value; } }; // System.Resources.ResourceLocator[] struct ResourceLocatorU5BU5D_t59B7EB7C559188316AF65FCF8AF05BFD7EF9ADCC : public RuntimeArray { public: ALIGN_FIELD (8) ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C m_Items[1]; public: inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value) { m_Items[index] = value; } }; // System.Runtime.CompilerServices.Ephemeron[] struct EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10 : public RuntimeArray { public: ALIGN_FIELD (8) Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA m_Items[1]; public: inline Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA value) { m_Items[index] = value; } }; // System.Runtime.InteropServices.GCHandle[] struct GCHandleU5BU5D_tA6EC6308F1B33AD5233BD26DE6FB431B6CEF1DB7 : public RuntimeArray { public: ALIGN_FIELD (8) GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 m_Items[1]; public: inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 value) { m_Items[index] = value; } }; // System.Security.Cryptography.X509Certificates.X509ChainStatus[] struct X509ChainStatusU5BU5D_tA8CCC33D50C4BCF6F657063CD1DACCC3B9A7BFBB : public RuntimeArray { public: ALIGN_FIELD (8) X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C m_Items[1]; public: inline X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C value) { m_Items[index] = value; } }; // System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping[] struct LowerCaseMappingU5BU5D_t70011E1042888E1D071920A9171989A479C0618D : public RuntimeArray { public: ALIGN_FIELD (8) LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B m_Items[1]; public: inline LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B value) { m_Items[index] = value; } }; // System.Threading.CancellationTokenRegistration[] struct CancellationTokenRegistrationU5BU5D_t4B36771A6344CFC66696BB16419C664E286DAF1B : public RuntimeArray { public: ALIGN_FIELD (8) CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 m_Items[1]; public: inline CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 value) { m_Items[index] = value; } }; // System.UInt16Enum[] struct UInt16EnumU5BU5D_t59CC59ED969571152B93967388F196CADE982BAF : public RuntimeArray { public: ALIGN_FIELD (8) uint16_t m_Items[1]; public: inline uint16_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint16_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint16_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint16_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint16_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint16_t value) { m_Items[index] = value; } }; // System.UInt32Enum[] struct UInt32EnumU5BU5D_t2778403AF5991B56F3099A77451B997447A7780C : public RuntimeArray { public: ALIGN_FIELD (8) uint32_t m_Items[1]; public: inline uint32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint32_t value) { m_Items[index] = value; } }; // System.UIntPtr[] struct UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E : public RuntimeArray { public: ALIGN_FIELD (8) uintptr_t m_Items[1]; public: inline uintptr_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uintptr_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uintptr_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uintptr_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uintptr_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uintptr_t value) { m_Items[index] = value; } }; // System.Xml.Schema.SequenceNode_SequenceConstructPosContext[] struct SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0 : public RuntimeArray { public: ALIGN_FIELD (8) SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 m_Items[1]; public: inline SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 value) { m_Items[index] = value; } }; // System.Xml.XmlNamespaceManager_NamespaceDeclaration[] struct NamespaceDeclarationU5BU5D_t92995CBBEC52166860E77B72B8EEFF00E4D64E84 : public RuntimeArray { public: ALIGN_FIELD (8) NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A m_Items[1]; public: inline NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A value) { m_Items[index] = value; } }; // System.Xml.XmlTextReaderImpl_ParsingState[] struct ParsingStateU5BU5D_t7A5096046F9BF1BA70E9696B2A2479272FC65739 : public RuntimeArray { public: ALIGN_FIELD (8) ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 m_Items[1]; public: inline ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 value) { m_Items[index] = value; } }; // UnityEngine.Experimental.LowLevel.PlayerLoopSystem[] struct PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2 : public RuntimeArray { public: ALIGN_FIELD (8) PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D m_Items[1]; public: inline PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D value) { m_Items[index] = value; } }; // UnityEngine.Keyframe[] struct KeyframeU5BU5D_tF4DC3E9BD9E6DB77FFF7BDC0B1545B5D6071513D : public RuntimeArray { public: ALIGN_FIELD (8) Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 m_Items[1]; public: inline Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 value) { m_Items[index] = value; } }; // UnityEngine.Playables.PlayableBinding[] struct PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB : public RuntimeArray { public: ALIGN_FIELD (8) PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 m_Items[1]; public: inline PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 value) { m_Items[index] = value; } }; // UnityEngine.SendMouseEvents_HitInfo[] struct HitInfoU5BU5D_tA1A7DB3D520CAACEC1B3C3EC4071E4DA2EACA745 : public RuntimeArray { public: ALIGN_FIELD (8) HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 m_Items[1]; public: inline HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 value) { m_Items[index] = value; } }; // UnityEngine.SocialPlatforms.GameCenter.GcAchievementData[] struct GcAchievementDataU5BU5D_tC79014E784EC39581F7829D8AE60004B54433153 : public RuntimeArray { public: ALIGN_FIELD (8) GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 m_Items[1]; public: inline GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 value) { m_Items[index] = value; } }; // UnityEngine.SocialPlatforms.GameCenter.GcScoreData[] struct GcScoreDataU5BU5D_tC3FADFA824E9BFBAA13EAE94D6A9BD04A19AE940 : public RuntimeArray { public: ALIGN_FIELD (8) GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A m_Items[1]; public: inline GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A value) { m_Items[index] = value; } }; // System.Void System.ArgumentNullException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method); // System.Int32 System.Array::get_Rank() extern "C" IL2CPP_METHOD_ATTR int32_t Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1 (RuntimeArray * __this, const RuntimeMethod* method); // System.String Locale::GetText(System.String) extern "C" IL2CPP_METHOD_ATTR String_t* Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324 (String_t* ___msg0, const RuntimeMethod* method); // System.Void System.RankException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * __this, String_t* ___message0, const RuntimeMethod* method); // System.Int32 System.Array::get_Length() extern "C" IL2CPP_METHOD_ATTR int32_t Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D (RuntimeArray * __this, const RuntimeMethod* method); // System.Int32 System.Array::GetLowerBound(System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method); // System.Boolean System.Boolean::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Boolean_Equals_mB97E1CE732F7A08D8F45C86B8994FB67222C99E7 (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Byte::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Byte_Equals_m5B72B20F4E6E41D9D288EE528274D5DA6AAADCDF (uint8_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Char::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Char_Equals_mE3AD655E668CAE1B4AD8444B746166FD80C662D8 (Il2CppChar* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.DateTime::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool DateTime_Equals_m85006DF1EA5B2B7EAB4BEFA643B5683B0BDBE4AB (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Boolean System.DateTimeOffset::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool DateTimeOffset_Equals_mD93E06EF35F3E3A0BD2AC363D3EDA347CE4E6858 (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Decimal::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Decimal_Equals_mCEF3806BE2E8CA730568C45CF90E129159DC476A (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Boolean System.Double::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Double_Equals_m25A10C1D70E2906C2DAA5F3863B6AB76AFB13F33 (double* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Guid::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Guid_Equals_m60BF5DC8994BB5189C703CD997EC6A2E0C491F8A (Guid_t * __this, RuntimeObject * ___o0, const RuntimeMethod* method); // System.Boolean System.Int16::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Int16_Equals_mB1FFCF510D2A74D15014660A0AFA1B5B0AE2F024 (int16_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Int32::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Int32_Equals_mBE9097707986D98549AC11E94FB986DA1AB3E16C (int32_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Int64::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Int64_Equals_m217A2D6F9F752A690AA8BF039B1DF2091A7FE78C (int64_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.IntPtr::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool IntPtr_Equals_m4C1C372B05E29E20EC5E9B48EF8AAEA3E49B874D (intptr_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Reflection.CustomAttributeNamedArgument::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool CustomAttributeNamedArgument_Equals_mDA255630CA97FF60745C1B0440ACF44B3E94998B (CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Reflection.CustomAttributeTypedArgument::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool CustomAttributeTypedArgument_Equals_mCBC1A766B39E8BE8BAE5B85F0C9B18797366CC88 (CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Runtime.InteropServices.GCHandle::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool GCHandle_Equals_m9F3AFCE77E2A8601073DA0D0C158BF618369A842 (GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * __this, RuntimeObject * ___o0, const RuntimeMethod* method); // System.Boolean System.SByte::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool SByte_Equals_m4B25C5FC7403EB2480D9F70F9B48C5619C6DD144 (int8_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Single::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Single_Equals_mF4C7AEA9D216B3C9CB735BF327D07BF50F101A16 (float* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Threading.CancellationTokenRegistration::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool CancellationTokenRegistration_Equals_m10EEB16AA8BC130896117762D369A9F4BA60D212 (CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.TimeSpan::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool TimeSpan_Equals_m7CD315197413EB59DDBCF923AD564E0021E91A70 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Boolean System.UInt16::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool UInt16_Equals_mBCD7FC4A11D0CEEFF4BC6559137A9E397D7017B8 (uint16_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.UInt32::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool UInt32_Equals_m44E796DB35F5DB4E5D4C98EC6AB5053242A320C3 (uint32_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.UInt64::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool UInt64_Equals_mE61D24B984F0B91A2FC1094402F1532A0F82C232 (uint64_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.UIntPtr::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool UIntPtr_Equals_m8C135DEDA578597066AB67C1DD5A5A34E4F860EB (uintptr_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.IntPtr System.Runtime.InteropServices.Marshal::UnsafeAddrOfPinnedArrayElement(System.Array,System.Int32) extern "C" IL2CPP_METHOD_ATTR intptr_t Marshal_UnsafeAddrOfPinnedArrayElement_mBB1B704E89128E20115E18FEAADCD5D8A02FFAE1 (RuntimeArray * ___arr0, int32_t ___index1, const RuntimeMethod* method); // System.Boolean System.Threading.CancellationToken::get_IsCancellationRequested() extern "C" IL2CPP_METHOD_ATTR bool CancellationToken_get_IsCancellationRequested_mCF3521778F20F7048B7121885794B9562324447D (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * __this, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Threading.CancellationToken System.OperationCanceledException::get_CancellationToken() extern "C" IL2CPP_METHOD_ATTR CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB OperationCanceledException_get_CancellationToken_mE0079552C3600A6DB8324958CA288DB19AF05B66 (OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * __this, const RuntimeMethod* method); // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskScheduler::get_Default() extern "C" IL2CPP_METHOD_ATTR TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * TaskScheduler_get_Default_mC3794A546EB0F4C6D0A11E72F8939EC364733C87 (const RuntimeMethod* method); // System.Void System.NotSupportedException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Int32 System.Array::IndexOf<System.DateTimeOffset>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m74325B7B58F69E259492B67D164BB4479AD17FA9_gshared (DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25* ___array0, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m74325B7B58F69E259492B67D164BB4479AD17FA9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m74325B7B58F69E259492B67D164BB4479AD17FA9_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___startIndex2; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___startIndex2; DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_0028; } } IL_0018: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m74325B7B58F69E259492B67D164BB4479AD17FA9_RuntimeMethod_var); } IL_0028: { int32_t L_6 = ___count3; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0034; } } { int32_t L_7 = ___count3; DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25* L_8 = ___array0; NullCheck(L_8); int32_t L_9 = ___startIndex2; if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), (int32_t)L_9))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m74325B7B58F69E259492B67D164BB4479AD17FA9_RuntimeMethod_var); } IL_0044: { DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25* L_11 = ___array0; DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_12 = ___value1; int32_t L_13 = ___startIndex2; int32_t L_14 = ___count3; int32_t L_15 = (( int32_t (*) (DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25*, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25*)L_11, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_15; } } // System.Int32 System.Array::IndexOf<System.Decimal>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mB9568EE42C087C0A2EB926E532223177FCC29EBF_gshared (DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* ___array0, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mB9568EE42C087C0A2EB926E532223177FCC29EBF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mB9568EE42C087C0A2EB926E532223177FCC29EBF_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___startIndex2; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___startIndex2; DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_0028; } } IL_0018: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mB9568EE42C087C0A2EB926E532223177FCC29EBF_RuntimeMethod_var); } IL_0028: { int32_t L_6 = ___count3; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0034; } } { int32_t L_7 = ___count3; DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* L_8 = ___array0; NullCheck(L_8); int32_t L_9 = ___startIndex2; if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), (int32_t)L_9))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mB9568EE42C087C0A2EB926E532223177FCC29EBF_RuntimeMethod_var); } IL_0044: { DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* L_11 = ___array0; Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_12 = ___value1; int32_t L_13 = ___startIndex2; int32_t L_14 = ___count3; int32_t L_15 = (( int32_t (*) (DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F*, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F*)L_11, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_15; } } // System.Int32 System.Array::IndexOf<System.Diagnostics.Tracing.EventProvider_SessionInfo>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA91455A82DA1E75779F77E30564F3425C79601A4_gshared (SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* ___array0, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA91455A82DA1E75779F77E30564F3425C79601A4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA91455A82DA1E75779F77E30564F3425C79601A4_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___startIndex2; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___startIndex2; SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_0028; } } IL_0018: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA91455A82DA1E75779F77E30564F3425C79601A4_RuntimeMethod_var); } IL_0028: { int32_t L_6 = ___count3; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0034; } } { int32_t L_7 = ___count3; SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_8 = ___array0; NullCheck(L_8); int32_t L_9 = ___startIndex2; if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), (int32_t)L_9))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA91455A82DA1E75779F77E30564F3425C79601A4_RuntimeMethod_var); } IL_0044: { SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_11 = ___array0; SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_12 = ___value1; int32_t L_13 = ___startIndex2; int32_t L_14 = ___count3; int32_t L_15 = (( int32_t (*) (SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906*, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906*)L_11, (SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_15; } } // System.Int32 System.Array::IndexOf<System.Double>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mFA65D95FD236AC9B9D57D5424D6EB52C0AEDBEB2_gshared (DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* ___array0, double ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mFA65D95FD236AC9B9D57D5424D6EB52C0AEDBEB2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mFA65D95FD236AC9B9D57D5424D6EB52C0AEDBEB2_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___startIndex2; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___startIndex2; DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_0028; } } IL_0018: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mFA65D95FD236AC9B9D57D5424D6EB52C0AEDBEB2_RuntimeMethod_var); } IL_0028: { int32_t L_6 = ___count3; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0034; } } { int32_t L_7 = ___count3; DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_8 = ___array0; NullCheck(L_8); int32_t L_9 = ___startIndex2; if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), (int32_t)L_9))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mFA65D95FD236AC9B9D57D5424D6EB52C0AEDBEB2_RuntimeMethod_var); } IL_0044: { DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_11 = ___array0; double L_12 = ___value1; int32_t L_13 = ___startIndex2; int32_t L_14 = ___count3; int32_t L_15 = (( int32_t (*) (DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D*, double, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D*)L_11, (double)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_15; } } // System.Int32 System.Array::IndexOf<System.Int16>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m29593BCE85881B0C6B8456564445363B6149E0E9_gshared (Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* ___array0, int16_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m29593BCE85881B0C6B8456564445363B6149E0E9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m29593BCE85881B0C6B8456564445363B6149E0E9_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___startIndex2; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___startIndex2; Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_0028; } } IL_0018: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m29593BCE85881B0C6B8456564445363B6149E0E9_RuntimeMethod_var); } IL_0028: { int32_t L_6 = ___count3; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0034; } } { int32_t L_7 = ___count3; Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* L_8 = ___array0; NullCheck(L_8); int32_t L_9 = ___startIndex2; if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), (int32_t)L_9))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m29593BCE85881B0C6B8456564445363B6149E0E9_RuntimeMethod_var); } IL_0044: { Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* L_11 = ___array0; int16_t L_12 = ___value1; int32_t L_13 = ___startIndex2; int32_t L_14 = ___count3; int32_t L_15 = (( int32_t (*) (Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28*, int16_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28*)L_11, (int16_t)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_15; } } // System.Int32 System.Array::IndexOf<System.Int32>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mB69F9A4858DC906B554451585199281F230F4EE5_gshared (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___array0, int32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mB69F9A4858DC906B554451585199281F230F4EE5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mB69F9A4858DC906B554451585199281F230F4EE5_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___startIndex2; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___startIndex2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_0028; } } IL_0018: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mB69F9A4858DC906B554451585199281F230F4EE5_RuntimeMethod_var); } IL_0028: { int32_t L_6 = ___count3; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0034; } } { int32_t L_7 = ___count3; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = ___array0; NullCheck(L_8); int32_t L_9 = ___startIndex2; if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), (int32_t)L_9))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mB69F9A4858DC906B554451585199281F230F4EE5_RuntimeMethod_var); } IL_0044: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_11 = ___array0; int32_t L_12 = ___value1; int32_t L_13 = ___startIndex2; int32_t L_14 = ___count3; int32_t L_15 = (( int32_t (*) (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_11, (int32_t)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_15; } } // System.Int32 System.Array::IndexOf<System.Int32Enum>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m58E90042E7B17B74CB00683164B0B720BA91A8B5_gshared (Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* ___array0, int32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m58E90042E7B17B74CB00683164B0B720BA91A8B5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m58E90042E7B17B74CB00683164B0B720BA91A8B5_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___startIndex2; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___startIndex2; Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_0028; } } IL_0018: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m58E90042E7B17B74CB00683164B0B720BA91A8B5_RuntimeMethod_var); } IL_0028: { int32_t L_6 = ___count3; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0034; } } { int32_t L_7 = ___count3; Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_8 = ___array0; NullCheck(L_8); int32_t L_9 = ___startIndex2; if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), (int32_t)L_9))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m58E90042E7B17B74CB00683164B0B720BA91A8B5_RuntimeMethod_var); } IL_0044: { Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_11 = ___array0; int32_t L_12 = ___value1; int32_t L_13 = ___startIndex2; int32_t L_14 = ___count3; int32_t L_15 = (( int32_t (*) (Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A*)L_11, (int32_t)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_15; } } // System.Int32 System.Array::IndexOf<System.Int64>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mB542BE30A1D20C2D322F64113EE448F3BDD7F73D_gshared (Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* ___array0, int64_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mB542BE30A1D20C2D322F64113EE448F3BDD7F73D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mB542BE30A1D20C2D322F64113EE448F3BDD7F73D_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___startIndex2; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___startIndex2; Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_0028; } } IL_0018: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mB542BE30A1D20C2D322F64113EE448F3BDD7F73D_RuntimeMethod_var); } IL_0028: { int32_t L_6 = ___count3; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0034; } } { int32_t L_7 = ___count3; Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_8 = ___array0; NullCheck(L_8); int32_t L_9 = ___startIndex2; if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), (int32_t)L_9))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mB542BE30A1D20C2D322F64113EE448F3BDD7F73D_RuntimeMethod_var); } IL_0044: { Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_11 = ___array0; int64_t L_12 = ___value1; int32_t L_13 = ___startIndex2; int32_t L_14 = ___count3; int32_t L_15 = (( int32_t (*) (Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F*, int64_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F*)L_11, (int64_t)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_15; } } // System.Int32 System.Array::IndexOf<System.Object>(T[],T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisRuntimeObject_m40554FA47BA74C45E33C913F60628DD0E83DB370_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisRuntimeObject_m40554FA47BA74C45E33C913F60628DD0E83DB370_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisRuntimeObject_m40554FA47BA74C45E33C913F60628DD0E83DB370_RuntimeMethod_var); } IL_000e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___array0; RuntimeObject * L_3 = ___value1; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___array0; NullCheck(L_4); int32_t L_5 = (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (RuntimeObject *)L_3, (int32_t)0, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length)))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_5; } } // System.Int32 System.Array::IndexOf<System.Object>(T[],T,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisRuntimeObject_m13B203F08875E17F92EC3ABF6A3C7B76351E79A8_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisRuntimeObject_m13B203F08875E17F92EC3ABF6A3C7B76351E79A8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisRuntimeObject_m13B203F08875E17F92EC3ABF6A3C7B76351E79A8_RuntimeMethod_var); } IL_000e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___array0; RuntimeObject * L_3 = ___value1; int32_t L_4 = ___startIndex2; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___array0; NullCheck(L_5); int32_t L_6 = ___startIndex2; int32_t L_7 = (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (RuntimeObject *)L_3, (int32_t)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length)))), (int32_t)L_6)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_7; } } // System.Int32 System.Array::IndexOf<System.Object>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisRuntimeObject_mAA3A139827BE306C01514EBF4F21041FC2285EAF_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisRuntimeObject_mAA3A139827BE306C01514EBF4F21041FC2285EAF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisRuntimeObject_mAA3A139827BE306C01514EBF4F21041FC2285EAF_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___startIndex2; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___startIndex2; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_0028; } } IL_0018: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisRuntimeObject_mAA3A139827BE306C01514EBF4F21041FC2285EAF_RuntimeMethod_var); } IL_0028: { int32_t L_6 = ___count3; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0034; } } { int32_t L_7 = ___count3; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = ___array0; NullCheck(L_8); int32_t L_9 = ___startIndex2; if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), (int32_t)L_9))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisRuntimeObject_mAA3A139827BE306C01514EBF4F21041FC2285EAF_RuntimeMethod_var); } IL_0044: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = ___array0; RuntimeObject * L_12 = ___value1; int32_t L_13 = ___startIndex2; int32_t L_14 = ___count3; int32_t L_15 = (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_11, (RuntimeObject *)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_15; } } // System.Int32 System.Array::IndexOf<System.SByte>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m8D9D50FFC33517634177128B53BA51CB7A724D3B_gshared (SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* ___array0, int8_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m8D9D50FFC33517634177128B53BA51CB7A724D3B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m8D9D50FFC33517634177128B53BA51CB7A724D3B_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___startIndex2; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___startIndex2; SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_0028; } } IL_0018: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m8D9D50FFC33517634177128B53BA51CB7A724D3B_RuntimeMethod_var); } IL_0028: { int32_t L_6 = ___count3; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0034; } } { int32_t L_7 = ___count3; SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* L_8 = ___array0; NullCheck(L_8); int32_t L_9 = ___startIndex2; if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), (int32_t)L_9))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m8D9D50FFC33517634177128B53BA51CB7A724D3B_RuntimeMethod_var); } IL_0044: { SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* L_11 = ___array0; int8_t L_12 = ___value1; int32_t L_13 = ___startIndex2; int32_t L_14 = ___count3; int32_t L_15 = (( int32_t (*) (SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889*, int8_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889*)L_11, (int8_t)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_15; } } // System.Int32 System.Array::IndexOf<System.Single>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m39D77B3B21AD0C5FF6C74D4903289CAFDB17E6B5_gshared (SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___array0, float ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m39D77B3B21AD0C5FF6C74D4903289CAFDB17E6B5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m39D77B3B21AD0C5FF6C74D4903289CAFDB17E6B5_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___startIndex2; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___startIndex2; SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_0028; } } IL_0018: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m39D77B3B21AD0C5FF6C74D4903289CAFDB17E6B5_RuntimeMethod_var); } IL_0028: { int32_t L_6 = ___count3; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0034; } } { int32_t L_7 = ___count3; SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_8 = ___array0; NullCheck(L_8); int32_t L_9 = ___startIndex2; if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), (int32_t)L_9))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m39D77B3B21AD0C5FF6C74D4903289CAFDB17E6B5_RuntimeMethod_var); } IL_0044: { SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_11 = ___array0; float L_12 = ___value1; int32_t L_13 = ___startIndex2; int32_t L_14 = ___count3; int32_t L_15 = (( int32_t (*) (SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5*, float, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5*)L_11, (float)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_15; } } // System.Int32 System.Array::IndexOf<System.TimeSpan>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mD906003D8041F33D4E100B2551C3F1EF40BE03D3_gshared (TimeSpanU5BU5D_tCF326C038BD306190A013AE3C9F9B1A525054DD5* ___array0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mD906003D8041F33D4E100B2551C3F1EF40BE03D3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TimeSpanU5BU5D_tCF326C038BD306190A013AE3C9F9B1A525054DD5* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mD906003D8041F33D4E100B2551C3F1EF40BE03D3_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___startIndex2; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___startIndex2; TimeSpanU5BU5D_tCF326C038BD306190A013AE3C9F9B1A525054DD5* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_0028; } } IL_0018: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mD906003D8041F33D4E100B2551C3F1EF40BE03D3_RuntimeMethod_var); } IL_0028: { int32_t L_6 = ___count3; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0034; } } { int32_t L_7 = ___count3; TimeSpanU5BU5D_tCF326C038BD306190A013AE3C9F9B1A525054DD5* L_8 = ___array0; NullCheck(L_8); int32_t L_9 = ___startIndex2; if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), (int32_t)L_9))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mD906003D8041F33D4E100B2551C3F1EF40BE03D3_RuntimeMethod_var); } IL_0044: { TimeSpanU5BU5D_tCF326C038BD306190A013AE3C9F9B1A525054DD5* L_11 = ___array0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_12 = ___value1; int32_t L_13 = ___startIndex2; int32_t L_14 = ___count3; int32_t L_15 = (( int32_t (*) (TimeSpanU5BU5D_tCF326C038BD306190A013AE3C9F9B1A525054DD5*, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((TimeSpanU5BU5D_tCF326C038BD306190A013AE3C9F9B1A525054DD5*)L_11, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_15; } } // System.Int32 System.Array::IndexOf<System.UInt16>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mC73BEE02B23B512E58EC685F1CA1E94B0F853BE5_gshared (UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* ___array0, uint16_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mC73BEE02B23B512E58EC685F1CA1E94B0F853BE5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mC73BEE02B23B512E58EC685F1CA1E94B0F853BE5_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___startIndex2; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___startIndex2; UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_0028; } } IL_0018: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mC73BEE02B23B512E58EC685F1CA1E94B0F853BE5_RuntimeMethod_var); } IL_0028: { int32_t L_6 = ___count3; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0034; } } { int32_t L_7 = ___count3; UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_8 = ___array0; NullCheck(L_8); int32_t L_9 = ___startIndex2; if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), (int32_t)L_9))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mC73BEE02B23B512E58EC685F1CA1E94B0F853BE5_RuntimeMethod_var); } IL_0044: { UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_11 = ___array0; uint16_t L_12 = ___value1; int32_t L_13 = ___startIndex2; int32_t L_14 = ___count3; int32_t L_15 = (( int32_t (*) (UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*, uint16_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*)L_11, (uint16_t)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_15; } } // System.Int32 System.Array::IndexOf<System.UInt32>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m48022B8A70A2C45E247884ED52141FCA9695A1B0_gshared (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___array0, uint32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m48022B8A70A2C45E247884ED52141FCA9695A1B0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m48022B8A70A2C45E247884ED52141FCA9695A1B0_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___startIndex2; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___startIndex2; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_0028; } } IL_0018: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m48022B8A70A2C45E247884ED52141FCA9695A1B0_RuntimeMethod_var); } IL_0028: { int32_t L_6 = ___count3; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0034; } } { int32_t L_7 = ___count3; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_8 = ___array0; NullCheck(L_8); int32_t L_9 = ___startIndex2; if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), (int32_t)L_9))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m48022B8A70A2C45E247884ED52141FCA9695A1B0_RuntimeMethod_var); } IL_0044: { UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_11 = ___array0; uint32_t L_12 = ___value1; int32_t L_13 = ___startIndex2; int32_t L_14 = ___count3; int32_t L_15 = (( int32_t (*) (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*, uint32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)L_11, (uint32_t)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_15; } } // System.Int32 System.Array::IndexOf<System.UInt64>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m295FA2C782117B117C7C15EA1A40B5C89BCA5A95_gshared (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___array0, uint64_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m295FA2C782117B117C7C15EA1A40B5C89BCA5A95_MetadataUsageId); s_Il2CppMethodInitialized = true; } { UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m295FA2C782117B117C7C15EA1A40B5C89BCA5A95_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___startIndex2; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___startIndex2; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_0028; } } IL_0018: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m295FA2C782117B117C7C15EA1A40B5C89BCA5A95_RuntimeMethod_var); } IL_0028: { int32_t L_6 = ___count3; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0034; } } { int32_t L_7 = ___count3; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_8 = ___array0; NullCheck(L_8); int32_t L_9 = ___startIndex2; if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), (int32_t)L_9))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m295FA2C782117B117C7C15EA1A40B5C89BCA5A95_RuntimeMethod_var); } IL_0044: { UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_11 = ___array0; uint64_t L_12 = ___value1; int32_t L_13 = ___startIndex2; int32_t L_14 = ___count3; int32_t L_15 = (( int32_t (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, uint64_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_11, (uint64_t)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_15; } } // System.Int32 System.Array::IndexOf<UnityEngine.BeforeRenderHelper_OrderBlock>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA3A1313F7FD2A62CE172AEF0501E52E60B7AE9DD_gshared (OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* ___array0, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA3A1313F7FD2A62CE172AEF0501E52E60B7AE9DD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA3A1313F7FD2A62CE172AEF0501E52E60B7AE9DD_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___startIndex2; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___startIndex2; OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_0028; } } IL_0018: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA3A1313F7FD2A62CE172AEF0501E52E60B7AE9DD_RuntimeMethod_var); } IL_0028: { int32_t L_6 = ___count3; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0034; } } { int32_t L_7 = ___count3; OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* L_8 = ___array0; NullCheck(L_8); int32_t L_9 = ___startIndex2; if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), (int32_t)L_9))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA3A1313F7FD2A62CE172AEF0501E52E60B7AE9DD_RuntimeMethod_var); } IL_0044: { OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* L_11 = ___array0; OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 L_12 = ___value1; int32_t L_13 = ___startIndex2; int32_t L_14 = ___count3; int32_t L_15 = (( int32_t (*) (OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101*, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101*)L_11, (OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_15; } } // System.Int32 System.Array::IndexOf<UnityEngine.UnitySynchronizationContext_WorkRequest>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mCE7226D6E0020AF1553F7171B52CD314D7F69356_gshared (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* ___array0, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mCE7226D6E0020AF1553F7171B52CD314D7F69356_MetadataUsageId); s_Il2CppMethodInitialized = true; } { WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mCE7226D6E0020AF1553F7171B52CD314D7F69356_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___startIndex2; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___startIndex2; WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_0028; } } IL_0018: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mCE7226D6E0020AF1553F7171B52CD314D7F69356_RuntimeMethod_var); } IL_0028: { int32_t L_6 = ___count3; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0034; } } { int32_t L_7 = ___count3; WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_8 = ___array0; NullCheck(L_8); int32_t L_9 = ___startIndex2; if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), (int32_t)L_9))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mCE7226D6E0020AF1553F7171B52CD314D7F69356_RuntimeMethod_var); } IL_0044: { WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_11 = ___array0; WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_12 = ___value1; int32_t L_13 = ___startIndex2; int32_t L_14 = ___count3; int32_t L_15 = (( int32_t (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_11, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_15; } } // System.Int32 System.Array::IndexOfImpl<System.Boolean>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m0F531E6143B210545BC006DDA38A956EFFDE4C5C_gshared (BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ___array0, bool ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_tEF2C39D86C36E82597707B89981FFD60E94C824B * L_0 = (( EqualityComparer_1_tEF2C39D86C36E82597707B89981FFD60E94C824B * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_1 = ___array0; bool L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_tEF2C39D86C36E82597707B89981FFD60E94C824B *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040*, bool, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Boolean>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_tEF2C39D86C36E82597707B89981FFD60E94C824B *)L_0, (BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040*)L_1, (bool)L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Array::IndexOfImpl<System.Byte>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mDF309171EB0865C4FD14537C72C58DDDA76FB9CA_gshared (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, uint8_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * L_0 = (( EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___array0; uint8_t L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, uint8_t, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Byte>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)L_0, (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)L_1, (uint8_t)L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Array::IndexOfImpl<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m9C9005959035A531721D41B837D7E9BEC5CE3B63_gshared (KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* ___array0, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * L_0 = (( EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_1 = ___array0; KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F*, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)L_0, (KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F*)L_1, (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Array::IndexOfImpl<System.DateTime>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mDBEF1B63B8362361F9F679AF4D79F0951BDD1473_gshared (DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1* ___array0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * L_0 = (( EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1* L_1 = ___array0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1*, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.DateTime>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 *)L_0, (DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1*)L_1, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Array::IndexOfImpl<System.DateTimeOffset>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_mEBDDD83E5EEE3A95F5C80D126F959204478F9D0B_gshared (DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25* ___array0, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * L_0 = (( EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25* L_1 = ___array0; DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25*, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.DateTimeOffset>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 *)L_0, (DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25*)L_1, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Array::IndexOfImpl<System.Decimal>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mB29C010685851DAABFA4DBC9FDBE7A79D72A468A_gshared (DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* ___array0, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * L_0 = (( EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* L_1 = ___array0; Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F*, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Decimal>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B *)L_0, (DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F*)L_1, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Array::IndexOfImpl<System.Diagnostics.Tracing.EventProvider_SessionInfo>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m82AC2069233E5E4FEC2764E5A8551D8A6A5AFF70_gshared (SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* ___array0, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF * L_0 = (( EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_1 = ___array0; SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906*, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF *)L_0, (SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906*)L_1, (SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A )L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Array::IndexOfImpl<System.Double>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mEAF4FD4D0AA7A22F5AE47FCD2420174F8F080814_gshared (DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* ___array0, double ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * L_0 = (( EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_1 = ___array0; double L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D*, double, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Double>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 *)L_0, (DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D*)L_1, (double)L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Array::IndexOfImpl<System.Int16>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m8B4B3230B8252FDBEDEDD80A030838FC5B3ACF69_gshared (Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* ___array0, int16_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * L_0 = (( EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* L_1 = ___array0; int16_t L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28*, int16_t, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int16>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D *)L_0, (Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28*)L_1, (int16_t)L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Array::IndexOfImpl<System.Int32>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m811CD352B13D4F65CC4F4962E4660E0A26FC6EA0_gshared (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___array0, int32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33 * L_0 = (( EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = ___array0; int32_t L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33 *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*, int32_t, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33 *)L_0, (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_1, (int32_t)L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Array::IndexOfImpl<System.Int32Enum>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m3A48C703F30458F4CEEC64398652FC1CF43EB6B1_gshared (Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* ___array0, int32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C * L_0 = (( EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_1 = ___array0; int32_t L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A*, int32_t, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C *)L_0, (Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A*)L_1, (int32_t)L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Array::IndexOfImpl<System.Int64>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m2104F9CEE896D4D504D03D8A6F4ECFCF06B65BBC_gshared (Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* ___array0, int64_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * L_0 = (( EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_1 = ___array0; int64_t L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F*, int64_t, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int64>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)L_0, (Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F*)L_1, (int64_t)L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Array::IndexOfImpl<System.Object>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisRuntimeObject_m43E510BAFFEAE5D11F06F45B9DE8D2B311C4742B_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_0 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = ___array0; RuntimeObject * L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject *, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Object>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_0, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_1, (RuntimeObject *)L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Array::IndexOfImpl<System.SByte>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mF1984BC949D83F869C5AB746570E2463D433AC7B_gshared (SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* ___array0, int8_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_t1653BBB342B487357DF28761F33A34441A5A2371 * L_0 = (( EqualityComparer_1_t1653BBB342B487357DF28761F33A34441A5A2371 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* L_1 = ___array0; int8_t L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_t1653BBB342B487357DF28761F33A34441A5A2371 *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889*, int8_t, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.SByte>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t1653BBB342B487357DF28761F33A34441A5A2371 *)L_0, (SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889*)L_1, (int8_t)L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Array::IndexOfImpl<System.Single>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m9804B7DD3A5C32712B0D2F6E2C3806B8C03232C7_gshared (SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___array0, float ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6 * L_0 = (( EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_1 = ___array0; float L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6 *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5*, float, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Single>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6 *)L_0, (SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5*)L_1, (float)L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Array::IndexOfImpl<System.TimeSpan>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m58DCFA47AD8123456A0F39947576576773FCE872_gshared (TimeSpanU5BU5D_tCF326C038BD306190A013AE3C9F9B1A525054DD5* ___array0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_tD60BF9630038224362477637F04D8F02D49DA7C4 * L_0 = (( EqualityComparer_1_tD60BF9630038224362477637F04D8F02D49DA7C4 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); TimeSpanU5BU5D_tCF326C038BD306190A013AE3C9F9B1A525054DD5* L_1 = ___array0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_tD60BF9630038224362477637F04D8F02D49DA7C4 *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, TimeSpanU5BU5D_tCF326C038BD306190A013AE3C9F9B1A525054DD5*, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.TimeSpan>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_tD60BF9630038224362477637F04D8F02D49DA7C4 *)L_0, (TimeSpanU5BU5D_tCF326C038BD306190A013AE3C9F9B1A525054DD5*)L_1, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 )L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Array::IndexOfImpl<System.UInt16>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m2960DAE98791FA9D0BF0D79708D7E5B4938A5530_gshared (UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* ___array0, uint16_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E * L_0 = (( EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_1 = ___array0; uint16_t L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*, uint16_t, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.UInt16>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E *)L_0, (UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*)L_1, (uint16_t)L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Array::IndexOfImpl<System.UInt32>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCAF17A25D1E42797BEBBF9DA1050D5BE1B7E9B8A_gshared (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___array0, uint32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 * L_0 = (( EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_1 = ___array0; uint32_t L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*, uint32_t, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.UInt32>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 *)L_0, (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)L_1, (uint32_t)L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Array::IndexOfImpl<System.UInt64>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m689969801B6D54EC21CF85E17E524E1423369DA7_gshared (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___array0, uint64_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 * L_0 = (( EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_1 = ___array0; uint64_t L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, uint64_t, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.UInt64>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 *)L_0, (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_1, (uint64_t)L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Array::IndexOfImpl<UnityEngine.BeforeRenderHelper_OrderBlock>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m434D426AF5E81289841D6EAE9258DFEA6BEBEE37_gshared (OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* ___array0, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7 * L_0 = (( EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* L_1 = ___array0; OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7 *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101*, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7 *)L_0, (OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101*)L_1, (OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 )L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Array::IndexOfImpl<UnityEngine.UnitySynchronizationContext_WorkRequest>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m391BAB47A134889502F0765CF082DCCE533EC8B2_gshared (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* ___array0, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79 * L_0 = (( EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_1 = ___array0; WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79 *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79 *)L_0, (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_1, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Array::InternalArray__IndexOf<MS.Internal.Xml.Cache.XPathNode>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_mB0AA8BC37F4A6CAE64285429AEA1AF3BDA7CB373_gshared (RuntimeArray * __this, XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_mB0AA8BC37F4A6CAE64285429AEA1AF3BDA7CB373_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_mB0AA8BC37F4A6CAE64285429AEA1AF3BDA7CB373_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 *)(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 L_9 = ___item0; XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<MS.Internal.Xml.Cache.XPathNodeRef>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_m5C16C27F486B27AF9EEC7776E1A207D75F516EFB_gshared (RuntimeArray * __this, XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_m5C16C27F486B27AF9EEC7776E1A207D75F516EFB_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_m5C16C27F486B27AF9EEC7776E1A207D75F516EFB_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 *)(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 L_9 = ___item0; XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<Mono.Globalization.Unicode.CodePointIndexer_TableRange>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m293EA28BAD3E4A83929BAE545B1011CC6143CEBB_gshared (RuntimeArray * __this, TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m293EA28BAD3E4A83929BAE545B1011CC6143CEBB_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m293EA28BAD3E4A83929BAE545B1011CC6143CEBB_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 L_9 = ___item0; TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<PInokeDemo_Boss>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisBoss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_m126F95D7ABF88805DA031E278DE1D09199D780A6_gshared (RuntimeArray * __this, Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisBoss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_m126F95D7ABF88805DA031E278DE1D09199D780A6_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisBoss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_m126F95D7ABF88805DA031E278DE1D09199D780A6_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 *)(Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 L_9 = ___item0; Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.ArraySegment`1<System.Byte>>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_mA2528857F521849E2F14BCE79FC3EDE70D42A4DB_gshared (RuntimeArray * __this, ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_mA2528857F521849E2F14BCE79FC3EDE70D42A4DB_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_mA2528857F521849E2F14BCE79FC3EDE70D42A4DB_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA *)(ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA L_9 = ___item0; ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); Il2CppFakeBox<ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA > L_12(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); const VirtualInvokeData& il2cpp_virtual_invoke_data__85 = il2cpp_codegen_get_virtual_invoke_data(0, (&L_12)); bool L_13 = (( bool (*) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*))il2cpp_virtual_invoke_data__85.methodPtr)((RuntimeObject *)(&L_12), (RuntimeObject *)L_11, /*hidden argument*/il2cpp_virtual_invoke_data__85.method); V_2 = L_12.m_Value; if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Boolean>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mC20BDC11F0575D4DDACD88DEAB020A75B564F11A_gshared (RuntimeArray * __this, bool ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mC20BDC11F0575D4DDACD88DEAB020A75B564F11A_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; bool V_2 = false; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mC20BDC11F0575D4DDACD88DEAB020A75B564F11A_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (bool*)(bool*)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { bool L_9 = ___item0; bool L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = Boolean_Equals_mB97E1CE732F7A08D8F45C86B8994FB67222C99E7((bool*)(bool*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Byte>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m29830CD9ACA0126B5E56A827D3E7C1EEFDAFFB8D_gshared (RuntimeArray * __this, uint8_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m29830CD9ACA0126B5E56A827D3E7C1EEFDAFFB8D_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint8_t V_2 = 0x0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m29830CD9ACA0126B5E56A827D3E7C1EEFDAFFB8D_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uint8_t*)(uint8_t*)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { uint8_t L_9 = ___item0; uint8_t L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = Byte_Equals_m5B72B20F4E6E41D9D288EE528274D5DA6AAADCDF((uint8_t*)(uint8_t*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.ByteEnum>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_mB68275DACDBA8E7A31E8D4F94E29DE490C338846_gshared (RuntimeArray * __this, uint8_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_mB68275DACDBA8E7A31E8D4F94E29DE490C338846_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint8_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_mB68275DACDBA8E7A31E8D4F94E29DE490C338846_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uint8_t*)(uint8_t*)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { uint8_t L_9 = ___item0; uint8_t L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); Il2CppFakeBox<uint8_t> L_12(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(&L_12), (RuntimeObject *)L_11); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Char>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m8F737294D199447E8600FE272EF4B479D43BB930_gshared (RuntimeArray * __this, Il2CppChar ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m8F737294D199447E8600FE272EF4B479D43BB930_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Il2CppChar V_2 = 0x0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m8F737294D199447E8600FE272EF4B479D43BB930_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Il2CppChar*)(Il2CppChar*)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { Il2CppChar L_9 = ___item0; Il2CppChar L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = Char_Equals_mE3AD655E668CAE1B4AD8444B746166FD80C662D8((Il2CppChar*)(Il2CppChar*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.DictionaryEntry>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m9B747BA30199C9DEF5EFC5DDDCC6B41417445BD0_gshared (RuntimeArray * __this, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m9B747BA30199C9DEF5EFC5DDDCC6B41417445BD0_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m9B747BA30199C9DEF5EFC5DDDCC6B41417445BD0_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_9 = ___item0; DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m6CCE60ED174301858C1887A8DCEED6A2986F8510_gshared (RuntimeArray * __this, Entry_tC1463A26CB3583633B8650196083947E916945AD ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m6CCE60ED174301858C1887A8DCEED6A2986F8510_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_tC1463A26CB3583633B8650196083947E916945AD V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m6CCE60ED174301858C1887A8DCEED6A2986F8510_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_tC1463A26CB3583633B8650196083947E916945AD *)(Entry_tC1463A26CB3583633B8650196083947E916945AD *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { Entry_tC1463A26CB3583633B8650196083947E916945AD L_9 = ___item0; Entry_tC1463A26CB3583633B8650196083947E916945AD L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(Entry_tC1463A26CB3583633B8650196083947E916945AD *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Guid,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_m8B245106DF16D6928F9254467A3A36F7DC706474_gshared (RuntimeArray * __this, Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_m8B245106DF16D6928F9254467A3A36F7DC706474_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_m8B245106DF16D6928F9254467A3A36F7DC706474_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B *)(Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B L_9 = ___item0; Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m3AECD5FB3B18910B3F0C8107C6EF08B1CEA10CCF_gshared (RuntimeArray * __this, Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m3AECD5FB3B18910B3F0C8107C6EF08B1CEA10CCF_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m3AECD5FB3B18910B3F0C8107C6EF08B1CEA10CCF_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D L_9 = ___item0; Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Boolean>>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_m933B5C88D0FFDA109ACB00FD5F4FA361DAB4BC4C_gshared (RuntimeArray * __this, Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_m933B5C88D0FFDA109ACB00FD5F4FA361DAB4BC4C_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_m933B5C88D0FFDA109ACB00FD5F4FA361DAB4BC4C_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 *)(Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 L_9 = ___item0; Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m9E5B158A4C9B0A5FA3027E4177DA98DA6264A56C_gshared (RuntimeArray * __this, Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m9E5B158A4C9B0A5FA3027E4177DA98DA6264A56C_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m9E5B158A4C9B0A5FA3027E4177DA98DA6264A56C_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE L_9 = ___item0; Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m17FA206B6160A89ECE120941608D1B89D499203C_gshared (RuntimeArray * __this, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m17FA206B6160A89ECE120941608D1B89D499203C_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m17FA206B6160A89ECE120941608D1B89D499203C_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA L_9 = ___item0; Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBB075A2082A735C0ECB89547222A737D30DBBCC4_gshared (RuntimeArray * __this, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBB075A2082A735C0ECB89547222A737D30DBBCC4_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBB075A2082A735C0ECB89547222A737D30DBBCC4_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D L_9 = ___item0; Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_mFCE0B6A27B30770A4B512BEDB254E192D5280D29_gshared (RuntimeArray * __this, Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_mFCE0B6A27B30770A4B512BEDB254E192D5280D29_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_mFCE0B6A27B30770A4B512BEDB254E192D5280D29_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 *)(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 L_9 = ___item0; Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m0531B1C9002D75197E0184136B83D014DE315618_gshared (RuntimeArray * __this, KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m0531B1C9002D75197E0184136B83D014DE315618_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m0531B1C9002D75197E0184136B83D014DE315618_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 *)(KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 L_9 = ___item0; KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m739A55FED52BC421DC9BDA024BE349CD2D135C19_gshared (RuntimeArray * __this, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m739A55FED52BC421DC9BDA024BE349CD2D135C19_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m739A55FED52BC421DC9BDA024BE349CD2D135C19_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_9 = ___item0; KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m4918F1A608A3EFBAE42BA98870BAF1D3F2F66072_gshared (RuntimeArray * __this, KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m4918F1A608A3EFBAE42BA98870BAF1D3F2F66072_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m4918F1A608A3EFBAE42BA98870BAF1D3F2F66072_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 *)(KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 L_9 = ___item0; KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m4B25A8A2624679B8A2C001D9CD3912AB9A711E26_gshared (RuntimeArray * __this, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m4B25A8A2624679B8A2C001D9CD3912AB9A711E26_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m4B25A8A2624679B8A2C001D9CD3912AB9A711E26_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 L_9 = ___item0; KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mB1E74A86E1E594EFDC925F9C97FE109DE05495A9_gshared (RuntimeArray * __this, KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mB1E74A86E1E594EFDC925F9C97FE109DE05495A9_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mB1E74A86E1E594EFDC925F9C97FE109DE05495A9_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE *)(KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE L_9 = ___item0; KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_m104632AFFFFAA0522433EC83A8C64BB996C2954B_gshared (RuntimeArray * __this, KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_m104632AFFFFAA0522433EC83A8C64BB996C2954B_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_m104632AFFFFAA0522433EC83A8C64BB996C2954B_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 L_9 = ___item0; KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m9D0B60E51BFBDE958FEF0FEA0559377BD587966C_gshared (RuntimeArray * __this, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m9D0B60E51BFBDE958FEF0FEA0559377BD587966C_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m9D0B60E51BFBDE958FEF0FEA0559377BD587966C_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_9 = ___item0; KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mD7B60B9965226E9CC04E946CA4C1F33A3923BE7B_gshared (RuntimeArray * __this, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mD7B60B9965226E9CC04E946CA4C1F33A3923BE7B_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mD7B60B9965226E9CC04E946CA4C1F33A3923BE7B_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_9 = ___item0; KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_mDBF23DF5BD427035EB0989C37936C066EBB80E3F_gshared (RuntimeArray * __this, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_mDBF23DF5BD427035EB0989C37936C066EBB80E3F_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_mDBF23DF5BD427035EB0989C37936C066EBB80E3F_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_9 = ___item0; KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m84E363DDEA7D4D7264474D49C05D77CC975B2A8C_gshared (RuntimeArray * __this, KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m84E363DDEA7D4D7264474D49C05D77CC975B2A8C_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m84E363DDEA7D4D7264474D49C05D77CC975B2A8C_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 *)(KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 L_9 = ___item0; KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Hashtable_bucket>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m194BF9E958CDA9357DC5B9A2818EFAD70B463320_gshared (RuntimeArray * __this, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m194BF9E958CDA9357DC5B9A2818EFAD70B463320_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m194BF9E958CDA9357DC5B9A2818EFAD70B463320_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 *)(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_9 = ___item0; bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.DateTime>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m084940E8F2B606B8BF3A920943FA09B72FEAF9B9_gshared (RuntimeArray * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m084940E8F2B606B8BF3A920943FA09B72FEAF9B9_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m084940E8F2B606B8BF3A920943FA09B72FEAF9B9_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_9 = ___item0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = DateTime_Equals_m85006DF1EA5B2B7EAB4BEFA643B5683B0BDBE4AB((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.DateTimeOffset>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m6367CE2E8CA64ACDCC54F816D81EF971659E9C0E_gshared (RuntimeArray * __this, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m6367CE2E8CA64ACDCC54F816D81EF971659E9C0E_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m6367CE2E8CA64ACDCC54F816D81EF971659E9C0E_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_9 = ___item0; DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = DateTimeOffset_Equals_mD93E06EF35F3E3A0BD2AC363D3EDA347CE4E6858((DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Decimal>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m256F348E2E222F2E84330A5649768C4F512B542E_gshared (RuntimeArray * __this, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m256F348E2E222F2E84330A5649768C4F512B542E_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m256F348E2E222F2E84330A5649768C4F512B542E_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_9 = ___item0; Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = Decimal_Equals_mCEF3806BE2E8CA730568C45CF90E129159DC476A((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Diagnostics.Tracing.EventProvider_SessionInfo>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mE0D1987E0D8C110542B25F9D557DB67F27C02218_gshared (RuntimeArray * __this, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mE0D1987E0D8C110542B25F9D557DB67F27C02218_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mE0D1987E0D8C110542B25F9D557DB67F27C02218_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A *)(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_9 = ___item0; SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Diagnostics.Tracing.EventSource_EventMetadata>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mD23818720ABA66BBD11AED8E8A714DB6194316AC_gshared (RuntimeArray * __this, EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mD23818720ABA66BBD11AED8E8A714DB6194316AC_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mD23818720ABA66BBD11AED8E8A714DB6194316AC_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B *)(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B L_9 = ___item0; EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Double>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m60845F7DCED5E45FA673B44E8DED8216501B3AE6_gshared (RuntimeArray * __this, double ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m60845F7DCED5E45FA673B44E8DED8216501B3AE6_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; double V_2 = 0.0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m60845F7DCED5E45FA673B44E8DED8216501B3AE6_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (double*)(double*)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { double L_9 = ___item0; double L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = Double_Equals_m25A10C1D70E2906C2DAA5F3863B6AB76AFB13F33((double*)(double*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Globalization.InternalCodePageDataItem>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m8CB89746670D49E7D68E1B784D4902DB14B10191_gshared (RuntimeArray * __this, InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m8CB89746670D49E7D68E1B784D4902DB14B10191_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m8CB89746670D49E7D68E1B784D4902DB14B10191_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 *)(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 L_9 = ___item0; InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Globalization.InternalEncodingDataItem>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m02968552358CC33A7F34E3499B8AF85E173E2E33_gshared (RuntimeArray * __this, InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m02968552358CC33A7F34E3499B8AF85E173E2E33_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m02968552358CC33A7F34E3499B8AF85E173E2E33_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 *)(InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 L_9 = ___item0; InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Guid>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisGuid_t_m663A30B0AC00832F23B734DE47889449C5422462_gshared (RuntimeArray * __this, Guid_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisGuid_t_m663A30B0AC00832F23B734DE47889449C5422462_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Guid_t V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisGuid_t_m663A30B0AC00832F23B734DE47889449C5422462_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Guid_t *)(Guid_t *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { Guid_t L_9 = ___item0; Guid_t L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = Guid_Equals_m60BF5DC8994BB5189C703CD997EC6A2E0C491F8A((Guid_t *)(Guid_t *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Int16>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m5A3048CD7DD988CF1EAD557351B6A21BD9D37E19_gshared (RuntimeArray * __this, int16_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m5A3048CD7DD988CF1EAD557351B6A21BD9D37E19_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int16_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m5A3048CD7DD988CF1EAD557351B6A21BD9D37E19_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int16_t*)(int16_t*)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { int16_t L_9 = ___item0; int16_t L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = Int16_Equals_mB1FFCF510D2A74D15014660A0AFA1B5B0AE2F024((int16_t*)(int16_t*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Int32>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mDFBFE353F08EDAFC6A507A56A24A5397D746C884_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mDFBFE353F08EDAFC6A507A56A24A5397D746C884_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mDFBFE353F08EDAFC6A507A56A24A5397D746C884_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { int32_t L_9 = ___item0; int32_t L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = Int32_Equals_mBE9097707986D98549AC11E94FB986DA1AB3E16C((int32_t*)(int32_t*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Int32Enum>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mA87E7254C64CF9CEE21A7B2EFF4EBA9159FE65A5_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mA87E7254C64CF9CEE21A7B2EFF4EBA9159FE65A5_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mA87E7254C64CF9CEE21A7B2EFF4EBA9159FE65A5_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { int32_t L_9 = ___item0; int32_t L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); Il2CppFakeBox<int32_t> L_12(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(&L_12), (RuntimeObject *)L_11); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Int64>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mBAC8D474AD6C3CC84914CD1A6B687B6A93B5993E_gshared (RuntimeArray * __this, int64_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mBAC8D474AD6C3CC84914CD1A6B687B6A93B5993E_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int64_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mBAC8D474AD6C3CC84914CD1A6B687B6A93B5993E_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int64_t*)(int64_t*)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { int64_t L_9 = ___item0; int64_t L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = Int64_Equals_m217A2D6F9F752A690AA8BF039B1DF2091A7FE78C((int64_t*)(int64_t*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.IntPtr>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisIntPtr_t_m65565733C00CA67DA68AEB8764D4A4789F7F377E_gshared (RuntimeArray * __this, intptr_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisIntPtr_t_m65565733C00CA67DA68AEB8764D4A4789F7F377E_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; intptr_t V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisIntPtr_t_m65565733C00CA67DA68AEB8764D4A4789F7F377E_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (intptr_t*)(intptr_t*)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { intptr_t L_9 = ___item0; intptr_t L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = IntPtr_Equals_m4C1C372B05E29E20EC5E9B48EF8AAEA3E49B874D((intptr_t*)(intptr_t*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Net.CookieTokenizer_RecognizedAttribute>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m4B6FCD7D11365EE0EAFEF7097349DE98E5632F80_gshared (RuntimeArray * __this, RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m4B6FCD7D11365EE0EAFEF7097349DE98E5632F80_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m4B6FCD7D11365EE0EAFEF7097349DE98E5632F80_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B *)(RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B L_9 = ___item0; RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Net.HeaderVariantInfo>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mE478F0695ABB70E4112338210E32C38147786E20_gshared (RuntimeArray * __this, HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mE478F0695ABB70E4112338210E32C38147786E20_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mE478F0695ABB70E4112338210E32C38147786E20_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 *)(HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 L_9 = ___item0; HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Net.Sockets.Socket_WSABUF>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_mDF3BDE908EA33126BB6B7E7393B8965217533EBD_gshared (RuntimeArray * __this, WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_mDF3BDE908EA33126BB6B7E7393B8965217533EBD_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_mDF3BDE908EA33126BB6B7E7393B8965217533EBD_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE *)(WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE L_9 = ___item0; WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Object>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisRuntimeObject_mD9574236A28C1D455D77EF7E065529093F1EDAD8_gshared (RuntimeArray * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisRuntimeObject_mD9574236A28C1D455D77EF7E065529093F1EDAD8_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; RuntimeObject * V_2 = NULL; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisRuntimeObject_mD9574236A28C1D455D77EF7E065529093F1EDAD8_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (RuntimeObject **)(RuntimeObject **)(&V_2)); RuntimeObject * L_5 = ___item0; if (L_5) { goto IL_0047; } } { RuntimeObject * L_6 = V_2; if (L_6) { goto IL_0066; } } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { RuntimeObject * L_9 = ___item0; NullCheck((RuntimeObject *)(V_2)); bool L_10 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(V_2), (RuntimeObject *)L_9); if (!L_10) { goto IL_0066; } } { int32_t L_11 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_12 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)); } IL_0066: { int32_t L_13 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); } IL_006a: { int32_t L_14 = V_1; int32_t L_15 = V_0; if ((((int32_t)L_14) < ((int32_t)L_15))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_16 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.ParameterizedStrings_FormatParam>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_mBE12D8BD5A5303A11702F3DD6BACE684356B8F8D_gshared (RuntimeArray * __this, FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_mBE12D8BD5A5303A11702F3DD6BACE684356B8F8D_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_mBE12D8BD5A5303A11702F3DD6BACE684356B8F8D_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 *)(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 L_9 = ___item0; FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.CustomAttributeNamedArgument>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mAEB6C20A49EBEF1C32DBDA22711297F67A8324AF_gshared (RuntimeArray * __this, CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mAEB6C20A49EBEF1C32DBDA22711297F67A8324AF_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mAEB6C20A49EBEF1C32DBDA22711297F67A8324AF_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E L_9 = ___item0; CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = CustomAttributeNamedArgument_Equals_mDA255630CA97FF60745C1B0440ACF44B3E94998B((CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.CustomAttributeTypedArgument>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mDFEC6896DCE2B058F5B5A3589D67846EA61E1B7E_gshared (RuntimeArray * __this, CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mDFEC6896DCE2B058F5B5A3589D67846EA61E1B7E_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mDFEC6896DCE2B058F5B5A3589D67846EA61E1B7E_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 L_9 = ___item0; CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = CustomAttributeTypedArgument_Equals_mCBC1A766B39E8BE8BAE5B85F0C9B18797366CC88((CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.ParameterModifier>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m09812D9D61C7DF24E8DB955422A24BB7308073CB_gshared (RuntimeArray * __this, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m09812D9D61C7DF24E8DB955422A24BB7308073CB_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m09812D9D61C7DF24E8DB955422A24BB7308073CB_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E *)(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E L_9 = ___item0; ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Resources.ResourceLocator>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_mFF5622E291EE7AAA6A39CCAE7964981D9981D224_gshared (RuntimeArray * __this, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_mFF5622E291EE7AAA6A39CCAE7964981D9981D224_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_mFF5622E291EE7AAA6A39CCAE7964981D9981D224_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_9 = ___item0; ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Runtime.CompilerServices.Ephemeron>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m8B6C9962831994B1A8145034E0FC12D35DDF501A_gshared (RuntimeArray * __this, Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m8B6C9962831994B1A8145034E0FC12D35DDF501A_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m8B6C9962831994B1A8145034E0FC12D35DDF501A_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA *)(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA L_9 = ___item0; Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Runtime.InteropServices.GCHandle>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mB91156111C75E912C4DFE9C211F38E92A545F47C_gshared (RuntimeArray * __this, GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mB91156111C75E912C4DFE9C211F38E92A545F47C_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mB91156111C75E912C4DFE9C211F38E92A545F47C_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 L_9 = ___item0; GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = GCHandle_Equals_m9F3AFCE77E2A8601073DA0D0C158BF618369A842((GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.SByte>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mC287C8F1C070FC45DBDAA415D6AED52E8476B372_gshared (RuntimeArray * __this, int8_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mC287C8F1C070FC45DBDAA415D6AED52E8476B372_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int8_t V_2 = 0x0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mC287C8F1C070FC45DBDAA415D6AED52E8476B372_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int8_t*)(int8_t*)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { int8_t L_9 = ___item0; int8_t L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = SByte_Equals_m4B25C5FC7403EB2480D9F70F9B48C5619C6DD144((int8_t*)(int8_t*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_m4C1BE5D4CE7E0EB8477ED7E25D9F32FF60A568DA_gshared (RuntimeArray * __this, X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_m4C1BE5D4CE7E0EB8477ED7E25D9F32FF60A568DA_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_m4C1BE5D4CE7E0EB8477ED7E25D9F32FF60A568DA_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C *)(X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C L_9 = ___item0; X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Single>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mFB848FBCE0A749265630F5326810CD0A999D2DC9_gshared (RuntimeArray * __this, float ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mFB848FBCE0A749265630F5326810CD0A999D2DC9_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; float V_2 = 0.0f; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mFB848FBCE0A749265630F5326810CD0A999D2DC9_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (float*)(float*)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { float L_9 = ___item0; float L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = Single_Equals_mF4C7AEA9D216B3C9CB735BF327D07BF50F101A16((float*)(float*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m50C7AF57F38E6EEA158BBDE0B5D39AE0F9AFE4B2_gshared (RuntimeArray * __this, LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m50C7AF57F38E6EEA158BBDE0B5D39AE0F9AFE4B2_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m50C7AF57F38E6EEA158BBDE0B5D39AE0F9AFE4B2_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B *)(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B L_9 = ___item0; LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Threading.CancellationTokenRegistration>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m4092D39CA7E10BB63153F83830BC5B5D7119420C_gshared (RuntimeArray * __this, CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m4092D39CA7E10BB63153F83830BC5B5D7119420C_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m4092D39CA7E10BB63153F83830BC5B5D7119420C_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 L_9 = ___item0; CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = CancellationTokenRegistration_Equals_m10EEB16AA8BC130896117762D369A9F4BA60D212((CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.TimeSpan>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m92CB442176DFBBC33279FEA81AF578E77F9B6E5B_gshared (RuntimeArray * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m92CB442176DFBBC33279FEA81AF578E77F9B6E5B_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m92CB442176DFBBC33279FEA81AF578E77F9B6E5B_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_9 = ___item0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = TimeSpan_Equals_m7CD315197413EB59DDBCF923AD564E0021E91A70((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.UInt16>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m9E5D797D44D08C05CCC74DC6B0297A3A0F3B5199_gshared (RuntimeArray * __this, uint16_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m9E5D797D44D08C05CCC74DC6B0297A3A0F3B5199_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint16_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m9E5D797D44D08C05CCC74DC6B0297A3A0F3B5199_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uint16_t*)(uint16_t*)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { uint16_t L_9 = ___item0; uint16_t L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = UInt16_Equals_mBCD7FC4A11D0CEEFF4BC6559137A9E397D7017B8((uint16_t*)(uint16_t*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.UInt16Enum>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_m287C1B0FF8DB50E12668016BDCD9B2405A0412A4_gshared (RuntimeArray * __this, uint16_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_m287C1B0FF8DB50E12668016BDCD9B2405A0412A4_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint16_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_m287C1B0FF8DB50E12668016BDCD9B2405A0412A4_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uint16_t*)(uint16_t*)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { uint16_t L_9 = ___item0; uint16_t L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); Il2CppFakeBox<uint16_t> L_12(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(&L_12), (RuntimeObject *)L_11); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.UInt32>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCC2550228ABC522CB0A98028515525D393ED7A5E_gshared (RuntimeArray * __this, uint32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCC2550228ABC522CB0A98028515525D393ED7A5E_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCC2550228ABC522CB0A98028515525D393ED7A5E_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uint32_t*)(uint32_t*)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { uint32_t L_9 = ___item0; uint32_t L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = UInt32_Equals_m44E796DB35F5DB4E5D4C98EC6AB5053242A320C3((uint32_t*)(uint32_t*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.UInt32Enum>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_mE94545AEE458C31936BE79C99834B7C7004A01F2_gshared (RuntimeArray * __this, uint32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_mE94545AEE458C31936BE79C99834B7C7004A01F2_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_mE94545AEE458C31936BE79C99834B7C7004A01F2_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uint32_t*)(uint32_t*)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { uint32_t L_9 = ___item0; uint32_t L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); Il2CppFakeBox<uint32_t> L_12(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(&L_12), (RuntimeObject *)L_11); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.UInt64>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m553FB75E321F334628E34EB120BA285A550B5FF7_gshared (RuntimeArray * __this, uint64_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m553FB75E321F334628E34EB120BA285A550B5FF7_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint64_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m553FB75E321F334628E34EB120BA285A550B5FF7_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uint64_t*)(uint64_t*)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { uint64_t L_9 = ___item0; uint64_t L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = UInt64_Equals_mE61D24B984F0B91A2FC1094402F1532A0F82C232((uint64_t*)(uint64_t*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.UIntPtr>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisUIntPtr_t_mF4144AFE6DAE5427FE5827C9C9838D91F97F78C8_gshared (RuntimeArray * __this, uintptr_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUIntPtr_t_mF4144AFE6DAE5427FE5827C9C9838D91F97F78C8_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uintptr_t V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisUIntPtr_t_mF4144AFE6DAE5427FE5827C9C9838D91F97F78C8_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uintptr_t*)(uintptr_t*)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { uintptr_t L_9 = ___item0; uintptr_t L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); bool L_12 = UIntPtr_Equals_m8C135DEDA578597066AB67C1DD5A5A34E4F860EB((uintptr_t*)(uintptr_t*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0066; } } { int32_t L_13 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); } IL_0066: { int32_t L_15 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_006a: { int32_t L_16 = V_1; int32_t L_17 = V_0; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Xml.Schema.SequenceNode_SequenceConstructPosContext>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m0F7E5662035EA3D2E49D5B2641EB040CEC4D3658_gshared (RuntimeArray * __this, SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m0F7E5662035EA3D2E49D5B2641EB040CEC4D3658_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m0F7E5662035EA3D2E49D5B2641EB040CEC4D3658_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 *)(SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 L_9 = ___item0; SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Xml.XmlNamespaceManager_NamespaceDeclaration>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_m5001179FCF3E32AF60F67B79D4CA24757023DF9D_gshared (RuntimeArray * __this, NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_m5001179FCF3E32AF60F67B79D4CA24757023DF9D_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_m5001179FCF3E32AF60F67B79D4CA24757023DF9D_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A *)(NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A L_9 = ___item0; NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Xml.XmlTextReaderImpl_ParsingState>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mDEE06A6106FE2552A6E7E6283B54F078381EA255_gshared (RuntimeArray * __this, ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mDEE06A6106FE2552A6E7E6283B54F078381EA255_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mDEE06A6106FE2552A6E7E6283B54F078381EA255_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 *)(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 L_9 = ___item0; ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.BeforeRenderHelper_OrderBlock>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m48EC0B072029484476C1B68DAE233AD692768D45_gshared (RuntimeArray * __this, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m48EC0B072029484476C1B68DAE233AD692768D45_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m48EC0B072029484476C1B68DAE233AD692768D45_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 L_9 = ___item0; OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m87CE1CDF757010A3D49F7C90504FE35CF9F7B583_gshared (RuntimeArray * __this, PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m87CE1CDF757010A3D49F7C90504FE35CF9F7B583_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m87CE1CDF757010A3D49F7C90504FE35CF9F7B583_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D *)(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D L_9 = ___item0; PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Keyframe>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m2A1F2D54AC27D60943B635063075055B75674696_gshared (RuntimeArray * __this, Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m2A1F2D54AC27D60943B635063075055B75674696_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m2A1F2D54AC27D60943B635063075055B75674696_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 *)(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 L_9 = ___item0; Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Playables.PlayableBinding>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m731D346C66C900C7E2F6027BDFEEA6A123C76131_gshared (RuntimeArray * __this, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m731D346C66C900C7E2F6027BDFEEA6A123C76131_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m731D346C66C900C7E2F6027BDFEEA6A123C76131_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 *)(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 L_9 = ___item0; PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.SendMouseEvents_HitInfo>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_m4179B7B21F7F8703575F5E7B14EAB494587CA2C3_gshared (RuntimeArray * __this, HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_m4179B7B21F7F8703575F5E7B14EAB494587CA2C3_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_m4179B7B21F7F8703575F5E7B14EAB494587CA2C3_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 *)(HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 L_9 = ___item0; HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_mB8CE2101FF6E0E88A78DD42B272B1B3F639C23CE_gshared (RuntimeArray * __this, GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_mB8CE2101FF6E0E88A78DD42B272B1B3F639C23CE_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_mB8CE2101FF6E0E88A78DD42B272B1B3F639C23CE_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 *)(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 L_9 = ___item0; GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_mD9457D7567B4D60A03DC4DCF877F25A949F875A1_gshared (RuntimeArray * __this, GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_mD9457D7567B4D60A03DC4DCF877F25A949F875A1_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_mD9457D7567B4D60A03DC4DCF877F25A949F875A1_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A *)(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A L_9 = ___item0; GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UnitySynchronizationContext_WorkRequest>(T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m6A2718BCF487507EB48D3ED041DBF07DA1932303_gshared (RuntimeArray * __this, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m6A2718BCF487507EB48D3ED041DBF07DA1932303_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL); RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m6A2718BCF487507EB48D3ED041DBF07DA1932303_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)(&V_2)); goto IL_0047; } { goto IL_0066; } { int32_t L_7 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); } IL_0047: { WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_9 = ___item0; WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10); RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((RuntimeObject *)L_12); bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11); V_2 = *(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)UnBox(L_12); if (!L_13) { goto IL_0066; } } { int32_t L_14 = V_1; NullCheck((RuntimeArray *)__this); int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)); } IL_0066: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006a: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0024; } } { NullCheck((RuntimeArray *)__this); int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); } } // System.Int32 System.Array::LastIndexOf<System.Object>(T[],T) extern "C" IL2CPP_METHOD_ATTR int32_t Array_LastIndexOf_TisRuntimeObject_mADF32BA8AC5E3F1C5D224A446DA3C1F0E9CBC324_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_LastIndexOf_TisRuntimeObject_mADF32BA8AC5E3F1C5D224A446DA3C1F0E9CBC324_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_LastIndexOf_TisRuntimeObject_mADF32BA8AC5E3F1C5D224A446DA3C1F0E9CBC324_RuntimeMethod_var); } IL_000e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___array0; RuntimeObject * L_3 = ___value1; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___array0; NullCheck(L_4); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___array0; NullCheck(L_5); int32_t L_6 = (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (RuntimeObject *)L_3, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length)))), (int32_t)1)), (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length)))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_6; } } // System.Int32 System.Array::LastIndexOf<System.Object>(T[],T,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_LastIndexOf_TisRuntimeObject_m4C8C52470386439C1FB8B125159092C85B59550B_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_LastIndexOf_TisRuntimeObject_m4C8C52470386439C1FB8B125159092C85B59550B_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; RuntimeObject * G_B4_1 = NULL; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B4_2 = NULL; int32_t G_B3_0 = 0; RuntimeObject * G_B3_1 = NULL; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B3_2 = NULL; int32_t G_B5_0 = 0; int32_t G_B5_1 = 0; RuntimeObject * G_B5_2 = NULL; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B5_3 = NULL; { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_LastIndexOf_TisRuntimeObject_m4C8C52470386439C1FB8B125159092C85B59550B_RuntimeMethod_var); } IL_000e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___array0; RuntimeObject * L_3 = ___value1; int32_t L_4 = ___startIndex2; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___array0; NullCheck(L_5); G_B3_0 = L_4; G_B3_1 = L_3; G_B3_2 = L_2; if (!(((RuntimeArray *)L_5)->max_length)) { G_B4_0 = L_4; G_B4_1 = L_3; G_B4_2 = L_2; goto IL_001a; } } { int32_t L_6 = ___startIndex2; G_B5_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); G_B5_1 = G_B3_0; G_B5_2 = G_B3_1; G_B5_3 = G_B3_2; goto IL_001b; } IL_001a: { G_B5_0 = 0; G_B5_1 = G_B4_0; G_B5_2 = G_B4_1; G_B5_3 = G_B4_2; } IL_001b: { int32_t L_7 = (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)G_B5_3, (RuntimeObject *)G_B5_2, (int32_t)G_B5_1, (int32_t)G_B5_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_7; } } // System.Int32 System.Array::LastIndexOf<System.Object>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_LastIndexOf_TisRuntimeObject_mA211142720D626D9CB6D880E7F2BC27DD673478D_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_LastIndexOf_TisRuntimeObject_mA211142720D626D9CB6D880E7F2BC27DD673478D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_LastIndexOf_TisRuntimeObject_mA211142720D626D9CB6D880E7F2BC27DD673478D_RuntimeMethod_var); } IL_000e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___array0; NullCheck(L_2); if ((((RuntimeArray *)L_2)->max_length)) { goto IL_003e; } } { int32_t L_3 = ___startIndex2; if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0029; } } { int32_t L_4 = ___startIndex2; if (!L_4) { goto IL_0029; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_LastIndexOf_TisRuntimeObject_mA211142720D626D9CB6D880E7F2BC27DD673478D_RuntimeMethod_var); } IL_0029: { int32_t L_6 = ___count3; if (!L_6) { goto IL_003c; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Array_LastIndexOf_TisRuntimeObject_mA211142720D626D9CB6D880E7F2BC27DD673478D_RuntimeMethod_var); } IL_003c: { return (-1); } IL_003e: { int32_t L_8 = ___startIndex2; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_0048; } } { int32_t L_9 = ___startIndex2; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = ___array0; NullCheck(L_10); if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length))))))) { goto IL_0058; } } IL_0048: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_11 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_11, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Array_LastIndexOf_TisRuntimeObject_mA211142720D626D9CB6D880E7F2BC27DD673478D_RuntimeMethod_var); } IL_0058: { int32_t L_12 = ___count3; if ((((int32_t)L_12) < ((int32_t)0))) { goto IL_0064; } } { int32_t L_13 = ___startIndex2; int32_t L_14 = ___count3; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)L_14)), (int32_t)1))) >= ((int32_t)0))) { goto IL_0074; } } IL_0064: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_15, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Array_LastIndexOf_TisRuntimeObject_mA211142720D626D9CB6D880E7F2BC27DD673478D_RuntimeMethod_var); } IL_0074: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = ___array0; RuntimeObject * L_17 = ___value1; int32_t L_18 = ___startIndex2; int32_t L_19 = ___count3; int32_t L_20 = (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_16, (RuntimeObject *)L_17, (int32_t)L_18, (int32_t)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_20; } } // System.Int32 System.Array::LastIndexOfImpl<System.Object>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_LastIndexOfImpl_TisRuntimeObject_mDF2E0B480CC775742F408D21BBB65B6D9C1B6D8A_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_0 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = ___array0; RuntimeObject * L_2 = ___value1; int32_t L_3 = ___startIndex2; int32_t L_4 = ___count3; NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_0); int32_t L_5 = VirtFuncInvoker4< int32_t, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject *, int32_t, int32_t >::Invoke(11 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Object>::LastIndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_0, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_1, (RuntimeObject *)L_2, (int32_t)L_3, (int32_t)L_4); return L_5; } } // System.Int32 System.Runtime.CompilerServices.JitHelpers::UnsafeEnumCast<System.Int32Enum>(T) extern "C" IL2CPP_METHOD_ATTR int32_t JitHelpers_UnsafeEnumCast_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mABB37D821194A0B87A72F6409DDD2A907BFA0E81_gshared (int32_t ___val0, const RuntimeMethod* method) { { int32_t L_0 = ___val0; int32_t L_1 = (( int32_t (*) (int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_1; } } // System.IntPtr System.Runtime.InteropServices.Marshal::UnsafeAddrOfPinnedArrayElement<System.Byte>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR intptr_t Marshal_UnsafeAddrOfPinnedArrayElement_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m0F1B760143B0C170B0274CA8B82FE6C3F74D7962_gshared (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___arr0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Marshal_UnsafeAddrOfPinnedArrayElement_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m0F1B760143B0C170B0274CA8B82FE6C3F74D7962_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___arr0; int32_t L_1 = ___index1; IL2CPP_RUNTIME_CLASS_INIT(Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var); intptr_t L_2 = Marshal_UnsafeAddrOfPinnedArrayElement_mBB1B704E89128E20115E18FEAADCD5D8A02FFAE1((RuntimeArray *)(RuntimeArray *)L_0, (int32_t)L_1, /*hidden argument*/NULL); return (intptr_t)L_2; } } // System.IntPtr System.Runtime.InteropServices.Marshal::UnsafeAddrOfPinnedArrayElement<System.Object>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR intptr_t Marshal_UnsafeAddrOfPinnedArrayElement_TisRuntimeObject_mDA8E41437A28DD9BD4D9CD3FE151A6C3239DA0EE_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___arr0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Marshal_UnsafeAddrOfPinnedArrayElement_TisRuntimeObject_mDA8E41437A28DD9BD4D9CD3FE151A6C3239DA0EE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___arr0; int32_t L_1 = ___index1; IL2CPP_RUNTIME_CLASS_INIT(Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var); intptr_t L_2 = Marshal_UnsafeAddrOfPinnedArrayElement_mBB1B704E89128E20115E18FEAADCD5D8A02FFAE1((RuntimeArray *)(RuntimeArray *)L_0, (int32_t)L_1, /*hidden argument*/NULL); return (intptr_t)L_2; } } // System.Object System.Reflection.MonoProperty::GetterAdapterFrame<System.Object,System.Object>(System.Reflection.MonoProperty_Getter`2<T,R>,System.Object) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * MonoProperty_GetterAdapterFrame_TisRuntimeObject_TisRuntimeObject_mB2DDCBA80E9B67CF44982C7F83289DD11976E4C2_gshared (Getter_2_t98CD32D513A740F69F79D73DBD59A1BC8A33711C * ___getter0, RuntimeObject * ___obj1, const RuntimeMethod* method) { { Getter_2_t98CD32D513A740F69F79D73DBD59A1BC8A33711C * L_0 = ___getter0; RuntimeObject * L_1 = ___obj1; NullCheck((Getter_2_t98CD32D513A740F69F79D73DBD59A1BC8A33711C *)L_0); RuntimeObject * L_2 = (( RuntimeObject * (*) (Getter_2_t98CD32D513A740F69F79D73DBD59A1BC8A33711C *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Getter_2_t98CD32D513A740F69F79D73DBD59A1BC8A33711C *)L_0, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_2; } } // System.Object System.Reflection.MonoProperty::StaticGetterAdapterFrame<System.Object>(System.Reflection.MonoProperty_StaticGetter`1<R>,System.Object) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * MonoProperty_StaticGetterAdapterFrame_TisRuntimeObject_m7124DDE2B6E7636722F2478F789173D041A53BE6_gshared (StaticGetter_1_t1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1 * ___getter0, RuntimeObject * ___obj1, const RuntimeMethod* method) { { StaticGetter_1_t1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1 * L_0 = ___getter0; NullCheck((StaticGetter_1_t1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1 *)L_0); RuntimeObject * L_1 = (( RuntimeObject * (*) (StaticGetter_1_t1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((StaticGetter_1_t1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_1; } } // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskCache::CreateCacheableTask<System.Boolean>(TResult) extern "C" IL2CPP_METHOD_ATTR Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * AsyncTaskCache_CreateCacheableTask_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m0AF876A682791C78325B15BEE612FD3586E914F9_gshared (bool ___result0, const RuntimeMethod* method) { CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0; memset(&V_0, 0, sizeof(V_0)); { bool L_0 = ___result0; il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_1 = V_0; Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_2 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *, bool, bool, int32_t, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (bool)0, (bool)L_0, (int32_t)((int32_t)16384), (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_2; } } // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskCache::CreateCacheableTask<System.Int32>(TResult) extern "C" IL2CPP_METHOD_ATTR Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * AsyncTaskCache_CreateCacheableTask_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m5F5160505A6EE6A22FFF5538CA8FDEAF541CD461_gshared (int32_t ___result0, const RuntimeMethod* method) { CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0; memset(&V_0, 0, sizeof(V_0)); { int32_t L_0 = ___result0; il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_1 = V_0; Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_2 = (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, bool, int32_t, int32_t, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (bool)0, (int32_t)L_0, (int32_t)((int32_t)16384), (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_2; } } // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskCache::CreateCacheableTask<System.Nullable`1<System.Int32>>(TResult) extern "C" IL2CPP_METHOD_ATTR Task_1_t8906695C9865566AA79419735634FF27AC74506E * AsyncTaskCache_CreateCacheableTask_TisNullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB_m5DBFA8756D3C4AE3F4281057169A4951938BE375_gshared (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ___result0, const RuntimeMethod* method) { CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0; memset(&V_0, 0, sizeof(V_0)); { Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_0 = ___result0; il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_1 = V_0; Task_1_t8906695C9865566AA79419735634FF27AC74506E * L_2 = (Task_1_t8906695C9865566AA79419735634FF27AC74506E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (Task_1_t8906695C9865566AA79419735634FF27AC74506E *, bool, Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB , int32_t, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (bool)0, (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB )L_0, (int32_t)((int32_t)16384), (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_2; } } // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskCache::CreateCacheableTask<System.Object>(TResult) extern "C" IL2CPP_METHOD_ATTR Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * AsyncTaskCache_CreateCacheableTask_TisRuntimeObject_m126348D500408D7182F3757F300039F01F7C24AB_gshared (RuntimeObject * ___result0, const RuntimeMethod* method) { CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0; memset(&V_0, 0, sizeof(V_0)); { RuntimeObject * L_0 = ___result0; il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_1 = V_0; Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_2 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, bool, RuntimeObject *, int32_t, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (bool)0, (RuntimeObject *)L_0, (int32_t)((int32_t)16384), (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_2; } } // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskCache::CreateCacheableTask<System.Threading.Tasks.VoidTaskResult>(TResult) extern "C" IL2CPP_METHOD_ATTR Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * AsyncTaskCache_CreateCacheableTask_TisVoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40_m9439DA7120E7126F28583978D4CB34DC18E163A9_gshared (VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 ___result0, const RuntimeMethod* method) { CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0; memset(&V_0, 0, sizeof(V_0)); { VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_0 = ___result0; il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_1 = V_0; Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_2 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *, bool, VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 , int32_t, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (bool)0, (VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 )L_0, (int32_t)((int32_t)16384), (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_2; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Boolean>(System.Threading.CancellationToken) extern "C" IL2CPP_METHOD_ATTR Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * Task_FromCancellation_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m1D2F3D8D751533AB2C2C6571998736C242E908CB_gshared (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_FromCancellation_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m1D2F3D8D751533AB2C2C6571998736C242E908CB_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { bool L_0 = CancellationToken_get_IsCancellationRequested_mCF3521778F20F7048B7121885794B9562324447D((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)(&___cancellationToken0), /*hidden argument*/NULL); if (L_0) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_1, (String_t*)_stringLiteralBA7B76F7CEFAFC945D4F1E46E2C21A2894A4FD10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Task_FromCancellation_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m1D2F3D8D751533AB2C2C6571998736C242E908CB_RuntimeMethod_var); } IL_0014: { il2cpp_codegen_initobj((&V_0), sizeof(bool)); bool L_2 = V_0; CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_3 = ___cancellationToken0; Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_4 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *, bool, bool, int32_t, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_4, (bool)1, (bool)L_2, (int32_t)0, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_4; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Int32>(System.OperationCanceledException) extern "C" IL2CPP_METHOD_ATTR Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * Task_FromCancellation_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m3F9DA3B6F9A2DF0807A103225BA6D71C431ED15B_gshared (OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * ___exception0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_FromCancellation_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m3F9DA3B6F9A2DF0807A103225BA6D71C431ED15B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_0 = ___exception0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral5D42AD1769F229C76031F30A404B4F7863D68DE0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Task_FromCancellation_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m3F9DA3B6F9A2DF0807A103225BA6D71C431ED15B_RuntimeMethod_var); } IL_000e: { Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_2 = (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_3 = (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)L_2; OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_4 = ___exception0; NullCheck((OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)L_4); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_5 = OperationCanceledException_get_CancellationToken_mE0079552C3600A6DB8324958CA288DB19AF05B66((OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)L_4, /*hidden argument*/NULL); OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_6 = ___exception0; NullCheck((Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)L_3); (( bool (*) (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)L_3, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_5, (RuntimeObject *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); return L_3; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Int32>(System.Threading.CancellationToken) extern "C" IL2CPP_METHOD_ATTR Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * Task_FromCancellation_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m9308AB377C21815221796A65F008519EA9FE7DE6_gshared (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_FromCancellation_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m9308AB377C21815221796A65F008519EA9FE7DE6_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { bool L_0 = CancellationToken_get_IsCancellationRequested_mCF3521778F20F7048B7121885794B9562324447D((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)(&___cancellationToken0), /*hidden argument*/NULL); if (L_0) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_1, (String_t*)_stringLiteralBA7B76F7CEFAFC945D4F1E46E2C21A2894A4FD10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Task_FromCancellation_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m9308AB377C21815221796A65F008519EA9FE7DE6_RuntimeMethod_var); } IL_0014: { il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); int32_t L_2 = V_0; CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_3 = ___cancellationToken0; Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_4 = (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, bool, int32_t, int32_t, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_4, (bool)1, (int32_t)L_2, (int32_t)0, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_4; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Object>(System.OperationCanceledException) extern "C" IL2CPP_METHOD_ATTR Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * Task_FromCancellation_TisRuntimeObject_m045C8E197F0C7F13DCCA288894DDCC35493AD96E_gshared (OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * ___exception0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_FromCancellation_TisRuntimeObject_m045C8E197F0C7F13DCCA288894DDCC35493AD96E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_0 = ___exception0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral5D42AD1769F229C76031F30A404B4F7863D68DE0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Task_FromCancellation_TisRuntimeObject_m045C8E197F0C7F13DCCA288894DDCC35493AD96E_RuntimeMethod_var); } IL_000e: { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_2 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_3 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_2; OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_4 = ___exception0; NullCheck((OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)L_4); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_5 = OperationCanceledException_get_CancellationToken_mE0079552C3600A6DB8324958CA288DB19AF05B66((OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)L_4, /*hidden argument*/NULL); OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_6 = ___exception0; NullCheck((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_3); (( bool (*) (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_3, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_5, (RuntimeObject *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); return L_3; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Object>(System.Threading.CancellationToken) extern "C" IL2CPP_METHOD_ATTR Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * Task_FromCancellation_TisRuntimeObject_m4A9F178EC4392613B8FF7759C8EB3322DF483199_gshared (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_FromCancellation_TisRuntimeObject_m4A9F178EC4392613B8FF7759C8EB3322DF483199_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; { bool L_0 = CancellationToken_get_IsCancellationRequested_mCF3521778F20F7048B7121885794B9562324447D((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)(&___cancellationToken0), /*hidden argument*/NULL); if (L_0) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_1, (String_t*)_stringLiteralBA7B76F7CEFAFC945D4F1E46E2C21A2894A4FD10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Task_FromCancellation_TisRuntimeObject_m4A9F178EC4392613B8FF7759C8EB3322DF483199_RuntimeMethod_var); } IL_0014: { il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_2 = V_0; CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_3 = ___cancellationToken0; Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_4 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, bool, RuntimeObject *, int32_t, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_4, (bool)1, (RuntimeObject *)L_2, (int32_t)0, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_4; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Threading.Tasks.VoidTaskResult>(System.OperationCanceledException) extern "C" IL2CPP_METHOD_ATTR Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * Task_FromCancellation_TisVoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40_mC730A05E6E531AE6941EEF59F6A48D84748CA1D3_gshared (OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * ___exception0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_FromCancellation_TisVoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40_mC730A05E6E531AE6941EEF59F6A48D84748CA1D3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_0 = ___exception0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral5D42AD1769F229C76031F30A404B4F7863D68DE0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Task_FromCancellation_TisVoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40_mC730A05E6E531AE6941EEF59F6A48D84748CA1D3_RuntimeMethod_var); } IL_000e: { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_2 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_3 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_2; OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_4 = ___exception0; NullCheck((OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)L_4); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_5 = OperationCanceledException_get_CancellationToken_mE0079552C3600A6DB8324958CA288DB19AF05B66((OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)L_4, /*hidden argument*/NULL); OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_6 = ___exception0; NullCheck((Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_3); (( bool (*) (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_3, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_5, (RuntimeObject *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); return L_3; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromException<System.Int32>(System.Exception) extern "C" IL2CPP_METHOD_ATTR Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * Task_FromException_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mF3C6382F7FF59C06CCB6AF3DEDF0C7E42B3EFC52_gshared (Exception_t * ___exception0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_FromException_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mF3C6382F7FF59C06CCB6AF3DEDF0C7E42B3EFC52_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t * L_0 = ___exception0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral5D42AD1769F229C76031F30A404B4F7863D68DE0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Task_FromException_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mF3C6382F7FF59C06CCB6AF3DEDF0C7E42B3EFC52_RuntimeMethod_var); } IL_000e: { Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_2 = (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_3 = (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)L_2; Exception_t * L_4 = ___exception0; NullCheck((Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)L_3); (( bool (*) (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)L_3, (RuntimeObject *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); return L_3; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromException<System.Object>(System.Exception) extern "C" IL2CPP_METHOD_ATTR Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * Task_FromException_TisRuntimeObject_m4975DA3A5E73288D167C18378DF487241808F1F8_gshared (Exception_t * ___exception0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_FromException_TisRuntimeObject_m4975DA3A5E73288D167C18378DF487241808F1F8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t * L_0 = ___exception0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral5D42AD1769F229C76031F30A404B4F7863D68DE0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Task_FromException_TisRuntimeObject_m4975DA3A5E73288D167C18378DF487241808F1F8_RuntimeMethod_var); } IL_000e: { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_2 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_3 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_2; Exception_t * L_4 = ___exception0; NullCheck((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_3); (( bool (*) (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_3, (RuntimeObject *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); return L_3; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromException<System.Threading.Tasks.VoidTaskResult>(System.Exception) extern "C" IL2CPP_METHOD_ATTR Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * Task_FromException_TisVoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40_mF0D5B2C3E0E9A2245559F271CB88AAA19ADCE0E9_gshared (Exception_t * ___exception0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_FromException_TisVoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40_mF0D5B2C3E0E9A2245559F271CB88AAA19ADCE0E9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t * L_0 = ___exception0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral5D42AD1769F229C76031F30A404B4F7863D68DE0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Task_FromException_TisVoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40_mF0D5B2C3E0E9A2245559F271CB88AAA19ADCE0E9_RuntimeMethod_var); } IL_000e: { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_2 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_3 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_2; Exception_t * L_4 = ___exception0; NullCheck((Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_3); (( bool (*) (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_3, (RuntimeObject *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); return L_3; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromResult<System.Int32>(TResult) extern "C" IL2CPP_METHOD_ATTR Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * Task_FromResult_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mFBACD0478E006CC68E4A4EAC261326DDE1B6D6CB_gshared (int32_t ___result0, const RuntimeMethod* method) { { int32_t L_0 = ___result0; Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_1 = (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_1, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_1; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromResult<System.Object>(TResult) extern "C" IL2CPP_METHOD_ATTR Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * Task_FromResult_TisRuntimeObject_m8DBE4A25AA37C4CCED0205CA5FF6319D8BA1C9EB_gshared (RuntimeObject * ___result0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___result0; Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_1 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_1, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_1; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::Run<System.Int32>(System.Func`1<TResult>) extern "C" IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * Task_Run_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m11A2B12F2DF2E9E71644C83D3A1601E8BCC4929A_gshared (Func_1_t30631A63BE46FE93700939B764202D360449FE30 * ___function0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_Run_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m11A2B12F2DF2E9E71644C83D3A1601E8BCC4929A_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_1; memset(&V_1, 0, sizeof(V_1)); { V_0 = (int32_t)1; Func_1_t30631A63BE46FE93700939B764202D360449FE30 * L_0 = ___function0; il2cpp_codegen_initobj((&V_1), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_1 = V_1; IL2CPP_RUNTIME_CLASS_INIT(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var); TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_2 = TaskScheduler_get_Default_mC3794A546EB0F4C6D0A11E72F8939EC364733C87(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_3 = (( Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * (*) (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *, Func_1_t30631A63BE46FE93700939B764202D360449FE30 *, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , int32_t, int32_t, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)NULL, (Func_1_t30631A63BE46FE93700939B764202D360449FE30 *)L_0, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_1, (int32_t)8, (int32_t)0, (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *)L_2, (int32_t*)(int32_t*)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_3; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::Run<System.Object>(System.Func`1<TResult>) extern "C" IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * Task_Run_TisRuntimeObject_mCF998C68623C833934353D12C469C935C60E5948_gshared (Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * ___function0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_Run_TisRuntimeObject_mCF998C68623C833934353D12C469C935C60E5948_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_1; memset(&V_1, 0, sizeof(V_1)); { V_0 = (int32_t)1; Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_0 = ___function0; il2cpp_codegen_initobj((&V_1), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_1 = V_1; IL2CPP_RUNTIME_CLASS_INIT(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var); TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_2 = TaskScheduler_get_Default_mC3794A546EB0F4C6D0A11E72F8939EC364733C87(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_3 = (( Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * (*) (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *, Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , int32_t, int32_t, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)NULL, (Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *)L_0, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_1, (int32_t)8, (int32_t)0, (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *)L_2, (int32_t*)(int32_t*)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_3; } } // 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>) extern "C" IL2CPP_METHOD_ATTR Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * TaskFactory_1_FromAsyncTrim_TisRuntimeObject_TisReadWriteParameters_t5A9E416E0129249869039FC606326558DA3B597F_m1C8F0D4733E079FD02E85727AB4EFC2FA3AF1211_gshared (RuntimeObject * ___thisRef0, ReadWriteParameters_t5A9E416E0129249869039FC606326558DA3B597F ___args1, Func_5_tCD28B0DD63B5001780DFA4DA7262B464635EE2DE * ___beginMethod2, Func_3_t08CF63B59BC63E8AE004A536A6B44732E99669C3 * ___endMethod3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskFactory_1_FromAsyncTrim_TisRuntimeObject_TisReadWriteParameters_t5A9E416E0129249869039FC606326558DA3B597F_m1C8F0D4733E079FD02E85727AB4EFC2FA3AF1211_MetadataUsageId); s_Il2CppMethodInitialized = true; } FromAsyncTrimPromise_1_t02F2AB515E92AE3A7C56C8AE76930166ACA741BE * V_0 = NULL; RuntimeObject* V_1 = NULL; { RuntimeObject * L_0 = ___thisRef0; Func_3_t08CF63B59BC63E8AE004A536A6B44732E99669C3 * L_1 = ___endMethod3; FromAsyncTrimPromise_1_t02F2AB515E92AE3A7C56C8AE76930166ACA741BE * L_2 = (FromAsyncTrimPromise_1_t02F2AB515E92AE3A7C56C8AE76930166ACA741BE *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (FromAsyncTrimPromise_1_t02F2AB515E92AE3A7C56C8AE76930166ACA741BE *, RuntimeObject *, Func_3_t08CF63B59BC63E8AE004A536A6B44732E99669C3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (RuntimeObject *)L_0, (Func_3_t08CF63B59BC63E8AE004A536A6B44732E99669C3 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); V_0 = (FromAsyncTrimPromise_1_t02F2AB515E92AE3A7C56C8AE76930166ACA741BE *)L_2; Func_5_tCD28B0DD63B5001780DFA4DA7262B464635EE2DE * L_3 = ___beginMethod2; RuntimeObject * L_4 = ___thisRef0; ReadWriteParameters_t5A9E416E0129249869039FC606326558DA3B597F L_5 = ___args1; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 2)); AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * L_6 = ((FromAsyncTrimPromise_1_t02F2AB515E92AE3A7C56C8AE76930166ACA741BE_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))->get_s_completeFromAsyncResult_25(); FromAsyncTrimPromise_1_t02F2AB515E92AE3A7C56C8AE76930166ACA741BE * L_7 = V_0; NullCheck((Func_5_tCD28B0DD63B5001780DFA4DA7262B464635EE2DE *)L_3); RuntimeObject* L_8 = (( RuntimeObject* (*) (Func_5_tCD28B0DD63B5001780DFA4DA7262B464635EE2DE *, RuntimeObject *, ReadWriteParameters_t5A9E416E0129249869039FC606326558DA3B597F , AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)->methodPointer)((Func_5_tCD28B0DD63B5001780DFA4DA7262B464635EE2DE *)L_3, (RuntimeObject *)L_4, (ReadWriteParameters_t5A9E416E0129249869039FC606326558DA3B597F )L_5, (AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)); V_1 = (RuntimeObject*)L_8; RuntimeObject* L_9 = V_1; if (!L_9) { goto IL_002c; } } { RuntimeObject* L_10 = V_1; NullCheck((RuntimeObject*)L_10); bool L_11 = InterfaceFuncInvoker0< bool >::Invoke(3 /* System.Boolean System.IAsyncResult::get_CompletedSynchronously() */, IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598_il2cpp_TypeInfo_var, (RuntimeObject*)L_10); if (!L_11) { goto IL_002c; } } { FromAsyncTrimPromise_1_t02F2AB515E92AE3A7C56C8AE76930166ACA741BE * L_12 = V_0; RuntimeObject * L_13 = ___thisRef0; Func_3_t08CF63B59BC63E8AE004A536A6B44732E99669C3 * L_14 = ___endMethod3; RuntimeObject* L_15 = V_1; NullCheck((FromAsyncTrimPromise_1_t02F2AB515E92AE3A7C56C8AE76930166ACA741BE *)L_12); (( void (*) (FromAsyncTrimPromise_1_t02F2AB515E92AE3A7C56C8AE76930166ACA741BE *, RuntimeObject *, Func_3_t08CF63B59BC63E8AE004A536A6B44732E99669C3 *, RuntimeObject*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)((FromAsyncTrimPromise_1_t02F2AB515E92AE3A7C56C8AE76930166ACA741BE *)L_12, (RuntimeObject *)L_13, (Func_3_t08CF63B59BC63E8AE004A536A6B44732E99669C3 *)L_14, (RuntimeObject*)L_15, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_002c: { FromAsyncTrimPromise_1_t02F2AB515E92AE3A7C56C8AE76930166ACA741BE * L_16 = V_0; return L_16; } } // 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>) extern "C" IL2CPP_METHOD_ATTR Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * TaskFactory_1_FromAsyncTrim_TisRuntimeObject_TisRuntimeObject_mD5873D34918B6AE89DB41E0B5412D10B6541849C_gshared (RuntimeObject * ___thisRef0, RuntimeObject * ___args1, Func_5_t96F7CF869D24BEEA26823BBA05B1916FD408399E * ___beginMethod2, Func_3_t938004A9DB4ADA4E7536BD2B144046530B9D9F70 * ___endMethod3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskFactory_1_FromAsyncTrim_TisRuntimeObject_TisRuntimeObject_mD5873D34918B6AE89DB41E0B5412D10B6541849C_MetadataUsageId); s_Il2CppMethodInitialized = true; } FromAsyncTrimPromise_1_t6A0DAAFFA9593953A9C8FD963327BF792F643432 * V_0 = NULL; RuntimeObject* V_1 = NULL; { RuntimeObject * L_0 = ___thisRef0; Func_3_t938004A9DB4ADA4E7536BD2B144046530B9D9F70 * L_1 = ___endMethod3; FromAsyncTrimPromise_1_t6A0DAAFFA9593953A9C8FD963327BF792F643432 * L_2 = (FromAsyncTrimPromise_1_t6A0DAAFFA9593953A9C8FD963327BF792F643432 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (FromAsyncTrimPromise_1_t6A0DAAFFA9593953A9C8FD963327BF792F643432 *, RuntimeObject *, Func_3_t938004A9DB4ADA4E7536BD2B144046530B9D9F70 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (RuntimeObject *)L_0, (Func_3_t938004A9DB4ADA4E7536BD2B144046530B9D9F70 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); V_0 = (FromAsyncTrimPromise_1_t6A0DAAFFA9593953A9C8FD963327BF792F643432 *)L_2; Func_5_t96F7CF869D24BEEA26823BBA05B1916FD408399E * L_3 = ___beginMethod2; RuntimeObject * L_4 = ___thisRef0; RuntimeObject * L_5 = ___args1; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 2)); AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * L_6 = ((FromAsyncTrimPromise_1_t6A0DAAFFA9593953A9C8FD963327BF792F643432_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))->get_s_completeFromAsyncResult_25(); FromAsyncTrimPromise_1_t6A0DAAFFA9593953A9C8FD963327BF792F643432 * L_7 = V_0; NullCheck((Func_5_t96F7CF869D24BEEA26823BBA05B1916FD408399E *)L_3); RuntimeObject* L_8 = (( RuntimeObject* (*) (Func_5_t96F7CF869D24BEEA26823BBA05B1916FD408399E *, RuntimeObject *, RuntimeObject *, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)->methodPointer)((Func_5_t96F7CF869D24BEEA26823BBA05B1916FD408399E *)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_5, (AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)); V_1 = (RuntimeObject*)L_8; RuntimeObject* L_9 = V_1; if (!L_9) { goto IL_002c; } } { RuntimeObject* L_10 = V_1; NullCheck((RuntimeObject*)L_10); bool L_11 = InterfaceFuncInvoker0< bool >::Invoke(3 /* System.Boolean System.IAsyncResult::get_CompletedSynchronously() */, IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598_il2cpp_TypeInfo_var, (RuntimeObject*)L_10); if (!L_11) { goto IL_002c; } } { FromAsyncTrimPromise_1_t6A0DAAFFA9593953A9C8FD963327BF792F643432 * L_12 = V_0; RuntimeObject * L_13 = ___thisRef0; Func_3_t938004A9DB4ADA4E7536BD2B144046530B9D9F70 * L_14 = ___endMethod3; RuntimeObject* L_15 = V_1; NullCheck((FromAsyncTrimPromise_1_t6A0DAAFFA9593953A9C8FD963327BF792F643432 *)L_12); (( void (*) (FromAsyncTrimPromise_1_t6A0DAAFFA9593953A9C8FD963327BF792F643432 *, RuntimeObject *, Func_3_t938004A9DB4ADA4E7536BD2B144046530B9D9F70 *, RuntimeObject*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)((FromAsyncTrimPromise_1_t6A0DAAFFA9593953A9C8FD963327BF792F643432 *)L_12, (RuntimeObject *)L_13, (Func_3_t938004A9DB4ADA4E7536BD2B144046530B9D9F70 *)L_14, (RuntimeObject*)L_15, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_002c: { FromAsyncTrimPromise_1_t6A0DAAFFA9593953A9C8FD963327BF792F643432 * L_16 = V_0; return L_16; } } // 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>) extern "C" IL2CPP_METHOD_ATTR Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * TaskFactory_1_FromAsyncTrim_TisRuntimeObject_TisReadWriteParameters_t5A9E416E0129249869039FC606326558DA3B597F_m93223AD35FD0CC5A9815361B3030A32FC432C16B_gshared (RuntimeObject * ___thisRef0, ReadWriteParameters_t5A9E416E0129249869039FC606326558DA3B597F ___args1, Func_5_tCD28B0DD63B5001780DFA4DA7262B464635EE2DE * ___beginMethod2, Func_3_t10D75DD9A8F9128B5F94D47B701C2C772F970E5C * ___endMethod3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskFactory_1_FromAsyncTrim_TisRuntimeObject_TisReadWriteParameters_t5A9E416E0129249869039FC606326558DA3B597F_m93223AD35FD0CC5A9815361B3030A32FC432C16B_MetadataUsageId); s_Il2CppMethodInitialized = true; } FromAsyncTrimPromise_1_tDDEB30E1591F0B8294D587632679758BA0917F25 * V_0 = NULL; RuntimeObject* V_1 = NULL; { RuntimeObject * L_0 = ___thisRef0; Func_3_t10D75DD9A8F9128B5F94D47B701C2C772F970E5C * L_1 = ___endMethod3; FromAsyncTrimPromise_1_tDDEB30E1591F0B8294D587632679758BA0917F25 * L_2 = (FromAsyncTrimPromise_1_tDDEB30E1591F0B8294D587632679758BA0917F25 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (FromAsyncTrimPromise_1_tDDEB30E1591F0B8294D587632679758BA0917F25 *, RuntimeObject *, Func_3_t10D75DD9A8F9128B5F94D47B701C2C772F970E5C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (RuntimeObject *)L_0, (Func_3_t10D75DD9A8F9128B5F94D47B701C2C772F970E5C *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); V_0 = (FromAsyncTrimPromise_1_tDDEB30E1591F0B8294D587632679758BA0917F25 *)L_2; Func_5_tCD28B0DD63B5001780DFA4DA7262B464635EE2DE * L_3 = ___beginMethod2; RuntimeObject * L_4 = ___thisRef0; ReadWriteParameters_t5A9E416E0129249869039FC606326558DA3B597F L_5 = ___args1; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 2)); AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * L_6 = ((FromAsyncTrimPromise_1_tDDEB30E1591F0B8294D587632679758BA0917F25_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))->get_s_completeFromAsyncResult_25(); FromAsyncTrimPromise_1_tDDEB30E1591F0B8294D587632679758BA0917F25 * L_7 = V_0; NullCheck((Func_5_tCD28B0DD63B5001780DFA4DA7262B464635EE2DE *)L_3); RuntimeObject* L_8 = (( RuntimeObject* (*) (Func_5_tCD28B0DD63B5001780DFA4DA7262B464635EE2DE *, RuntimeObject *, ReadWriteParameters_t5A9E416E0129249869039FC606326558DA3B597F , AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)->methodPointer)((Func_5_tCD28B0DD63B5001780DFA4DA7262B464635EE2DE *)L_3, (RuntimeObject *)L_4, (ReadWriteParameters_t5A9E416E0129249869039FC606326558DA3B597F )L_5, (AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)); V_1 = (RuntimeObject*)L_8; RuntimeObject* L_9 = V_1; if (!L_9) { goto IL_002c; } } { RuntimeObject* L_10 = V_1; NullCheck((RuntimeObject*)L_10); bool L_11 = InterfaceFuncInvoker0< bool >::Invoke(3 /* System.Boolean System.IAsyncResult::get_CompletedSynchronously() */, IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598_il2cpp_TypeInfo_var, (RuntimeObject*)L_10); if (!L_11) { goto IL_002c; } } { FromAsyncTrimPromise_1_tDDEB30E1591F0B8294D587632679758BA0917F25 * L_12 = V_0; RuntimeObject * L_13 = ___thisRef0; Func_3_t10D75DD9A8F9128B5F94D47B701C2C772F970E5C * L_14 = ___endMethod3; RuntimeObject* L_15 = V_1; NullCheck((FromAsyncTrimPromise_1_tDDEB30E1591F0B8294D587632679758BA0917F25 *)L_12); (( void (*) (FromAsyncTrimPromise_1_tDDEB30E1591F0B8294D587632679758BA0917F25 *, RuntimeObject *, Func_3_t10D75DD9A8F9128B5F94D47B701C2C772F970E5C *, RuntimeObject*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)((FromAsyncTrimPromise_1_tDDEB30E1591F0B8294D587632679758BA0917F25 *)L_12, (RuntimeObject *)L_13, (Func_3_t10D75DD9A8F9128B5F94D47B701C2C772F970E5C *)L_14, (RuntimeObject*)L_15, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_002c: { FromAsyncTrimPromise_1_tDDEB30E1591F0B8294D587632679758BA0917F25 * L_16 = V_0; return L_16; } } // System.Tuple`2<T1,T2> System.Tuple::Create<System.Diagnostics.Tracing.EventProvider_SessionInfo,System.Boolean>(T1,T2) extern "C" IL2CPP_METHOD_ATTR Tuple_2_tFB909554E9029649923EA250C43FBDD4F4548252 * Tuple_Create_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mFCFC54D2D66C8EE47D9530005BA7A77A1AA699FC_gshared (SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A ___item10, bool ___item21, const RuntimeMethod* method) { { SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_0 = ___item10; bool L_1 = ___item21; Tuple_2_tFB909554E9029649923EA250C43FBDD4F4548252 * L_2 = (Tuple_2_tFB909554E9029649923EA250C43FBDD4F4548252 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (Tuple_2_tFB909554E9029649923EA250C43FBDD4F4548252 *, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A , bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A )L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_2; } } // System.Tuple`2<T1,T2> System.Tuple::Create<System.Guid,System.Int32>(T1,T2) extern "C" IL2CPP_METHOD_ATTR Tuple_2_t24BE91BA338C2678B7B104B30F6EB33015FF720E * Tuple_Create_TisGuid_t_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m473CBD984380616D043D353A87FA6F201541C375_gshared (Guid_t ___item10, int32_t ___item21, const RuntimeMethod* method) { { Guid_t L_0 = ___item10; int32_t L_1 = ___item21; Tuple_2_t24BE91BA338C2678B7B104B30F6EB33015FF720E * L_2 = (Tuple_2_t24BE91BA338C2678B7B104B30F6EB33015FF720E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (Tuple_2_t24BE91BA338C2678B7B104B30F6EB33015FF720E *, Guid_t , int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (Guid_t )L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_2; } } // System.Tuple`2<T1,T2> System.Tuple::Create<System.Int32,System.Int32>(T1,T2) extern "C" IL2CPP_METHOD_ATTR Tuple_2_t28940D9AA109CFB8C1D8CAEDD0EAF70EAD2F7C63 * Tuple_Create_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m595074AFCD66FC08A09BDD5982656BA1F9BABA5C_gshared (int32_t ___item10, int32_t ___item21, const RuntimeMethod* method) { { int32_t L_0 = ___item10; int32_t L_1 = ___item21; Tuple_2_t28940D9AA109CFB8C1D8CAEDD0EAF70EAD2F7C63 * L_2 = (Tuple_2_t28940D9AA109CFB8C1D8CAEDD0EAF70EAD2F7C63 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (Tuple_2_t28940D9AA109CFB8C1D8CAEDD0EAF70EAD2F7C63 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (int32_t)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_2; } } // System.Tuple`2<T1,T2> System.Tuple::Create<System.Object,System.Object>(T1,T2) extern "C" IL2CPP_METHOD_ATTR Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5 * Tuple_Create_TisRuntimeObject_TisRuntimeObject_m0E4A5F787779B362E52ED19238D9850158D62836_gshared (RuntimeObject * ___item10, RuntimeObject * ___item21, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___item10; RuntimeObject * L_1 = ___item21; Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5 * L_2 = (Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5 *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (RuntimeObject *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_2; } } // System.Void System.Array::Fill<System.Object>(T[],T) extern "C" IL2CPP_METHOD_ATTR void Array_Fill_TisRuntimeObject_m17788C749A1F812B9910BAB0DAAFC24E5B2542D9_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Fill_TisRuntimeObject_m17788C749A1F812B9910BAB0DAAFC24E5B2542D9_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Fill_TisRuntimeObject_m17788C749A1F812B9910BAB0DAAFC24E5B2542D9_RuntimeMethod_var); } IL_000e: { V_0 = (int32_t)0; goto IL_001e; } IL_0012: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___array0; int32_t L_3 = V_0; RuntimeObject * L_4 = ___value1; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (RuntimeObject *)L_4); int32_t L_5 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); } IL_001e: { int32_t L_6 = V_0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = ___array0; NullCheck(L_7); if ((((int32_t)L_6) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length))))))) { goto IL_0012; } } { return; } } // System.Void System.Array::Fill<System.Object>(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_Fill_TisRuntimeObject_mE8179E5A1AFA2F343A691AD05F333C81C7E89177_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Fill_TisRuntimeObject_mE8179E5A1AFA2F343A691AD05F333C81C7E89177_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Fill_TisRuntimeObject_mE8179E5A1AFA2F343A691AD05F333C81C7E89177_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___startIndex2; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___startIndex2; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_0028; } } IL_0018: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Fill_TisRuntimeObject_mE8179E5A1AFA2F343A691AD05F333C81C7E89177_RuntimeMethod_var); } IL_0028: { int32_t L_6 = ___count3; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0034; } } { int32_t L_7 = ___startIndex2; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = ___array0; NullCheck(L_8); int32_t L_9 = ___count3; if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), (int32_t)L_9))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_Fill_TisRuntimeObject_mE8179E5A1AFA2F343A691AD05F333C81C7E89177_RuntimeMethod_var); } IL_0044: { int32_t L_11 = ___startIndex2; V_0 = (int32_t)L_11; goto IL_0054; } IL_0048: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = ___array0; int32_t L_13 = V_0; RuntimeObject * L_14 = ___value1; NullCheck(L_12); (L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (RuntimeObject *)L_14); int32_t L_15 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0054: { int32_t L_16 = V_0; int32_t L_17 = ___startIndex2; int32_t L_18 = ___count3; if ((((int32_t)L_16) < ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)L_18))))) { goto IL_0048; } } { return; } } // System.Void System.Array::ForEach<System.Object>(T[],System.Action`1<T>) extern "C" IL2CPP_METHOD_ATTR void Array_ForEach_TisRuntimeObject_mD8B1EA04C06936E21C2BB9B0FF603E09F75146C0_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ___action1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_ForEach_TisRuntimeObject_mD8B1EA04C06936E21C2BB9B0FF603E09F75146C0_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_ForEach_TisRuntimeObject_mD8B1EA04C06936E21C2BB9B0FF603E09F75146C0_RuntimeMethod_var); } IL_000e: { Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_2 = ___action1; if (L_2) { goto IL_001c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, (String_t*)_stringLiteral34EB4C4EF005207E8B8F916B9F1FFFACCCD6945E, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Array_ForEach_TisRuntimeObject_mD8B1EA04C06936E21C2BB9B0FF603E09F75146C0_RuntimeMethod_var); } IL_001c: { V_0 = (int32_t)0; goto IL_0031; } IL_0020: { Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_4 = ___action1; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___array0; int32_t L_6 = V_0; NullCheck(L_5); int32_t L_7 = L_6; RuntimeObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); NullCheck((Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *)L_4); (( void (*) (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *)L_4, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); int32_t L_9 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)); } IL_0031: { int32_t L_10 = V_0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = ___array0; NullCheck(L_11); if ((((int32_t)L_10) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_11)->max_length))))))) { goto IL_0020; } } { return; } } // System.Void System.Array::InternalArray__ICollection_Add<MS.Internal.Xml.Cache.XPathNode>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_mF9AC98FDB7266A5B961E49E41917EAF7E0DD2AC7_gshared (RuntimeArray * __this, XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_mF9AC98FDB7266A5B961E49E41917EAF7E0DD2AC7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_mF9AC98FDB7266A5B961E49E41917EAF7E0DD2AC7_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<MS.Internal.Xml.Cache.XPathNodeRef>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_m52EE21EFC47B98D715C87F254350015F18D41B6B_gshared (RuntimeArray * __this, XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_m52EE21EFC47B98D715C87F254350015F18D41B6B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_m52EE21EFC47B98D715C87F254350015F18D41B6B_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<Mono.Globalization.Unicode.CodePointIndexer_TableRange>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m41DC5285B61D03EDE86E49660265291FCB45E655_gshared (RuntimeArray * __this, TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m41DC5285B61D03EDE86E49660265291FCB45E655_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m41DC5285B61D03EDE86E49660265291FCB45E655_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<PInokeDemo_Boss>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisBoss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_mE723D423231A8DA65D51AA19B9C04DB4374D4907_gshared (RuntimeArray * __this, Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisBoss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_mE723D423231A8DA65D51AA19B9C04DB4374D4907_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisBoss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_mE723D423231A8DA65D51AA19B9C04DB4374D4907_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.ArraySegment`1<System.Byte>>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_mD419DB7AEBE8E0BFEDA0CEA5273317FBB6A80041_gshared (RuntimeArray * __this, ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_mD419DB7AEBE8E0BFEDA0CEA5273317FBB6A80041_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_mD419DB7AEBE8E0BFEDA0CEA5273317FBB6A80041_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Boolean>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m532C28C679898CA0B23D07FD800B6382955FAE11_gshared (RuntimeArray * __this, bool ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m532C28C679898CA0B23D07FD800B6382955FAE11_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m532C28C679898CA0B23D07FD800B6382955FAE11_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Byte>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m6CE9D938BF844C4B0941F64D66238FF0BAF88E59_gshared (RuntimeArray * __this, uint8_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m6CE9D938BF844C4B0941F64D66238FF0BAF88E59_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m6CE9D938BF844C4B0941F64D66238FF0BAF88E59_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.ByteEnum>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_m78CF9558B4D043BA3A9A59302D8F7F9047279DC6_gshared (RuntimeArray * __this, uint8_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_m78CF9558B4D043BA3A9A59302D8F7F9047279DC6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_m78CF9558B4D043BA3A9A59302D8F7F9047279DC6_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Char>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE9876BA14462806C7F0DA620920EDEBBD262679F_gshared (RuntimeArray * __this, Il2CppChar ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE9876BA14462806C7F0DA620920EDEBBD262679F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE9876BA14462806C7F0DA620920EDEBBD262679F_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.DictionaryEntry>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m750633AE7011FC3270A42BD78A0CD6CFF7A6D339_gshared (RuntimeArray * __this, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m750633AE7011FC3270A42BD78A0CD6CFF7A6D339_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m750633AE7011FC3270A42BD78A0CD6CFF7A6D339_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m5199D44A7C53600D74D50BA1B99B747E7D6AA7A3_gshared (RuntimeArray * __this, Entry_tC1463A26CB3583633B8650196083947E916945AD ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m5199D44A7C53600D74D50BA1B99B747E7D6AA7A3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m5199D44A7C53600D74D50BA1B99B747E7D6AA7A3_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<System.Guid,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_m0D5BF49E148062C6B0357DC3F6E59FA9392B4BA3_gshared (RuntimeArray * __this, Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_m0D5BF49E148062C6B0357DC3F6E59FA9392B4BA3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_m0D5BF49E148062C6B0357DC3F6E59FA9392B4BA3_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m41A93018BD641D0F91CA73B1FC145D853E87238B_gshared (RuntimeArray * __this, Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m41A93018BD641D0F91CA73B1FC145D853E87238B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m41A93018BD641D0F91CA73B1FC145D853E87238B_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Boolean>>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_m0512D75CE3CAA82398399EA0670D22F3BA397B18_gshared (RuntimeArray * __this, Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_m0512D75CE3CAA82398399EA0670D22F3BA397B18_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_m0512D75CE3CAA82398399EA0670D22F3BA397B18_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m8009794B657B23E794B64B064DA14786EB6566BB_gshared (RuntimeArray * __this, Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m8009794B657B23E794B64B064DA14786EB6566BB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m8009794B657B23E794B64B064DA14786EB6566BB_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m2B59878482B381DD2D3E374BA1A46EB11C398D66_gshared (RuntimeArray * __this, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m2B59878482B381DD2D3E374BA1A46EB11C398D66_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m2B59878482B381DD2D3E374BA1A46EB11C398D66_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mE3AE4EA3CF71DA2A19BB2BDEE32758232559B8E2_gshared (RuntimeArray * __this, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mE3AE4EA3CF71DA2A19BB2BDEE32758232559B8E2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mE3AE4EA3CF71DA2A19BB2BDEE32758232559B8E2_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m7E273D12CF8694A47E9EA3246CCBA06A1DF2699A_gshared (RuntimeArray * __this, Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m7E273D12CF8694A47E9EA3246CCBA06A1DF2699A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m7E273D12CF8694A47E9EA3246CCBA06A1DF2699A_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m831BABA68A0669DA8B7D81DAA204DBF0F3B70862_gshared (RuntimeArray * __this, KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m831BABA68A0669DA8B7D81DAA204DBF0F3B70862_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m831BABA68A0669DA8B7D81DAA204DBF0F3B70862_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m69320DEF59E083DBD93314746843C843B2339916_gshared (RuntimeArray * __this, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m69320DEF59E083DBD93314746843C843B2339916_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m69320DEF59E083DBD93314746843C843B2339916_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m820870FE13AC7D7DB9B4F697E3ADA0E4ED9F233E_gshared (RuntimeArray * __this, KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m820870FE13AC7D7DB9B4F697E3ADA0E4ED9F233E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m820870FE13AC7D7DB9B4F697E3ADA0E4ED9F233E_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mCD5EA65245A856DF4D46C3D1D83EF72D6649850B_gshared (RuntimeArray * __this, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mCD5EA65245A856DF4D46C3D1D83EF72D6649850B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mCD5EA65245A856DF4D46C3D1D83EF72D6649850B_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_m7CD8B9E5262B9148874F8E998E310C57FEED36E5_gshared (RuntimeArray * __this, KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_m7CD8B9E5262B9148874F8E998E310C57FEED36E5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_m7CD8B9E5262B9148874F8E998E310C57FEED36E5_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_m7CEF12B4E04306C2460EFF6B385303EDDEA9D10B_gshared (RuntimeArray * __this, KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_m7CEF12B4E04306C2460EFF6B385303EDDEA9D10B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_m7CEF12B4E04306C2460EFF6B385303EDDEA9D10B_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mF64CC542989AA856B9F7C2A3982B92FAED8CF553_gshared (RuntimeArray * __this, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mF64CC542989AA856B9F7C2A3982B92FAED8CF553_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mF64CC542989AA856B9F7C2A3982B92FAED8CF553_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mE8D83A4F3F4E11B0B90811ABECB3AB0AA225E965_gshared (RuntimeArray * __this, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mE8D83A4F3F4E11B0B90811ABECB3AB0AA225E965_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mE8D83A4F3F4E11B0B90811ABECB3AB0AA225E965_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m5B83ED22E5BB72C1EEE4378606E5AF227418E6E3_gshared (RuntimeArray * __this, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m5B83ED22E5BB72C1EEE4378606E5AF227418E6E3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m5B83ED22E5BB72C1EEE4378606E5AF227418E6E3_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_mED931E70FDD5AD80BE58308190296AF4BD2A2697_gshared (RuntimeArray * __this, KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_mED931E70FDD5AD80BE58308190296AF4BD2A2697_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_mED931E70FDD5AD80BE58308190296AF4BD2A2697_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Hashtable_bucket>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mB1C869D60E06C6306DEAAFBE85B4F06498C00CB4_gshared (RuntimeArray * __this, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mB1C869D60E06C6306DEAAFBE85B4F06498C00CB4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mB1C869D60E06C6306DEAAFBE85B4F06498C00CB4_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.DateTime>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mA5B7B5E10D668EF4B1826A8AF5AC8E4C3FE362F3_gshared (RuntimeArray * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mA5B7B5E10D668EF4B1826A8AF5AC8E4C3FE362F3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mA5B7B5E10D668EF4B1826A8AF5AC8E4C3FE362F3_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.DateTimeOffset>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_mD69224E21DC29B25C4E8F23BE71B3A654419DCC8_gshared (RuntimeArray * __this, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_mD69224E21DC29B25C4E8F23BE71B3A654419DCC8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_mD69224E21DC29B25C4E8F23BE71B3A654419DCC8_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Decimal>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m1259069E61BF9090D90CCB226B622D52F568689F_gshared (RuntimeArray * __this, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m1259069E61BF9090D90CCB226B622D52F568689F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m1259069E61BF9090D90CCB226B622D52F568689F_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Diagnostics.Tracing.EventProvider_SessionInfo>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m7AA0A527A2968388C17316F50F47678B4C1DB702_gshared (RuntimeArray * __this, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m7AA0A527A2968388C17316F50F47678B4C1DB702_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m7AA0A527A2968388C17316F50F47678B4C1DB702_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Diagnostics.Tracing.EventSource_EventMetadata>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mD43BFA4FE9AD453808D80227303D1A7F522823D8_gshared (RuntimeArray * __this, EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mD43BFA4FE9AD453808D80227303D1A7F522823D8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mD43BFA4FE9AD453808D80227303D1A7F522823D8_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Double>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m2724CF478D14143A842CE1C9F26C75D6DCB3D405_gshared (RuntimeArray * __this, double ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m2724CF478D14143A842CE1C9F26C75D6DCB3D405_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m2724CF478D14143A842CE1C9F26C75D6DCB3D405_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Globalization.InternalCodePageDataItem>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_mF0FD4095BC83A9EFD6F73BFAAA1E2806A434D0A8_gshared (RuntimeArray * __this, InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_mF0FD4095BC83A9EFD6F73BFAAA1E2806A434D0A8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_mF0FD4095BC83A9EFD6F73BFAAA1E2806A434D0A8_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Globalization.InternalEncodingDataItem>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m8170459B576E7C3284F5BF388BA5E8E08C49AFA3_gshared (RuntimeArray * __this, InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m8170459B576E7C3284F5BF388BA5E8E08C49AFA3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m8170459B576E7C3284F5BF388BA5E8E08C49AFA3_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Guid>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisGuid_t_m3D3B4189F723AA35BA753196DEE29E21EFEE2895_gshared (RuntimeArray * __this, Guid_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisGuid_t_m3D3B4189F723AA35BA753196DEE29E21EFEE2895_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisGuid_t_m3D3B4189F723AA35BA753196DEE29E21EFEE2895_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Int16>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mD7613C38460357CC7D632543AD4BFFADE41372B0_gshared (RuntimeArray * __this, int16_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mD7613C38460357CC7D632543AD4BFFADE41372B0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mD7613C38460357CC7D632543AD4BFFADE41372B0_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Int32>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m2846C327D205FD445F46B26A8337AA09A50DCA7F_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m2846C327D205FD445F46B26A8337AA09A50DCA7F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m2846C327D205FD445F46B26A8337AA09A50DCA7F_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Int32Enum>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mDE65E1A5B61F9FFFBA527F0733F213B50CD862A3_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mDE65E1A5B61F9FFFBA527F0733F213B50CD862A3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mDE65E1A5B61F9FFFBA527F0733F213B50CD862A3_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Int64>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4249581FB074DA4BF8020A71CACE1DFC40799D8C_gshared (RuntimeArray * __this, int64_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4249581FB074DA4BF8020A71CACE1DFC40799D8C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4249581FB074DA4BF8020A71CACE1DFC40799D8C_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.IntPtr>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisIntPtr_t_mA5CCAC9E9CC25E309F3810D44D853D16E68143AE_gshared (RuntimeArray * __this, intptr_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisIntPtr_t_mA5CCAC9E9CC25E309F3810D44D853D16E68143AE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisIntPtr_t_mA5CCAC9E9CC25E309F3810D44D853D16E68143AE_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Net.CookieTokenizer_RecognizedAttribute>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m8D8FF259F8659ADEC0AE0A20610112656208931E_gshared (RuntimeArray * __this, RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m8D8FF259F8659ADEC0AE0A20610112656208931E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m8D8FF259F8659ADEC0AE0A20610112656208931E_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Net.HeaderVariantInfo>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_m70D0ED5C29EF6D9368C4A8676290BA2E978DCCAD_gshared (RuntimeArray * __this, HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_m70D0ED5C29EF6D9368C4A8676290BA2E978DCCAD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_m70D0ED5C29EF6D9368C4A8676290BA2E978DCCAD_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Net.Sockets.Socket_WSABUF>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m606FE0393448E134D644CBE11555429A87722975_gshared (RuntimeArray * __this, WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m606FE0393448E134D644CBE11555429A87722975_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m606FE0393448E134D644CBE11555429A87722975_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Object>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisRuntimeObject_m0CCC0B9275EC8F89A85603F037804A668B41D6D7_gshared (RuntimeArray * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisRuntimeObject_m0CCC0B9275EC8F89A85603F037804A668B41D6D7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisRuntimeObject_m0CCC0B9275EC8F89A85603F037804A668B41D6D7_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.ParameterizedStrings_FormatParam>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m7BDBAA78BB0BFCDE4C13D1FA2E16150B093EE963_gshared (RuntimeArray * __this, FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m7BDBAA78BB0BFCDE4C13D1FA2E16150B093EE963_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m7BDBAA78BB0BFCDE4C13D1FA2E16150B093EE963_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.CustomAttributeNamedArgument>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m520DB9E5D654654E0DF9557B69164AF7050C34A1_gshared (RuntimeArray * __this, CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m520DB9E5D654654E0DF9557B69164AF7050C34A1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m520DB9E5D654654E0DF9557B69164AF7050C34A1_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.CustomAttributeTypedArgument>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mEE8FA99D85B70DFDB094944EDF18BE4A7853B357_gshared (RuntimeArray * __this, CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mEE8FA99D85B70DFDB094944EDF18BE4A7853B357_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mEE8FA99D85B70DFDB094944EDF18BE4A7853B357_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.ParameterModifier>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m73A4C9FDB30642B0ABD7FAE47BC50C05EED42773_gshared (RuntimeArray * __this, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m73A4C9FDB30642B0ABD7FAE47BC50C05EED42773_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m73A4C9FDB30642B0ABD7FAE47BC50C05EED42773_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Resources.ResourceLocator>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m2EA0B46DC9C64F0BE418A85AAD5C9D51B42D9DC6_gshared (RuntimeArray * __this, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m2EA0B46DC9C64F0BE418A85AAD5C9D51B42D9DC6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m2EA0B46DC9C64F0BE418A85AAD5C9D51B42D9DC6_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Runtime.CompilerServices.Ephemeron>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m7A511A9A1050449575F29E6E1FFA4B1455F69106_gshared (RuntimeArray * __this, Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m7A511A9A1050449575F29E6E1FFA4B1455F69106_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m7A511A9A1050449575F29E6E1FFA4B1455F69106_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Runtime.InteropServices.GCHandle>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m5AAC663D9FF27C71867B58748C6FF2837B6E856E_gshared (RuntimeArray * __this, GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m5AAC663D9FF27C71867B58748C6FF2837B6E856E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m5AAC663D9FF27C71867B58748C6FF2837B6E856E_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.SByte>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mACD698DB2EBC900286A7C038977637C855CACCE3_gshared (RuntimeArray * __this, int8_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mACD698DB2EBC900286A7C038977637C855CACCE3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mACD698DB2EBC900286A7C038977637C855CACCE3_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_m029715C61AD85A107E0A9AF57775290BEC444656_gshared (RuntimeArray * __this, X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_m029715C61AD85A107E0A9AF57775290BEC444656_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_m029715C61AD85A107E0A9AF57775290BEC444656_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Single>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mC0E828AAE8E2E46C8979EAEC50A8982717CD0959_gshared (RuntimeArray * __this, float ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mC0E828AAE8E2E46C8979EAEC50A8982717CD0959_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mC0E828AAE8E2E46C8979EAEC50A8982717CD0959_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m1776112EB9AF5A4FD01E374AE176D398A5D99272_gshared (RuntimeArray * __this, LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m1776112EB9AF5A4FD01E374AE176D398A5D99272_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m1776112EB9AF5A4FD01E374AE176D398A5D99272_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Threading.CancellationTokenRegistration>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m52F54CCFA1A2F9024D1DFA3C10213AC86AC571CA_gshared (RuntimeArray * __this, CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m52F54CCFA1A2F9024D1DFA3C10213AC86AC571CA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m52F54CCFA1A2F9024D1DFA3C10213AC86AC571CA_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.TimeSpan>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m9447DCF7C9EEF7F6DD9C48083050A1A25AA28612_gshared (RuntimeArray * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m9447DCF7C9EEF7F6DD9C48083050A1A25AA28612_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m9447DCF7C9EEF7F6DD9C48083050A1A25AA28612_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.UInt16>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mFAF3113B4A5963AB0BE38DEC63FB97971C7AF399_gshared (RuntimeArray * __this, uint16_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mFAF3113B4A5963AB0BE38DEC63FB97971C7AF399_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mFAF3113B4A5963AB0BE38DEC63FB97971C7AF399_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.UInt16Enum>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_mEDC32AEEE8BA32C24A816F60B8A3F5C60BFAE12D_gshared (RuntimeArray * __this, uint16_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_mEDC32AEEE8BA32C24A816F60B8A3F5C60BFAE12D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_mEDC32AEEE8BA32C24A816F60B8A3F5C60BFAE12D_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.UInt32>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mF287F6C0BE00077C872A4549CA38D6E0AB2CAB9F_gshared (RuntimeArray * __this, uint32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mF287F6C0BE00077C872A4549CA38D6E0AB2CAB9F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mF287F6C0BE00077C872A4549CA38D6E0AB2CAB9F_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.UInt32Enum>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_m13C196FD9E689117F225F55346057A56DE66BE1D_gshared (RuntimeArray * __this, uint32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_m13C196FD9E689117F225F55346057A56DE66BE1D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_m13C196FD9E689117F225F55346057A56DE66BE1D_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.UInt64>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mC20BC01F1B502A5A125289CFD752F1274394A228_gshared (RuntimeArray * __this, uint64_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mC20BC01F1B502A5A125289CFD752F1274394A228_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mC20BC01F1B502A5A125289CFD752F1274394A228_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.UIntPtr>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisUIntPtr_t_m544443A94C05D083C3564BA6390987FB980A973A_gshared (RuntimeArray * __this, uintptr_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUIntPtr_t_m544443A94C05D083C3564BA6390987FB980A973A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisUIntPtr_t_m544443A94C05D083C3564BA6390987FB980A973A_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Xml.Schema.SequenceNode_SequenceConstructPosContext>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m4C453CA95196F0F8236C8F1F8224F3E5731A0F1D_gshared (RuntimeArray * __this, SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m4C453CA95196F0F8236C8F1F8224F3E5731A0F1D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m4C453CA95196F0F8236C8F1F8224F3E5731A0F1D_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Xml.XmlNamespaceManager_NamespaceDeclaration>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_m505616E356F55AE033B4E3EA64CE7EEA45EE364A_gshared (RuntimeArray * __this, NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_m505616E356F55AE033B4E3EA64CE7EEA45EE364A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_m505616E356F55AE033B4E3EA64CE7EEA45EE364A_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Xml.XmlTextReaderImpl_ParsingState>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mCA45F46B8202BA37C90B520537CAB7144F49CCA5_gshared (RuntimeArray * __this, ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mCA45F46B8202BA37C90B520537CAB7144F49CCA5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mCA45F46B8202BA37C90B520537CAB7144F49CCA5_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.BeforeRenderHelper_OrderBlock>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA65A034C66A7843760B091E310C34D7E6A12319F_gshared (RuntimeArray * __this, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA65A034C66A7843760B091E310C34D7E6A12319F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA65A034C66A7843760B091E310C34D7E6A12319F_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m98626C08538A34093C548E5F84681643FF2416A7_gshared (RuntimeArray * __this, PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m98626C08538A34093C548E5F84681643FF2416A7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m98626C08538A34093C548E5F84681643FF2416A7_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Keyframe>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m01C5CA55DB16B19394FD41FD3FCF5963951FE0CE_gshared (RuntimeArray * __this, Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m01C5CA55DB16B19394FD41FD3FCF5963951FE0CE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m01C5CA55DB16B19394FD41FD3FCF5963951FE0CE_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Playables.PlayableBinding>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m3DAF5EED039DF627E5A4021A1C889AA08D481DD3_gshared (RuntimeArray * __this, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m3DAF5EED039DF627E5A4021A1C889AA08D481DD3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m3DAF5EED039DF627E5A4021A1C889AA08D481DD3_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.SendMouseEvents_HitInfo>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_m6C87F886E98CD03F15B7EAED01FDE0526F0F1C04_gshared (RuntimeArray * __this, HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_m6C87F886E98CD03F15B7EAED01FDE0526F0F1C04_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_m6C87F886E98CD03F15B7EAED01FDE0526F0F1C04_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m11726F786B4311D52A4EBF8D264DF4A16D3D8DD2_gshared (RuntimeArray * __this, GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m11726F786B4311D52A4EBF8D264DF4A16D3D8DD2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m11726F786B4311D52A4EBF8D264DF4A16D3D8DD2_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_m995196BE31136BA05B37EDDB3635C9045F8787D7_gshared (RuntimeArray * __this, GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_m995196BE31136BA05B37EDDB3635C9045F8787D7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_m995196BE31136BA05B37EDDB3635C9045F8787D7_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UnitySynchronizationContext_WorkRequest>(T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m386448E6879CAE69737FA5FD60B804A2DF74F3F6_gshared (RuntimeArray * __this, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m386448E6879CAE69737FA5FD60B804A2DF74F3F6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Add_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m386448E6879CAE69737FA5FD60B804A2DF74F3F6_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__ICollection_CopyTo<MS.Internal.Xml.Cache.XPathNode>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_m66C3A7A3A4E66CAD1FFD31B74312A5DA7F6F6DA1_gshared (RuntimeArray * __this, XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<MS.Internal.Xml.Cache.XPathNodeRef>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_m7781C5F20ADC2217DE98A3523A60662F56F7D0FD_gshared (RuntimeArray * __this, XPathNodeRefU5BU5D_t42E3ACCBD8D6FA1DD321905EB2253ABA6173B1E1* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); XPathNodeRefU5BU5D_t42E3ACCBD8D6FA1DD321905EB2253ABA6173B1E1* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<Mono.Globalization.Unicode.CodePointIndexer_TableRange>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m0BC3173F356490FB4F566F05D1389A9B821436A0_gshared (RuntimeArray * __this, TableRangeU5BU5D_t6948DE52FB348848EC96FB928C2FCFEFB250C23A* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); TableRangeU5BU5D_t6948DE52FB348848EC96FB928C2FCFEFB250C23A* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<PInokeDemo_Boss>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisBoss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_m4DFA311AA51C86B6A29967A8A2BB78E8ACDD8E78_gshared (RuntimeArray * __this, BossU5BU5D_t732B317799F37FFEDE8CA5EE7CEFD0D447C6A6AE* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); BossU5BU5D_t732B317799F37FFEDE8CA5EE7CEFD0D447C6A6AE* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.ArraySegment`1<System.Byte>>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_m56F4BD00E434DD82F58087D30843C5D6847EC24C_gshared (RuntimeArray * __this, ArraySegment_1U5BU5D_tD48E38276F3154239297C16C6458D97ECFC6D066* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); ArraySegment_1U5BU5D_tD48E38276F3154239297C16C6458D97ECFC6D066* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Boolean>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mBD9F9A6A8C8CD6C4298A6068F54650E380442806_gshared (RuntimeArray * __this, BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Byte>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mF91B7E591398E600E8C85375890CB7A241631090_gshared (RuntimeArray * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.ByteEnum>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_m82B0115E993BC6F32AED5691C15B4E4718FCF0EB_gshared (RuntimeArray * __this, ByteEnumU5BU5D_t0C6DF506BED920F322C686A6E35C9D192F3C5D76* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); ByteEnumU5BU5D_t0C6DF506BED920F322C686A6E35C9D192F3C5D76* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Char>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m2980FFB33CDCD06BFD134493CE7A76484884C1A1_gshared (RuntimeArray * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.DictionaryEntry>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m3C844649427B1A99C1BFBB499EF86F53FF94C3B6_gshared (RuntimeArray * __this, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_mA4F6C481EA116BF6C2A432D16AAC8326177B17CD_gshared (RuntimeArray * __this, EntryU5BU5D_t09B55F85AF27D0D332699AA879A1B10B193B5586* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); EntryU5BU5D_t09B55F85AF27D0D332699AA879A1B10B193B5586* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<System.Guid,System.Object>>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_mD013BD235CC747FA7CC1E74268BFEFEAE0B6CE92_gshared (RuntimeArray * __this, EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m43747FBEEE93B582E16ECEA0BAF060B6C61DDE22_gshared (RuntimeArray * __this, EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Boolean>>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_mE11F5B4AF69613E494E2D82D4FA37AD6131AF3A1_gshared (RuntimeArray * __this, EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m76B6BE46283946A990BDC0D951B37A40ED28C30A_gshared (RuntimeArray * __this, EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m25BE6CD13B6211BAC014B2E9D083BAA81FB42CD9_gshared (RuntimeArray * __this, EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_m9E5A2A9A3772DDB3C3FEBF128B9F949029E1409D_gshared (RuntimeArray * __this, EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m1586F39E762CEC7E55C94E0006EBAB63EBE25D1B_gshared (RuntimeArray * __this, EntryU5BU5D_tCE3D39EBBB127037F170BD1FBADFA7D55D88E594* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); EntryU5BU5D_tCE3D39EBBB127037F170BD1FBADFA7D55D88E594* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m6066DACCB8BFB653A8DADACD76B58436FAC30CE4_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t09978BE60DE0548A94B8E535D3171CCAC7DCA928* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); KeyValuePair_2U5BU5D_t09978BE60DE0548A94B8E535D3171CCAC7DCA928* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m82249F4ECE8A8C6574BC2168C4245D489AA6CC02_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mE579ED4816AB239783E44E46140B192095482BC7_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mB13564AD1F1CBAA9CE60C49F604B9F7E8C875E6C_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_m853855764B85B0A9546273329188400E8F7463F0_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_m24EBAFB452932F807FB5BC46166D26D20B4BA607_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m6E244F2FF1A356C100A5C02BFF9913AC8A458EFB_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mBA7C0BFD2DE5D75FB7A73DF89674170B9441620C_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m531A2C06D72CBB66D3EDA74CA34F446D3819EADB_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m1CC6DAB78DC6CD93AB85EBC6C823241FA278113D_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t90BD5627DE1270CB7D2384CFC863BF0E5C371EDD* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); KeyValuePair_2U5BU5D_t90BD5627DE1270CB7D2384CFC863BF0E5C371EDD* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Hashtable_bucket>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m6F40A245D46BCE72D17685172647DA62A2CF2D1B_gshared (RuntimeArray * __this, bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.DateTime>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mBC31AACC2787269659E5E8838500F7569EBC0C8E_gshared (RuntimeArray * __this, DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.DateTimeOffset>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m2C717CD98EA26021E88B15DF8D85C592D475BF53_gshared (RuntimeArray * __this, DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Decimal>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m94CFF46329A1A6CAC0BDE0463A69D3CE97962DB4_gshared (RuntimeArray * __this, DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Diagnostics.Tracing.EventProvider_SessionInfo>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m1355AD3B97BD4073D9DCBDB6F78169457F8A36F0_gshared (RuntimeArray * __this, SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Diagnostics.Tracing.EventSource_EventMetadata>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_m54E10719833E231F27F1297CBEE6ADCD150FE89B_gshared (RuntimeArray * __this, EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Double>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m4A1C21110D0994BB4A40CD2FB09D266F95969402_gshared (RuntimeArray * __this, DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Globalization.InternalCodePageDataItem>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m3776A01A9E3E3DBA4AA3D6B6AB6C40C985180C4A_gshared (RuntimeArray * __this, InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Globalization.InternalEncodingDataItem>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m86075A908E67D024DB8D65AE14312C0F8BBC4123_gshared (RuntimeArray * __this, InternalEncodingDataItemU5BU5D_t0579A8C6FC0871F0230E51290511BF0C9C706C68* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); InternalEncodingDataItemU5BU5D_t0579A8C6FC0871F0230E51290511BF0C9C706C68* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Guid>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisGuid_t_m9D1F99709B0A0A06CD0786150A6C9FBBFD861DF8_gshared (RuntimeArray * __this, GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Int16>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m298E0FB072C571CC76811A4F06E0CB402DC3AA7C_gshared (RuntimeArray * __this, Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Int32>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m02DC5E49BDCF23773FBFA8AC8BA437D3AE49714E_gshared (RuntimeArray * __this, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Int32Enum>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mB20281C5A61D3D8F70AF07865E5C4ADAFD13679E_gshared (RuntimeArray * __this, Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Int64>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m916A379E4AFBE98E613E9A7ADCE5E484F510553D_gshared (RuntimeArray * __this, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.IntPtr>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisIntPtr_t_mAA90216755473171D7D9F1F8AEB18507D4A6B7E7_gshared (RuntimeArray * __this, IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Net.CookieTokenizer_RecognizedAttribute>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m1B1FF3F542F12A2A582FBEAFEB69CDCB2B03CBB6_gshared (RuntimeArray * __this, RecognizedAttributeU5BU5D_t7397ED532D4301EECF9C9119CFF1F732D3F75A55* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); RecognizedAttributeU5BU5D_t7397ED532D4301EECF9C9119CFF1F732D3F75A55* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Net.HeaderVariantInfo>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_m428AB8692572BC65A307FBAA5A07D04BD25548B0_gshared (RuntimeArray * __this, HeaderVariantInfoU5BU5D_t0E01B2AC4A3A836E5AC79344A8F0CBD547CC8012* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); HeaderVariantInfoU5BU5D_t0E01B2AC4A3A836E5AC79344A8F0CBD547CC8012* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Net.Sockets.Socket_WSABUF>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_mD64DB0DF30D89C28660BE6C8B16C9E379C08B67E_gshared (RuntimeArray * __this, WSABUFU5BU5D_t4B8BBCF555CCE5338B6EA731D4126DA68ECE9C80* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); WSABUFU5BU5D_t4B8BBCF555CCE5338B6EA731D4126DA68ECE9C80* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Object>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisRuntimeObject_m67406BEC1F3A105AD1DC84B39158B4EF91B823D0_gshared (RuntimeArray * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.ParameterizedStrings_FormatParam>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m59B1A952ECF8DFFD40E363ED14DFC8BC9B8F3A32_gshared (RuntimeArray * __this, FormatParamU5BU5D_t2F95A3C5AF726E75A42BC28843BAD579B62199B5* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); FormatParamU5BU5D_t2F95A3C5AF726E75A42BC28843BAD579B62199B5* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Reflection.CustomAttributeNamedArgument>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m1446DBA230CA912A16D3A5B507D327339E5EA2A3_gshared (RuntimeArray * __this, CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Reflection.CustomAttributeTypedArgument>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_m19A0D281CD8B8611FC34CA4D9EA4B375C26F95EA_gshared (RuntimeArray * __this, CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Reflection.ParameterModifier>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_mEE841A9F27362C2828AEBB1D4F00307B87FB141D_gshared (RuntimeArray * __this, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Resources.ResourceLocator>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_mBAFC4734CA9C7EB3D7E9C9954EB24FC78CE57F40_gshared (RuntimeArray * __this, ResourceLocatorU5BU5D_t59B7EB7C559188316AF65FCF8AF05BFD7EF9ADCC* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); ResourceLocatorU5BU5D_t59B7EB7C559188316AF65FCF8AF05BFD7EF9ADCC* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Runtime.CompilerServices.Ephemeron>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_mBF34CEBD4C9F51B48D385CA39DF3BA9DC8303CEE_gshared (RuntimeArray * __this, EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Runtime.InteropServices.GCHandle>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m1F7FA9481E06B3C3793A895C8F46E617227B3E1A_gshared (RuntimeArray * __this, GCHandleU5BU5D_tA6EC6308F1B33AD5233BD26DE6FB431B6CEF1DB7* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); GCHandleU5BU5D_tA6EC6308F1B33AD5233BD26DE6FB431B6CEF1DB7* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.SByte>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m9D2515304847DA1F840EF7D3BBBF61F57D8B4819_gshared (RuntimeArray * __this, SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_mB85696F8EEA3410F12961F1D859C1D8AAD056F17_gshared (RuntimeArray * __this, X509ChainStatusU5BU5D_tA8CCC33D50C4BCF6F657063CD1DACCC3B9A7BFBB* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); X509ChainStatusU5BU5D_tA8CCC33D50C4BCF6F657063CD1DACCC3B9A7BFBB* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Single>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m853565652CDABC7471089D6C457F3C96DE1BD9AC_gshared (RuntimeArray * __this, SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m6407F6BA78E0380AF6F07613AAD7E120E468A3CF_gshared (RuntimeArray * __this, LowerCaseMappingU5BU5D_t70011E1042888E1D071920A9171989A479C0618D* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); LowerCaseMappingU5BU5D_t70011E1042888E1D071920A9171989A479C0618D* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Threading.CancellationTokenRegistration>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m0E567790C095FC5B0F537859E43374A7E903C73F_gshared (RuntimeArray * __this, CancellationTokenRegistrationU5BU5D_t4B36771A6344CFC66696BB16419C664E286DAF1B* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); CancellationTokenRegistrationU5BU5D_t4B36771A6344CFC66696BB16419C664E286DAF1B* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.TimeSpan>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mA363276647EFB756F8489F1DC732F63DE89CBEB0_gshared (RuntimeArray * __this, TimeSpanU5BU5D_tCF326C038BD306190A013AE3C9F9B1A525054DD5* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); TimeSpanU5BU5D_tCF326C038BD306190A013AE3C9F9B1A525054DD5* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.UInt16>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mFEE4542DA90A80A9AF911BD5A06282D0C637110D_gshared (RuntimeArray * __this, UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.UInt16Enum>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_mE3A5194FB1C2ACEF57AA51B71D3FD75DA244AB7E_gshared (RuntimeArray * __this, UInt16EnumU5BU5D_t59CC59ED969571152B93967388F196CADE982BAF* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); UInt16EnumU5BU5D_t59CC59ED969571152B93967388F196CADE982BAF* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.UInt32>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m4E4654E1838D0D1614E4DFF5A08AC7269EB1C62F_gshared (RuntimeArray * __this, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.UInt32Enum>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_m86BC194A732D2AFD1B213A37B6E048E4BB610145_gshared (RuntimeArray * __this, UInt32EnumU5BU5D_t2778403AF5991B56F3099A77451B997447A7780C* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); UInt32EnumU5BU5D_t2778403AF5991B56F3099A77451B997447A7780C* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.UInt64>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m34C336DFE32942EF1F1D6BE2A13E0A3FF04DCA97_gshared (RuntimeArray * __this, UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.UIntPtr>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisUIntPtr_t_m731634CE2241AB0DE670A5AE11429C245C4EAA95_gshared (RuntimeArray * __this, UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Xml.Schema.SequenceNode_SequenceConstructPosContext>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m766287A2BAE364B270B487270E0E55A2F74F5B9D_gshared (RuntimeArray * __this, SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Xml.XmlNamespaceManager_NamespaceDeclaration>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_m202C7B5C35448F6A576E73C0E685695A67E5FBFE_gshared (RuntimeArray * __this, NamespaceDeclarationU5BU5D_t92995CBBEC52166860E77B72B8EEFF00E4D64E84* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); NamespaceDeclarationU5BU5D_t92995CBBEC52166860E77B72B8EEFF00E4D64E84* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<System.Xml.XmlTextReaderImpl_ParsingState>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_m0ECE29F3A0AD37763650CACD1F90FAE20DA3BDEA_gshared (RuntimeArray * __this, ParsingStateU5BU5D_t7A5096046F9BF1BA70E9696B2A2479272FC65739* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); ParsingStateU5BU5D_t7A5096046F9BF1BA70E9696B2A2479272FC65739* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.BeforeRenderHelper_OrderBlock>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mB265EE2F7032E35646EAD1A8E71A6331EF900A8E_gshared (RuntimeArray * __this, OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m9A6699B5FB3C434CB05284B000B74721B8FCE1D7_gshared (RuntimeArray * __this, PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Keyframe>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m147B6DE034D6FCB12EA0BE778A8FF089E5B7D6DE_gshared (RuntimeArray * __this, KeyframeU5BU5D_tF4DC3E9BD9E6DB77FFF7BDC0B1545B5D6071513D* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); KeyframeU5BU5D_tF4DC3E9BD9E6DB77FFF7BDC0B1545B5D6071513D* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Playables.PlayableBinding>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_mD0DF516292F7E8350F72BC9FC1726405F86143F6_gshared (RuntimeArray * __this, PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.SendMouseEvents_HitInfo>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_mC1CD7612185BF2C1C62D60806C582F00A1F662D8_gshared (RuntimeArray * __this, HitInfoU5BU5D_tA1A7DB3D520CAACEC1B3C3EC4071E4DA2EACA745* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); HitInfoU5BU5D_tA1A7DB3D520CAACEC1B3C3EC4071E4DA2EACA745* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m81A5FFD8D452E327F8FB2B31A4A5EEB256B54789_gshared (RuntimeArray * __this, GcAchievementDataU5BU5D_tC79014E784EC39581F7829D8AE60004B54433153* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); GcAchievementDataU5BU5D_tC79014E784EC39581F7829D8AE60004B54433153* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_m16D853292F03CED22BA131AA26AC2AE0ECEA5342_gshared (RuntimeArray * __this, GcScoreDataU5BU5D_tC3FADFA824E9BFBAA13EAE94D6A9BD04A19AE940* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); GcScoreDataU5BU5D_tC3FADFA824E9BFBAA13EAE94D6A9BD04A19AE940* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.UnitySynchronizationContext_WorkRequest>(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m28B4E440190499F3CC299FD4305930E8F46DDA4F_gshared (RuntimeArray * __this, WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL); WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__Insert<MS.Internal.Xml.Cache.XPathNode>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_m28C5F0A6FE9A07DCBCAD82A2A72AB1A5A8B77605_gshared (RuntimeArray * __this, int32_t ___index0, XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_m28C5F0A6FE9A07DCBCAD82A2A72AB1A5A8B77605_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_m28C5F0A6FE9A07DCBCAD82A2A72AB1A5A8B77605_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<MS.Internal.Xml.Cache.XPathNodeRef>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_m5F87DE759E7703D63097A9BFE4656BB09D59591B_gshared (RuntimeArray * __this, int32_t ___index0, XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_m5F87DE759E7703D63097A9BFE4656BB09D59591B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_m5F87DE759E7703D63097A9BFE4656BB09D59591B_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<Mono.Globalization.Unicode.CodePointIndexer_TableRange>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m267C106765C42662477BE62A7981DEF7141F8BEC_gshared (RuntimeArray * __this, int32_t ___index0, TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m267C106765C42662477BE62A7981DEF7141F8BEC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m267C106765C42662477BE62A7981DEF7141F8BEC_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<PInokeDemo_Boss>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisBoss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_mD121EBD777DF2A5F9A737A0E016457CF2A420A0A_gshared (RuntimeArray * __this, int32_t ___index0, Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisBoss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_mD121EBD777DF2A5F9A737A0E016457CF2A420A0A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisBoss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_mD121EBD777DF2A5F9A737A0E016457CF2A420A0A_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.ArraySegment`1<System.Byte>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_mD8C12E9537ADB27575F599896B3D15D5BBA75D9B_gshared (RuntimeArray * __this, int32_t ___index0, ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_mD8C12E9537ADB27575F599896B3D15D5BBA75D9B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_mD8C12E9537ADB27575F599896B3D15D5BBA75D9B_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Boolean>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mE9F6E0D310E603EA96A953EF1DD6C68F39730C9C_gshared (RuntimeArray * __this, int32_t ___index0, bool ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mE9F6E0D310E603EA96A953EF1DD6C68F39730C9C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mE9F6E0D310E603EA96A953EF1DD6C68F39730C9C_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Byte>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m39C0E1BB2E4639B675A0B24E8F7C369E05F25685_gshared (RuntimeArray * __this, int32_t ___index0, uint8_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m39C0E1BB2E4639B675A0B24E8F7C369E05F25685_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m39C0E1BB2E4639B675A0B24E8F7C369E05F25685_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.ByteEnum>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_m7F6A6780F368FE04054FC52535DA7A65F71EEAA9_gshared (RuntimeArray * __this, int32_t ___index0, uint8_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_m7F6A6780F368FE04054FC52535DA7A65F71EEAA9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_m7F6A6780F368FE04054FC52535DA7A65F71EEAA9_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Char>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m2E9DF91734F88A23FAB1941B8BEB5A251046DF63_gshared (RuntimeArray * __this, int32_t ___index0, Il2CppChar ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m2E9DF91734F88A23FAB1941B8BEB5A251046DF63_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m2E9DF91734F88A23FAB1941B8BEB5A251046DF63_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Collections.DictionaryEntry>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mC3AAD833A34DF3BF2CD9916A94EEBF85F84571D8_gshared (RuntimeArray * __this, int32_t ___index0, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mC3AAD833A34DF3BF2CD9916A94EEBF85F84571D8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mC3AAD833A34DF3BF2CD9916A94EEBF85F84571D8_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m23A4919E880F5BC6B4A8E4E947CFC6865CE7BD54_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tC1463A26CB3583633B8650196083947E916945AD ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m23A4919E880F5BC6B4A8E4E947CFC6865CE7BD54_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m23A4919E880F5BC6B4A8E4E947CFC6865CE7BD54_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Guid,System.Object>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_mBF0F64B2BA1CEA72F9E93BF8D1CE8B760D30FE6E_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_mBF0F64B2BA1CEA72F9E93BF8D1CE8B760D30FE6E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_mBF0F64B2BA1CEA72F9E93BF8D1CE8B760D30FE6E_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_mFC47BD3B041BC417842362A130A22922CA9D5210_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_mFC47BD3B041BC417842362A130A22922CA9D5210_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_mFC47BD3B041BC417842362A130A22922CA9D5210_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Boolean>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_mBC990E523C5FAC4D18228EE959A605F31DE2DBA9_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_mBC990E523C5FAC4D18228EE959A605F31DE2DBA9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_mBC990E523C5FAC4D18228EE959A605F31DE2DBA9_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m04DE7DE6F8761B7C1A649CB503F3FB80435FAF53_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m04DE7DE6F8761B7C1A649CB503F3FB80435FAF53_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m04DE7DE6F8761B7C1A649CB503F3FB80435FAF53_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m80D0262056AB6132787D162EC685AC57C2ABBF51_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m80D0262056AB6132787D162EC685AC57C2ABBF51_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m80D0262056AB6132787D162EC685AC57C2ABBF51_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBFA6837DC3148B8268BBDC819CC2B30C9B98D344_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBFA6837DC3148B8268BBDC819CC2B30C9B98D344_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBFA6837DC3148B8268BBDC819CC2B30C9B98D344_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m28D08A743D67FCCDD725EDF748AD9271AA31F7E0_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m28D08A743D67FCCDD725EDF748AD9271AA31F7E0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m28D08A743D67FCCDD725EDF748AD9271AA31F7E0_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m8117EAB836397B8746CE03DC38BDBE3688F41A5A_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m8117EAB836397B8746CE03DC38BDBE3688F41A5A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m8117EAB836397B8746CE03DC38BDBE3688F41A5A_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mFF6322E2EE3565369974ADC72D6091611498CEFB_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mFF6322E2EE3565369974ADC72D6091611498CEFB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mFF6322E2EE3565369974ADC72D6091611498CEFB_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mC942C668F49633E4DF42559D07500C0398440CB8_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mC942C668F49633E4DF42559D07500C0398440CB8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mC942C668F49633E4DF42559D07500C0398440CB8_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m1DC1D2CE7F27B6861D32667F792056810F14E6A2_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m1DC1D2CE7F27B6861D32667F792056810F14E6A2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m1DC1D2CE7F27B6861D32667F792056810F14E6A2_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_m982908B8D1321B92E6706BA118232673F1FCB2CD_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_m982908B8D1321B92E6706BA118232673F1FCB2CD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_m982908B8D1321B92E6706BA118232673F1FCB2CD_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_mCE8A2D462A033FB0B3BEC9AC0EA8A1AE4F880E8C_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_mCE8A2D462A033FB0B3BEC9AC0EA8A1AE4F880E8C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_mCE8A2D462A033FB0B3BEC9AC0EA8A1AE4F880E8C_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m0AA4311C56D9888BBA00A9F3E6FE48C48E62C104_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m0AA4311C56D9888BBA00A9F3E6FE48C48E62C104_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m0AA4311C56D9888BBA00A9F3E6FE48C48E62C104_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m5AAE842F1F6C7FAE42D1DBE719201D49C6205C8A_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m5AAE842F1F6C7FAE42D1DBE719201D49C6205C8A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m5AAE842F1F6C7FAE42D1DBE719201D49C6205C8A_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m0D2B5DDB8A92DC3C243626688F7C70607526A03D_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m0D2B5DDB8A92DC3C243626688F7C70607526A03D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m0D2B5DDB8A92DC3C243626688F7C70607526A03D_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_mF052ED2BAC7CB313FC0CA4022B0237BA62DD08A9_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_mF052ED2BAC7CB313FC0CA4022B0237BA62DD08A9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_mF052ED2BAC7CB313FC0CA4022B0237BA62DD08A9_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Collections.Hashtable_bucket>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mEE93EA250C3399D4F5A3779DB444AF83C9A2BB11_gshared (RuntimeArray * __this, int32_t ___index0, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mEE93EA250C3399D4F5A3779DB444AF83C9A2BB11_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mEE93EA250C3399D4F5A3779DB444AF83C9A2BB11_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.DateTime>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mC1A470EC548C3EECA307AB7491C7C03ACBEB6295_gshared (RuntimeArray * __this, int32_t ___index0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mC1A470EC548C3EECA307AB7491C7C03ACBEB6295_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mC1A470EC548C3EECA307AB7491C7C03ACBEB6295_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.DateTimeOffset>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m5B1BFF4BD07F7DE1A1F0AA346CAB42D57B22D1F2_gshared (RuntimeArray * __this, int32_t ___index0, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m5B1BFF4BD07F7DE1A1F0AA346CAB42D57B22D1F2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m5B1BFF4BD07F7DE1A1F0AA346CAB42D57B22D1F2_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Decimal>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m506AB5C14FB35E185FF78BED19CFF4B12D2D79E2_gshared (RuntimeArray * __this, int32_t ___index0, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m506AB5C14FB35E185FF78BED19CFF4B12D2D79E2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m506AB5C14FB35E185FF78BED19CFF4B12D2D79E2_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Diagnostics.Tracing.EventProvider_SessionInfo>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA4ECE1E944CD19885D8C51D9C886E2E8BCDC78B0_gshared (RuntimeArray * __this, int32_t ___index0, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA4ECE1E944CD19885D8C51D9C886E2E8BCDC78B0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA4ECE1E944CD19885D8C51D9C886E2E8BCDC78B0_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Diagnostics.Tracing.EventSource_EventMetadata>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_m0DDF0DDB5D5A4EA8FA34F057FAD4F3EC47D5BE79_gshared (RuntimeArray * __this, int32_t ___index0, EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_m0DDF0DDB5D5A4EA8FA34F057FAD4F3EC47D5BE79_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_m0DDF0DDB5D5A4EA8FA34F057FAD4F3EC47D5BE79_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Double>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m1F8E0FD15BFA1B3337DB17BB8862E5E7FDE3E7BE_gshared (RuntimeArray * __this, int32_t ___index0, double ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m1F8E0FD15BFA1B3337DB17BB8862E5E7FDE3E7BE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m1F8E0FD15BFA1B3337DB17BB8862E5E7FDE3E7BE_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Globalization.InternalCodePageDataItem>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01B1B14297575D96EE9191074E5632BC0B51A914_gshared (RuntimeArray * __this, int32_t ___index0, InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01B1B14297575D96EE9191074E5632BC0B51A914_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01B1B14297575D96EE9191074E5632BC0B51A914_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Globalization.InternalEncodingDataItem>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mF0B68FA4FB992EB82E6A755613ED52A537C1D7D7_gshared (RuntimeArray * __this, int32_t ___index0, InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mF0B68FA4FB992EB82E6A755613ED52A537C1D7D7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mF0B68FA4FB992EB82E6A755613ED52A537C1D7D7_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Guid>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisGuid_t_m9FD816450B7080391B67F48C9E123DB561466EF2_gshared (RuntimeArray * __this, int32_t ___index0, Guid_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisGuid_t_m9FD816450B7080391B67F48C9E123DB561466EF2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisGuid_t_m9FD816450B7080391B67F48C9E123DB561466EF2_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Int16>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mF074234522318193EE734BC9138E605CD9622EB5_gshared (RuntimeArray * __this, int32_t ___index0, int16_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mF074234522318193EE734BC9138E605CD9622EB5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mF074234522318193EE734BC9138E605CD9622EB5_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Int32>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m87666E66010673C970F94E1C303DE5E8FAE0C8C3_gshared (RuntimeArray * __this, int32_t ___index0, int32_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m87666E66010673C970F94E1C303DE5E8FAE0C8C3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m87666E66010673C970F94E1C303DE5E8FAE0C8C3_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Int32Enum>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mAF387A609B4339D2D5B2A4E8863A5D517599D7B1_gshared (RuntimeArray * __this, int32_t ___index0, int32_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mAF387A609B4339D2D5B2A4E8863A5D517599D7B1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mAF387A609B4339D2D5B2A4E8863A5D517599D7B1_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Int64>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4A9A88250BBA3249C36F53140B0F15D826777325_gshared (RuntimeArray * __this, int32_t ___index0, int64_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4A9A88250BBA3249C36F53140B0F15D826777325_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4A9A88250BBA3249C36F53140B0F15D826777325_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.IntPtr>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisIntPtr_t_mEF1B13612BA6200225FA42B47519FD25D74B81B1_gshared (RuntimeArray * __this, int32_t ___index0, intptr_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisIntPtr_t_mEF1B13612BA6200225FA42B47519FD25D74B81B1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisIntPtr_t_mEF1B13612BA6200225FA42B47519FD25D74B81B1_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Net.CookieTokenizer_RecognizedAttribute>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m0EA2E0CEAB796505E0618FD2931EEE5BFF7E5507_gshared (RuntimeArray * __this, int32_t ___index0, RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m0EA2E0CEAB796505E0618FD2931EEE5BFF7E5507_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m0EA2E0CEAB796505E0618FD2931EEE5BFF7E5507_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Net.HeaderVariantInfo>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mAF811887FDC7242E77CBC4B52D8BCB59C50603F4_gshared (RuntimeArray * __this, int32_t ___index0, HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mAF811887FDC7242E77CBC4B52D8BCB59C50603F4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mAF811887FDC7242E77CBC4B52D8BCB59C50603F4_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Net.Sockets.Socket_WSABUF>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m33154784D5C9F542C931B2806494AD1443E8757B_gshared (RuntimeArray * __this, int32_t ___index0, WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m33154784D5C9F542C931B2806494AD1443E8757B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m33154784D5C9F542C931B2806494AD1443E8757B_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Object>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisRuntimeObject_m2621683E821AC4AE9C55CD7C1DA21EBCC57807D1_gshared (RuntimeArray * __this, int32_t ___index0, RuntimeObject * ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisRuntimeObject_m2621683E821AC4AE9C55CD7C1DA21EBCC57807D1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisRuntimeObject_m2621683E821AC4AE9C55CD7C1DA21EBCC57807D1_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.ParameterizedStrings_FormatParam>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_mC0FD985A43489A501E702CA511A3859032A6CE9A_gshared (RuntimeArray * __this, int32_t ___index0, FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_mC0FD985A43489A501E702CA511A3859032A6CE9A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_mC0FD985A43489A501E702CA511A3859032A6CE9A_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Reflection.CustomAttributeNamedArgument>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mD4885C4B8D8E8E3097D1765E6A92ECF8F94AE5C7_gshared (RuntimeArray * __this, int32_t ___index0, CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mD4885C4B8D8E8E3097D1765E6A92ECF8F94AE5C7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mD4885C4B8D8E8E3097D1765E6A92ECF8F94AE5C7_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Reflection.CustomAttributeTypedArgument>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_m07D073239E468F11F0A92423F8C45E08E1B6D21E_gshared (RuntimeArray * __this, int32_t ___index0, CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_m07D073239E468F11F0A92423F8C45E08E1B6D21E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_m07D073239E468F11F0A92423F8C45E08E1B6D21E_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Reflection.ParameterModifier>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m71900E28A11269D320A0F0CBFBD9355A0451531C_gshared (RuntimeArray * __this, int32_t ___index0, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m71900E28A11269D320A0F0CBFBD9355A0451531C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m71900E28A11269D320A0F0CBFBD9355A0451531C_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Resources.ResourceLocator>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m8957E8B1D262157330910E34C749D6A0FBF12005_gshared (RuntimeArray * __this, int32_t ___index0, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m8957E8B1D262157330910E34C749D6A0FBF12005_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m8957E8B1D262157330910E34C749D6A0FBF12005_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Runtime.CompilerServices.Ephemeron>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m658F98B159EDE3EB39E0C386903E16BA2002FF44_gshared (RuntimeArray * __this, int32_t ___index0, Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m658F98B159EDE3EB39E0C386903E16BA2002FF44_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m658F98B159EDE3EB39E0C386903E16BA2002FF44_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Runtime.InteropServices.GCHandle>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m2256A0CF02F23CF41324F1D4CE6212928B4CAD7A_gshared (RuntimeArray * __this, int32_t ___index0, GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m2256A0CF02F23CF41324F1D4CE6212928B4CAD7A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m2256A0CF02F23CF41324F1D4CE6212928B4CAD7A_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.SByte>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m0FA77EEA9554B1BFC19FF42D1F5855E48A0D0576_gshared (RuntimeArray * __this, int32_t ___index0, int8_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m0FA77EEA9554B1BFC19FF42D1F5855E48A0D0576_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m0FA77EEA9554B1BFC19FF42D1F5855E48A0D0576_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Security.Cryptography.X509Certificates.X509ChainStatus>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_mC34C7EE0C657A7A2ECD59A49D3C4119D7B351C8E_gshared (RuntimeArray * __this, int32_t ___index0, X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_mC34C7EE0C657A7A2ECD59A49D3C4119D7B351C8E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_mC34C7EE0C657A7A2ECD59A49D3C4119D7B351C8E_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Single>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mAB37BBB9EF7D4C308D99207D279EC86DA722CA7C_gshared (RuntimeArray * __this, int32_t ___index0, float ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mAB37BBB9EF7D4C308D99207D279EC86DA722CA7C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mAB37BBB9EF7D4C308D99207D279EC86DA722CA7C_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_mA2AA8A2A95A3FEF70897324987502AD1FE53E6F0_gshared (RuntimeArray * __this, int32_t ___index0, LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_mA2AA8A2A95A3FEF70897324987502AD1FE53E6F0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_mA2AA8A2A95A3FEF70897324987502AD1FE53E6F0_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Threading.CancellationTokenRegistration>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m306EA880334E146139F06691FA435F36589DDB63_gshared (RuntimeArray * __this, int32_t ___index0, CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m306EA880334E146139F06691FA435F36589DDB63_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m306EA880334E146139F06691FA435F36589DDB63_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.TimeSpan>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mF4A9D9A3E13AE916760E1657B1D4660B6A07AEBB_gshared (RuntimeArray * __this, int32_t ___index0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mF4A9D9A3E13AE916760E1657B1D4660B6A07AEBB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mF4A9D9A3E13AE916760E1657B1D4660B6A07AEBB_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.UInt16>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mA151CCECC244AE62A4B8B19078AEDE5BFD0717DC_gshared (RuntimeArray * __this, int32_t ___index0, uint16_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mA151CCECC244AE62A4B8B19078AEDE5BFD0717DC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mA151CCECC244AE62A4B8B19078AEDE5BFD0717DC_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.UInt16Enum>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_mD3EC6C124E65BE8F0737D39BC922938073D5BDC6_gshared (RuntimeArray * __this, int32_t ___index0, uint16_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_mD3EC6C124E65BE8F0737D39BC922938073D5BDC6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_mD3EC6C124E65BE8F0737D39BC922938073D5BDC6_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.UInt32>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m18E5BCFA5461B75371A4DB4699F58B1475EA38FF_gshared (RuntimeArray * __this, int32_t ___index0, uint32_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m18E5BCFA5461B75371A4DB4699F58B1475EA38FF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m18E5BCFA5461B75371A4DB4699F58B1475EA38FF_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.UInt32Enum>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_mA2F7CF78455B07E081841B7C94161A3ABA89817B_gshared (RuntimeArray * __this, int32_t ___index0, uint32_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_mA2F7CF78455B07E081841B7C94161A3ABA89817B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_mA2F7CF78455B07E081841B7C94161A3ABA89817B_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.UInt64>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mA37D54F63F446397EF7403D2E47F9E498D2F845D_gshared (RuntimeArray * __this, int32_t ___index0, uint64_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mA37D54F63F446397EF7403D2E47F9E498D2F845D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mA37D54F63F446397EF7403D2E47F9E498D2F845D_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.UIntPtr>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisUIntPtr_t_mE9F3BBBCA98F05DEBFA3E90283BA265EA49B91F7_gshared (RuntimeArray * __this, int32_t ___index0, uintptr_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisUIntPtr_t_mE9F3BBBCA98F05DEBFA3E90283BA265EA49B91F7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisUIntPtr_t_mE9F3BBBCA98F05DEBFA3E90283BA265EA49B91F7_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Xml.Schema.SequenceNode_SequenceConstructPosContext>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m59902BE357936A7D2C61F26C3E99E9FFB4515D8A_gshared (RuntimeArray * __this, int32_t ___index0, SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m59902BE357936A7D2C61F26C3E99E9FFB4515D8A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m59902BE357936A7D2C61F26C3E99E9FFB4515D8A_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Xml.XmlNamespaceManager_NamespaceDeclaration>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_mE3564ADC7AFC168B70B3AEEBBDB30F1C791D4712_gshared (RuntimeArray * __this, int32_t ___index0, NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_mE3564ADC7AFC168B70B3AEEBBDB30F1C791D4712_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_mE3564ADC7AFC168B70B3AEEBBDB30F1C791D4712_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<System.Xml.XmlTextReaderImpl_ParsingState>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mC7B4F06520A4EEAFF045AF217D29F9A4AC243ED3_gshared (RuntimeArray * __this, int32_t ___index0, ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mC7B4F06520A4EEAFF045AF217D29F9A4AC243ED3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mC7B4F06520A4EEAFF045AF217D29F9A4AC243ED3_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<UnityEngine.BeforeRenderHelper_OrderBlock>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m88C1919D27F6B04E25EE64B03245DB35B5211870_gshared (RuntimeArray * __this, int32_t ___index0, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m88C1919D27F6B04E25EE64B03245DB35B5211870_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m88C1919D27F6B04E25EE64B03245DB35B5211870_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_mF5D0703796BCE5A44665238F9AB08E5BB84A4AC6_gshared (RuntimeArray * __this, int32_t ___index0, PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_mF5D0703796BCE5A44665238F9AB08E5BB84A4AC6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_mF5D0703796BCE5A44665238F9AB08E5BB84A4AC6_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<UnityEngine.Keyframe>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m814415ACE0DDA6F9C3599F01F4BCCFF52739BEDF_gshared (RuntimeArray * __this, int32_t ___index0, Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m814415ACE0DDA6F9C3599F01F4BCCFF52739BEDF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m814415ACE0DDA6F9C3599F01F4BCCFF52739BEDF_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<UnityEngine.Playables.PlayableBinding>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m84D093DCACA5ECE7F072D319DD1210DFE9800023_gshared (RuntimeArray * __this, int32_t ___index0, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m84D093DCACA5ECE7F072D319DD1210DFE9800023_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m84D093DCACA5ECE7F072D319DD1210DFE9800023_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<UnityEngine.SendMouseEvents_HitInfo>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_mB217196A981DF20A78F821A5676196C3E1EB852B_gshared (RuntimeArray * __this, int32_t ___index0, HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_mB217196A981DF20A78F821A5676196C3E1EB852B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_mB217196A981DF20A78F821A5676196C3E1EB852B_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m4E75EEDD697C75CF9A84DBD14ADB59660315AB6C_gshared (RuntimeArray * __this, int32_t ___index0, GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m4E75EEDD697C75CF9A84DBD14ADB59660315AB6C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m4E75EEDD697C75CF9A84DBD14ADB59660315AB6C_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_mDF4D4CA32B3DF183947742756F8D06E8289EA2AD_gshared (RuntimeArray * __this, int32_t ___index0, GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_mDF4D4CA32B3DF183947742756F8D06E8289EA2AD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_mDF4D4CA32B3DF183947742756F8D06E8289EA2AD_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__Insert<UnityEngine.UnitySynchronizationContext_WorkRequest>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mBEBE18F36496F5A8B9D865FB0B5AEE286734BE33_gshared (RuntimeArray * __this, int32_t ___index0, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mBEBE18F36496F5A8B9D865FB0B5AEE286734BE33_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mBEBE18F36496F5A8B9D865FB0B5AEE286734BE33_RuntimeMethod_var); } } // System.Void System.Array::InternalArray__set_Item<MS.Internal.Xml.Cache.XPathNode>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_mFE35EEA664F4AFF1B9DA92B5656485E9655C4DCA_gshared (RuntimeArray * __this, int32_t ___index0, XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_mFE35EEA664F4AFF1B9DA92B5656485E9655C4DCA_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_mFE35EEA664F4AFF1B9DA92B5656485E9655C4DCA_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 L_6 = ___item1; XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 *)(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<MS.Internal.Xml.Cache.XPathNodeRef>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_mA19E1C4BB875ED58BB61451E5B0EB428F7A93576_gshared (RuntimeArray * __this, int32_t ___index0, XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_mA19E1C4BB875ED58BB61451E5B0EB428F7A93576_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_mA19E1C4BB875ED58BB61451E5B0EB428F7A93576_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 L_6 = ___item1; XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 *)(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<Mono.Globalization.Unicode.CodePointIndexer_TableRange>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m1E3FB931A3C3E10DD605E8840C2EAA72C76E7B93_gshared (RuntimeArray * __this, int32_t ___index0, TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m1E3FB931A3C3E10DD605E8840C2EAA72C76E7B93_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m1E3FB931A3C3E10DD605E8840C2EAA72C76E7B93_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 L_6 = ___item1; TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<PInokeDemo_Boss>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisBoss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_m07AA86CFAE2F1068174875472D94A068FF5A13AB_gshared (RuntimeArray * __this, int32_t ___index0, Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisBoss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_m07AA86CFAE2F1068174875472D94A068FF5A13AB_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisBoss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020_m07AA86CFAE2F1068174875472D94A068FF5A13AB_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 L_6 = ___item1; Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 *)(Boss_t4DFCA8B70274E8A527C98C58DFBFAC4530831020 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.ArraySegment`1<System.Byte>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_m81CC827C340D0C5C16F52071A5919E9E17A430C4_gshared (RuntimeArray * __this, int32_t ___index0, ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_m81CC827C340D0C5C16F52071A5919E9E17A430C4_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_m81CC827C340D0C5C16F52071A5919E9E17A430C4_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA L_6 = ___item1; ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA *)(ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Boolean>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mB9E04DFA60220793747B0BADE85AE771411DE6DE_gshared (RuntimeArray * __this, int32_t ___index0, bool ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mB9E04DFA60220793747B0BADE85AE771411DE6DE_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mB9E04DFA60220793747B0BADE85AE771411DE6DE_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; bool L_6 = ___item1; bool L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (bool*)(bool*)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Byte>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m2315763EAE562CFBE6768B790ACAB530EFED59DD_gshared (RuntimeArray * __this, int32_t ___index0, uint8_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m2315763EAE562CFBE6768B790ACAB530EFED59DD_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m2315763EAE562CFBE6768B790ACAB530EFED59DD_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; uint8_t L_6 = ___item1; uint8_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (uint8_t*)(uint8_t*)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.ByteEnum>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_mBD0AEC628B67C57DAEA5BE0B927BBCC23D681BD7_gshared (RuntimeArray * __this, int32_t ___index0, uint8_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_mBD0AEC628B67C57DAEA5BE0B927BBCC23D681BD7_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_mBD0AEC628B67C57DAEA5BE0B927BBCC23D681BD7_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; uint8_t L_6 = ___item1; uint8_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (uint8_t*)(uint8_t*)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Char>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m46A5FA0AE653560A66BD34B6645630720A80A1B4_gshared (RuntimeArray * __this, int32_t ___index0, Il2CppChar ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m46A5FA0AE653560A66BD34B6645630720A80A1B4_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m46A5FA0AE653560A66BD34B6645630720A80A1B4_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; Il2CppChar L_6 = ___item1; Il2CppChar L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Il2CppChar*)(Il2CppChar*)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Collections.DictionaryEntry>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mCA9729A1813FE31DF596F39E419B8010BBEEB973_gshared (RuntimeArray * __this, int32_t ___index0, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mCA9729A1813FE31DF596F39E419B8010BBEEB973_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mCA9729A1813FE31DF596F39E419B8010BBEEB973_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_6 = ___item1; DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m61D547E71DB2B8DB94B8C060A09809419C801944_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tC1463A26CB3583633B8650196083947E916945AD ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m61D547E71DB2B8DB94B8C060A09809419C801944_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m61D547E71DB2B8DB94B8C060A09809419C801944_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; Entry_tC1463A26CB3583633B8650196083947E916945AD L_6 = ___item1; Entry_tC1463A26CB3583633B8650196083947E916945AD L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_tC1463A26CB3583633B8650196083947E916945AD *)(Entry_tC1463A26CB3583633B8650196083947E916945AD *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Guid,System.Object>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_mA4F36AD2B0748741888E3AB54E767EF770459EFF_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_mA4F36AD2B0748741888E3AB54E767EF770459EFF_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_mA4F36AD2B0748741888E3AB54E767EF770459EFF_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B L_6 = ___item1; Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B *)(Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m7488CF10C54CA7604BCB1CCB55DED55EA17257A6_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m7488CF10C54CA7604BCB1CCB55DED55EA17257A6_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m7488CF10C54CA7604BCB1CCB55DED55EA17257A6_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D L_6 = ___item1; Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Boolean>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_mB455BAB142D1A043E32226158D446F3BAA7036CF_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_mB455BAB142D1A043E32226158D446F3BAA7036CF_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_mB455BAB142D1A043E32226158D446F3BAA7036CF_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 L_6 = ___item1; Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 *)(Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m5814A5A9E71DE6ED93768D79458CA91590D61472_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m5814A5A9E71DE6ED93768D79458CA91590D61472_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m5814A5A9E71DE6ED93768D79458CA91590D61472_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE L_6 = ___item1; Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m083A2C255147C4C62B2DB027B133172B9879D882_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m083A2C255147C4C62B2DB027B133172B9879D882_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m083A2C255147C4C62B2DB027B133172B9879D882_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA L_6 = ___item1; Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mE6457E2A2BE2EE3F14218AE6531C96F30356C5E0_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mE6457E2A2BE2EE3F14218AE6531C96F30356C5E0_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mE6457E2A2BE2EE3F14218AE6531C96F30356C5E0_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D L_6 = ___item1; Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m8C94F368595DFDB063D08EE2CB48ABD1579CA754_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m8C94F368595DFDB063D08EE2CB48ABD1579CA754_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m8C94F368595DFDB063D08EE2CB48ABD1579CA754_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 L_6 = ___item1; Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 *)(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m18D3FDD2AC51D4E5865CA5B88707340A6B8C098D_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m18D3FDD2AC51D4E5865CA5B88707340A6B8C098D_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m18D3FDD2AC51D4E5865CA5B88707340A6B8C098D_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 L_6 = ___item1; KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 *)(KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mF2E103D39EC274030BB69C6CFFED255712EB5332_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mF2E103D39EC274030BB69C6CFFED255712EB5332_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mF2E103D39EC274030BB69C6CFFED255712EB5332_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_6 = ___item1; KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mE0361BCD39481331E7C04D2F52B469AACA99D63F_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mE0361BCD39481331E7C04D2F52B469AACA99D63F_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mE0361BCD39481331E7C04D2F52B469AACA99D63F_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 L_6 = ___item1; KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 *)(KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mAEDCD5F9CDC7238903F102934677BB6694BBD9D4_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mAEDCD5F9CDC7238903F102934677BB6694BBD9D4_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mAEDCD5F9CDC7238903F102934677BB6694BBD9D4_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 L_6 = ___item1; KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mBA59CD16C7B776DB1D433ADB02059F0C03F5BE2E_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mBA59CD16C7B776DB1D433ADB02059F0C03F5BE2E_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mBA59CD16C7B776DB1D433ADB02059F0C03F5BE2E_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE L_6 = ___item1; KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE *)(KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_m657785C7F9593EC322747AD1567BA87494FF4410_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_m657785C7F9593EC322747AD1567BA87494FF4410_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_m657785C7F9593EC322747AD1567BA87494FF4410_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 L_6 = ___item1; KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m5A46A4E4EF23FD4ADFB21D892EEE6ABF9B7CBC6B_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m5A46A4E4EF23FD4ADFB21D892EEE6ABF9B7CBC6B_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m5A46A4E4EF23FD4ADFB21D892EEE6ABF9B7CBC6B_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_6 = ___item1; KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mCDA3FBE262877EEF5D0FABB97F1834EF45F01E9C_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mCDA3FBE262877EEF5D0FABB97F1834EF45F01E9C_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mCDA3FBE262877EEF5D0FABB97F1834EF45F01E9C_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_6 = ___item1; KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m469D5CF79A08F150A62943BED71A8E21B25BE679_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m469D5CF79A08F150A62943BED71A8E21B25BE679_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m469D5CF79A08F150A62943BED71A8E21B25BE679_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_6 = ___item1; KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m0698983A52FE4D26E8DE7724576E187842487673_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m0698983A52FE4D26E8DE7724576E187842487673_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m0698983A52FE4D26E8DE7724576E187842487673_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 L_6 = ___item1; KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 *)(KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Collections.Hashtable_bucket>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m74A70583E6C9B4212D199F1B1E5FF06158C913BE_gshared (RuntimeArray * __this, int32_t ___index0, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m74A70583E6C9B4212D199F1B1E5FF06158C913BE_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m74A70583E6C9B4212D199F1B1E5FF06158C913BE_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_6 = ___item1; bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 *)(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.DateTime>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mA2EF7A58C4ACCA4433B7332867EB6A62C14C2819_gshared (RuntimeArray * __this, int32_t ___index0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mA2EF7A58C4ACCA4433B7332867EB6A62C14C2819_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mA2EF7A58C4ACCA4433B7332867EB6A62C14C2819_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_6 = ___item1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.DateTimeOffset>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m7C8FB45D060CA50EDD5B5C225EE4509E3F742D42_gshared (RuntimeArray * __this, int32_t ___index0, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m7C8FB45D060CA50EDD5B5C225EE4509E3F742D42_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m7C8FB45D060CA50EDD5B5C225EE4509E3F742D42_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_6 = ___item1; DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Decimal>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m8E583065C3CD257589C4429EE98FE2B50D545FAC_gshared (RuntimeArray * __this, int32_t ___index0, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m8E583065C3CD257589C4429EE98FE2B50D545FAC_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m8E583065C3CD257589C4429EE98FE2B50D545FAC_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_6 = ___item1; Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Diagnostics.Tracing.EventProvider_SessionInfo>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mC6C786952BA59DDAE83E8466E6397EED35D601E0_gshared (RuntimeArray * __this, int32_t ___index0, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mC6C786952BA59DDAE83E8466E6397EED35D601E0_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mC6C786952BA59DDAE83E8466E6397EED35D601E0_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_6 = ___item1; SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A *)(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Diagnostics.Tracing.EventSource_EventMetadata>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_m76CAA80AE578B1BBA2C35EB9273EE7436DDC840B_gshared (RuntimeArray * __this, int32_t ___index0, EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_m76CAA80AE578B1BBA2C35EB9273EE7436DDC840B_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_m76CAA80AE578B1BBA2C35EB9273EE7436DDC840B_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B L_6 = ___item1; EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B *)(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Double>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mF5A23A42B5B90A3C220801FA122C97860E711C3D_gshared (RuntimeArray * __this, int32_t ___index0, double ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mF5A23A42B5B90A3C220801FA122C97860E711C3D_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mF5A23A42B5B90A3C220801FA122C97860E711C3D_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; double L_6 = ___item1; double L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (double*)(double*)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Globalization.InternalCodePageDataItem>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01421A3FB2F89AEC3CF2DF7FBC708921953DEB81_gshared (RuntimeArray * __this, int32_t ___index0, InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01421A3FB2F89AEC3CF2DF7FBC708921953DEB81_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01421A3FB2F89AEC3CF2DF7FBC708921953DEB81_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 L_6 = ___item1; InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 *)(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Globalization.InternalEncodingDataItem>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m51EDD22D64367274BA4B0ED594BB6D34508E90D7_gshared (RuntimeArray * __this, int32_t ___index0, InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m51EDD22D64367274BA4B0ED594BB6D34508E90D7_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m51EDD22D64367274BA4B0ED594BB6D34508E90D7_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 L_6 = ___item1; InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 *)(InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Guid>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisGuid_t_m9FDD0AC842503D6E29C8E53FB550982C2230CF0F_gshared (RuntimeArray * __this, int32_t ___index0, Guid_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisGuid_t_m9FDD0AC842503D6E29C8E53FB550982C2230CF0F_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisGuid_t_m9FDD0AC842503D6E29C8E53FB550982C2230CF0F_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; Guid_t L_6 = ___item1; Guid_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Guid_t *)(Guid_t *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Int16>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mA74AF4E123BCFF15EEA312570636C08F5880316D_gshared (RuntimeArray * __this, int32_t ___index0, int16_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mA74AF4E123BCFF15EEA312570636C08F5880316D_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mA74AF4E123BCFF15EEA312570636C08F5880316D_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; int16_t L_6 = ___item1; int16_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (int16_t*)(int16_t*)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Int32>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m7FE5131FCEEB55A0429D246C4AC726EE85232F71_gshared (RuntimeArray * __this, int32_t ___index0, int32_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m7FE5131FCEEB55A0429D246C4AC726EE85232F71_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m7FE5131FCEEB55A0429D246C4AC726EE85232F71_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; int32_t L_6 = ___item1; int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (int32_t*)(int32_t*)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Int32Enum>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m7FCC674B564F0B8C20DC59A4B5EE9CBD9F2C02AB_gshared (RuntimeArray * __this, int32_t ___index0, int32_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m7FCC674B564F0B8C20DC59A4B5EE9CBD9F2C02AB_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m7FCC674B564F0B8C20DC59A4B5EE9CBD9F2C02AB_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; int32_t L_6 = ___item1; int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (int32_t*)(int32_t*)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Int64>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4FC592A9C1479783C221F1A0CCC037BB73E1F056_gshared (RuntimeArray * __this, int32_t ___index0, int64_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4FC592A9C1479783C221F1A0CCC037BB73E1F056_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4FC592A9C1479783C221F1A0CCC037BB73E1F056_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; int64_t L_6 = ___item1; int64_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (int64_t*)(int64_t*)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.IntPtr>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisIntPtr_t_m7BAFE0B0F88A620FF81E179BCE3A57BACD0ED0E7_gshared (RuntimeArray * __this, int32_t ___index0, intptr_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisIntPtr_t_m7BAFE0B0F88A620FF81E179BCE3A57BACD0ED0E7_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisIntPtr_t_m7BAFE0B0F88A620FF81E179BCE3A57BACD0ED0E7_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; intptr_t L_6 = ___item1; intptr_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (intptr_t*)(intptr_t*)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Net.CookieTokenizer_RecognizedAttribute>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m6ECC7721B4496EEDC51766A22FFE1135262E601D_gshared (RuntimeArray * __this, int32_t ___index0, RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m6ECC7721B4496EEDC51766A22FFE1135262E601D_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m6ECC7721B4496EEDC51766A22FFE1135262E601D_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B L_6 = ___item1; RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B *)(RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Net.HeaderVariantInfo>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mFDA0A9185276BCF79A0A695E6E458771496533FD_gshared (RuntimeArray * __this, int32_t ___index0, HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mFDA0A9185276BCF79A0A695E6E458771496533FD_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mFDA0A9185276BCF79A0A695E6E458771496533FD_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 L_6 = ___item1; HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 *)(HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Net.Sockets.Socket_WSABUF>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m9DCFFB6848DF1AA9BC6E62F9018AD5245E27A703_gshared (RuntimeArray * __this, int32_t ___index0, WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m9DCFFB6848DF1AA9BC6E62F9018AD5245E27A703_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m9DCFFB6848DF1AA9BC6E62F9018AD5245E27A703_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE L_6 = ___item1; WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE *)(WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Object>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisRuntimeObject_m84D4DC68A1BAC27655D58180AE6E26C0544F3D2A_gshared (RuntimeArray * __this, int32_t ___index0, RuntimeObject * ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisRuntimeObject_m84D4DC68A1BAC27655D58180AE6E26C0544F3D2A_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisRuntimeObject_m84D4DC68A1BAC27655D58180AE6E26C0544F3D2A_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; RuntimeObject * L_6 = ___item1; NullCheck(L_4); ArrayElementTypeCheck (L_4, L_6); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_6); return; } IL_0028: { int32_t L_7 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_7, (RuntimeObject **)(RuntimeObject **)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.ParameterizedStrings_FormatParam>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m5965B9608DC4898C968E4E05ABF2796E3490AC38_gshared (RuntimeArray * __this, int32_t ___index0, FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m5965B9608DC4898C968E4E05ABF2796E3490AC38_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m5965B9608DC4898C968E4E05ABF2796E3490AC38_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 L_6 = ___item1; FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 *)(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Reflection.CustomAttributeNamedArgument>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mAC4F4CA3698520D49EE6BB44ABE2BBC0A37EE067_gshared (RuntimeArray * __this, int32_t ___index0, CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mAC4F4CA3698520D49EE6BB44ABE2BBC0A37EE067_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mAC4F4CA3698520D49EE6BB44ABE2BBC0A37EE067_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E L_6 = ___item1; CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Reflection.CustomAttributeTypedArgument>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mC9140CDF26AC80354547CC651B0E757E367A6F38_gshared (RuntimeArray * __this, int32_t ___index0, CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mC9140CDF26AC80354547CC651B0E757E367A6F38_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mC9140CDF26AC80354547CC651B0E757E367A6F38_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 L_6 = ___item1; CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Reflection.ParameterModifier>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m14F79BE795265B3A064C920941AB20EF80837C55_gshared (RuntimeArray * __this, int32_t ___index0, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m14F79BE795265B3A064C920941AB20EF80837C55_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m14F79BE795265B3A064C920941AB20EF80837C55_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E L_6 = ___item1; ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E *)(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Resources.ResourceLocator>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m4FFDCA3412C2992784DBE5BF1803BAF71928C129_gshared (RuntimeArray * __this, int32_t ___index0, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m4FFDCA3412C2992784DBE5BF1803BAF71928C129_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m4FFDCA3412C2992784DBE5BF1803BAF71928C129_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_6 = ___item1; ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Runtime.CompilerServices.Ephemeron>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_mFCD14858BB3985147E82A080074A3C6A4D66D81B_gshared (RuntimeArray * __this, int32_t ___index0, Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_mFCD14858BB3985147E82A080074A3C6A4D66D81B_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_mFCD14858BB3985147E82A080074A3C6A4D66D81B_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA L_6 = ___item1; Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA *)(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Runtime.InteropServices.GCHandle>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mAD2875DFFF3C67D3752B6E49D8E9B0E78F4787E3_gshared (RuntimeArray * __this, int32_t ___index0, GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mAD2875DFFF3C67D3752B6E49D8E9B0E78F4787E3_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mAD2875DFFF3C67D3752B6E49D8E9B0E78F4787E3_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 L_6 = ___item1; GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.SByte>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mBAC38A7C35E4854032C95707A505B884BB39E874_gshared (RuntimeArray * __this, int32_t ___index0, int8_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mBAC38A7C35E4854032C95707A505B884BB39E874_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mBAC38A7C35E4854032C95707A505B884BB39E874_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; int8_t L_6 = ___item1; int8_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (int8_t*)(int8_t*)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Security.Cryptography.X509Certificates.X509ChainStatus>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_m76BCDEC0C6DD3F60200FE513484FF5A10A9BC18A_gshared (RuntimeArray * __this, int32_t ___index0, X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_m76BCDEC0C6DD3F60200FE513484FF5A10A9BC18A_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_m76BCDEC0C6DD3F60200FE513484FF5A10A9BC18A_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C L_6 = ___item1; X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C *)(X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Single>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m8C9703F6B9F64F8CD5706B3540D7F9A800AEC130_gshared (RuntimeArray * __this, int32_t ___index0, float ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m8C9703F6B9F64F8CD5706B3540D7F9A800AEC130_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m8C9703F6B9F64F8CD5706B3540D7F9A800AEC130_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; float L_6 = ___item1; float L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (float*)(float*)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m88D31F15A9828B472A8FBD06CE6499A4B9AA5095_gshared (RuntimeArray * __this, int32_t ___index0, LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m88D31F15A9828B472A8FBD06CE6499A4B9AA5095_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m88D31F15A9828B472A8FBD06CE6499A4B9AA5095_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B L_6 = ___item1; LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B *)(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Threading.CancellationTokenRegistration>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_mDA777866F7C2C3DF5607C5E02203D0E4AD21F84C_gshared (RuntimeArray * __this, int32_t ___index0, CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_mDA777866F7C2C3DF5607C5E02203D0E4AD21F84C_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_mDA777866F7C2C3DF5607C5E02203D0E4AD21F84C_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 L_6 = ___item1; CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.TimeSpan>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mDA3BD26CE863007EBB9125B0B5F01EF95A47FCC2_gshared (RuntimeArray * __this, int32_t ___index0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mDA3BD26CE863007EBB9125B0B5F01EF95A47FCC2_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mDA3BD26CE863007EBB9125B0B5F01EF95A47FCC2_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_6 = ___item1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.UInt16>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m1B9EF7FC63165E4C71551F5CEE2D365C782B76D7_gshared (RuntimeArray * __this, int32_t ___index0, uint16_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m1B9EF7FC63165E4C71551F5CEE2D365C782B76D7_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m1B9EF7FC63165E4C71551F5CEE2D365C782B76D7_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; uint16_t L_6 = ___item1; uint16_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (uint16_t*)(uint16_t*)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.UInt16Enum>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_m914235EFA3494019D9B603F7DDF34C27FBC41C00_gshared (RuntimeArray * __this, int32_t ___index0, uint16_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_m914235EFA3494019D9B603F7DDF34C27FBC41C00_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_m914235EFA3494019D9B603F7DDF34C27FBC41C00_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; uint16_t L_6 = ___item1; uint16_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (uint16_t*)(uint16_t*)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.UInt32>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mE83E8853FB0AA3C1C84FB6D5F188A7DFBF7B58E0_gshared (RuntimeArray * __this, int32_t ___index0, uint32_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mE83E8853FB0AA3C1C84FB6D5F188A7DFBF7B58E0_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mE83E8853FB0AA3C1C84FB6D5F188A7DFBF7B58E0_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; uint32_t L_6 = ___item1; uint32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (uint32_t*)(uint32_t*)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.UInt32Enum>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_m60DE3B4B58501B91F9E6E51B5696412405C7303D_gshared (RuntimeArray * __this, int32_t ___index0, uint32_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_m60DE3B4B58501B91F9E6E51B5696412405C7303D_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_m60DE3B4B58501B91F9E6E51B5696412405C7303D_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; uint32_t L_6 = ___item1; uint32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (uint32_t*)(uint32_t*)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.UInt64>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m2BEE0E74F5ACF236586C3154499DA4DF4B764AD2_gshared (RuntimeArray * __this, int32_t ___index0, uint64_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m2BEE0E74F5ACF236586C3154499DA4DF4B764AD2_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m2BEE0E74F5ACF236586C3154499DA4DF4B764AD2_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; uint64_t L_6 = ___item1; uint64_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (uint64_t*)(uint64_t*)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.UIntPtr>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisUIntPtr_t_m2648349D11C655B444AF3BEFC6C0E73E123B92A9_gshared (RuntimeArray * __this, int32_t ___index0, uintptr_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisUIntPtr_t_m2648349D11C655B444AF3BEFC6C0E73E123B92A9_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisUIntPtr_t_m2648349D11C655B444AF3BEFC6C0E73E123B92A9_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; uintptr_t L_6 = ___item1; uintptr_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (uintptr_t*)(uintptr_t*)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Xml.Schema.SequenceNode_SequenceConstructPosContext>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m8A8858F5E13DEB3C5B2A24037554624E8E8B720C_gshared (RuntimeArray * __this, int32_t ___index0, SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m8A8858F5E13DEB3C5B2A24037554624E8E8B720C_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m8A8858F5E13DEB3C5B2A24037554624E8E8B720C_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 L_6 = ___item1; SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 *)(SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Xml.XmlNamespaceManager_NamespaceDeclaration>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_m041818B062D2A9874641ACC96D97BBDDFC518C52_gshared (RuntimeArray * __this, int32_t ___index0, NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_m041818B062D2A9874641ACC96D97BBDDFC518C52_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_m041818B062D2A9874641ACC96D97BBDDFC518C52_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A L_6 = ___item1; NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A *)(NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<System.Xml.XmlTextReaderImpl_ParsingState>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mE9F2B59D6000F54B4632CAA735F1A2A34139E037_gshared (RuntimeArray * __this, int32_t ___index0, ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mE9F2B59D6000F54B4632CAA735F1A2A34139E037_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mE9F2B59D6000F54B4632CAA735F1A2A34139E037_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 L_6 = ___item1; ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 *)(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<UnityEngine.BeforeRenderHelper_OrderBlock>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mF8D46CC13EFBC4D2AE93483CCDD2E6B01CC689F9_gshared (RuntimeArray * __this, int32_t ___index0, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mF8D46CC13EFBC4D2AE93483CCDD2E6B01CC689F9_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mF8D46CC13EFBC4D2AE93483CCDD2E6B01CC689F9_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 L_6 = ___item1; OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m6A076451AA3F77754FFF77EF535DEA8A9128740C_gshared (RuntimeArray * __this, int32_t ___index0, PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m6A076451AA3F77754FFF77EF535DEA8A9128740C_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m6A076451AA3F77754FFF77EF535DEA8A9128740C_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D L_6 = ___item1; PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D *)(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<UnityEngine.Keyframe>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m647D9E49C5279A4E2EFF764FC1B3B787E97ECC12_gshared (RuntimeArray * __this, int32_t ___index0, Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m647D9E49C5279A4E2EFF764FC1B3B787E97ECC12_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m647D9E49C5279A4E2EFF764FC1B3B787E97ECC12_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 L_6 = ___item1; Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 *)(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<UnityEngine.Playables.PlayableBinding>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_mAF5BFF3E5EF25739091384771958CE9F7B36E8F5_gshared (RuntimeArray * __this, int32_t ___index0, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_mAF5BFF3E5EF25739091384771958CE9F7B36E8F5_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_mAF5BFF3E5EF25739091384771958CE9F7B36E8F5_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 L_6 = ___item1; PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 *)(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<UnityEngine.SendMouseEvents_HitInfo>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_m49F0BDE5938059294C1227B99C92773DEEA415D0_gshared (RuntimeArray * __this, int32_t ___index0, HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_m49F0BDE5938059294C1227B99C92773DEEA415D0_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_m49F0BDE5938059294C1227B99C92773DEEA415D0_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 L_6 = ___item1; HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 *)(HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m4ECDD9F013D455EC83B7B52B3CD47880927B938B_gshared (RuntimeArray * __this, int32_t ___index0, GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m4ECDD9F013D455EC83B7B52B3CD47880927B938B_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m4ECDD9F013D455EC83B7B52B3CD47880927B938B_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 L_6 = ___item1; GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 *)(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_m380B42619C8946FCE3816058A73AC26EF2FEA018_gshared (RuntimeArray * __this, int32_t ___index0, GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_m380B42619C8946FCE3816058A73AC26EF2FEA018_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_m380B42619C8946FCE3816058A73AC26EF2FEA018_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A L_6 = ___item1; GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A *)(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A *)(&___item1)); return; } } // System.Void System.Array::InternalArray__set_Item<UnityEngine.UnitySynchronizationContext_WorkRequest>(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m191595B96A5B85F3248B0C78DA9A1B0E37F24CAD_gshared (RuntimeArray * __this, int32_t ___index0, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m191595B96A5B85F3248B0C78DA9A1B0E37F24CAD_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___index0; NullCheck((RuntimeArray *)__this); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m191595B96A5B85F3248B0C78DA9A1B0E37F24CAD_RuntimeMethod_var); } IL_0014: { V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0028; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; int32_t L_5 = ___index0; WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_6 = ___item1; WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8); return; } IL_0028: { int32_t L_9 = ___index0; NullCheck((RuntimeArray *)__this); ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)(&___item1)); return; } } // System.Void System.Array::Resize<System.Byte>(T[]U26,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m06AF58E490AA366B34FFAAA68EF7179C85828C62_gshared (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** ___array0, int32_t ___newSize1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Resize_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m06AF58E490AA366B34FFAAA68EF7179C85828C62_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL; int32_t G_B7_0 = 0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B7_1 = NULL; int32_t G_B7_2 = 0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B7_3 = NULL; int32_t G_B6_0 = 0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B6_1 = NULL; int32_t G_B6_2 = 0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B6_3 = NULL; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B8_2 = NULL; int32_t G_B8_3 = 0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B8_4 = NULL; { int32_t L_0 = ___newSize1; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, (String_t*)_stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Resize_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m06AF58E490AA366B34FFAAA68EF7179C85828C62_RuntimeMethod_var); } IL_0014: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_2 = ___array0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = *((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**)L_2); V_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)L_3; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_0; if (L_4) { goto IL_0023; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_5 = ___array0; int32_t L_6 = ___newSize1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_6); *((RuntimeObject **)L_5) = (RuntimeObject *)L_7; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7); return; } IL_0023: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = V_0; NullCheck(L_8); int32_t L_9 = ___newSize1; if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) == ((int32_t)L_9))) { goto IL_0048; } } { int32_t L_10 = ___newSize1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_10); V_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)L_11; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = V_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = V_1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = V_0; NullCheck(L_14); int32_t L_15 = ___newSize1; G_B6_0 = 0; G_B6_1 = L_13; G_B6_2 = 0; G_B6_3 = L_12; if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))) > ((int32_t)L_15))) { G_B7_0 = 0; G_B7_1 = L_13; G_B7_2 = 0; G_B7_3 = L_12; goto IL_003f; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = V_0; NullCheck(L_16); G_B8_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length)))); G_B8_1 = G_B6_0; G_B8_2 = G_B6_1; G_B8_3 = G_B6_2; G_B8_4 = G_B6_3; goto IL_0040; } IL_003f: { int32_t L_17 = ___newSize1; G_B8_0 = L_17; G_B8_1 = G_B7_0; G_B8_2 = G_B7_1; G_B8_3 = G_B7_2; G_B8_4 = G_B7_3; } IL_0040: { Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)G_B8_4, (int32_t)G_B8_3, (RuntimeArray *)(RuntimeArray *)G_B8_2, (int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_18 = ___array0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = V_1; *((RuntimeObject **)L_18) = (RuntimeObject *)L_19; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_18, (RuntimeObject *)L_19); } IL_0048: { return; } } // System.Void System.Array::Resize<System.Char>(T[]U26,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC_gshared (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** ___array0, int32_t ___newSize1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC_MetadataUsageId); s_Il2CppMethodInitialized = true; } CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_0 = NULL; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_1 = NULL; int32_t G_B7_0 = 0; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B7_1 = NULL; int32_t G_B7_2 = 0; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B7_3 = NULL; int32_t G_B6_0 = 0; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B6_1 = NULL; int32_t G_B6_2 = 0; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B6_3 = NULL; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B8_2 = NULL; int32_t G_B8_3 = 0; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B8_4 = NULL; { int32_t L_0 = ___newSize1; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, (String_t*)_stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC_RuntimeMethod_var); } IL_0014: { CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** L_2 = ___array0; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = *((CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2**)L_2); V_0 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)L_3; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = V_0; if (L_4) { goto IL_0023; } } { CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** L_5 = ___array0; int32_t L_6 = ___newSize1; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_7 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_6); *((RuntimeObject **)L_5) = (RuntimeObject *)L_7; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7); return; } IL_0023: { CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_8 = V_0; NullCheck(L_8); int32_t L_9 = ___newSize1; if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) == ((int32_t)L_9))) { goto IL_0048; } } { int32_t L_10 = ___newSize1; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_11 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_10); V_1 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)L_11; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_12 = V_0; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_13 = V_1; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_14 = V_0; NullCheck(L_14); int32_t L_15 = ___newSize1; G_B6_0 = 0; G_B6_1 = L_13; G_B6_2 = 0; G_B6_3 = L_12; if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))) > ((int32_t)L_15))) { G_B7_0 = 0; G_B7_1 = L_13; G_B7_2 = 0; G_B7_3 = L_12; goto IL_003f; } } { CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_16 = V_0; NullCheck(L_16); G_B8_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length)))); G_B8_1 = G_B6_0; G_B8_2 = G_B6_1; G_B8_3 = G_B6_2; G_B8_4 = G_B6_3; goto IL_0040; } IL_003f: { int32_t L_17 = ___newSize1; G_B8_0 = L_17; G_B8_1 = G_B7_0; G_B8_2 = G_B7_1; G_B8_3 = G_B7_2; G_B8_4 = G_B7_3; } IL_0040: { Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)G_B8_4, (int32_t)G_B8_3, (RuntimeArray *)(RuntimeArray *)G_B8_2, (int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** L_18 = ___array0; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_19 = V_1; *((RuntimeObject **)L_18) = (RuntimeObject *)L_19; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_18, (RuntimeObject *)L_19); } IL_0048: { return; } } // System.Void System.Array::Resize<System.Object>(T[]U26,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisRuntimeObject_m5DDE22DC2BDD151FF241480E31970F64BE8FF63F_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** ___array0, int32_t ___newSize1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Resize_TisRuntimeObject_m5DDE22DC2BDD151FF241480E31970F64BE8FF63F_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL; int32_t G_B7_0 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B7_1 = NULL; int32_t G_B7_2 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B7_3 = NULL; int32_t G_B6_0 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B6_1 = NULL; int32_t G_B6_2 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B6_3 = NULL; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B8_2 = NULL; int32_t G_B8_3 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B8_4 = NULL; { int32_t L_0 = ___newSize1; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, (String_t*)_stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Resize_TisRuntimeObject_m5DDE22DC2BDD151FF241480E31970F64BE8FF63F_RuntimeMethod_var); } IL_0014: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** L_2 = ___array0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = *((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)L_2); V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_3; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0; if (L_4) { goto IL_0023; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** L_5 = ___array0; int32_t L_6 = ___newSize1; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_6); *((RuntimeObject **)L_5) = (RuntimeObject *)L_7; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7); return; } IL_0023: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = V_0; NullCheck(L_8); int32_t L_9 = ___newSize1; if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) == ((int32_t)L_9))) { goto IL_0048; } } { int32_t L_10 = ___newSize1; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_10); V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_11; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = V_0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = V_1; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = V_0; NullCheck(L_14); int32_t L_15 = ___newSize1; G_B6_0 = 0; G_B6_1 = L_13; G_B6_2 = 0; G_B6_3 = L_12; if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))) > ((int32_t)L_15))) { G_B7_0 = 0; G_B7_1 = L_13; G_B7_2 = 0; G_B7_3 = L_12; goto IL_003f; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = V_0; NullCheck(L_16); G_B8_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length)))); G_B8_1 = G_B6_0; G_B8_2 = G_B6_1; G_B8_3 = G_B6_2; G_B8_4 = G_B6_3; goto IL_0040; } IL_003f: { int32_t L_17 = ___newSize1; G_B8_0 = L_17; G_B8_1 = G_B7_0; G_B8_2 = G_B7_1; G_B8_3 = G_B7_2; G_B8_4 = G_B7_3; } IL_0040: { Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)G_B8_4, (int32_t)G_B8_3, (RuntimeArray *)(RuntimeArray *)G_B8_2, (int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** L_18 = ___array0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = V_1; *((RuntimeObject **)L_18) = (RuntimeObject *)L_19; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_18, (RuntimeObject *)L_19); } IL_0048: { return; } } // System.Void System.Array::Resize<System.Xml.Schema.SequenceNode_SequenceConstructPosContext>(T[]U26,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m3A6E3BB1A813660FBAC90C9449EB01DD71F2D723_gshared (SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0** ___array0, int32_t ___newSize1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Resize_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m3A6E3BB1A813660FBAC90C9449EB01DD71F2D723_MetadataUsageId); s_Il2CppMethodInitialized = true; } SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* V_0 = NULL; SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* V_1 = NULL; int32_t G_B7_0 = 0; SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* G_B7_1 = NULL; int32_t G_B7_2 = 0; SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* G_B7_3 = NULL; int32_t G_B6_0 = 0; SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* G_B6_1 = NULL; int32_t G_B6_2 = 0; SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* G_B6_3 = NULL; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* G_B8_2 = NULL; int32_t G_B8_3 = 0; SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* G_B8_4 = NULL; { int32_t L_0 = ___newSize1; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, (String_t*)_stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Resize_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m3A6E3BB1A813660FBAC90C9449EB01DD71F2D723_RuntimeMethod_var); } IL_0014: { SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0** L_2 = ___array0; SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* L_3 = *((SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0**)L_2); V_0 = (SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0*)L_3; SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* L_4 = V_0; if (L_4) { goto IL_0023; } } { SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0** L_5 = ___array0; int32_t L_6 = ___newSize1; SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* L_7 = (SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_6); *((RuntimeObject **)L_5) = (RuntimeObject *)L_7; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7); return; } IL_0023: { SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* L_8 = V_0; NullCheck(L_8); int32_t L_9 = ___newSize1; if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) == ((int32_t)L_9))) { goto IL_0048; } } { int32_t L_10 = ___newSize1; SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* L_11 = (SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_10); V_1 = (SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0*)L_11; SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* L_12 = V_0; SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* L_13 = V_1; SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* L_14 = V_0; NullCheck(L_14); int32_t L_15 = ___newSize1; G_B6_0 = 0; G_B6_1 = L_13; G_B6_2 = 0; G_B6_3 = L_12; if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))) > ((int32_t)L_15))) { G_B7_0 = 0; G_B7_1 = L_13; G_B7_2 = 0; G_B7_3 = L_12; goto IL_003f; } } { SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* L_16 = V_0; NullCheck(L_16); G_B8_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length)))); G_B8_1 = G_B6_0; G_B8_2 = G_B6_1; G_B8_3 = G_B6_2; G_B8_4 = G_B6_3; goto IL_0040; } IL_003f: { int32_t L_17 = ___newSize1; G_B8_0 = L_17; G_B8_1 = G_B7_0; G_B8_2 = G_B7_1; G_B8_3 = G_B7_2; G_B8_4 = G_B7_3; } IL_0040: { Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)G_B8_4, (int32_t)G_B8_3, (RuntimeArray *)(RuntimeArray *)G_B8_2, (int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL); SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0** L_18 = ___array0; SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* L_19 = V_1; *((RuntimeObject **)L_18) = (RuntimeObject *)L_19; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_18, (RuntimeObject *)L_19); } IL_0048: { return; } } // System.Void System.Array::Reverse<System.Boolean>(T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m3185FC6FBAF4AB44EB30798AFB1D1F33B1FC512C_gshared (BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Reverse_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m3185FC6FBAF4AB44EB30798AFB1D1F33B1FC512C_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; bool V_2 = false; String_t* G_B7_0 = NULL; { BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m3185FC6FBAF4AB44EB30798AFB1D1F33B1FC512C_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0016; } } { int32_t L_3 = ___length2; if ((((int32_t)L_3) >= ((int32_t)0))) { goto IL_0031; } } IL_0016: { int32_t L_4 = ___index1; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0021; } } { G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891; goto IL_0026; } IL_0021: { G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346; } IL_0026: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Reverse_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m3185FC6FBAF4AB44EB30798AFB1D1F33B1FC512C_RuntimeMethod_var); } IL_0031: { BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_6 = ___array0; NullCheck(L_6); int32_t L_7 = ___index1; int32_t L_8 = ___length2; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8))) { goto IL_0044; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m3185FC6FBAF4AB44EB30798AFB1D1F33B1FC512C_RuntimeMethod_var); } IL_0044: { int32_t L_10 = ___index1; V_0 = (int32_t)L_10; int32_t L_11 = ___index1; int32_t L_12 = ___length2; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (int32_t)1)); goto IL_0074; } IL_004e: { BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_13 = ___array0; int32_t L_14 = V_0; NullCheck(L_13); int32_t L_15 = L_14; bool L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); V_2 = (bool)L_16; BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_17 = ___array0; int32_t L_18 = V_0; BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_19 = ___array0; int32_t L_20 = V_1; NullCheck(L_19); int32_t L_21 = L_20; bool L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21)); NullCheck(L_17); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (bool)L_22); BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_23 = ___array0; int32_t L_24 = V_1; bool L_25 = V_2; NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (bool)L_25); int32_t L_26 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)); int32_t L_27 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1)); } IL_0074: { int32_t L_28 = V_0; int32_t L_29 = V_1; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_004e; } } { return; } } // System.Void System.Array::Reverse<System.Byte>(T[]) extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m03D674052100D1E9D6214ADD31FE7E5F7E6788DA_gshared (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m03D674052100D1E9D6214ADD31FE7E5F7E6788DA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m03D674052100D1E9D6214ADD31FE7E5F7E6788DA_RuntimeMethod_var); } IL_000e: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___array0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___array0; NullCheck(L_3); (( void (*) (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)L_2, (int32_t)0, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return; } } // System.Void System.Array::Reverse<System.Byte>(T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mC6D04DB36698F31262134DEEF6B9C03026200F13_gshared (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mC6D04DB36698F31262134DEEF6B9C03026200F13_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint8_t V_2 = 0x0; String_t* G_B7_0 = NULL; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mC6D04DB36698F31262134DEEF6B9C03026200F13_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0016; } } { int32_t L_3 = ___length2; if ((((int32_t)L_3) >= ((int32_t)0))) { goto IL_0031; } } IL_0016: { int32_t L_4 = ___index1; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0021; } } { G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891; goto IL_0026; } IL_0021: { G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346; } IL_0026: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mC6D04DB36698F31262134DEEF6B9C03026200F13_RuntimeMethod_var); } IL_0031: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ___array0; NullCheck(L_6); int32_t L_7 = ___index1; int32_t L_8 = ___length2; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8))) { goto IL_0044; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mC6D04DB36698F31262134DEEF6B9C03026200F13_RuntimeMethod_var); } IL_0044: { int32_t L_10 = ___index1; V_0 = (int32_t)L_10; int32_t L_11 = ___index1; int32_t L_12 = ___length2; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (int32_t)1)); goto IL_0074; } IL_004e: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ___array0; int32_t L_14 = V_0; NullCheck(L_13); int32_t L_15 = L_14; uint8_t L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); V_2 = (uint8_t)L_16; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = ___array0; int32_t L_18 = V_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = ___array0; int32_t L_20 = V_1; NullCheck(L_19); int32_t L_21 = L_20; uint8_t L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21)); NullCheck(L_17); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (uint8_t)L_22); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = ___array0; int32_t L_24 = V_1; uint8_t L_25 = V_2; NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (uint8_t)L_25); int32_t L_26 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)); int32_t L_27 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1)); } IL_0074: { int32_t L_28 = V_0; int32_t L_29 = V_1; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_004e; } } { return; } } // System.Void System.Array::Reverse<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mD8757F39E77A7C7D678EB7C18B6E66B1E340A0CD_gshared (KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Reverse_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mD8757F39E77A7C7D678EB7C18B6E66B1E340A0CD_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B V_2; memset(&V_2, 0, sizeof(V_2)); String_t* G_B7_0 = NULL; { KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mD8757F39E77A7C7D678EB7C18B6E66B1E340A0CD_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0016; } } { int32_t L_3 = ___length2; if ((((int32_t)L_3) >= ((int32_t)0))) { goto IL_0031; } } IL_0016: { int32_t L_4 = ___index1; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0021; } } { G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891; goto IL_0026; } IL_0021: { G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346; } IL_0026: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Reverse_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mD8757F39E77A7C7D678EB7C18B6E66B1E340A0CD_RuntimeMethod_var); } IL_0031: { KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_6 = ___array0; NullCheck(L_6); int32_t L_7 = ___index1; int32_t L_8 = ___length2; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8))) { goto IL_0044; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mD8757F39E77A7C7D678EB7C18B6E66B1E340A0CD_RuntimeMethod_var); } IL_0044: { int32_t L_10 = ___index1; V_0 = (int32_t)L_10; int32_t L_11 = ___index1; int32_t L_12 = ___length2; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (int32_t)1)); goto IL_0074; } IL_004e: { KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_13 = ___array0; int32_t L_14 = V_0; NullCheck(L_13); int32_t L_15 = L_14; KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_16 = (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )(L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); V_2 = (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )L_16; KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_17 = ___array0; int32_t L_18 = V_0; KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_19 = ___array0; int32_t L_20 = V_1; NullCheck(L_19); int32_t L_21 = L_20; KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_22 = (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )(L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21)); NullCheck(L_17); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )L_22); KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_23 = ___array0; int32_t L_24 = V_1; KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_25 = V_2; NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )L_25); int32_t L_26 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)); int32_t L_27 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1)); } IL_0074: { int32_t L_28 = V_0; int32_t L_29 = V_1; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_004e; } } { return; } } // System.Void System.Array::Reverse<System.DateTime>(T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m6D57F65828B620E5BFF0B7C05DD772FA7E7CD02D_gshared (DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Reverse_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m6D57F65828B620E5BFF0B7C05DD772FA7E7CD02D_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_2; memset(&V_2, 0, sizeof(V_2)); String_t* G_B7_0 = NULL; { DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m6D57F65828B620E5BFF0B7C05DD772FA7E7CD02D_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0016; } } { int32_t L_3 = ___length2; if ((((int32_t)L_3) >= ((int32_t)0))) { goto IL_0031; } } IL_0016: { int32_t L_4 = ___index1; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0021; } } { G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891; goto IL_0026; } IL_0021: { G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346; } IL_0026: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Reverse_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m6D57F65828B620E5BFF0B7C05DD772FA7E7CD02D_RuntimeMethod_var); } IL_0031: { DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1* L_6 = ___array0; NullCheck(L_6); int32_t L_7 = ___index1; int32_t L_8 = ___length2; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8))) { goto IL_0044; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m6D57F65828B620E5BFF0B7C05DD772FA7E7CD02D_RuntimeMethod_var); } IL_0044: { int32_t L_10 = ___index1; V_0 = (int32_t)L_10; int32_t L_11 = ___index1; int32_t L_12 = ___length2; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (int32_t)1)); goto IL_0074; } IL_004e: { DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1* L_13 = ___array0; int32_t L_14 = V_0; NullCheck(L_13); int32_t L_15 = L_14; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); V_2 = (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_16; DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1* L_17 = ___array0; int32_t L_18 = V_0; DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1* L_19 = ___array0; int32_t L_20 = V_1; NullCheck(L_19); int32_t L_21 = L_20; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21)); NullCheck(L_17); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_22); DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1* L_23 = ___array0; int32_t L_24 = V_1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_25 = V_2; NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_25); int32_t L_26 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)); int32_t L_27 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1)); } IL_0074: { int32_t L_28 = V_0; int32_t L_29 = V_1; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_004e; } } { return; } } // System.Void System.Array::Reverse<System.DateTimeOffset>(T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m3D1CB4EBFE0546C88F25CEE130CA0973D0812963_gshared (DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Reverse_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m3D1CB4EBFE0546C88F25CEE130CA0973D0812963_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 V_2; memset(&V_2, 0, sizeof(V_2)); String_t* G_B7_0 = NULL; { DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m3D1CB4EBFE0546C88F25CEE130CA0973D0812963_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0016; } } { int32_t L_3 = ___length2; if ((((int32_t)L_3) >= ((int32_t)0))) { goto IL_0031; } } IL_0016: { int32_t L_4 = ___index1; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0021; } } { G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891; goto IL_0026; } IL_0021: { G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346; } IL_0026: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Reverse_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m3D1CB4EBFE0546C88F25CEE130CA0973D0812963_RuntimeMethod_var); } IL_0031: { DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25* L_6 = ___array0; NullCheck(L_6); int32_t L_7 = ___index1; int32_t L_8 = ___length2; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8))) { goto IL_0044; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m3D1CB4EBFE0546C88F25CEE130CA0973D0812963_RuntimeMethod_var); } IL_0044: { int32_t L_10 = ___index1; V_0 = (int32_t)L_10; int32_t L_11 = ___index1; int32_t L_12 = ___length2; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (int32_t)1)); goto IL_0074; } IL_004e: { DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25* L_13 = ___array0; int32_t L_14 = V_0; NullCheck(L_13); int32_t L_15 = L_14; DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); V_2 = (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_16; DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25* L_17 = ___array0; int32_t L_18 = V_0; DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25* L_19 = ___array0; int32_t L_20 = V_1; NullCheck(L_19); int32_t L_21 = L_20; DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21)); NullCheck(L_17); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_22); DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25* L_23 = ___array0; int32_t L_24 = V_1; DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_25 = V_2; NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_25); int32_t L_26 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)); int32_t L_27 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1)); } IL_0074: { int32_t L_28 = V_0; int32_t L_29 = V_1; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_004e; } } { return; } } // System.Void System.Array::Reverse<System.Decimal>(T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mF3127FBEBF3264D006E8A59EED6FDAC172A99E4D_gshared (DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Reverse_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mF3127FBEBF3264D006E8A59EED6FDAC172A99E4D_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 V_2; memset(&V_2, 0, sizeof(V_2)); String_t* G_B7_0 = NULL; { DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mF3127FBEBF3264D006E8A59EED6FDAC172A99E4D_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0016; } } { int32_t L_3 = ___length2; if ((((int32_t)L_3) >= ((int32_t)0))) { goto IL_0031; } } IL_0016: { int32_t L_4 = ___index1; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0021; } } { G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891; goto IL_0026; } IL_0021: { G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346; } IL_0026: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Reverse_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mF3127FBEBF3264D006E8A59EED6FDAC172A99E4D_RuntimeMethod_var); } IL_0031: { DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* L_6 = ___array0; NullCheck(L_6); int32_t L_7 = ___index1; int32_t L_8 = ___length2; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8))) { goto IL_0044; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mF3127FBEBF3264D006E8A59EED6FDAC172A99E4D_RuntimeMethod_var); } IL_0044: { int32_t L_10 = ___index1; V_0 = (int32_t)L_10; int32_t L_11 = ___index1; int32_t L_12 = ___length2; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (int32_t)1)); goto IL_0074; } IL_004e: { DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* L_13 = ___array0; int32_t L_14 = V_0; NullCheck(L_13); int32_t L_15 = L_14; Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); V_2 = (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_16; DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* L_17 = ___array0; int32_t L_18 = V_0; DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* L_19 = ___array0; int32_t L_20 = V_1; NullCheck(L_19); int32_t L_21 = L_20; Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21)); NullCheck(L_17); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_22); DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* L_23 = ___array0; int32_t L_24 = V_1; Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_25 = V_2; NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_25); int32_t L_26 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)); int32_t L_27 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1)); } IL_0074: { int32_t L_28 = V_0; int32_t L_29 = V_1; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_004e; } } { return; } } // System.Void System.Array::Reverse<System.Diagnostics.Tracing.EventProvider_SessionInfo>(T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m38D4AFBD190745AEEB6F25799F8EF1212FB4EFCE_gshared (SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Reverse_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m38D4AFBD190745AEEB6F25799F8EF1212FB4EFCE_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A V_2; memset(&V_2, 0, sizeof(V_2)); String_t* G_B7_0 = NULL; { SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m38D4AFBD190745AEEB6F25799F8EF1212FB4EFCE_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0016; } } { int32_t L_3 = ___length2; if ((((int32_t)L_3) >= ((int32_t)0))) { goto IL_0031; } } IL_0016: { int32_t L_4 = ___index1; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0021; } } { G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891; goto IL_0026; } IL_0021: { G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346; } IL_0026: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Reverse_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m38D4AFBD190745AEEB6F25799F8EF1212FB4EFCE_RuntimeMethod_var); } IL_0031: { SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_6 = ___array0; NullCheck(L_6); int32_t L_7 = ___index1; int32_t L_8 = ___length2; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8))) { goto IL_0044; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m38D4AFBD190745AEEB6F25799F8EF1212FB4EFCE_RuntimeMethod_var); } IL_0044: { int32_t L_10 = ___index1; V_0 = (int32_t)L_10; int32_t L_11 = ___index1; int32_t L_12 = ___length2; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (int32_t)1)); goto IL_0074; } IL_004e: { SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_13 = ___array0; int32_t L_14 = V_0; NullCheck(L_13); int32_t L_15 = L_14; SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); V_2 = (SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A )L_16; SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_17 = ___array0; int32_t L_18 = V_0; SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_19 = ___array0; int32_t L_20 = V_1; NullCheck(L_19); int32_t L_21 = L_20; SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21)); NullCheck(L_17); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A )L_22); SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_23 = ___array0; int32_t L_24 = V_1; SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_25 = V_2; NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A )L_25); int32_t L_26 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)); int32_t L_27 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1)); } IL_0074: { int32_t L_28 = V_0; int32_t L_29 = V_1; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_004e; } } { return; } } // System.Void System.Array::Reverse<System.Double>(T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m2D1A9466E1EA5576CD58C21530B78D6CA3B61023_gshared (DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Reverse_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m2D1A9466E1EA5576CD58C21530B78D6CA3B61023_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; double V_2 = 0.0; String_t* G_B7_0 = NULL; { DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m2D1A9466E1EA5576CD58C21530B78D6CA3B61023_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0016; } } { int32_t L_3 = ___length2; if ((((int32_t)L_3) >= ((int32_t)0))) { goto IL_0031; } } IL_0016: { int32_t L_4 = ___index1; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0021; } } { G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891; goto IL_0026; } IL_0021: { G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346; } IL_0026: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Reverse_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m2D1A9466E1EA5576CD58C21530B78D6CA3B61023_RuntimeMethod_var); } IL_0031: { DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_6 = ___array0; NullCheck(L_6); int32_t L_7 = ___index1; int32_t L_8 = ___length2; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8))) { goto IL_0044; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m2D1A9466E1EA5576CD58C21530B78D6CA3B61023_RuntimeMethod_var); } IL_0044: { int32_t L_10 = ___index1; V_0 = (int32_t)L_10; int32_t L_11 = ___index1; int32_t L_12 = ___length2; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (int32_t)1)); goto IL_0074; } IL_004e: { DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_13 = ___array0; int32_t L_14 = V_0; NullCheck(L_13); int32_t L_15 = L_14; double L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); V_2 = (double)L_16; DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_17 = ___array0; int32_t L_18 = V_0; DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_19 = ___array0; int32_t L_20 = V_1; NullCheck(L_19); int32_t L_21 = L_20; double L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21)); NullCheck(L_17); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (double)L_22); DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_23 = ___array0; int32_t L_24 = V_1; double L_25 = V_2; NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (double)L_25); int32_t L_26 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)); int32_t L_27 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1)); } IL_0074: { int32_t L_28 = V_0; int32_t L_29 = V_1; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_004e; } } { return; } }
[ "immb@qq.com" ]
immb@qq.com
64ba9a06976dcde7fdfd442ee70d72cf23e62552
9b3df03cb7e134123cf6c4564590619662389d35
/MemoryBlocks.cpp
26045803ec507777c62a809d9c45a2bfbbfc7079
[]
no_license
CauanCabral/Computacao_Grafica
a32aeff2745f40144a263c16483f53db7375c0ba
d8673aed304573415455d6a61ab31b68420b6766
refs/heads/master
2016-09-05T16:48:36.944139
2010-12-09T19:32:05
2010-12-09T19:32:05
null
0
0
null
null
null
null
ISO-8859-10
C++
false
false
2,879
cpp
//[]------------------------------------------------------------------------[] //| | //| GVSG Foundation Classes | //| Version 1.0 | //| | //| CopyrightŪ 2007, Paulo Aristarco Pagliosa | //| All Rights Reserved. | //| | //[]------------------------------------------------------------------------[] // // OVERVIEW: MemoryBlocks.cpp // ======== // Source file for memory blocks. #ifndef __MemoryBlocks_h #include "MemoryBlocks.h" #endif using namespace System::Collections; ////////////////////////////////////////////////////////// // // MemoryBlocks implementation // ============ bool MemoryBlocks::allocateBlock() //[]---------------------------------------------------[] //| Allocate a new block | //[]---------------------------------------------------[] { Block* blk = new(blockSize) Block(curBlock); if (blk == 0) return false; curBlock = blk + 1; numberOfBlocks++; return true; } void MemoryBlocks::freeTo(int blkn) //[]---------------------------------------------------[] //| Free blkn blocks | //[]---------------------------------------------------[] { while (numberOfBlocks > blkn) { Block* blk = curBlock - 1; curBlock = blk->next; delete blk; numberOfBlocks--; } } void* MemoryBlocks::allocate(size_t size) //[]---------------------------------------------------[] //| Allocate memory | //[]---------------------------------------------------[] { if (size > blockSize - curLoc) if (!allocateBlock()) return 0; else curLoc = 0; void* ptr = block() + curLoc; curLoc += size; return ptr; } ////////////////////////////////////////////////////////// // // BlockAllocator implementation // ============== void* BlockAllocator::allocate(size_t size) //[]---------------------------------------------------[] //| Allocate memory for a new element | //[]---------------------------------------------------[] { if (freeList == 0) return memoryBlocks.allocate(size); void* ptr = freeList; freeList = *(void**)ptr; return ptr; } void BlockAllocator::free(void* ptr) //[]---------------------------------------------------[] //| Free element memory | //[]---------------------------------------------------[] { *(void**)ptr = freeList; freeList = ptr; }
[ "cauan@radig.com.br" ]
cauan@radig.com.br
a854892d481b4370bf3daf9484438a3e56dbad80
3728db88d8f8268ded2af24c4240eec9f9dc9068
/mln/value/builtin/symbolics.hh
fd266adfa339db57a4c2e823a4ba7b1aa94e371f
[]
no_license
KDE/kolena
ca01613a49b7d37f0f74953916a49aceb162daf8
0e0eff22f44e3834e8ebaf2c226eaba602b1ebf6
refs/heads/master
2021-01-19T06:40:53.365100
2011-03-29T11:53:16
2011-03-29T11:53:16
42,732,429
2
0
null
null
null
null
UTF-8
C++
false
false
2,077
hh
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE) // // This file is part of Olena. // // Olena 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, version 2 of the License. // // Olena 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 Olena. If not, see <http://www.gnu.org/licenses/>. // // As a special exception, you may use this file as part of a free // software project without restriction. Specifically, if other files // instantiate templates or use macros or inline functions from this // file, or you compile this file and link it with other files to produce // an executable, this file does not by itself cause the resulting // executable to be covered by the GNU General Public License. This // exception does not however invalidate any other reasons why the // executable file might be covered by the GNU General Public License. #ifndef MLN_VALUE_BUILTIN_SYMBOLICS_HH # define MLN_VALUE_BUILTIN_SYMBOLICS_HH /// \file /// /// Some definitions about built-in symbolic types. # include <mln/value/concept/built_in.hh> # include <mln/value/concept/symbolic.hh> # include <mln/trait/value_.hh> namespace mln { template <> struct category< bool > { typedef value::Built_In< value::Symbolic<void> > ret; }; namespace trait { template <> struct value_<bool> { typedef value::nature::symbolic nature; typedef value::kind::binary kind; enum { dim = 1, nbits = 1, card = 2 }; typedef value::quant::low quant; static const char* name() { return "bool"; } }; } // end of namespace mln::trait } // end of namespace mln #endif // ! MLN_VALUE_BUILTIN_SYMBOLICS_HH
[ "trueg@kde.org" ]
trueg@kde.org
983e7a383aff242e8563e35da2687a9682884424
a314af67bf01e7dd0769f6baa6b01f31a41220b7
/shell/openxr/mobile/XrApp.cpp
9a5db1473a8034d5e9ca90f9632b14448e03d494
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
facebook/igl
5523e8bead7769eb356f8cad5803671168eb3f3d
4eaca2349c7411f345d48de82083f02ec9927acb
refs/heads/main
2023-09-03T02:43:51.101890
2023-09-02T22:51:52
2023-09-02T22:51:52
663,573,391
2,261
134
NOASSERTION
2023-09-01T06:45:48
2023-07-07T15:57:14
C++
UTF-8
C++
false
false
21,104
cpp
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <shell/openxr/XrApp.h> #include <algorithm> #include <array> #include <cassert> #include <string> #include <android/asset_manager.h> #include <android/log.h> #include <android_native_app_glue.h> #include <openxr/openxr_oculus.h> #include <openxr/openxr_oculus_helpers.h> #include <openxr/openxr_platform.h> #include <glm/gtc/type_ptr.hpp> #include <shell/shared/imageLoader/android/ImageLoaderAndroid.h> #include <shell/shared/platform/android/PlatformAndroid.h> #include <shell/shared/renderSession/AppParams.h> #include <shell/shared/renderSession/DefaultSession.h> #include <shell/shared/renderSession/ShellParams.h> #include <shell/openxr/XrLog.h> #include <shell/openxr/XrSwapchainProvider.h> #include <shell/openxr/impl/XrAppImpl.h> #include <shell/openxr/impl/XrSwapchainProviderImpl.h> namespace igl::shell::openxr { constexpr auto kAppName = "IGL Shell OpenXR"; constexpr auto kEngineName = "IGL"; constexpr auto kSupportedViewConfigType = XR_VIEW_CONFIGURATION_TYPE_PRIMARY_STEREO; XrApp::XrApp(std::unique_ptr<impl::XrAppImpl>&& impl) : impl_(std::move(impl)), shellParams_(std::make_unique<ShellParams>()) { viewports_.fill({XR_TYPE_VIEW_CONFIGURATION_VIEW}); views_.fill({XR_TYPE_VIEW}); } XrApp::~XrApp() { if (!initialized_) return; swapchainProviders_.clear(); xrDestroySpace(stageSpace_); xrDestroySpace(localSpace_); xrDestroySpace(headSpace_); xrDestroySession(session_); xrDestroyInstance(instance_); } XrInstance XrApp::instance() const { return instance_; } XrSession XrApp::session() const { return session_; } bool XrApp::checkExtensions() { // Check that the extensions required are present. XrResult result; PFN_xrEnumerateInstanceExtensionProperties xrEnumerateInstanceExtensionProperties; XR_CHECK(result = xrGetInstanceProcAddr(XR_NULL_HANDLE, "xrEnumerateInstanceExtensionProperties", (PFN_xrVoidFunction*)&xrEnumerateInstanceExtensionProperties)); if (result != XR_SUCCESS) { IGL_LOG_ERROR("Failed to get xrEnumerateInstanceExtensionProperties function pointer."); return false; } uint32_t numExtensions = 0; XR_CHECK(xrEnumerateInstanceExtensionProperties(nullptr, 0, &numExtensions, nullptr)); IGL_LOG_INFO("xrEnumerateInstanceExtensionProperties found %u extension(s).", numExtensions); extensions_.resize(numExtensions, {XR_TYPE_EXTENSION_PROPERTIES}); XR_CHECK(xrEnumerateInstanceExtensionProperties( NULL, numExtensions, &numExtensions, extensions_.data())); for (uint32_t i = 0; i < numExtensions; i++) { IGL_LOG_INFO("Extension #%d = '%s'.", i, extensions_[i].extensionName); } auto requiredExtensionsImpl_ = impl_->getXrRequiredExtensions(); requiredExtensions_.insert(std::end(requiredExtensions_), std::begin(requiredExtensionsImpl_), std::end(requiredExtensionsImpl_)); for (auto& requiredExtension : requiredExtensions_) { auto it = std::find_if(std::begin(extensions_), std::end(extensions_), [&requiredExtension](const XrExtensionProperties& extension) { return strcmp(extension.extensionName, requiredExtension) == 0; }); if (it == std::end(extensions_)) { IGL_LOG_ERROR("Extension %s is required.", requiredExtension); return false; } } return true; } bool XrApp::createInstance() { XrApplicationInfo appInfo = {}; strcpy(appInfo.applicationName, kAppName); appInfo.applicationVersion = 0; strcpy(appInfo.engineName, kEngineName); appInfo.engineVersion = 0; appInfo.apiVersion = XR_CURRENT_API_VERSION; XrInstanceCreateInfo instanceCreateInfo = { .type = XR_TYPE_INSTANCE_CREATE_INFO, .createFlags = 0, .applicationInfo = appInfo, .enabledApiLayerCount = 0, .enabledApiLayerNames = nullptr, .enabledExtensionCount = static_cast<uint32_t>(requiredExtensions_.size()), .enabledExtensionNames = requiredExtensions_.data(), }; XrResult initResult; XR_CHECK(initResult = xrCreateInstance(&instanceCreateInfo, &instance_)); if (initResult != XR_SUCCESS) { IGL_LOG_ERROR("Failed to create XR instance: %d.", initResult); return false; } XR_CHECK(xrGetInstanceProperties(instance_, &instanceProps_)); IGL_LOG_INFO("Runtime %s: Version : %u.%u.%u", instanceProps_.runtimeName, XR_VERSION_MAJOR(instanceProps_.runtimeVersion), XR_VERSION_MINOR(instanceProps_.runtimeVersion), XR_VERSION_PATCH(instanceProps_.runtimeVersion)); return true; } // namespace igl::shell::openxr bool XrApp::createSystem() { XrSystemGetInfo systemGetInfo = { .type = XR_TYPE_SYSTEM_GET_INFO, .formFactor = XR_FORM_FACTOR_HEAD_MOUNTED_DISPLAY, }; XrResult result; XR_CHECK(result = xrGetSystem(instance_, &systemGetInfo, &systemId_)); if (result != XR_SUCCESS) { IGL_LOG_ERROR("Failed to get system."); return false; } XR_CHECK(xrGetSystemProperties(instance_, systemId_, &systemProps_)); IGL_LOG_INFO( "System Properties: Name=%s VendorId=%x", systemProps_.systemName, systemProps_.vendorId); IGL_LOG_INFO("System Graphics Properties: MaxWidth=%d MaxHeight=%d MaxLayers=%d", systemProps_.graphicsProperties.maxSwapchainImageWidth, systemProps_.graphicsProperties.maxSwapchainImageHeight, systemProps_.graphicsProperties.maxLayerCount); IGL_LOG_INFO("System Tracking Properties: OrientationTracking=%s PositionTracking=%s", systemProps_.trackingProperties.orientationTracking ? "True" : "False", systemProps_.trackingProperties.positionTracking ? "True" : "False"); return true; } bool XrApp::enumerateViewConfigurations() { uint32_t numViewConfigs = 0; XR_CHECK(xrEnumerateViewConfigurations(instance_, systemId_, 0, &numViewConfigs, nullptr)); std::vector<XrViewConfigurationType> viewConfigTypes(numViewConfigs); XR_CHECK(xrEnumerateViewConfigurations( instance_, systemId_, numViewConfigs, &numViewConfigs, viewConfigTypes.data())); IGL_LOG_INFO("Available Viewport Configuration Types: %d", numViewConfigs); auto foundViewConfig = false; for (auto& viewConfigType : viewConfigTypes) { IGL_LOG_INFO("View configuration type %d : %s", viewConfigType, viewConfigType == kSupportedViewConfigType ? "Selected" : ""); if (viewConfigType != kSupportedViewConfigType) { continue; } // Check properties XrViewConfigurationProperties viewConfigProps = {XR_TYPE_VIEW_CONFIGURATION_PROPERTIES}; XR_CHECK( xrGetViewConfigurationProperties(instance_, systemId_, viewConfigType, &viewConfigProps)); IGL_LOG_INFO("FovMutable=%s ConfigurationType %d", viewConfigProps.fovMutable ? "true" : "false", viewConfigProps.viewConfigurationType); // Check views uint32_t numViewports = 0; XR_CHECK(xrEnumerateViewConfigurationViews( instance_, systemId_, viewConfigType, 0, &numViewports, nullptr)); if (!IGL_VERIFY(numViewports == kNumViews)) { IGL_LOG_ERROR( "numViewports must be %d. Make sure XR_VIEW_CONFIGURATION_TYPE_PRIMARY_STEREO is used.", kNumViews); return false; } XR_CHECK(xrEnumerateViewConfigurationViews( instance_, systemId_, viewConfigType, numViewports, &numViewports, viewports_.data())); for (auto& view : viewports_) { (void)view; // doesn't compile in release for unused variable IGL_LOG_INFO("Viewport [%d]: Recommended Width=%d Height=%d SampleCount=%d", view, view.recommendedImageRectWidth, view.recommendedImageRectHeight, view.recommendedSwapchainSampleCount); IGL_LOG_INFO("Viewport [%d]: Max Width=%d Height=%d SampleCount=%d", view, view.maxImageRectWidth, view.maxImageRectHeight, view.maxSwapchainSampleCount); } viewConfigProps_ = viewConfigProps; foundViewConfig = true; break; } IGL_ASSERT_MSG( foundViewConfig, "XrViewConfigurationType %d not found.", kSupportedViewConfigType); return true; } void XrApp::enumerateReferenceSpaces() { uint32_t numRefSpaceTypes = 0; XR_CHECK(xrEnumerateReferenceSpaces(session_, 0, &numRefSpaceTypes, nullptr)); std::vector<XrReferenceSpaceType> refSpaceTypes(numRefSpaceTypes); XR_CHECK(xrEnumerateReferenceSpaces( session_, numRefSpaceTypes, &numRefSpaceTypes, refSpaceTypes.data())); stageSpaceSupported_ = std::any_of(std::begin(refSpaceTypes), std::end(refSpaceTypes), [](const auto& type) { return type == XR_REFERENCE_SPACE_TYPE_STAGE; }); IGL_LOG_INFO("OpenXR stage reference space is %s", stageSpaceSupported_ ? "supported" : "not supported"); } void XrApp::createSwapchainProviders(const std::unique_ptr<igl::IDevice>& device) { const size_t numSwapchainProviders = useSinglePassStereo_ ? 1 : kNumViews; const size_t numViewsPerSwapchain = useSinglePassStereo_ ? kNumViews : 1; swapchainProviders_.reserve(numSwapchainProviders); for (size_t i = 0; i < numSwapchainProviders; i++) { swapchainProviders_.emplace_back( std::make_unique<XrSwapchainProvider>(impl_->createSwapchainProviderImpl(), platform_, session_, viewports_[i], numViewsPerSwapchain)); swapchainProviders_.back()->initialize(); } } bool XrApp::initialize(const struct android_app* app) { if (initialized_) { return false; } PFN_xrInitializeLoaderKHR xrInitializeLoaderKHR; XR_CHECK(xrGetInstanceProcAddr( XR_NULL_HANDLE, "xrInitializeLoaderKHR", (PFN_xrVoidFunction*)&xrInitializeLoaderKHR)); if (xrInitializeLoaderKHR) { XrLoaderInitInfoAndroidKHR loaderInitializeInfoAndroid = { XR_TYPE_LOADER_INIT_INFO_ANDROID_KHR, nullptr, app->activity->vm, app->activity->clazz, }; XR_CHECK(xrInitializeLoaderKHR((XrLoaderInitInfoBaseHeaderKHR*)&loaderInitializeInfoAndroid)); } if (!checkExtensions()) { return false; } if (!createInstance()) { return false; } if (!createSystem()) { return false; } if (!enumerateViewConfigurations()) { return false; } std::unique_ptr<igl::IDevice> device; device = impl_->initIGL(instance_, systemId_); if (!device) { IGL_LOG_ERROR("Failed to initialize IGL"); return false; } useSinglePassStereo_ = useSinglePassStereo_ && device->hasFeature(igl::DeviceFeatures::Multiview); createShellSession(std::move(device), app->activity->assetManager); session_ = impl_->initXrSession(instance_, systemId_, platform_->getDevice()); if (session_ == XR_NULL_HANDLE) { IGL_LOG_ERROR("Failed to initialize graphics system"); return false; } // The following are initialization steps that happen after XrSession is created. enumerateReferenceSpaces(); createSwapchainProviders(device); createSpaces(); initialized_ = true; return initialized_; } void XrApp::createShellSession(std::unique_ptr<igl::IDevice> device, AAssetManager* assetMgr) { platform_ = std::make_shared<igl::shell::PlatformAndroid>(std::move(device)); IGL_ASSERT(platform_ != nullptr); static_cast<igl::shell::ImageLoaderAndroid&>(platform_->getImageLoader()) .setAssetManager(assetMgr); renderSession_ = igl::shell::createDefaultRenderSession(platform_); shellParams_->shellControlsViewParams = true; shellParams_->renderMode = useSinglePassStereo_ ? RenderMode::SinglePassStereo : RenderMode::DualPassStereo; shellParams_->viewParams.resize(useSinglePassStereo_ ? 2 : 1); renderSession_->setShellParams(*shellParams_); renderSession_->initialize(); } void XrApp::createSpaces() { XrReferenceSpaceCreateInfo spaceCreateInfo = { XR_TYPE_REFERENCE_SPACE_CREATE_INFO, nullptr, XR_REFERENCE_SPACE_TYPE_VIEW, {{0.0f, 0.0f, 0.0f, 1.0f}}, }; XR_CHECK(xrCreateReferenceSpace(session_, &spaceCreateInfo, &headSpace_)); spaceCreateInfo.referenceSpaceType = XR_REFERENCE_SPACE_TYPE_LOCAL; XR_CHECK(xrCreateReferenceSpace(session_, &spaceCreateInfo, &localSpace_)); if (stageSpaceSupported_) { spaceCreateInfo.referenceSpaceType = XR_REFERENCE_SPACE_TYPE_STAGE; XR_CHECK(xrCreateReferenceSpace(session_, &spaceCreateInfo, &stageSpace_)); } } void XrApp::handleXrEvents() { XrEventDataBuffer eventDataBuffer = {}; // Poll for events for (;;) { XrEventDataBaseHeader* baseEventHeader = (XrEventDataBaseHeader*)(&eventDataBuffer); baseEventHeader->type = XR_TYPE_EVENT_DATA_BUFFER; baseEventHeader->next = nullptr; XrResult res; XR_CHECK(res = xrPollEvent(instance_, &eventDataBuffer)); if (res != XR_SUCCESS) { break; } switch (baseEventHeader->type) { case XR_TYPE_EVENT_DATA_EVENTS_LOST: IGL_LOG_INFO("xrPollEvent: received XR_TYPE_EVENT_DATA_EVENTS_LOST event"); break; case XR_TYPE_EVENT_DATA_INSTANCE_LOSS_PENDING: IGL_LOG_INFO("xrPollEvent: received XR_TYPE_EVENT_DATA_INSTANCE_LOSS_PENDING event"); break; case XR_TYPE_EVENT_DATA_INTERACTION_PROFILE_CHANGED: IGL_LOG_INFO("xrPollEvent: received XR_TYPE_EVENT_DATA_INTERACTION_PROFILE_CHANGED event"); break; case XR_TYPE_EVENT_DATA_PERF_SETTINGS_EXT: { const XrEventDataPerfSettingsEXT* perf_settings_event = (XrEventDataPerfSettingsEXT*)(baseEventHeader); (void)perf_settings_event; // suppress unused warning IGL_LOG_INFO( "xrPollEvent: received XR_TYPE_EVENT_DATA_PERF_SETTINGS_EXT event: type %d subdomain %d " ": level %d -> level %d", perf_settings_event->type, perf_settings_event->subDomain, perf_settings_event->fromLevel, perf_settings_event->toLevel); } break; case XR_TYPE_EVENT_DATA_REFERENCE_SPACE_CHANGE_PENDING: IGL_LOG_INFO("xrPollEvent: received XR_TYPE_EVENT_DATA_REFERENCE_SPACE_CHANGE_PENDING event"); break; case XR_TYPE_EVENT_DATA_SESSION_STATE_CHANGED: { const XrEventDataSessionStateChanged* session_state_changed_event = (XrEventDataSessionStateChanged*)(baseEventHeader); IGL_LOG_INFO( "xrPollEvent: received XR_TYPE_EVENT_DATA_SESSION_STATE_CHANGED: %d for session %p at " "time %f", session_state_changed_event->state, (void*)session_state_changed_event->session, FromXrTime(session_state_changed_event->time)); switch (session_state_changed_event->state) { case XR_SESSION_STATE_READY: case XR_SESSION_STATE_STOPPING: handleSessionStateChanges(session_state_changed_event->state); break; default: break; } } break; default: IGL_LOG_INFO("xrPollEvent: Unknown event"); break; } } } void XrApp::handleSessionStateChanges(XrSessionState state) { if (state == XR_SESSION_STATE_READY) { assert(resumed_); assert(nativeWindow_ != nullptr); assert(sessionActive_ == false); XrSessionBeginInfo sessionBeginInfo{ XR_TYPE_SESSION_BEGIN_INFO, nullptr, viewConfigProps_.viewConfigurationType, }; XrResult result; XR_CHECK(result = xrBeginSession(session_, &sessionBeginInfo)); sessionActive_ = (result == XR_SUCCESS); IGL_LOG_INFO("XR session active"); } else if (state == XR_SESSION_STATE_STOPPING) { assert(resumed_ == false); assert(sessionActive_); XR_CHECK(xrEndSession(session_)); sessionActive_ = false; IGL_LOG_INFO("XR session inactive"); } } XrFrameState XrApp::beginFrame() { XrFrameWaitInfo waitFrameInfo = {XR_TYPE_FRAME_WAIT_INFO}; XrFrameState frameState = {XR_TYPE_FRAME_STATE}; XR_CHECK(xrWaitFrame(session_, &waitFrameInfo, &frameState)); XrFrameBeginInfo beginFrameInfo = {XR_TYPE_FRAME_BEGIN_INFO}; XR_CHECK(xrBeginFrame(session_, &beginFrameInfo)); XrSpaceLocation loc = { loc.type = XR_TYPE_SPACE_LOCATION, }; XR_CHECK(xrLocateSpace(headSpace_, stageSpace_, frameState.predictedDisplayTime, &loc)); XrPosef headPose = loc.pose; XrViewState viewState = {XR_TYPE_VIEW_STATE}; XrViewLocateInfo projectionInfo = { XR_TYPE_VIEW_LOCATE_INFO, nullptr, viewConfigProps_.viewConfigurationType, frameState.predictedDisplayTime, headSpace_, }; uint32_t numViews = views_.size(); XR_CHECK(xrLocateViews( session_, &projectionInfo, &viewState, views_.size(), &numViews, views_.data())); for (size_t i = 0; i < kNumViews; i++) { XrPosef eyePose = views_[i].pose; XrPosef_Multiply(&viewStagePoses_[i], &headPose, &eyePose); auto viewTransformXrPosef = XrPosef_Inverse(viewStagePoses_[i]); XrMatrix4x4f xrMat4{}; XrMatrix4x4f_CreateFromRigidTransform(&xrMat4, &viewTransformXrPosef); viewTransforms_[i] = glm::make_mat4(xrMat4.m); cameraPositions_[i] = glm::vec3(eyePose.position.x, eyePose.position.y, eyePose.position.z); } return frameState; } namespace { void copyFov(igl::shell::Fov& dst, const XrFovf& src) { dst.angleLeft = src.angleLeft; dst.angleRight = src.angleRight; dst.angleUp = src.angleUp; dst.angleDown = src.angleDown; } } // namespace void XrApp::render() { if (useSinglePassStereo_) { auto surfaceTextures = swapchainProviders_[0]->getSurfaceTextures(); for (size_t j = 0; j < shellParams_->viewParams.size(); j++) { shellParams_->viewParams[j].viewMatrix = viewTransforms_[j]; shellParams_->viewParams[j].cameraPosition = cameraPositions_[j]; copyFov(shellParams_->viewParams[j].fov, views_[j].fov); } renderSession_->update(std::move(surfaceTextures)); swapchainProviders_[0]->releaseSwapchainImages(); } else { for (size_t i = 0; i < kNumViews; i++) { shellParams_->viewParams[0].viewMatrix = viewTransforms_[i]; copyFov(shellParams_->viewParams[0].fov, views_[i].fov); auto surfaceTextures = swapchainProviders_[i]->getSurfaceTextures(); renderSession_->update(surfaceTextures); swapchainProviders_[i]->releaseSwapchainImages(); } } } void XrApp::endFrame(XrFrameState frameState) { std::array<XrCompositionLayerProjectionView, kNumViews> projectionViews; std::array<XrCompositionLayerDepthInfoKHR, kNumViews> depthInfos; XrCompositionLayerProjection projection = { XR_TYPE_COMPOSITION_LAYER_PROJECTION, nullptr, XR_COMPOSITION_LAYER_CORRECT_CHROMATIC_ABERRATION_BIT, stageSpace_, static_cast<uint32_t>(kNumViews), projectionViews.data(), }; for (size_t i = 0; i < kNumViews; i++) { projectionViews[i] = { XR_TYPE_COMPOSITION_LAYER_PROJECTION_VIEW, &depthInfos[i], viewStagePoses_[i], views_[i].fov, }; depthInfos[i] = { XR_TYPE_COMPOSITION_LAYER_DEPTH_INFO_KHR, nullptr, }; XrRect2Di imageRect = {{0, 0}, { (int32_t)viewports_[i].recommendedImageRectWidth, (int32_t)viewports_[i].recommendedImageRectHeight, }}; auto index = useSinglePassStereo_ ? static_cast<uint32_t>(i) : 0; projectionViews[i].subImage = { useSinglePassStereo_ ? swapchainProviders_[0]->colorSwapchain() : swapchainProviders_[i]->colorSwapchain(), imageRect, index, }; depthInfos[i].subImage = { useSinglePassStereo_ ? swapchainProviders_[0]->depthSwapchain() : swapchainProviders_[i]->depthSwapchain(), imageRect, index, }; const auto& appParams = renderSession_->appParams(); depthInfos[i].minDepth = appParams.depthParams.minDepth; depthInfos[i].maxDepth = appParams.depthParams.maxDepth; depthInfos[i].nearZ = appParams.depthParams.nearZ; depthInfos[i].farZ = appParams.depthParams.farZ; } const XrCompositionLayerBaseHeader* const layers[] = { (const XrCompositionLayerBaseHeader*)&projection}; XrFrameEndInfo endFrameInfo = { XR_TYPE_FRAME_END_INFO, nullptr, frameState.predictedDisplayTime, XR_ENVIRONMENT_BLEND_MODE_OPAQUE, 1, layers, }; XR_CHECK(xrEndFrame(session_, &endFrameInfo)); } void XrApp::update() { if (!initialized_ || !resumed_ || !sessionActive_) { return; } auto frameState = beginFrame(); render(); endFrame(frameState); } } // namespace igl::shell::openxr
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
ce180ead3c5f4be9335e7bab167a448ba501aaa5
46f4255e65e0d313ecf83bc5abf0591b8b14b5f6
/ash/system/unified/user_chooser_view.cc
1354df821961eb0e2400b12341a952059ecabb90
[ "BSD-3-Clause" ]
permissive
RochyJiang/chromium
05a0b8d76dee5003c768d6d674033a8a4bd0a959
aff788f85090715722eb1eac0ecb43d4ea5233a0
refs/heads/master
2023-01-12T16:27:57.304524
2019-06-18T06:39:38
2019-06-18T06:39:38
192,481,912
1
0
null
2019-06-18T06:46:01
2019-06-18T06:46:00
null
UTF-8
C++
false
false
13,077
cc
// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ash/system/unified/user_chooser_view.h" #include <memory> #include <string> #include "ash/public/cpp/ash_view_ids.h" #include "ash/public/cpp/shell_window_ids.h" #include "ash/resources/vector_icons/vector_icons.h" #include "ash/session/session_controller_impl.h" #include "ash/shell.h" #include "ash/strings/grit/ash_strings.h" #include "ash/system/model/enterprise_domain_model.h" #include "ash/system/model/system_tray_model.h" #include "ash/system/tray/tray_constants.h" #include "ash/system/tray/tray_popup_utils.h" #include "ash/system/tray/tri_view.h" #include "ash/system/unified/top_shortcut_button.h" #include "ash/system/unified/top_shortcuts_view.h" #include "ash/system/unified/user_chooser_detailed_view_controller.h" #include "ash/system/user/rounded_image_view.h" #include "base/strings/utf_string_conversions.h" #include "ui/base/l10n/l10n_util.h" #include "ui/gfx/paint_vector_icon.h" #include "ui/strings/grit/ui_strings.h" #include "ui/views/border.h" #include "ui/views/controls/button/image_button.h" #include "ui/views/controls/button/label_button.h" #include "ui/views/layout/box_layout.h" #include "ui/views/layout/fill_layout.h" #include "ui/views/vector_icons.h" #include "ui/views/widget/widget.h" namespace ash { namespace { class CloseButton : public TopShortcutButton, public views::ButtonListener { public: explicit CloseButton(UserChooserDetailedViewController* controller); // views::ButtonListener: void ButtonPressed(views::Button* sender, const ui::Event& event) override; private: UserChooserDetailedViewController* const controller_; DISALLOW_COPY_AND_ASSIGN(CloseButton); }; CloseButton::CloseButton(UserChooserDetailedViewController* controller) : TopShortcutButton(this, views::kIcCloseIcon, IDS_APP_ACCNAME_CLOSE), controller_(controller) {} void CloseButton::ButtonPressed(views::Button* sender, const ui::Event& event) { controller_->TransitionToMainView(); } // A button that will transition to multi profile login UI. class AddUserButton : public views::Button, public views::ButtonListener { public: explicit AddUserButton(UserChooserDetailedViewController* controller); ~AddUserButton() override = default; // views::ButtonListener: void ButtonPressed(views::Button* sender, const ui::Event& event) override; private: UserChooserDetailedViewController* const controller_; DISALLOW_COPY_AND_ASSIGN(AddUserButton); }; AddUserButton::AddUserButton(UserChooserDetailedViewController* controller) : Button(this), controller_(controller) { SetID(VIEW_ID_ADD_USER_BUTTON); SetLayoutManager(std::make_unique<views::BoxLayout>( views::BoxLayout::kHorizontal, gfx::Insets(kUnifiedTopShortcutSpacing), kUnifiedTopShortcutSpacing)); auto* icon = new views::ImageView; icon->SetImage( gfx::CreateVectorIcon(kSystemMenuNewUserIcon, kUnifiedMenuIconColor)); AddChildView(icon); auto* label = new views::Label( l10n_util::GetStringUTF16(IDS_ASH_STATUS_TRAY_SIGN_IN_ANOTHER_ACCOUNT)); label->SetEnabledColor(kUnifiedMenuTextColor); label->SetAutoColorReadabilityEnabled(false); label->SetSubpixelRenderingEnabled(false); AddChildView(label); SetAccessibleName( l10n_util::GetStringUTF16(IDS_ASH_STATUS_TRAY_SIGN_IN_ANOTHER_ACCOUNT)); SetFocusPainter(TrayPopupUtils::CreateFocusPainter()); SetFocusForPlatform(); } void AddUserButton::ButtonPressed(views::Button* sender, const ui::Event& event) { controller_->HandleAddUserAction(); } class Separator : public views::View { public: explicit Separator(bool between_user) { SetLayoutManager(std::make_unique<views::FillLayout>()); SetBorder(views::CreateEmptyBorder( between_user ? gfx::Insets(0, kUnifiedUserChooserSeparatorSideMargin) : gfx::Insets(kUnifiedUserChooserLargeSeparatorVerticalSpacing, 0))); views::View* child = new views::View(); // make sure that the view is displayed by setting non-zero size child->SetPreferredSize(gfx::Size(1, 1)); AddChildView(child); child->SetBorder(views::CreateSolidSidedBorder( 0, 0, kUnifiedNotificationSeparatorThickness, 0, kUnifiedMenuSeparatorColor)); } DISALLOW_COPY_AND_ASSIGN(Separator); }; views::View* CreateAddUserErrorView(const base::string16& message) { auto* label = new views::Label(message); label->SetEnabledColor(kUnifiedMenuTextColor); label->SetAutoColorReadabilityEnabled(false); label->SetSubpixelRenderingEnabled(false); label->SetBorder( views::CreateEmptyBorder(gfx::Insets(kUnifiedTopShortcutSpacing))); label->SetMultiLine(true); label->SetHorizontalAlignment(gfx::HorizontalAlignment::ALIGN_LEFT); return label; } } // namespace views::View* CreateUserAvatarView(int user_index) { DCHECK(Shell::Get()); const UserSession* const user_session = Shell::Get()->session_controller()->GetUserSession(user_index); DCHECK(user_session); if (user_session->user_info.type == user_manager::USER_TYPE_GUEST) { // In guest mode, the user avatar is just a disabled button pod. return new TopShortcutButton(kSystemMenuGuestIcon); } else { auto* image_view = new tray::RoundedImageView(kTrayItemSize / 2); image_view->set_can_process_events_within_subtree(false); image_view->SetImage(user_session->user_info.avatar.image, gfx::Size(kTrayItemSize, kTrayItemSize)); return image_view; } } base::string16 GetUserItemAccessibleString(int user_index) { DCHECK(Shell::Get()); const UserSession* const user_session = Shell::Get()->session_controller()->GetUserSession(user_index); DCHECK(user_session); if (user_session->user_info.type == user_manager::USER_TYPE_GUEST) return l10n_util::GetStringUTF16(IDS_ASH_STATUS_TRAY_GUEST_LABEL); if (user_session->user_info.type == user_manager::USER_TYPE_PUBLIC_ACCOUNT) { std::string display_domain = Shell::Get() ->system_tray_model() ->enterprise_domain() ->enterprise_display_domain(); return l10n_util::GetStringFUTF16( IDS_ASH_STATUS_TRAY_PUBLIC_LABEL, base::UTF8ToUTF16(user_session->user_info.display_name), base::UTF8ToUTF16(display_domain)); } return l10n_util::GetStringFUTF16( IDS_ASH_STATUS_TRAY_USER_INFO_ACCESSIBILITY, base::UTF8ToUTF16(user_session->user_info.display_name), base::UTF8ToUTF16(user_session->user_info.display_email)); } UserItemButton::UserItemButton(int user_index, UserChooserDetailedViewController* controller, bool has_close_button) : Button(this), user_index_(user_index), controller_(controller), capture_icon_(new views::ImageView), name_(new views::Label), email_(new views::Label) { DCHECK_GT(VIEW_ID_USER_ITEM_BUTTON_END, VIEW_ID_USER_ITEM_BUTTON_START + user_index); SetID(VIEW_ID_USER_ITEM_BUTTON_START + user_index); auto* layout = SetLayoutManager(std::make_unique<views::BoxLayout>( views::BoxLayout::kHorizontal, gfx::Insets(0, kUnifiedTopShortcutSpacing), kUnifiedTopShortcutSpacing)); layout->set_cross_axis_alignment( views::BoxLayout::CrossAxisAlignment::kCenter); layout->set_minimum_cross_axis_size(kUnifiedUserChooserRowHeight); AddChildView(CreateUserAvatarView(user_index)); views::View* vertical_labels = new views::View; vertical_labels->set_can_process_events_within_subtree(false); auto* vertical_layout = vertical_labels->SetLayoutManager( std::make_unique<views::BoxLayout>(views::BoxLayout::kVertical)); vertical_layout->set_cross_axis_alignment( views::BoxLayout::CrossAxisAlignment::kStart); const UserSession* const user_session = Shell::Get()->session_controller()->GetUserSession(user_index); name_->SetText(base::UTF8ToUTF16(user_session->user_info.display_name)); name_->SetEnabledColor(kUnifiedMenuTextColor); name_->SetAutoColorReadabilityEnabled(false); name_->SetSubpixelRenderingEnabled(false); vertical_labels->AddChildView(name_); email_->SetText(base::UTF8ToUTF16(user_session->user_info.display_email)); email_->SetEnabledColor(kUnifiedMenuSecondaryTextColor); email_->SetAutoColorReadabilityEnabled(false); email_->SetSubpixelRenderingEnabled(false); vertical_labels->AddChildView(email_); AddChildView(vertical_labels); layout->SetFlexForView(vertical_labels, 1); capture_icon_->SetImage(gfx::CreateVectorIcon(kSystemTrayRecordingIcon, kUnifiedRecordingIconColor)); if (!has_close_button) { // Add a padding with the same size as the close button, // so as to align all media indicators in a column. capture_icon_->SetBorder(views::CreateEmptyBorder( gfx::Insets(0, 0, 0, kTrayItemSize + kUnifiedTopShortcutSpacing))); } capture_icon_->SetVisible(false); AddChildView(capture_icon_); if (has_close_button) AddChildView(new CloseButton(controller_)); SetTooltipText(GetUserItemAccessibleString(user_index)); SetFocusPainter(TrayPopupUtils::CreateFocusPainter()); SetFocusForPlatform(); } void UserItemButton::SetCaptureState(MediaCaptureState capture_state) { capture_icon_->SetVisible(capture_state != MediaCaptureState::kNone); Layout(); int res_id = 0; switch (capture_state) { case MediaCaptureState::kAudioVideo: res_id = IDS_ASH_STATUS_TRAY_MEDIA_RECORDING_AUDIO_VIDEO; break; case MediaCaptureState::kAudio: res_id = IDS_ASH_STATUS_TRAY_MEDIA_RECORDING_AUDIO; break; case MediaCaptureState::kVideo: res_id = IDS_ASH_STATUS_TRAY_MEDIA_RECORDING_VIDEO; break; case MediaCaptureState::kNone: break; } if (res_id) capture_icon_->set_tooltip_text(l10n_util::GetStringUTF16(res_id)); } base::string16 UserItemButton::GetTooltipText(const gfx::Point& p) const { // If both of them are full shown, hide the tooltip. if (name_->GetPreferredSize().width() <= name_->width() && email_->GetPreferredSize().width() <= email_->width()) { return base::string16(); } return views::Button::GetTooltipText(p); } void UserItemButton::ButtonPressed(views::Button* sender, const ui::Event& event) { if (user_index_ > 0) controller_->HandleUserSwitch(user_index_); } UserChooserView::UserChooserView( UserChooserDetailedViewController* controller) { SetLayoutManager( std::make_unique<views::BoxLayout>(views::BoxLayout::kVertical)); const int num_users = Shell::Get()->session_controller()->NumberOfLoggedInUsers(); for (int i = 0; i < num_users; ++i) { auto* button = new UserItemButton(i, controller, i == 0); user_item_buttons_.push_back(button); AddChildView(button); AddChildView(new Separator(i < num_users - 1)); } switch (Shell::Get()->session_controller()->GetAddUserPolicy()) { case AddUserSessionPolicy::ALLOWED: AddChildView(new AddUserButton(controller)); break; case AddUserSessionPolicy::ERROR_NOT_ALLOWED_PRIMARY_USER: AddChildView(CreateAddUserErrorView(l10n_util::GetStringUTF16( IDS_ASH_STATUS_TRAY_MESSAGE_NOT_ALLOWED_PRIMARY_USER))); break; case AddUserSessionPolicy::ERROR_MAXIMUM_USERS_REACHED: AddChildView(CreateAddUserErrorView(l10n_util::GetStringFUTF16Int( IDS_ASH_STATUS_TRAY_MESSAGE_CANNOT_ADD_USER, session_manager::kMaximumNumberOfUserSessions))); break; case AddUserSessionPolicy::ERROR_NO_ELIGIBLE_USERS: AddChildView(CreateAddUserErrorView( l10n_util::GetStringUTF16(IDS_ASH_STATUS_TRAY_MESSAGE_OUT_OF_USERS))); break; case AddUserSessionPolicy::ERROR_LOCKED_TO_SINGLE_USER: AddChildView(CreateAddUserErrorView(l10n_util::GetStringUTF16( IDS_ASH_STATUS_TRAY_MESSAGE_NOT_ALLOWED_PRIMARY_USER))); break; } Shell::Get()->media_controller()->AddObserver(this); Shell::Get()->media_controller()->RequestCaptureState(); } UserChooserView::~UserChooserView() { Shell::Get()->media_controller()->RemoveObserver(this); } void UserChooserView::OnMediaCaptureChanged( const base::flat_map<AccountId, MediaCaptureState>& capture_states) { if (user_item_buttons_.size() != capture_states.size()) return; for (size_t i = 0; i < user_item_buttons_.size(); ++i) { const UserSession* const user_session = Shell::Get()->session_controller()->GetUserSession(i); auto matched = capture_states.find(user_session->user_info.account_id); if (matched != capture_states.end()) { user_item_buttons_[i]->SetCaptureState(matched->second); } } } const char* UserChooserView::GetClassName() const { return "UserChooserView"; } } // namespace ash
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
afdea01719959baa3bc144afdccec2c15b6cf3b3
a2111a80faf35749d74a533e123d9da9da108214
/raw/pmsb13/pmsb13-data-20130530/sources/24xc47o54r0zzgyu/2013-04-10T15-01-53.824+0200/sandbox/my_sandbox/apps/first_app/first_app.cpp
481ae4e7d7550dca53f70b6df3ca53200d6541f8
[ "MIT" ]
permissive
bkahlert/seqan-research
f2c550d539f511825842a60f6b994c1f0a3934c2
21945be863855077eec7cbdb51c3450afcf560a3
refs/heads/master
2022-12-24T13:05:48.828734
2015-07-01T01:56:22
2015-07-01T01:56:22
21,610,669
1
0
null
null
null
null
UTF-8
C++
false
false
700
cpp
#include <iostream> #include <seqan/sequence.h> #include <seqan/seq_io.h> int main(int argc, char* argv[]) { if (argc < 2) { std::cout << "Kein Parameter uebergeben" <<std::endl; return 1; } else { seqan::SequenceStream seqStream(argv[1]); if (!isGood(seqStream)) { std::cerr << "ERROR: Could not open the file.\n"; return 1; } while(!atEnd(seqStream)) { seqan::CharString id; seqan::Dna5String seq; if (readRecord(id, seq, seqStream) != 0) { std::cerr << "ERROR: Could not read from example.fa!\n"; return 1; } readRecord(id, seq, seqStream); std::cout << id << '\t' << seq << '\n'; } } return 0; }
[ "mail@bkahlert.com" ]
mail@bkahlert.com
8ba825879f0411644c534abf5bb107b336653133
703382e63609f0839b3f5681af4bc50c21a7051c
/TestRTF/TestRTF.h
8b524f0297b65b061c6f86d7439f86b030566690
[]
no_license
qinghuoptum/Gluefile
20a3b4881587c1acf862ed99c358fcb9311a2471
039214818bf5c344eb06ebbe9728582bacdd5982
refs/heads/master
2022-12-03T15:11:30.429820
2020-08-27T15:49:32
2020-08-27T15:49:32
289,516,502
0
0
null
2020-08-27T15:49:33
2020-08-22T15:38:42
C++
UTF-8
C++
false
false
1,414
h
// TestRTF.h : main header file for the TESTRTF application // #if !defined(AFX_TESTRTF_H__A208F289_2FA1_4CCA_AD05_31F95C0C6D49__INCLUDED_) #define AFX_TESTRTF_H__A208F289_2FA1_4CCA_AD05_31F95C0C6D49__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #ifndef __AFXWIN_H__ #error include 'stdafx.h' before including this file for PCH #endif #include "resource.h" // main symbols #include "RTFProc.h" #include "FSound.h" ///////////////////////////////////////////////////////////////////////////// // CTestRTFApp: // See TestRTF.cpp for the implementation of this class // class CTestRTFApp : public CWinApp { public: CTestRTFApp(); // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CTestRTFApp) public: virtual BOOL InitInstance(); virtual int ExitInstance(); //}}AFX_VIRTUAL // Implementation //{{AFX_MSG(CTestRTFApp) // NOTE - the ClassWizard will add and remove member functions here. // DO NOT EDIT what you see in these blocks of generated code ! //}}AFX_MSG DECLARE_MESSAGE_MAP() }; ///////////////////////////////////////////////////////////////////////////// //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. #endif // !defined(AFX_TESTRTF_H__A208F289_2FA1_4CCA_AD05_31F95C0C6D49__INCLUDED_)
[ "qing.hu@rallyhealth.com" ]
qing.hu@rallyhealth.com
f9e8f95e6d1fd8465cb26abe79e80dcb21880ab3
79a6d175e19b3e6e6a08eb5f30733291477ff621
/thirdparty/include/webrtc/audio/audio_receive_stream.h
d0b5a4d1cbf1464fb69ac5f916ad56a88b6fef19
[]
no_license
oswystan/wrtc
f1d75ee3680046394348162d3ba50b0362cd931f
60110c8837a0e0e6ef46b49e5c74bf368bd1143b
refs/heads/master
2021-04-26T22:14:08.275504
2018-04-08T02:31:15
2018-04-08T02:31:15
124,048,785
1
0
null
null
null
null
UTF-8
C++
false
false
3,269
h
/* * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #ifndef WEBRTC_AUDIO_AUDIO_RECEIVE_STREAM_H_ #define WEBRTC_AUDIO_AUDIO_RECEIVE_STREAM_H_ #include <memory> #include <vector> #include "webrtc/api/audio/audio_mixer.h" #include "webrtc/audio/audio_state.h" #include "webrtc/base/constructormagic.h" #include "webrtc/base/thread_checker.h" #include "webrtc/call/audio_receive_stream.h" #include "webrtc/call/rtp_demuxer.h" #include "webrtc/call/syncable.h" namespace webrtc { class PacketRouter; class RtcEventLog; class RtpPacketReceived; namespace voe { class ChannelProxy; } // namespace voe namespace internal { class AudioSendStream; class AudioReceiveStream final : public webrtc::AudioReceiveStream, public AudioMixer::Source, public Syncable, public RtpPacketSinkInterface { public: AudioReceiveStream(PacketRouter* packet_router, const webrtc::AudioReceiveStream::Config& config, const rtc::scoped_refptr<webrtc::AudioState>& audio_state, webrtc::RtcEventLog* event_log); ~AudioReceiveStream() override; // webrtc::AudioReceiveStream implementation. void Start() override; void Stop() override; webrtc::AudioReceiveStream::Stats GetStats() const override; int GetOutputLevel() const override; void SetSink(std::unique_ptr<AudioSinkInterface> sink) override; void SetGain(float gain) override; std::vector<webrtc::RtpSource> GetSources() const override; // RtpPacketSinkInterface. void OnRtpPacket(const RtpPacketReceived& packet) override; // AudioMixer::Source AudioFrameInfo GetAudioFrameWithInfo(int sample_rate_hz, AudioFrame* audio_frame) override; int Ssrc() const override; int PreferredSampleRate() const override; // Syncable int id() const override; rtc::Optional<Syncable::Info> GetInfo() const override; uint32_t GetPlayoutTimestamp() const override; void SetMinimumPlayoutDelay(int delay_ms) override; void AssociateSendStream(AudioSendStream* send_stream); void SignalNetworkState(NetworkState state); bool DeliverRtcp(const uint8_t* packet, size_t length); const webrtc::AudioReceiveStream::Config& config() const; private: VoiceEngine* voice_engine() const; AudioState* audio_state() const; int SetVoiceEnginePlayout(bool playout); rtc::ThreadChecker worker_thread_checker_; rtc::ThreadChecker module_process_thread_checker_; const webrtc::AudioReceiveStream::Config config_; rtc::scoped_refptr<webrtc::AudioState> audio_state_; std::unique_ptr<voe::ChannelProxy> channel_proxy_; bool playing_ ACCESS_ON(worker_thread_checker_) = false; RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioReceiveStream); }; } // namespace internal } // namespace webrtc #endif // WEBRTC_AUDIO_AUDIO_RECEIVE_STREAM_H_
[ "oswystan@126.com" ]
oswystan@126.com
a213bc058ecc0a565e9d2bf43b669c18b5974d2c
9515e3321c33709258e4686a7cd71e98a8c3a03e
/3p/VTK/ThirdParty/vtkm/vtk-m/vtkm/cont/testing/UnitTestArrayHandleSwizzle.cxx
8317f688619bad03f6e64fcb8848426114e3d46c
[ "BSD-3-Clause", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
Mason-Wmx/ViewFramework
f9bc534df86f5cf640a9dbf963b9ea17a8e93562
d8117adc646c369ad29d64477788514c7a75a797
refs/heads/main
2023-06-29T04:12:37.042638
2021-07-28T09:26:55
2021-07-28T09:26:55
374,267,631
1
0
null
null
null
null
UTF-8
C++
false
false
13,311
cxx
//============================================================================= // // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. // // This software is distributed WITHOUT ANY WARRANTY; without even // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // PURPOSE. See the above copyright notice for more information. // // Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). // Copyright 2015 UT-Battelle, LLC. // Copyright 2015 Los Alamos National Security. // // Under the terms of Contract DE-NA0003525 with NTESS, // the U.S. Government retains certain rights in this software. // Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National // Laboratory (LANL), the U.S. Government retains certain rights in // this software. // //============================================================================= #include <vtkm/cont/ArrayHandle.h> #include <vtkm/cont/ArrayHandleCompositeVector.h> #include <vtkm/cont/ArrayHandleCounting.h> #include <vtkm/cont/ArrayHandleSwizzle.h> #include <vtkm/cont/DeviceAdapter.h> #include <vtkm/cont/DeviceAdapterAlgorithm.h> #include <vtkm/cont/testing/Testing.h> #include <type_traits> namespace { template <typename ValueType> struct SwizzleTests { using SwizzleInputArrayType = vtkm::cont::ArrayHandle<vtkm::Vec<ValueType, 4>>; template <vtkm::IdComponent OutSize> using SwizzleArrayType = vtkm::cont::ArrayHandleSwizzle<SwizzleInputArrayType, OutSize>; using ReferenceComponentArrayType = vtkm::cont::ArrayHandleCounting<ValueType>; using ReferenceArrayType = vtkm::cont::ArrayHandleCompositeVector<ReferenceComponentArrayType, ReferenceComponentArrayType, ReferenceComponentArrayType, ReferenceComponentArrayType>; template <vtkm::IdComponent Size> using MapType = vtkm::Vec<vtkm::IdComponent, Size>; using DeviceTag = VTKM_DEFAULT_DEVICE_ADAPTER_TAG; using Algo = vtkm::cont::DeviceAdapterAlgorithm<DeviceTag>; // This is used to build a ArrayHandleSwizzle's internal array. ReferenceArrayType RefArray; void ConstructReferenceArray() { // Build the Ref array const vtkm::Id numValues = 32; ReferenceComponentArrayType c1 = vtkm::cont::make_ArrayHandleCounting<ValueType>(3, 2, numValues); ReferenceComponentArrayType c2 = vtkm::cont::make_ArrayHandleCounting<ValueType>(2, 3, numValues); ReferenceComponentArrayType c3 = vtkm::cont::make_ArrayHandleCounting<ValueType>(4, 4, numValues); ReferenceComponentArrayType c4 = vtkm::cont::make_ArrayHandleCounting<ValueType>(1, 3, numValues); this->RefArray = vtkm::cont::make_ArrayHandleCompositeVector(c1, c2, c3, c4); } SwizzleInputArrayType BuildSwizzleInputArray() const { SwizzleInputArrayType result; Algo::Copy(this->RefArray, result); return result; } template <vtkm::IdComponent OutSize> void SanityCheck(const MapType<OutSize>& map) const { using Swizzle = SwizzleArrayType<OutSize>; using Traits = typename Swizzle::SwizzleTraits; VTKM_TEST_ASSERT(Traits::OutVecSize == vtkm::VecTraits<typename Swizzle::ValueType>::NUM_COMPONENTS, "Traits::OutVecSize invalid."); VTKM_TEST_ASSERT( VTKM_PASS_COMMAS(std::is_same<typename Traits::ComponentType, ValueType>::value), "Traits::ComponentType invalid."); VTKM_TEST_ASSERT( VTKM_PASS_COMMAS( std::is_same<typename Traits::OutValueType, vtkm::Vec<ValueType, OutSize>>::value), "Traits::OutValueType invalid."); SwizzleInputArrayType input = this->BuildSwizzleInputArray(); auto swizzle = vtkm::cont::make_ArrayHandleSwizzle(input, map); VTKM_TEST_ASSERT(input.GetNumberOfValues() == swizzle.GetNumberOfValues(), "Number of values in copied Swizzle array does not match input."); } template <vtkm::IdComponent OutSize> void ReadTest(const MapType<OutSize>& map) const { using Traits = typename SwizzleArrayType<OutSize>::SwizzleTraits; // Test that the expected values are read from an Swizzle array. SwizzleInputArrayType input = this->BuildSwizzleInputArray(); auto swizzle = vtkm::cont::make_ArrayHandleSwizzle(input, map); // Test reading the data back in the control env: this->ValidateReadTest(swizzle, map); // Copy the extracted array in the execution environment to test reading: vtkm::cont::ArrayHandle<typename Traits::OutValueType> execCopy; Algo::Copy(swizzle, execCopy); this->ValidateReadTest(execCopy, map); } template <typename ArrayHandleType, vtkm::IdComponent OutSize> void ValidateReadTest(ArrayHandleType testArray, const MapType<OutSize>& map) const { using Traits = typename SwizzleArrayType<OutSize>::SwizzleTraits; using ReferenceVectorType = typename ReferenceArrayType::ValueType; using SwizzleVectorType = typename Traits::OutValueType; VTKM_TEST_ASSERT(map.GetNumberOfComponents() == vtkm::VecTraits<SwizzleVectorType>::NUM_COMPONENTS, "Unexpected runtime component map size."); VTKM_TEST_ASSERT(testArray.GetNumberOfValues() == this->RefArray.GetNumberOfValues(), "Number of values incorrect in Read test."); auto refPortal = this->RefArray.GetPortalConstControl(); auto testPortal = testArray.GetPortalConstControl(); SwizzleVectorType refVecSwizzle(vtkm::TypeTraits<SwizzleVectorType>::ZeroInitialization()); for (vtkm::Id i = 0; i < testArray.GetNumberOfValues(); ++i) { ReferenceVectorType refVec = refPortal.Get(i); // Manually swizzle the reference vector using the runtime map information: for (vtkm::IdComponent j = 0; j < map.GetNumberOfComponents(); ++j) { refVecSwizzle[j] = refVec[map[j]]; } VTKM_TEST_ASSERT(test_equal(refVecSwizzle, testPortal.Get(i), 0.), "Invalid value encountered in Read test."); } } // Doubles everything in the input portal. template <typename PortalType> struct WriteTestFunctor : vtkm::exec::FunctorBase { PortalType Portal; VTKM_CONT WriteTestFunctor(const PortalType& portal) : Portal(portal) { } VTKM_EXEC_CONT void operator()(vtkm::Id index) const { this->Portal.Set(index, this->Portal.Get(index) * 2.); } }; template <vtkm::IdComponent OutSize> void WriteTest(const MapType<OutSize>& map) const { // Control test: { SwizzleInputArrayType input = this->BuildSwizzleInputArray(); auto swizzle = vtkm::cont::make_ArrayHandleSwizzle(input, map); WriteTestFunctor<typename SwizzleArrayType<OutSize>::PortalControl> functor( swizzle.GetPortalControl()); for (vtkm::Id i = 0; i < swizzle.GetNumberOfValues(); ++i) { functor(i); } this->ValidateWriteTestArray(input, map); } // Exec test: { SwizzleInputArrayType input = this->BuildSwizzleInputArray(); auto swizzle = vtkm::cont::make_ArrayHandleSwizzle(input, map); using Portal = typename SwizzleArrayType<OutSize>::template ExecutionTypes<DeviceTag>::Portal; WriteTestFunctor<Portal> functor(swizzle.PrepareForInPlace(DeviceTag())); Algo::Schedule(functor, swizzle.GetNumberOfValues()); this->ValidateWriteTestArray(input, map); } } // Check that the swizzled components are twice the reference value. template <vtkm::IdComponent OutSize> void ValidateWriteTestArray(SwizzleInputArrayType testArray, const MapType<OutSize>& map) const { auto refPortal = this->RefArray.GetPortalConstControl(); auto portal = testArray.GetPortalConstControl(); VTKM_TEST_ASSERT(portal.GetNumberOfValues() == refPortal.GetNumberOfValues(), "Number of values in write test output do not match input."); for (vtkm::Id i = 0; i < portal.GetNumberOfValues(); ++i) { auto value = portal.Get(i); auto refValue = refPortal.Get(i); // Double all of the components that appear in the map to replicate the // test result: for (vtkm::IdComponent j = 0; j < map.GetNumberOfComponents(); ++j) { refValue[map[j]] *= 2; } VTKM_TEST_ASSERT(test_equal(refValue, value, 0.), "Value mismatch in Write test."); } } template <vtkm::IdComponent OutSize> void TestSwizzle(const MapType<OutSize>& map) const { this->SanityCheck(map); this->ReadTest(map); this->WriteTest(map); } void operator()() { this->ConstructReferenceArray(); this->TestSwizzle(vtkm::make_Vec(0, 1)); this->TestSwizzle(vtkm::make_Vec(0, 2)); this->TestSwizzle(vtkm::make_Vec(0, 3)); this->TestSwizzle(vtkm::make_Vec(1, 0)); this->TestSwizzle(vtkm::make_Vec(1, 2)); this->TestSwizzle(vtkm::make_Vec(1, 3)); this->TestSwizzle(vtkm::make_Vec(2, 0)); this->TestSwizzle(vtkm::make_Vec(2, 1)); this->TestSwizzle(vtkm::make_Vec(2, 3)); this->TestSwizzle(vtkm::make_Vec(3, 0)); this->TestSwizzle(vtkm::make_Vec(3, 1)); this->TestSwizzle(vtkm::make_Vec(3, 2)); this->TestSwizzle(vtkm::make_Vec(0, 1, 2)); this->TestSwizzle(vtkm::make_Vec(0, 1, 3)); this->TestSwizzle(vtkm::make_Vec(0, 2, 1)); this->TestSwizzle(vtkm::make_Vec(0, 2, 3)); this->TestSwizzle(vtkm::make_Vec(0, 3, 1)); this->TestSwizzle(vtkm::make_Vec(0, 3, 2)); this->TestSwizzle(vtkm::make_Vec(1, 0, 2)); this->TestSwizzle(vtkm::make_Vec(1, 0, 3)); this->TestSwizzle(vtkm::make_Vec(1, 2, 0)); this->TestSwizzle(vtkm::make_Vec(1, 2, 3)); this->TestSwizzle(vtkm::make_Vec(1, 3, 0)); this->TestSwizzle(vtkm::make_Vec(1, 3, 2)); this->TestSwizzle(vtkm::make_Vec(2, 0, 1)); this->TestSwizzle(vtkm::make_Vec(2, 0, 3)); this->TestSwizzle(vtkm::make_Vec(2, 1, 0)); this->TestSwizzle(vtkm::make_Vec(2, 1, 3)); this->TestSwizzle(vtkm::make_Vec(2, 3, 0)); this->TestSwizzle(vtkm::make_Vec(2, 3, 1)); this->TestSwizzle(vtkm::make_Vec(3, 0, 1)); this->TestSwizzle(vtkm::make_Vec(3, 0, 2)); this->TestSwizzle(vtkm::make_Vec(3, 1, 0)); this->TestSwizzle(vtkm::make_Vec(3, 1, 2)); this->TestSwizzle(vtkm::make_Vec(3, 2, 0)); this->TestSwizzle(vtkm::make_Vec(3, 2, 1)); this->TestSwizzle(vtkm::make_Vec(0, 1, 2, 3)); this->TestSwizzle(vtkm::make_Vec(0, 1, 3, 2)); this->TestSwizzle(vtkm::make_Vec(0, 2, 1, 3)); this->TestSwizzle(vtkm::make_Vec(0, 2, 3, 1)); this->TestSwizzle(vtkm::make_Vec(0, 3, 1, 2)); this->TestSwizzle(vtkm::make_Vec(0, 3, 2, 1)); this->TestSwizzle(vtkm::make_Vec(1, 0, 2, 3)); this->TestSwizzle(vtkm::make_Vec(1, 0, 3, 2)); this->TestSwizzle(vtkm::make_Vec(1, 2, 0, 3)); this->TestSwizzle(vtkm::make_Vec(1, 2, 3, 0)); this->TestSwizzle(vtkm::make_Vec(1, 3, 0, 2)); this->TestSwizzle(vtkm::make_Vec(1, 3, 2, 0)); this->TestSwizzle(vtkm::make_Vec(2, 0, 1, 3)); this->TestSwizzle(vtkm::make_Vec(2, 0, 3, 1)); this->TestSwizzle(vtkm::make_Vec(2, 1, 0, 3)); this->TestSwizzle(vtkm::make_Vec(2, 1, 3, 0)); this->TestSwizzle(vtkm::make_Vec(2, 3, 0, 1)); this->TestSwizzle(vtkm::make_Vec(2, 3, 1, 0)); this->TestSwizzle(vtkm::make_Vec(3, 0, 1, 2)); this->TestSwizzle(vtkm::make_Vec(3, 0, 2, 1)); this->TestSwizzle(vtkm::make_Vec(3, 1, 0, 2)); this->TestSwizzle(vtkm::make_Vec(3, 1, 2, 0)); this->TestSwizzle(vtkm::make_Vec(3, 2, 0, 1)); this->TestSwizzle(vtkm::make_Vec(3, 2, 1, 0)); } }; struct ArgToTemplateType { template <typename ValueType> void operator()(ValueType) const { SwizzleTests<ValueType>()(); } }; void TestArrayHandleSwizzle() { using TestTypes = vtkm::ListTagBase<vtkm::Int32, vtkm::Int64, vtkm::Float32, vtkm::Float64>; vtkm::testing::Testing::TryTypes(ArgToTemplateType(), TestTypes()); } void TestComponentMapValidator() { vtkm::cont::ArrayHandle<vtkm::Vec<vtkm::Id, 4>> dummy; // Repeat components: bool error = false; try { vtkm::cont::make_ArrayHandleSwizzle(dummy, 0, 1, 2, 1); error = true; } catch (vtkm::cont::ErrorBadValue& e) { std::cout << "Caught expected exception 1: " << e.what() << "\n"; } VTKM_TEST_ASSERT(!error, "Repeat components allowed."); try { vtkm::cont::make_ArrayHandleSwizzle(dummy, 0, 1, 2, -1); error = true; } catch (vtkm::cont::ErrorBadValue& e) { std::cout << "Caught expected exception 2: " << e.what() << "\n"; } VTKM_TEST_ASSERT(!error, "Negative components allowed."); try { vtkm::cont::make_ArrayHandleSwizzle(dummy, 0, 1, 2, 5); error = true; } catch (vtkm::cont::ErrorBadValue& e) { std::cout << "Caught expected exception 3: " << e.what() << "\n"; } VTKM_TEST_ASSERT(!error, "Invalid component allowed."); } } // end anon namespace int UnitTestArrayHandleSwizzle(int, char* []) { try { TestComponentMapValidator(); } catch (vtkm::cont::Error& e) { std::cerr << "Error: " << e.what() << "\n"; return EXIT_FAILURE; } return vtkm::cont::testing::Testing::Run(TestArrayHandleSwizzle); }
[ "mingxin.wang@peraglobal.com" ]
mingxin.wang@peraglobal.com
7a0e7d04da0e5073f4b0947591a3d831c9c62938
8539dca20cd60b31d57853eae7ffd489a97a4486
/Atividade Pilhas/PrimeiraQuestao.cpp
d53b638b589778ce6195649696d6fa3e4f0d7b83
[]
no_license
jesusadadfilho/Estrutura-de-dados
882906cec22efe9f85ab7823ebde821ddaaf513d
9aa1684e04d9685b97ebaeefd8b639ba823229a9
refs/heads/master
2021-09-04T05:34:10.981128
2018-01-16T10:52:14
2018-01-16T10:52:14
110,627,625
0
0
null
null
null
null
UTF-8
C++
false
false
1,289
cpp
#include <iostream> #include <string> #include <cstring> #include <stdlib.h> using namespace std; int len(char s[]){ int i = 0; while(*(i+s)!= NULL) { i++; } return i; } void expresao(char s[]){ char del[] = {"[{()}]"}; int quant = 0; for(int i = 0;i<len(s);i++ ){ for(int j = 0;j<len(del);j++){ if(s[i] == del[j]){ quant++; } } } char us[quant]; int pos = 0; for(int i = 0;i<len(s);i++ ){ for(int j = 0;j<len(del);j++){ if(s[i] == del[j]){ us[pos] = s[i]; pos++; } } } for(int i = 0; i < pos;i++){ cout<<us[i]; } cout<<quant<<"\n"; if(quant%2!=0){ cout<<"Expresao errada1\n"; } else { for(int i=0; i<quant/2;i++){ if(us[i] == del[0]){ if(us[quant-1-i] != del[5]){ cout<<us[quant-1-i]<<" "<<del[5]<<"\n"; cout<<"Expresao errada2\n"; return; } } if(us[i] == del[1]){ if(us[quant-1-i] != del[4]){ cout<<us[quant-1-i]<<" "<<del[4]<<"\n"; cout<<"Expresao errada3\n"; return; } } if(us[i] == del[2]){ if(us[quant-1-i] != del[3]){ cout<<us[quant-1-i]<<" "<<del[3]<<"\n"; cout<<"Expresao errada4\n"; return; } } } cout<<"Expresao correta\n"; } } int main() { char f[] = {"{1+(3-5)+5+9"}; expresao(f); system("pause"); return 0; }
[ "jesusadadfilho@gmail.com" ]
jesusadadfilho@gmail.com
193999e530b319303b7ce0074b5e8284c0891787
90ba67a9ffd845f888860cc2fbc099b2af9d7a52
/D_The_Best_Vacation.cpp
62c1a1dcf97cb1646775a45d5f2e6ff1a4b379b0
[]
no_license
AmanRawat1298/CodeForces
a6e7f52d063bc32647035aee9304a7420d76a7b9
b63c035457d8d5993dc2e846e01dbbdb1edb8f3c
refs/heads/master
2023-02-03T03:22:08.489591
2020-12-17T15:30:33
2020-12-17T15:30:33
267,936,546
0
0
null
null
null
null
UTF-8
C++
false
false
1,020
cpp
#include <iostream> #include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { int n,x; cin>>n>>x; int val; vector <int> v; for( int i=0; i<n; i++) { cin>>val; for( int j=1; j<=val; j++) { v.push_back(j); } } queue <int> q; int sum=0, max_so_far =0; int start = 0; int i=0; int flag =0; while(true) { if(start == 0 && flag == 1) { break; } sum+=v[i]; q.push(v[i]); if(q.size()>x) { sum -= q.front(); q.pop(); start = (start+1)%v.size(); flag = 1; } if(sum> max_so_far) max_so_far = sum; i = (i+1)%v.size(); } cout<<max_so_far<<endl; return 0; }
[ "aman.r1298@gmail.com" ]
aman.r1298@gmail.com
9e312334eba4c4b5fed96eb954a350d2f0ba4373
2aa23f3ed83e32d6531b07c5e7295697f57b9c69
/lesson/01. iterations/binary gap.cpp
3422abf9f80cccdbbbb2bcaa311416028d1ec012
[]
no_license
sorious77/codility
3b9d4d50d7c7d42470a4c07944df0086282e0708
75fd555fad84c38402102e3595894e3c81e638fd
refs/heads/master
2021-01-02T06:21:51.407795
2020-02-18T15:19:08
2020-02-18T15:19:08
239,527,155
0
0
null
null
null
null
UTF-8
C++
false
false
834
cpp
int soultion(int N){ string temp_str, str; while (temp > 1) { temp_str += to_string(temp % 2); temp /= 2; } temp_str += to_string(temp); for (int i = temp_str.length() - 1; i >= 0; i--) { str += temp_str[i]; } int len = 0; int max = 0; int index = 0; while (index < str.length()) { if ((index = str.find("1", index)) != std::string::npos) { // 시작할 1의 위치를 찾음 if ((temp = str.find("1", index + 1)) != std::string::npos) { // 끝날 1의 위치를 찾음 len = temp - index - 1; // 시작과 끝의 index 차이만큼 길이 if (len > max) max = len; index = temp; } else // 1로 끝나는 경우가 없다면 종료(100000과 같은 경우) break; } else // 아예 1이 없다면 종료(0의 경우) break; } return max; }
[ "sorious77@naver.com" ]
sorious77@naver.com
7530a847a42dc9aade3a470cc2f47239cf1d118a
e862e3c79d7f6124d524448b0420b7ea3e55b347
/include/experimental/bits/executor_wrapper_base.h
8f7bdb8cc10dcfb6f925c025400fee1288c7df55
[ "BSL-1.0" ]
permissive
viboes/executors
491a4df5bbca0bd3d5e2677f1cbbe322b881703a
b7e914f47a36e4e3150e5889e5014541ec867a21
refs/heads/master
2021-01-16T21:47:19.890300
2014-05-28T09:27:19
2014-05-28T09:27:19
20,310,663
2
0
null
null
null
null
UTF-8
C++
false
false
4,098
h
// // executor_wrapper_base.h // ~~~~~~~~~~~~~~~~~~~~~~~ // Wraps a function object so that it is associated with an executor. // // Copyright (c) 2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #ifndef EXECUTORS_EXPERIMENTAL_BITS_EXECUTOR_WRAPPER_BASE_H #define EXECUTORS_EXPERIMENTAL_BITS_EXECUTOR_WRAPPER_BASE_H #include <experimental/type_traits> #include <experimental/bits/function_traits.h> #include <utility> namespace std { namespace experimental { template <class _Executor> class __executor_wrapper_base_executor { protected: template <class... _Args> explicit __executor_wrapper_base_executor(_Args&&... __args) : _M_executor(forward<_Args>(__args)...) { } _Executor _M_executor; }; template <class _T, class = void> class __executor_wrapper_base_wrapped; template <class _R, class... _Args> class __executor_wrapper_base_wrapped<_R (*)(_Args...)> { public: _R operator()(_Args... __args) const { return _M_wrapped(forward<_Args>(__args)...); } protected: typedef _R (*_WrappedType)(_Args... __args); explicit __executor_wrapper_base_wrapped(_WrappedType __f) : _M_wrapped(__f) { } _WrappedType& _Wrapped() { return _M_wrapped; } const _WrappedType& _Wrapped() const { return _M_wrapped; } private: _R (*_M_wrapped)(_Args...); }; template <class _R, class... _Args> class __executor_wrapper_base_wrapped<_R (&)(_Args...)> { public: _R operator()(_Args... __args) const { return _M_wrapped(forward<_Args>(__args)...); } protected: typedef _R (&_WrappedType)(_Args... __args); explicit __executor_wrapper_base_wrapped(_WrappedType __f) : _M_wrapped(__f) { } _WrappedType& _Wrapped() { return _M_wrapped; } const _WrappedType& _Wrapped() const { return _M_wrapped; } private: _R (&_M_wrapped)(_Args...); }; template <class _T> class __executor_wrapper_base_wrapped<_T, typename enable_if<is_class<_T>::value && __is_callable<_T>::value>::type> : private _T { public: using _T::operator(); protected: template <class... _Args> explicit __executor_wrapper_base_wrapped(_Args&&... __args) : _T(forward<_Args>(__args)...) { } _T& _Wrapped() { return *this; } const _T& _Wrapped() const { return *this; } }; template <class _T> class __executor_wrapper_base_wrapped<_T, typename enable_if<is_class<_T>::value && !__is_callable<_T>::value>::type> : private _T { protected: template <class... _Args> explicit __executor_wrapper_base_wrapped(_Args&&... __args) : _T(forward<_Args>(__args)...) { } _T& _Wrapped() { return *this; } const _T& _Wrapped() const { return *this; } }; template <class _T> class __executor_wrapper_base_wrapped<_T, typename enable_if<!is_class<_T>::value && __is_callable<_T>::value && !__is_callable_function<_T>::value>::type> { public: template <class... _Args> auto operator()(_Args&&... __args) { return _M_wrapped(forward<_Args>(__args)...); } template <class... _Args> auto operator()(_Args&&... __args) const { return _M_wrappedf(forward<_Args>(__args)...); } protected: template <class _U, class _E> friend class executor_wrapper; template <class... _Args> explicit __executor_wrapper_base_wrapped(_Args&&... __args) : _M_wrapped(forward<_Args>(__args)...) { } _T& _Wrapped() { return _M_wrapped; } const _T& _Wrapped() const { return _M_wrapped; } private: _T _M_wrapped; }; template <class _T> class __executor_wrapper_base_wrapped<_T, typename enable_if<!is_class<_T>::value && !__is_callable<_T>::value>::type> { protected: template <class _U, class _E> friend class executor_wrapper; template <class... _Args> explicit __executor_wrapper_base_wrapped(_Args&&... __args) : _M_wrapped(forward<_Args>(__args)...) { } _T& _Wrapped() { return _M_wrapped; } const _T& _Wrapped() const { return _M_wrapped; } private: _T _M_wrapped; }; } // namespace experimental } // namespace std #endif
[ "chris@kohlhoff.com" ]
chris@kohlhoff.com
0efc079258afeda92c6f55ea9b2a7edd89af11f1
130caa2001baed165203ab3e73751c218a52c4b1
/ex270_bst_closest/solution.cpp
9719356b92ea1d985bf4394745e482d8648867b4
[]
no_license
blenz3/leetcode
b3a29e42e64847c0eee91a2aa2cdfe2716af49f2
f99def4b16e29b08b0b4af1004c7e53113ff9325
refs/heads/master
2022-07-17T06:01:38.536254
2022-07-11T00:51:12
2022-07-11T00:51:12
185,082,578
0
0
null
null
null
null
UTF-8
C++
false
false
986
cpp
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode() : val(0), left(nullptr), right(nullptr) {} * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {} * TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {} * }; */ class Solution { public: int closestValue(TreeNode* root, double target) { int closest(INT_MAX); traverse(root, target, closest); return closest; } private: void traverse(TreeNode* root, double target, int& closest) { if (root == nullptr) { return; } if (::fabs(root->val - target) < ::fabs(closest - target)) closest = root->val; if (target < root->val) { traverse(root->left, target, closest); } else { traverse(root->right, target, closest); } } };
[ "noreply@github.com" ]
blenz3.noreply@github.com
6f2c56f55fc248f13fa0ec655f416bcd03001cee
a9b467714a5eabf2b24d8957b9ab0143c6576d04
/Offline-9/offline 9 graphs/off-9.cpp
fa9c05bf74638d8b0afebec1b6108e528e0edc7b
[]
no_license
1405081-rmrr/AlgorithmOfflines
4b188034d2b91a2a88a97b2c9e2539f4efb2d228
071ae4d24f7751e615e2eed3b83327532f70e491
refs/heads/master
2020-09-22T03:13:27.198816
2019-12-02T02:19:38
2019-12-02T02:19:38
225,029,207
0
1
null
2019-12-02T02:19:39
2019-11-30T15:07:51
C++
UTF-8
C++
false
false
2,372
cpp
#include <bits/stdc++.h> using namespace std; struct edge { int u, v; edge(int _u=0, int _v=0) : u(_u), v(_v) { } }; // Zero indexed graph vector<int> approx_rand(int nodes, const vector< edge > &E) { vector<int> order; for(int i=0; i<(int) E.size(); ++i) order.push_back(i); random_shuffle(order.begin(), order.end()); vector<int> ret; vector<bool> vis(nodes, false); for(int i=0; i<(int) order.size(); ++i) { int who = order[i]; int u = E[who].u, v = E[who].v; if(vis[u] or vis[v]) continue; ret.push_back(u); ret.push_back(v); vis[u] = true; vis[v] = true; } return ret; } vector<int> approx_deg(int nodes, vector< edge > E) { vector<int> g[nodes]; vector<int> deg(nodes, 0); for(int i=0; i<(int) E.size(); ++i) { edge e = E[i]; g[e.u].push_back(e.v); g[e.v].push_back(e.u); ++deg[e.u]; ++deg[e.v]; } vector<int> ret; while(!E.empty()) { edge cur; int maxx = -1; for(int i=0; i<(int) E.size(); ++i) { edge e = E[i]; int temp = deg[e.u] + deg[e.v]; if(temp > maxx) cur = e, maxx = temp; } ret.push_back(cur.u); ret.push_back(cur.v); // cout << "Picked " << cur.u << " " << cur.v << "\n"; // for(auto e : E) cout << e.u << " - " << e.v << "; "; cout << "\n"; vector<edge> temp; for(int i=0; i<(int) E.size(); ++i) { edge e = E[i]; int cnt = 0; if(e.u == cur.u) --deg[e.v]; else if(e.u == cur.v) --deg[e.u]; else ++cnt; if(e.v == cur.u) --deg[e.v]; else if(e.v == cur.v) --deg[e.u]; else ++cnt; if(cnt == 2) temp.push_back(e); } E = temp; } return ret; } int main() { srand(time(NULL)); freopen("graph 4.txt", "r", stdin); freopen("report.txt", "a", stdout); int n, m; cin >> n >> m; vector<edge> E(m); for(int i=0; i<m; ++i) { cin >> E[i].u >> E[i].v; --E[i].u, --E[i].v; // zero indexed } int res_rand[5]; for(int i=0; i<5; ++i) res_rand[i] = (approx_rand(n, E).size()); sort(res_rand, res_rand+5); double avg = 0; for(int i=0; i<5; ++i) avg += res_rand[i]; avg /= 5.0; int res_deg = approx_deg(n, E).size(); cout << "Report\n"; cout << "Random: \n"; cout << "\tBest: " << res_rand[0] << "\n"; cout << "\tAvg: " << avg << "\n"; cout << "\tWorst: " << res_rand[4] << "\n"; cout << "Deg: " << res_deg << "\n"; cout << "\n"; return 0; } /* 9 11 0 1 0 3 2 3 1 4 3 4 3 8 4 5 4 7 5 6 5 7 6 8 */
[ "1405081.rmrr@ugrad.cse.buet.ac.bd" ]
1405081.rmrr@ugrad.cse.buet.ac.bd
e0adfe207f996deedc48a3bdeca591336c4a0b32
03d0ce8a4bd34de35f654a568b6004aa321d3ab8
/DemoDirectX/Gate.cpp
d0a4aefa15e98b4eeb679dd4dc40806098ace0ec
[]
no_license
minhnhatkool123/CASTLENEW
7a202a3a4e3eb14dd9d7e6c2e347f8f69535b165
c7de8dc774678f3a3b3503b43fb2113463ab472b
refs/heads/master
2022-11-24T12:40:28.200321
2020-07-28T11:59:30
2020-07-28T11:59:30
257,939,088
0
1
null
null
null
null
UTF-8
C++
false
false
303
cpp
#include "Gate.h" Gate::Gate() { } void Gate::Update(DWORD dt, vector<LPGAMEOBJECT>* coObject) { } void Gate::Render() { RenderBoundingBox(); } void Gate::GetBoundingBox(float &l, float &t, float &r, float &b) { l = x; t = y; r = l+gate_box_width; b = t+gate_box_height; } Gate::~Gate() { }
[ "62514136+minhnhatkool123@users.noreply.github.com" ]
62514136+minhnhatkool123@users.noreply.github.com
36e874d4c18835dd1931b715791b6a9286509d23
85e7114ea63a080c1b9b0579e66c7a2d126cffec
/SDK/SoT_BP_SmallShip_StandardHull_InternalShipWater_parameters.hpp
ad1d50a816b1ef95e60a9d312ae1dfa210bde04f
[]
no_license
EO-Zanzo/SeaOfThieves-Hack
97094307d943c2b8e2af071ba777a000cf1369c2
d8e2a77b1553154e1d911a3e0c4e68ff1c02ee51
refs/heads/master
2020-04-02T14:18:24.844616
2018-10-24T15:02:43
2018-10-24T15:02:43
154,519,316
0
2
null
null
null
null
UTF-8
C++
false
false
3,341
hpp
#pragma once // Sea of Thieves (1.2.6) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "SoT_BP_SmallShip_StandardHull_InternalShipWater_classes.hpp" namespace SDK { //--------------------------------------------------------------------------- //Parameters //--------------------------------------------------------------------------- // Function BP_SmallShip_StandardHull_InternalShipWater.BP_SmallShip_StandardHull_InternalShipWater_C.GetLineIntersectionFromPlane struct ABP_SmallShip_StandardHull_InternalShipWater_C_GetLineIntersectionFromPlane_Params { struct FVector LineStart; // (Parm, ZeroConstructor, IsPlainOldData) struct FVector LineEnd; // (Parm, ZeroConstructor, IsPlainOldData) bool Intersect; // (Parm, OutParm, ZeroConstructor, IsPlainOldData) struct FVector IntersectionPoint; // (Parm, OutParm, ZeroConstructor, IsPlainOldData) }; // Function BP_SmallShip_StandardHull_InternalShipWater.BP_SmallShip_StandardHull_InternalShipWater_C.GetWaterLevel struct ABP_SmallShip_StandardHull_InternalShipWater_C_GetWaterLevel_Params { float WaterLevel; // (Parm, OutParm, ZeroConstructor, IsPlainOldData) }; // Function BP_SmallShip_StandardHull_InternalShipWater.BP_SmallShip_StandardHull_InternalShipWater_C.GetDistanceFromPlane struct ABP_SmallShip_StandardHull_InternalShipWater_C_GetDistanceFromPlane_Params { struct FVector Location; // (Parm, ZeroConstructor, IsPlainOldData) float Distance; // (Parm, OutParm, ZeroConstructor, IsPlainOldData) }; // Function BP_SmallShip_StandardHull_InternalShipWater.BP_SmallShip_StandardHull_InternalShipWater_C.UserConstructionScript struct ABP_SmallShip_StandardHull_InternalShipWater_C_UserConstructionScript_Params { }; // Function BP_SmallShip_StandardHull_InternalShipWater.BP_SmallShip_StandardHull_InternalShipWater_C.AddWater struct ABP_SmallShip_StandardHull_InternalShipWater_C_AddWater_Params { float Water_Amount; // (Parm, ZeroConstructor, IsPlainOldData) }; // Function BP_SmallShip_StandardHull_InternalShipWater.BP_SmallShip_StandardHull_InternalShipWater_C.ReceiveBeginPlay struct ABP_SmallShip_StandardHull_InternalShipWater_C_ReceiveBeginPlay_Params { }; // Function BP_SmallShip_StandardHull_InternalShipWater.BP_SmallShip_StandardHull_InternalShipWater_C.ExecuteUbergraph_BP_SmallShip_StandardHull_InternalShipWater struct ABP_SmallShip_StandardHull_InternalShipWater_C_ExecuteUbergraph_BP_SmallShip_StandardHull_InternalShipWater_Params { int EntryPoint; // (Parm, ZeroConstructor, IsPlainOldData) }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "zp2kshield@gmail.com" ]
zp2kshield@gmail.com
aeea671e3e057c47f193d370d26a82c8ad29a7f6
1f578f8698a41b6b652946876d6ea0f5eb397e44
/cpp_01/ex07/main.cpp
f1df3eb52cc8fba12d2eee51027e07a5bc669464
[]
no_license
vdedios/cpp_modules
21c47386c866647cbaa0e37d927925419e370adc
e10dbbba8c8a586909771f2804305ccc2f0031c0
refs/heads/main
2023-06-21T20:21:52.151497
2021-07-21T16:09:43
2021-07-21T16:09:43
364,990,258
0
0
null
null
null
null
UTF-8
C++
false
false
1,314
cpp
#include <iostream> #include <fstream> #include <string> void checkInputFormat(int argc, char **argv) { if (argc != 4) { std::cout << "USAGE: ./replace <fileName> <str> <replace_str>" << std::endl; exit(0); } if (!argv[2] || !*argv[2] || !argv[3] || !*argv[3]) { std::cout << "Invalid or void strings." << std::endl; exit(0); } } void searchAndReplace(std::string& line, char *str1, char *str2) { const std::string target(str1); const std::string replacement(str2); size_t pos = 0; while ((pos = line.find(target, pos)) != std::string::npos) { line.replace(pos, target.length(), replacement); } return ; } int main(int argc, char **argv) { std::string line; checkInputFormat(argc, argv); std::ifstream file(argv[1]); if (file.is_open()) { std::string fileName(argv[1]); std::ofstream replaceFile(fileName + ".replace"); while (std::getline(file, line)) { searchAndReplace(line, argv[2], argv[3]); replaceFile << line; if (!file.eof()) { replaceFile << std::endl; } } replaceFile.close(); file.close(); } else { std::cout << "Invalid file name." << std::endl; return (0); } }
[ "victor.dedios@outlook.com" ]
victor.dedios@outlook.com
f5e2b51d68f06e4e0333cb67915778f449841d49
0150d34d5ced4266b6606c87fbc389f23ed19a45
/Cpp/SDK/Spectral_structs.h
c3223e8fd924092b2d2eb46d21bbcf2b0d582479
[ "Apache-2.0" ]
permissive
joey00186/Squad-SDK
9aa1b6424d4e5b0a743e105407934edea87cbfeb
742feb5991ae43d6f0cedd2d6b32b949923ca4f9
refs/heads/master
2023-02-05T19:00:05.452463
2021-01-03T19:03:34
2021-01-03T19:03:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,284
h
#pragma once // Name: S, Version: b #ifdef _MSC_VER #pragma pack(push, 0x01) #endif /*!!HELPER_DEF!!*/ /*!!DEFINE!!*/ namespace UFT { //--------------------------------------------------------------------------- // Enums //--------------------------------------------------------------------------- // Enum Spectral.ESpectralDeviceType enum class ESpectralDeviceType : uint8_t { Keyboard = 0, Mouse = 1, Headset = 2, Mousepad = 3, HeadsetStand = 4, Speaker = 5, MAX = 6, }; // Enum Spectral.ESpectralLedName enum class ESpectralLedName : uint8_t { Invalid = 0, Backspace = 1, Tab = 2, Enter = 3, Pause = 4, CapsLock = 5, Escape = 6, Spacebar = 7, PageUp = 8, PageDown = 9, End = 10, Home = 11, LeftArrow = 12, UpArrow = 13, RightArrow = 14, DownArrow = 15, PrintScreen = 16, Insert = 17, Delete = 18, Zero = 19, One = 20, Two = 21, Three = 22, Four = 23, Five = 24, Six = 25, Seven = 26, Eight = 27, Nine = 28, A = 29, B = 30, C = 31, D = 32, E = 33, F = 34, G = 35, H = 36, I = 37, J = 38, K = 39, L = 40, M = 41, N = 42, O = 43, P = 44, Q = 45, R = 46, S = 47, T = 48, U = 49, V = 50, W = 51, X = 52, Y = 53, Z = 54, LeftWindows = 55, RightWindows = 56, Applications = 57, Numpad0 = 58, Numpad1 = 59, Numpad2 = 60, Numpad3 = 61, Numpad4 = 62, Numpad5 = 63, Numpad6 = 64, Numpad7 = 65, Numpad8 = 66, Numpad9 = 67, Multiply = 68, Add = 69, Subtract = 70, Decimal = 71, Divide = 72, F1 = 73, F2 = 74, F3 = 75, F4 = 76, F5 = 77, F6 = 78, F7 = 79, F8 = 80, F9 = 81, F10 = 82, F11 = 83, F12 = 84, NumLock = 85, ScrollLock = 86, LeftShift = 87, RightShift = 88, LeftControl = 89, RightControl = 90, Semicolon = 91, Plus = 92, Comma = 93, Minus = 94, Period = 95, Slash = 96, Tilde = 97, LeftBracket = 98, Backslash = 99, RightBracket = 100, Quote = 101, LeftAlt = 102, RightAlt = 103, NumpadEnter = 104, G1 = 105, G2 = 106, G3 = 107, G4 = 108, G5 = 109, G6 = 110, G7 = 111, G8 = 112, G9 = 113, Logo = 114, Badge = 115, NonUsBackslash = 116, Lang1 = 117, Lang2 = 118, LedProgramming = 119, Brightness = 120, NonUsTilde = 121, WindowsLock = 122, Mute = 123, Stop = 124, PreviousTrack = 125, PlayPause = 126, NextTrack = 127, VolumeUp = 128, VolumeDown = 129, MR = 130, M1 = 131, M2 = 132, M3 = 133, G10 = 134, G11 = 135, G12 = 136, G13 = 137, G14 = 138, G15 = 139, G16 = 140, G17 = 141, G18 = 142, Fn = 143, International1 = 144, International2 = 145, International3 = 146, International4 = 147, International5 = 148, International6 = 149, International7 = 150, KeyboardZone1 = 151, KeyboardZone2 = 152, KeyboardZone3 = 153, KeyboardZone4 = 154, KeyboardZone5 = 155, KeyboardZone6 = 156, KeyboardZone7 = 157, KeyboardZone8 = 158, KeyboardZone9 = 159, KeyboardZone10 = 160, KeyboardZone11 = 161, KeyboardZone12 = 162, KeyboardZone13 = 163, KeyboardZone14 = 164, KeyboardZone15 = 165, KeyboardZone16 = 166, KeyboardZone17 = 167, KeyboardZone18 = 168, KeyboardZone19 = 169, MouseZone1 = 170, MouseZone2 = 171, MouseZone3 = 172, MouseZone4 = 173, MouseZone5 = 174, MouseZone6 = 175, MouseZone7 = 176, MouseZone8 = 177, MouseZone9 = 178, MouseZone10 = 179, MouseZone11 = 180, MouseZone12 = 181, MouseZone13 = 182, MouseZone14 = 183, MouseZone15 = 184, MouseZone16 = 185, MouseZone17 = 186, MouseZone18 = 187, MouseZone19 = 188, MouseZone20 = 189, MouseZone21 = 190, MouseZone22 = 191, HeadsetLeftZone = 192, HeadsetRightZone = 193, MousepadZone1 = 194, MousepadZone2 = 195, MousepadZone3 = 196, MousepadZone4 = 197, MousepadZone5 = 198, MousepadZone6 = 199, MousepadZone7 = 200, MousepadZone8 = 201, MousepadZone9 = 202, MousepadZone10 = 203, MousepadZone11 = 204, MousepadZone12 = 205, MousepadZone13 = 206, MousepadZone14 = 207, MousepadZone15 = 208, HeadsetStandZone1 = 209, HeadsetStandZone2 = 210, HeadsetStandZone3 = 211, HeadsetStandZone4 = 212, HeadsetStandZone5 = 213, HeadsetStandZone6 = 214, HeadsetStandZone7 = 215, HeadsetStandZone8 = 216, HeadsetStandZone9 = 217, SpeakerLeft = 218, SpeakerRight = 219, MAX = 220, }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "tahmaniak@gmail.com" ]
tahmaniak@gmail.com
2f9447262249803e5e4905d1da86cbcac5cf4973
49fc9092d53d1c06843986e57cf3b7e63007acdf
/src/fred2/freddoc.cpp
f6f7913f855ff6934ecb823e4ceadd9d6d524093
[]
no_license
ptitSeb/freespace2
8615e5c55b9a19bdf280bc0e0b164f9e33640045
500ee249f7033aac9b389436b1737a404277259c
refs/heads/master
2020-09-20T19:13:59.618314
2019-01-02T10:51:59
2019-01-02T10:51:59
67,286,355
9
3
null
null
null
null
UTF-8
C++
false
false
27,464
cpp
/* * Copyright (C) Volition, Inc. 1999. All rights reserved. * * All source code herein is the property of Volition, Inc. You may not sell * or otherwise commercially exploit the source or things you created based on * the source. */ /* * $Logfile: /Freespace2/code/Fred2/FREDDoc.cpp $ * $Revision: 110 $ * $Date: 2002-06-09 06:41:30 +0200 (Sun, 09 Jun 2002) $ * $Author: relnev $ * * FREDDoc.cpp : implementation of the CFREDDoc class * Document class for document/view architechure, which we don't really use in * Fred, but MFC forces you do use like it or not. Handles loading/saving * mainly. Most of the MFC related stuff is handled in FredView. * * $Log$ * Revision 1.3 2002/06/09 04:41:16 relnev * added copyright header * * Revision 1.2 2002/05/07 03:16:44 theoddone33 * The Great Newline Fix * * Revision 1.1.1.1 2002/05/03 03:28:08 root * Initial import. * * * 7 7/23/99 2:12p Jamesa * fix gamepalette request * * 6 5/20/99 6:59p Dave * Added alternate type names for ships. Changed swarm missile table * entries. * * 5 10/29/98 6:49p Dave * Finished up Fred support for externalizing mission and campaign files. * * 4 10/29/98 12:50p Dave * Intermediate checkin for fred hash table stuff. * * 3 10/28/98 11:30a Dave * Temporary checkin. * * 2 10/07/98 6:28p Dave * Initial checkin. Renamed all relevant stuff to be Fred2 instead of * Fred. Globalized mission and campaign file extensions. Removed Silent * Threat specific code. * * 1 10/07/98 3:00p Dave * * 94 9/21/98 8:46p Dave * Put in special check in fred for identifying unknown ships. * * 93 9/16/98 6:54p Dave * Upped max sexpression nodes to 1800 (from 1600). Changed FRED to sort * the ship list box. Added code so that tracker stats are not stored with * only 1 player. * * 92 8/13/98 9:53a Hoffoss * Fixed bug where loading mission doesn't update palette used for that * mission. * * 91 4/30/98 8:23p John * Fixed some bugs with Fred caused by my new cfile code. * * 90 4/28/98 2:13p Hoffoss * Added code to help keep invalid player ship types from existing in * mission. * * 89 4/10/98 10:22p Mike * Fix bug in parsing medals.tbl. * * 88 4/10/98 4:51p Hoffoss * Made several changes related to tooltips. * * 87 3/25/98 4:14p Hoffoss * Split ship editor up into ship editor and a misc dialog, which tracks * flags and such. * * 86 3/10/98 4:26p Hoffoss * Changed jump node structure to include a name. Position is now taken * from the object (each jump node has an associated object now). * * 85 2/26/98 4:59p Allender * groundwork for team vs team briefings. Moved weaponry pool into the * Team_data structure. Added team field into the p_info structure. * Allow for mutliple structures in the briefing code. * * 84 1/28/98 11:00a Johnson * Fixed parse code for medals table (new field) * * 83 11/06/97 4:37p Allender * a ton of medal work. Removed an uneeded element in the scoring * structure. Fix up medals screen to apprioriate display medals (after * mask was changed). Fix Fred to only display medals which may actually * be granted. Added image_filename to player struct for Jason Hoffoss * * 82 11/05/97 10:19p Mike * Comment out call to parse_medal_tbl() to allow Fred to run. * * 81 11/05/97 4:43p Allender * reworked medal/rank system to read all data from tables. Made Fred * read medals.tbl. Changed ai-warp to ai-warp-out which doesn't require * waypoint for activation * * 80 11/04/97 4:50p Hoffoss * Made mission loading failure display an error message stating so. * * 79 11/04/97 4:33p Hoffoss * Made saving keep the current briefing state intact. * * 78 10/20/97 1:20p Hoffoss * Fixed bug loading mission file after a save. * * 77 10/19/97 11:36p Hoffoss * Made mission saving call reload the mission after saving it to verify * it was written error free. * * 76 10/08/97 11:47a Hoffoss * Added better fred handling of Weaponry_pool. * * 75 9/20/97 8:16a John * Made .clr files go into the Cache directory. Replaced cfopen(name,NULL) * to delete a file with cf_delete. * * 74 9/18/97 11:52a Johnson * Fixed bug with player starts count being incorrect. * * 73 9/17/97 11:58a Hoffoss * Fixed mission load code to properly set arrival cues to player ships. * * 72 9/17/97 10:32a Allender * fixup references to old "Player" ship to new real shipname * * 71 9/16/97 9:41p Hoffoss * Changed Fred code around to stop using Parse_player structure for * player information, and use actual ships instead. * * 70 9/09/97 6:50p Hoffoss * Fixed bug with mission saving. * * 69 9/09/97 1:55p Hoffoss * Fixed bug with saving missions that are readonly. * * 68 8/21/97 1:49p Hoffoss * Fixed bugs with loading files. Wasn't clearing the last mission first, * and multiplayer starts in a mission caused it to think it was modified * right away. * * 67 8/20/97 5:45p Hoffoss * Fixed bugs with mission name in sexp in non campaign mode in Fred. * * 66 8/20/97 4:03p Hoffoss * Fixed bug in reload current mission (revert). * * 65 8/17/97 10:22p Hoffoss * Fixed several bugs in Fred with Undo feature. In the process, recoded * a lot of CFile.cpp. * * 64 8/16/97 9:24p Hoffoss * Added support for team of players in multiplayer. * * 63 8/16/97 6:44p Hoffoss * Changes to allow any player to be in a wing. * * 62 8/16/97 3:53p Hoffoss * Added OF_NO_SHIELDS define and support in Fred and mission load/save. * * 61 8/13/97 5:49p Hoffoss * Fixed bugs, made additions. * * 60 8/13/97 12:46p Hoffoss * Added campaign error checker, accelerator table, and mission goal data * listings to sexp tree right click menu. * * 59 8/12/97 1:55a Hoffoss * Made extensive changes to object reference checking and handling for * object deletion call. * * 58 7/31/97 5:55p John * made so you pass flags to obj_create. * Added new collision code that ignores any pairs that will never * collide. * * 57 7/30/97 2:10p Hoffoss * Made new missions that have never been saved yet save backups. * * 56 7/28/97 3:50p Hoffoss * Added global error checker call to mission load and save. * * 55 7/10/97 2:32p Hoffoss * Made message editor dialog box modeless. * * 54 7/08/97 11:35a Hoffoss * Fixed bug in initial orders, and also redid how shields are handled by * Fred. * * 53 6/26/97 5:18p Hoffoss * Major rework of briefing editor functionality. * * 52 6/24/97 10:22a Hoffoss * Added a forced update for briefing info prior to a mission save. * * 51 6/19/97 11:34a Hoffoss * Fixed bug in auto mission convertion. * * 50 6/18/97 3:25p Hoffoss * Added autoconverting of old ship names (for ships in wings) at mission * load time, and added an hourglass cursor change when autosaving. * * 49 6/17/97 11:07a Hoffoss * Fixed a few bugs: revert doesn't reset mission first, and sexp tree * copy doesn't act act as a single chain. * * 48 6/11/97 10:02a Comet * fixed a bug. * * 47 6/09/97 4:57p Hoffoss * Added autosave and undo to Fred. * * 46 6/05/97 6:10p Hoffoss * Added features: Autosaving, object hiding. Also fixed some minor bugs. * * 45 5/23/97 3:18p Hoffoss * Event editor made modeless. * * 44 5/21/97 5:42p Hoffoss * Added features requested on Todo list. * * 43 5/01/97 4:14p Hoffoss * Viewer position saved to missions now for Fred restoration of state. * * 42 4/25/97 3:53p Hoffoss * Fixed bug in weapons save/load and moved weapon look up function to * weapons.cpp. * * 41 4/25/97 3:28p Mike * Making shield multi-part. * * 40 4/21/97 5:02p Hoffoss * Player/player status editing supported, and both saved and loaded from * Mission files. * * 39 3/20/97 3:55p Hoffoss * Major changes to how dialog boxes initialize (load) and update (save) * their internal data. This should simplify things and create less * problems. * * 38 3/04/97 6:27p Hoffoss * Changes to Fred to handle new wing structure. * * 37 2/28/97 11:31a Hoffoss * Implemented modeless dialog saving and restoring, and changed some * variables names. * * 36 2/27/97 3:09p Allender * major wing structure enhancement. simplified wing code. All around * better wing support * * 35 2/20/97 4:03p Hoffoss * Several ToDo items: new reinforcement clears arrival cue, reinforcement * control from ship and wing dialogs, show grid toggle. * * 34 2/17/97 5:28p Hoffoss * Checked RCS headers, added them were missing, changing description to * something better, etc where needed. * * 14 2/12/97 12:25p Hoffoss * Expanded on global error checker, added initial orders conflict * checking and warning, added waypoint editor dialog and code. * * 13 1/30/97 2:24p Hoffoss * Added remaining mission file structures and implemented load/save of * them. * * $NoKeywords: $ */ #include "stdafx.h" #include "fred.h" #include <stdlib.h> #include "freddoc.h" #include "fredview.h" #include "prefsdlg.h" #include "3d.h" #include "object.h" #include "editor.h" #include "ai.h" #include "ailocal.h" #include "cfile.h" #include "ship.h" #include "missionparse.h" #include "missiongoals.h" #include "missionsave.h" #include "weapon.h" #include "management.h" #include "linklist.h" #include "fredrender.h" #include "mainfrm.h" #include "eventeditor.h" #include "aigoals.h" #include "messageeditordlg.h" #include "palman.h" #include "fhash.h" extern int num_objects; #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif // In editor mode, use class CFile, in game, use CFILE (our file) #define XFILE CFile ///////////////////////////////////////////////////////////////////////////// // CFREDDoc IMPLEMENT_DYNCREATE(CFREDDoc, CDocument) BEGIN_MESSAGE_MAP(CFREDDoc, CDocument) //{{AFX_MSG_MAP(CFREDDoc) ON_COMMAND(ID_EDIT_DELETE, OnEditDelete) ON_COMMAND(ID_DUPLICATE, OnDuplicate) ON_COMMAND(ID_EDIT_COPY, OnEditCopy) ON_COMMAND(ID_EDIT_CUT, OnEditCut) ON_COMMAND(ID_EDIT_HOLD, OnEditHold) ON_COMMAND(ID_EDIT_FETCH, OnEditFetch) ON_COMMAND(ID_EDIT_PASTE, OnEditPaste) ON_COMMAND(ID_EDIT_UNDO, OnEditUndo) ON_COMMAND(ID_FILE_PREFERENCES, OnFilePreferences) //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CFREDDoc construction/destruction // Global pointer to the FREDDoc class. // Used by MK to, among other things, I hope, update the modified flag from // outside the FREDDoc class. CFREDDoc *FREDDoc_ptr = NULL; int Local_modified = 0; int Undo_available = 0; int Undo_count = 0; extern int Fred_found_unknown_ship_during_parsing; CFREDDoc::CFREDDoc() { int i; FREDDoc_ptr = this; confirm_deleting = TRUE; show_capital_ships = TRUE; show_elevations = TRUE; show_fighters = TRUE; show_grid = TRUE; show_misc_objects = TRUE; show_planets = TRUE; show_waypoints = TRUE; show_starfield = TRUE; for (i=0; i<BACKUP_DEPTH; i++) undo_desc[i].Empty(); } CFREDDoc::~CFREDDoc() { } BOOL CFREDDoc::OnNewDocument() { if (!CDocument::OnNewDocument()) return FALSE; // TODO: add reinitialization code here confirm_deleting = TRUE; show_capital_ships = FALSE; show_elevations = TRUE; show_fighters = TRUE; show_grid = FALSE; show_misc_objects = TRUE; show_planets = FALSE; show_waypoints = TRUE; show_starfield = FALSE; // (SDI documents will reuse this document) return TRUE; } // read in a new mission file from disk BOOL CFREDDoc::OnOpenDocument(LPCTSTR pathname) { char name[1024]; int i, len; if (pathname) strcpy(mission_pathname, pathname); if (Briefing_dialog) Briefing_dialog->icon_select(-1); // clean things up first len = strlen(mission_pathname); strcpy(name, mission_pathname); if (name[len - 4] == '.') len -= 4; name[len] = 0; // drop extension i = len; while (i--) if ((name[i] == '\\') || (name[i] == ':')) break; strcpy(Mission_filename, name + i + 1); // for (i=1; i<=BACKUP_DEPTH; i++) { // sprintf(name + len, ".%.3d", i); // unlink(name); // } if (load_mission(mission_pathname)) { *Mission_filename = 0; return FALSE; } Fred_view_wnd->global_error_check(); autosave("nothing"); Undo_count = 0; return TRUE; } // save mission to a file BOOL CFREDDoc::OnSaveDocument(LPCTSTR pathname) { CFred_mission_save save; char name[1024]; int len; DWORD attrib; FILE *fp; len = strlen(pathname); strcpy(name, pathname); if (name[len - 4] == '.') len -= 4; name[len] = 0; // drop extension while (len--) if ((name[len] == '\\') || (name[len] == ':')) break; strcpy(Mission_filename, name + len + 1); Fred_view_wnd->global_error_check(); if (Briefing_dialog) { Briefing_dialog->update_data(1); Briefing_dialog->save_editor_state(); } if (Event_editor_dlg) Fred_main_wnd->MessageBox("Event editor dialog is still open, so changes there won't be saved"); if (Message_editor_dlg) Fred_main_wnd->MessageBox("Message editor dialog is still open, so changes there won't be saved"); fp = fopen(pathname, "r"); if (fp) { fclose(fp); attrib = GetFileAttributes(pathname); if (attrib & FILE_ATTRIBUTE_READONLY) { Fred_main_wnd->MessageBox("File is read-only. You need to check it out before saving to it"); return FALSE; } } if (save.save_mission_file((char *) pathname)) { Fred_main_wnd->MessageBox("An error occured while saving!", NULL, MB_OK | MB_ICONEXCLAMATION); return FALSE; } SetModifiedFlag(FALSE); if (load_mission((char *) pathname)) Error(LOCATION, "Failed attempting to reload mission after saving. Report this bug now!"); if (Briefing_dialog) { Briefing_dialog->restore_editor_state(); Briefing_dialog->update_data(1); } return TRUE; // return CDocument::OnSaveDocument(pathname); } int CFREDDoc::check_undo() { char name[256]; FILE *fp; Undo_available = 0; if (!Undo_count) return 0; strcpy(name, MISSION_BACKUP_NAME); strcat(name, ".002"); fp = fopen(name, "r"); if (!fp) return 0; fclose(fp); Undo_available = 1; return 1; } int CFREDDoc::autosave(char *desc) { int i; CFred_mission_save save; CWaitCursor wait; if (Autosave_disabled) return 0; if (Briefing_dialog) Briefing_dialog->update_data(1); if (save.autosave_mission_file(MISSION_BACKUP_NAME)) { Undo_count = Undo_available = 0; return -1; } for (i=BACKUP_DEPTH; i>1; i--) undo_desc[i] = undo_desc[i - 1]; if (desc) undo_desc[1] = desc; else undo_desc[1].Empty(); Undo_count++; check_undo(); return 0; } int CFREDDoc::autoload() { char name[256], backup_name[256]; int i, r, len; FILE *fp; strcpy(name, MISSION_BACKUP_NAME); strcat(name, ".002"); fp = fopen(name, "r"); if (!fp) return 0; fclose(fp); if (Briefing_dialog) Briefing_dialog->icon_select(-1); // clean things up first // editor_init_mission(); r = load_mission(name); Update_window = 1; strcpy(backup_name, MISSION_BACKUP_NAME); len = strlen(backup_name); strcat(backup_name, ".001"); cf_delete(backup_name, CF_TYPE_MISSIONS); for (i=1; i<BACKUP_DEPTH; i++) { sprintf(backup_name + len, ".%.3d", i + 1); sprintf(name + len, ".%.3d", i); cf_rename(backup_name, name, CF_TYPE_MISSIONS); undo_desc[i] = undo_desc[i + 1]; } Undo_count--; check_undo(); return r; } // read in a new mission file from disk int CFREDDoc::load_mission(char *pathname) { char name[512], *old_name; int i, j, k, ob; int used_pool[MAX_WEAPON_TYPES]; waypoint_list *wptr; object *objp; Parse_viewer_pos = view_pos; Parse_viewer_orient = view_orient; // activate the localizer hash table fhash_flush(); clear_mission(); Fred_found_unknown_ship_during_parsing = 0; if (parse_main(pathname)) { sprintf(name, "Unable to load the file \"%s\"", pathname); Fred_view_wnd->MessageBox(name); create_new_mission(); return -1; } if(Fred_found_unknown_ship_during_parsing){ Fred_view_wnd->MessageBox("Fred encountered unknown ship/weapon classes when parsing the mission file. This may be due to mission disk data you do not have"); } Fred_found_unknown_ship_during_parsing = 0; for (i=0; i<Num_waypoint_lists; i++) { wptr = &Waypoint_lists[i]; for (j=0; j<wptr->count; j++){ ob = obj_create(OBJ_WAYPOINT, -1, i * 65536 + j, NULL, &wptr->waypoints[j], 0.0f, OF_RENDERS); } } obj_merge_created_list(); objp = GET_FIRST(&obj_used_list); while (objp != END_OF_LIST(&obj_used_list)) { if (objp->flags & OF_PLAYER_SHIP) { Assert(objp->type == OBJ_SHIP); objp->type = OBJ_START; // Player_starts++; } objp = GET_NEXT(objp); } for (i=0; i<num_wings; i++) { for (j=0; j<Wings[i].wave_count; j++) { ob = Ships[Wings[i].ship_index[j]].objnum; wing_objects[i][j] = ob; Ships[Wings[i].ship_index[j]].wingnum = i; Ships[Wings[i].ship_index[j]].arrival_cue = Locked_sexp_false; } // fix old ship names for ships in wings if needed while (j--) { if ( (Objects[wing_objects[i][j]].type == OBJ_SHIP) || (Objects[wing_objects[i][j]].type == OBJ_START) ) { // don't change player ship names sprintf(name, "%s %d", Wings[i].name, j + 1); old_name = Ships[Wings[i].ship_index[j]].ship_name; if (stricmp(name, old_name)) { // need to fix name update_sexp_references(old_name, name); ai_update_goal_references(REF_TYPE_SHIP, old_name, name); for (k=0; k<Num_reinforcements; k++) if (!stricmp(old_name, Reinforcements[k].name)) { Assert(strlen(name) < NAME_LENGTH); strcpy(Reinforcements[k].name, name); } strcpy(Ships[Wings[i].ship_index[j]].ship_name, name); } } } } generate_weaponry_usage_list(used_pool); for ( j = 0; j < Num_teams; j++ ) { for (i=0; i<Num_weapon_types; i++) { Team_data[j].weaponry_pool[i] -= used_pool[i]; // convert weaponry_pool to be extras available beyond the current ships weapons if (Team_data[j].weaponry_pool[i] < 0) Team_data[j].weaponry_pool[i] = 0; } } Assert(Mission_palette >= 0); Assert(Mission_palette <= 98); if (The_mission.flags & MISSION_FLAG_SUBSPACE) { strcpy(name, NOX("gamepalette-subspace")); } else { strcpy(name, "gamepalette1-01"); // sprintf(name, NOX("gamepalette1-%02d"), Mission_palette + 1); } palette_load_table(name); // go through all ships and translate their alternate name indices objp = GET_FIRST(&obj_used_list); while (objp != END_OF_LIST(&obj_used_list)) { // if this is a ship, check it, and mark its possible alternate name down in the auxiliary array if(((objp->type == OBJ_SHIP) || (objp->type == OBJ_START)) && (objp->instance >= 0) && (Ships[objp->instance].alt_type_index >= 0)){ mission_parse_lookup_alt_index(Ships[objp->instance].alt_type_index, Fred_alt_names[objp->instance]); // also zero it Ships[objp->instance].alt_type_index = -1; } objp = GET_NEXT(objp); } view_pos = Parse_viewer_pos; view_orient = Parse_viewer_orient; set_modified(0); return 0; } // Editor-level interface to mission load/save. // Does nothing now.. Handled by OnOpenDocument and OnSaveDocument. This is because we // want to avoid using the CArchive for file I/O -JH void CFREDDoc::Serialize(CArchive& ar) { return; /* The original Serialize code int rw_flag; XFILE *fp; // CString CSfilename; // char filename[128], *tfilename; fp = ar.GetFile(); rw_flag = ar.IsStoring(); // CSfilename = fp->GetFileName(); // tfilename = CSfilename.GetBuffer(16); // strcpy(filename, tfilename); // CSfilename.ReleaseBuffer(); // -- Don't close this, it gets closed by MFC -- ar.Close(); cfile_serialize(fp, rw_flag); cfile_serialize_editor(fp, rw_flag); */ } ///////////////////////////////////////////////////////////////////////////// // CFREDDoc diagnostics #ifdef _DEBUG void CFREDDoc::AssertValid() const { CDocument::AssertValid(); } void CFREDDoc::Dump(CDumpContext& dc) const { CDocument::Dump(dc); } #endif //_DEBUG ///////////////////////////////////////////////////////////////////////////// // CFREDDoc commands void CFREDDoc::OnEditDelete() { // TODO: Add your command handler code here } void CFREDDoc::OnDuplicate() { // TODO: Add your command handler code here } void CFREDDoc::OnEditCopy() { // TODO: Add your command handler code here } void CFREDDoc::OnEditCut() { // TODO: Add your command handler code here } void CFREDDoc::OnEditPaste() { // TODO: Add your command handler code here } void CFREDDoc::OnEditHold() { // TODO: Add your command handler code here } void CFREDDoc::OnEditFetch() { // TODO: Add your command handler code here } void CFREDDoc::OnEditUndo() { // TODO: Add your command handler code here } void CFREDDoc::OnFilePreferences() { CPrefsDlg dlg; // Initialize dialog data dlg.m_ConfirmDeleting = confirm_deleting; dlg.m_ShowCapitalShips = show_capital_ships; dlg.m_ShowElevations = show_elevations; dlg.m_ShowFighters = show_fighters; dlg.m_ShowGrid = show_grid; dlg.m_ShowMiscObjects = show_misc_objects; dlg.m_ShowPlanets = show_planets; dlg.m_ShowWaypoints = show_waypoints; dlg.m_ShowStarfield = show_starfield; // Invoke the dialog box if (dlg.DoModal() == IDOK) { // retrieve the dialog data confirm_deleting = dlg.m_ConfirmDeleting; show_capital_ships = dlg.m_ShowCapitalShips; show_elevations = dlg.m_ShowElevations; show_fighters = dlg.m_ShowFighters; show_grid = dlg.m_ShowGrid; show_misc_objects = dlg.m_ShowMiscObjects; show_planets = dlg.m_ShowPlanets; show_waypoints = dlg.m_ShowWaypoints; show_starfield = dlg.m_ShowStarfield; } } // initialize (clear out) the mission, so it's empty and ready to use. void CFREDDoc::editor_init_mission() { reset_mission(); SetModifiedFlag(FALSE); } /* void CFREDDoc::OnFileNew() { // If mission has been modified, offer to save before continuing. while (IsModified()) { int rval; rval = MessageBox(NULL, "You have not saved your work.\n(Which isn't surprising...)\nSave it now?", "Creating New Mission", MB_YESNOCANCEL + MB_ICONEXCLAMATION); if (rval == IDYES) { OnFileSave(); } else if (rval == IDCANCEL) return; else if (rval == IDNO) break; } editor_init_mission(); } */ void CFREDDoc::UpdateStatus(int flags) { if (FREDDoc_ptr) if (flags & US_WORLD_CHANGED) FREDDoc_ptr->SetModifiedFlag(); } void CFREDDoc::OnEditClearAll() { DeleteContents(); } void CFREDDoc::DeleteContents() { editor_init_mission(); } void set_modified(BOOL arg) { Local_modified = arg; FREDDoc_ptr->SetModifiedFlag(arg); } // call this if an unknown ship class was discovered during parsing. Sets up a warning message for players void fred_notify_unknown_ship_during_parse() { Fred_found_unknown_ship_during_parsing = 1; } ////////////////////////////////////////////////////////////////////////// // // Below is old, obsolete code, kept around just in case it might be found // useful some time in the future for something. // ////////////////////////////////////////////////////////////////////////// #if 0 #define SerializeFloat(fp, mode, f) if (mode == 1) fp->Write(&f, sizeof(float)); else fp->Read(&f, sizeof(float)) #define SerializeInt(fp, mode, f) if (mode == 1) fp->Write(&f, sizeof(int)); else fp->Read(&f, sizeof(int)) void SerializeVector(XFILE *fp, int mode, vector *v) { SerializeFloat(fp, mode, v->x); SerializeFloat(fp, mode, v->y); SerializeFloat(fp, mode, v->z); } void SerializeMatrix(XFILE *fp, int mode, matrix *m) { SerializeVector(fp, mode, &m->rvec); SerializeVector(fp, mode, &m->uvec); SerializeVector(fp, mode, &m->fvec); } void SerializePhysicsInfo(XFILE *fp, int mode, physics_info *pi) { SerializeFloat(fp, mode, pi->mass); SerializeFloat(fp, mode, pi->drag); SerializeVector(fp, mode, &pi->max_thrust); SerializeVector(fp, mode, &pi->max_rotthrust); SerializeFloat(fp, mode, pi->turnroll); SerializeInt(fp, mode, pi->flags); SerializeVector(fp, mode, &pi->velocity); SerializeVector(fp, mode, &pi->rotvel); SerializeVector(fp, mode, &pi->thrust); SerializeVector(fp, mode, &pi->rotthrust); } ///////////////////////////////////////////////////////////////////////////// // CFREDDoc serialization void SerializeObject(XFILE *fp, int mode, object *objp) { SerializeInt(fp, mode, objp->signature); SerializeInt(fp, mode, objp->type); SerializeInt(fp, mode, objp->parent); SerializeInt(fp, mode, objp->parent_sig); SerializeInt(fp, mode, objp->parent_type); SerializeInt(fp, mode, objp->instance); SerializeInt(fp, mode, objp->flags); SerializeFloat(fp, mode, objp->radius); // SerializeInt(fp, mode, objp->wing); SerializePhysicsInfo(fp, mode, &objp->phys_info); SerializeVector(fp, mode, &objp->pos); SerializeMatrix(fp, mode, &objp->orient); } void SerializeAI(XFILE *fp, int mode, ai_info *aip) { SerializeInt(fp, mode, aip->shipnum); SerializeInt(fp, mode, aip->type); SerializeInt(fp, mode, aip->wing); //MWA -- SerializeInt(fp, mode, aip->current_waypoint); } void SerializeShip(XFILE *fp, int mode, ship *shipp) { SerializeInt(fp, mode, shipp->objnum); SerializeInt(fp, mode, shipp->ai_index); SerializeInt(fp, mode, shipp->subtype); SerializeInt(fp, mode, shipp->modelnum); SerializeInt(fp, mode, shipp->hits); SerializeInt(fp, mode, shipp->dying); } void SerializeGrid(XFILE *fp, int mode, grid *gridp) { int i; SerializeInt(fp, mode, gridp->nrows); SerializeInt(fp, mode, gridp->ncols); SerializeMatrix(fp, mode, &gridp->gmatrix); SerializePhysicsInfo(fp, mode, &gridp->physics); SerializeFloat(fp, mode, gridp->square_size); SerializeFloat(fp, mode, gridp->planeD); for (i=0; i<MAX_GRID_POINTS; i++) SerializeVector(fp, mode, &gridp->gpoints[i]); } void cfile_serialize(XFILE *fp, int flag) { int i; int highest_object_index = 0, highest_ship_index = 0, highest_ai_index = 0; Assert((flag == 0) || (flag == 1)); // fp = cfopen(filename, flag ? "wb" : "rb"); // if (!fp) // MessageBox(NULL, strerror(errno), "File Open Error!", MB_ICONSTOP); // Find highest used object if writing. if (flag == 1) { for (i=MAX_OBJECTS-1; i>0; i--) if (Objects[i].type != OBJ_NONE) { highest_object_index = i; break; } } if (flag == 0) { num_ships = 0; num_objects = 0; } SerializeInt(fp, flag, highest_object_index); for (i=1; i<=highest_object_index; i++) { SerializeObject(fp, flag, &Objects[i]); if (flag == 0) if (Objects[i].type != OBJ_NONE) num_objects++; } // Read/write ships if (flag == 1) { for (i=MAX_SHIPS-1; i>0; i--) if (Ships[i].objnum) { highest_ship_index = i; break; } } SerializeInt(fp, flag, highest_ship_index); for (i=1; i<=highest_ship_index; i++) { SerializeShip(fp, flag, &Ships[i]); if (flag == 0) if (Ships[i].objnum) num_ships++; } // Read/write AI info if (flag == 1) { for (i=MAX_AI_INFO-1; i>0; i--) if (Ai_info[i].shipnum) { highest_ai_index = i; break; } } SerializeInt(fp, flag, highest_ai_index); for (i=1; i<=highest_ai_index; i++) SerializeAI(fp, flag, &Ai_info[i]); } void cfile_serialize_editor(XFILE *fp, int flag) { // Editor only stuff SerializeMatrix(fp, flag, &view_orient); SerializeVector(fp, flag, &view_pos); SerializeInt(fp, flag, Control_mode); SerializeInt(fp, flag, cur_object_index); SerializeInt(fp, flag, cur_wing); SerializeGrid(fp, flag, The_grid); } #endif
[ "sebastien.chev@gmail.com" ]
sebastien.chev@gmail.com
c228412a7ab2556cd1d99d62df63df14e770fc9a
a2ad13a918804dd32a7e0800ba650d734629fe86
/2d_game_engine/Enemy.h
f6006b4507dba263e7d927a9b67610223192e0d0
[]
no_license
msukkari/2d_game_engine
f4d8c047f4480d61b25c9e01a86795334ab91dbd
25e85af56213c30ee3f9019e109ccf52c8b6b0c4
refs/heads/master
2021-01-12T12:03:59.938937
2017-04-11T19:54:40
2017-04-11T19:54:40
69,114,168
1
1
null
2016-09-24T21:55:04
2016-09-24T16:34:02
C
UTF-8
C++
false
false
421
h
#ifndef ENEMY_H #define ENEMY_H class LoaderParams; #include "SDLGameObject.h" #include "GameObjectFactory.h" class Enemy : public SDLGameObject { public: Enemy(); virtual void draw(); virtual void update(); virtual void clean(); virtual void load(const LoaderParams* pParams); }; class EnemyCreator : public BaseCreator { GameObject* createGameObject() const { return new Enemy(); } }; #endif // !ENEMY_H
[ "michael.sukkarieh@mail.mcgill.ca" ]
michael.sukkarieh@mail.mcgill.ca
020edb930275d71e6f234bfb207cca082260ab3e
aa6d05520ecf50f9ea49e49eff0551e014346dc9
/array_intersection.cpp
77141af6fdd0036bf8c1ea44547944b627895397
[]
no_license
tsingh62/C-Masters
fa7355faadb3105e0147f5677afe2eaf65bc62ca
88295e124eedd9d56a26613c422d061b61b4c34b
refs/heads/master
2023-03-09T02:53:03.263680
2021-03-03T18:26:08
2021-03-03T18:26:08
283,625,702
0
0
null
null
null
null
UTF-8
C++
false
false
815
cpp
#include<iostream> using namespace std; #include<vector> int main() { // - Intersection is the common between the two arrays // - arr1[]{1,3,4,5,7}; // - arr2[]{2,3,5,6}; // ans - {3,5}; int arr1[]={1,3,4,5,7}; int arr2[]={2,3,5,6}; int n = sizeof(arr1)/sizeof(int); int m = sizeof(arr2)/sizeof(int); vector<int> ans; // for(int i=0; i<n; i++) // { // ans.push_back(arr1[i]); // } for(int i=0; i<n; i++) { bool duplicate = false; for(int j=0; j<m; j++) { if(arr1[i]==arr2[j]) { duplicate = true; } } if(duplicate) { ans.push_back(arr1[i]); } } for(int i=0; i<ans.size(); i++) { cout << ans[i] << " "; } }
[ "tanvisingh81@gmail.com" ]
tanvisingh81@gmail.com
3c73c08252c980f9f98b01bfeae7ace0c65a342d
ee629aad5fde1463c82692dc260c4b9e4ebf0030
/src/server/game/Scripting/ScriptLoader.cpp
b51370a021717b4ed9ebb972817e6f42328f3407
[]
no_license
Declipe/stormDev
5b4369cb66f8bca9b0ddb8854d283a0c9ed3fb48
8502f495a7ddabd9a0893a3cbc4c6d3d327f37a6
refs/heads/master
2021-08-19T22:29:05.867869
2017-11-27T16:01:31
2017-11-27T16:01:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
57,976
cpp
/* * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2011-2016 ArkCORE <http://www.arkania.net/> * * 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, see <http://www.gnu.org/licenses/>. */ #include "ScriptLoader.h" //examples void AddSC_example_creature(); void AddSC_example_escort(); void AddSC_example_gossip_codebox(); void AddSC_example_misc(); void AddSC_example_commandscript(); // spells void AddSC_deathknight_spell_scripts(); void AddSC_druid_spell_scripts(); void AddSC_generic_spell_scripts(); void AddSC_hunter_spell_scripts(); void AddSC_mage_spell_scripts(); void AddSC_paladin_spell_scripts(); void AddSC_priest_spell_scripts(); void AddSC_rogue_spell_scripts(); void AddSC_shaman_spell_scripts(); void AddSC_warlock_spell_scripts(); void AddSC_warrior_spell_scripts(); void AddSC_quest_spell_scripts(); void AddSC_item_spell_scripts(); void AddSC_example_spell_scripts(); void AddSC_holiday_spell_scripts(); void AddSC_guild_spell_scripts(); void AddSC_SmartSCripts(); //TeleNPC2 void AddSC_npc_teleport(); void AddSC_CdReset(); void AddSC_morphs_npc(); void AddSC_NPC_VisualWeapon(); void AddSC_System_Censure(); void AddSC_Ingame_commandscript(); void AddSC_Title_gossip_codebox(); void AddSC_arenateamranks(); //Commands void AddSC_account_commandscript(); void AddSC_achievement_commandscript(); void AddSC_ahbot_commandscript(); void AddSC_arena_commandscript(); void AddSC_ban_commandscript(); void AddSC_bf_commandscript(); void AddSC_cast_commandscript(); void AddSC_character_commandscript(); void AddSC_cheat_commandscript(); void AddSC_debug_commandscript(); void AddSC_deserter_commandscript(); void AddSC_disable_commandscript(); void AddSC_event_commandscript(); void AddSC_gm_commandscript(); void AddSC_go_commandscript(); void AddSC_gobject_commandscript(); void AddSC_group_commandscript(); void AddSC_guild_commandscript(); void AddSC_honor_commandscript(); void AddSC_instance_commandscript(); void AddSC_learn_commandscript(); void AddSC_lfg_commandscript(); void AddSC_list_commandscript(); void AddSC_lookup_commandscript(); void AddSC_message_commandscript(); void AddSC_misc_commandscript(); void AddSC_mmaps_commandscript(); void AddSC_modify_commandscript(); void AddSC_npc_commandscript(); void AddSC_pet_commandscript(); void AddSC_quest_commandscript(); void AddSC_rbac_commandscript(); void AddSC_reload_commandscript(); void AddSC_reset_commandscript(); void AddSC_send_commandscript(); void AddSC_server_commandscript(); void AddSC_tele_commandscript(); void AddSC_ticket_commandscript(); void AddSC_titles_commandscript(); void AddSC_wp_commandscript(); #ifdef SCRIPTS // World void AddSC_areatrigger_scripts(); void AddSC_emerald_dragons(); void AddSC_generic_creature(); void AddSC_go_scripts(); void AddSC_guards(); void AddSC_item_scripts(); void AddSC_npc_professions(); void AddSC_npc_innkeeper(); void AddSC_npcs_special(); void AddSC_npc_taxi(); void AddSC_achievement_scripts(); void AddSC_npc_trainings_dummy(); // Eastern Kingdoms void AddSC_alterac_valley(); //Alterac Valley void AddSC_boss_balinda(); void AddSC_boss_drekthar(); void AddSC_boss_galvangar(); void AddSC_boss_vanndar(); void AddSC_boss_alizabal(); //Baradin Hold void AddSC_boss_argaloth(); void AddSC_boss_occuthar(); void AddSC_boss_pit_lord_argaloth(); void AddSC_bh_trash(); void AddSC_instance_baradin_hold(); void AddSC_bastion_of_twilight(); //Bastion of Twilight void AddSC_boss_halfus(); void AddSC_boss_valiona_theralion(); void AddSC_boss_ascendant_council(); void AddSC_boss_chogall(); void AddSC_boss_sinestra(); void AddSC_boss_assembly_of_ascendents(); void AddSC_instance_bastion_of_twilight(); void AddSC_boss_ascendant_lord_obsidius(); //Blackrock Caverns void AddSC_boss_beauty(); void AddSC_boss_corla_herald_of_twilight(); void AddSC_boss_karsh_steelbender(); void AddSC_boss_romogg_bonecrusher(); void AddSC_instance_blackrock_caverns(); void AddSC_blackrock_depths(); //Blackrock Depths void AddSC_boss_ambassador_flamelash(); void AddSC_boss_anubshiah(); void AddSC_boss_draganthaurissan(); void AddSC_boss_general_angerforge(); void AddSC_boss_gorosh_the_dervish(); void AddSC_boss_grizzle(); void AddSC_boss_high_interrogator_gerstahn(); void AddSC_boss_magmus(); void AddSC_boss_moira_bronzebeard(); void AddSC_boss_tomb_of_seven(); void AddSC_instance_blackrock_depths(); void AddSC_boss_drakkisath(); //Blackrock Spire void AddSC_boss_halycon(); void AddSC_boss_highlordomokk(); void AddSC_boss_mothersmolderweb(); void AddSC_boss_overlordwyrmthalak(); void AddSC_boss_shadowvosh(); void AddSC_boss_thebeast(); void AddSC_boss_warmastervoone(); void AddSC_boss_quatermasterzigris(); void AddSC_boss_pyroguard_emberseer(); void AddSC_boss_gyth(); void AddSC_boss_rend_blackhand(); void AddSC_boss_gizrul_the_slavener(); void AddSC_boss_urok_doomhowl(); void AddSC_boss_lord_valthalak(); void AddSC_instance_blackrock_spire(); void AddSC_blackwing_descent(); //Blackwing descent void AddSC_boss_magmaw(); void AddSC_boss_omnotron_defense_system(); void AddSC_boss_atramedes(); void AddSC_boss_chimaeron(); void AddSC_boss_maloriak(); void AddSC_boss_bd_nefarian(); void AddSC_instance_blackwing_descent(); void AddSC_boss_razorgore(); //Blackwing lair void AddSC_boss_vaelastrasz(); void AddSC_boss_broodlord(); void AddSC_boss_firemaw(); void AddSC_boss_ebonroc(); void AddSC_boss_flamegor(); void AddSC_boss_chromaggus(); void AddSC_boss_nefarian(); void AddSC_instance_blackwing_lair(); void AddSC_deadmines(); //Deadmines void AddSC_instance_deadmines(); void AddSC_boss_mr_smite(); void AddSC_boss_admiral_ripsnarl(); void AddSC_boss_captain_cookie(); void AddSC_boss_foo_reaper_5000(); void AddSC_boss_glubtok(); void AddSC_boss_helix_gearbreaker(); void AddSC_boss_vanessa_van_cleef(); void AddSC_gnomeregan(); //Gnomeregan void AddSC_instance_gnomeregan(); void AddSC_grim_batol(); //Grim Batol void AddSC_boss_general_umbriss(); void AddSC_boss_forgemaster_throngus(); void AddSC_boss_drahga_shadowburner(); void AddSC_boss_erudax(); void AddSC_instance_grim_batol(); void AddSC_boss_attumen(); //Karazhan void AddSC_boss_curator(); void AddSC_boss_maiden_of_virtue(); void AddSC_boss_shade_of_aran(); void AddSC_boss_malchezaar(); void AddSC_boss_terestian_illhoof(); void AddSC_boss_moroes(); void AddSC_bosses_opera(); void AddSC_boss_netherspite(); void AddSC_instance_karazhan(); void AddSC_karazhan(); void AddSC_boss_nightbane(); void AddSC_boss_felblood_kaelthas(); //Magister's Terrace void AddSC_boss_selin_fireheart(); void AddSC_boss_vexallus(); void AddSC_boss_priestess_delrissa(); void AddSC_instance_magisters_terrace(); void AddSC_magisters_terrace(); void AddSC_boss_lucifron(); //Molten core void AddSC_boss_magmadar(); void AddSC_boss_gehennas(); void AddSC_boss_garr(); void AddSC_boss_baron_geddon(); void AddSC_boss_shazzrah(); void AddSC_boss_golemagg(); void AddSC_boss_sulfuron(); void AddSC_boss_majordomo(); void AddSC_boss_ragnaros(); void AddSC_instance_molten_core(); void AddSC_the_scarlet_enclave(); //Scarlet Enclave void AddSC_the_scarlet_enclave_c1(); void AddSC_the_scarlet_enclave_c2(); void AddSC_the_scarlet_enclave_c5(); void AddSC_boss_arcanist_doan(); //Scarlet Monastery void AddSC_boss_azshir_the_sleepless(); void AddSC_boss_bloodmage_thalnos(); void AddSC_boss_headless_horseman(); void AddSC_boss_herod(); void AddSC_boss_high_inquisitor_fairbanks(); void AddSC_boss_houndmaster_loksey(); void AddSC_boss_interrogator_vishas(); void AddSC_boss_scorn(); void AddSC_instance_scarlet_monastery(); void AddSC_boss_mograine_and_whitemane(); void AddSC_boss_darkmaster_gandling(); //Scholomance void AddSC_boss_death_knight_darkreaver(); void AddSC_boss_theolenkrastinov(); void AddSC_boss_illuciabarov(); void AddSC_boss_instructormalicia(); void AddSC_boss_jandicebarov(); void AddSC_boss_kormok(); void AddSC_boss_lordalexeibarov(); void AddSC_boss_lorekeeperpolkelt(); void AddSC_boss_rasfrost(); void AddSC_boss_theravenian(); void AddSC_boss_vectus(); void AddSC_boss_kirtonos_the_herald(); void AddSC_instance_scholomance(); void AddSC_shadowfang_keep(); //Shadowfang keep void AddSC_instance_shadowfang_keep(); void AddSC_boss_apothecary_trio(); void AddSC_boss_lord_walden(); void AddSC_boss_baron_ashbury(); void AddSC_boss_baron_silverlaine(); void AddSC_boss_commander_springvale(); void AddSC_boss_lord_godfrey(); void AddSC_boss_magistrate_barthilas(); //Stratholme void AddSC_boss_maleki_the_pallid(); void AddSC_boss_nerubenkan(); void AddSC_boss_cannon_master_willey(); void AddSC_boss_baroness_anastari(); void AddSC_boss_ramstein_the_gorger(); void AddSC_boss_timmy_the_cruel(); void AddSC_boss_postmaster_malown(); void AddSC_boss_baron_rivendare(); void AddSC_boss_dathrohan_balnazzar(); void AddSC_boss_order_of_silver_hand(); void AddSC_instance_stratholme(); void AddSC_stratholme(); void AddSC_sunken_temple(); //Sunken Temple void AddSC_instance_sunken_temple(); void AddSC_instance_sunwell_plateau(); //Sunwell Plateau void AddSC_boss_kalecgos(); void AddSC_boss_brutallus(); void AddSC_boss_felmyst(); void AddSC_boss_eredar_twins(); void AddSC_boss_muru(); void AddSC_boss_kiljaeden(); void AddSC_sunwell_plateau(); void AddSC_boss_revelosh(); //Uldaman void AddSC_boss_the_lost_dwarves(); void AddSC_boss_ironaya(); void AddSC_boss_obsidian_sentinel(); void AddSC_boss_ancient_stone_keeper(); void AddSC_boss_galgann_firehammer(); void AddSC_boss_grimlok(); void AddSC_boss_archaedas(); void AddSC_uldaman(); void AddSC_instance_uldaman(); void AddSC_instance_the_stockade(); //The Stockade void AddSC_throne_of_the_tides(); //Throne of the Tides void AddSC_boss_lady_nazjar(); void AddSC_boss_commander_ulthok(); void AddSC_boss_erunak_stonespeaker(); void AddSC_boss_ozumat(); void AddSC_instance_throne_of_the_tides(); void AddSC_boss_akilzon(); //Zul'Aman void AddSC_boss_halazzi(); void AddSC_boss_hex_lord_malacrass(); void AddSC_boss_janalai(); void AddSC_boss_nalorakk(); void AddSC_boss_daakara(); void AddSC_instance_zulaman(); void AddSC_zulaman(); void AddSC_boss_grilek(); //Zul'Gurub void AddSC_boss_hazzarah(); void AddSC_boss_jindo_the_godbreaker(); void AddSC_boss_kilnara(); void AddSC_boss_mandokir(); void AddSC_boss_renataki(); void AddSC_boss_venoxis(); void AddSC_boss_wushoolay(); void AddSC_boss_zanzil(); void AddSC_instance_zulgurub(); void AddSC_zone_gilneas_duskhaven(); void AddSC_zone_gilneas_city1(); void AddSC_zone_gilneas2(); void AddSC_zone_gilneas_city3(); void AddSC_zone_northern_stranglethorn(); //void AddSC_alterac_mountains(); void AddSC_arathi_highlands(); void AddSC_blasted_lands(); void AddSC_burning_steppes(); void AddSC_zone_coldridge_valley(); void AddSC_zone_dun_morogh(); void AddSC_zone_gnomeregan(); void AddSC_duskwood(); void AddSC_eastern_plaguelands(); void AddSC_elwynn_forest(); void AddSC_eversong_woods(); void AddSC_ghostlands(); void AddSC_hinterlands(); void AddSC_ironforge(); void AddSC_isle_of_queldanas(); void AddSC_loch_modan(); void AddSC_redridge_mountains(); void AddSC_silvermoon_city(); void AddSC_silverpine_forest(); void AddSC_stormwind_city(); void AddSC_stranglethorn_vale(); void AddSC_swamp_of_sorrows(); void AddSC_tirisfal_glades(); void AddSC_undercity(); void AddSC_western_plaguelands(); void AddSC_westfall(); void AddSC_wetlands(); // Kalimdor void AddSC_blackfathom_deeps(); //Blackfathom Depths void AddSC_boss_gelihast(); void AddSC_boss_kelris(); void AddSC_boss_aku_mai(); void AddSC_instance_blackfathom_deeps(); void AddSC_hyjal(); //CoT Battle for Mt. Hyjal void AddSC_boss_archimonde(); void AddSC_instance_mount_hyjal(); void AddSC_hyjal_trash(); void AddSC_zone_hyjal(); void AddSC_boss_rage_winterchill(); void AddSC_boss_anetheron(); void AddSC_boss_kazrogal(); void AddSC_boss_azgalor(); void AddSC_boss_captain_skarloc(); //CoT Old Hillsbrad void AddSC_boss_epoch_hunter(); void AddSC_boss_lieutenant_drake(); void AddSC_instance_old_hillsbrad(); void AddSC_old_hillsbrad(); void AddSC_boss_aeonus(); //CoT The Black Morass void AddSC_boss_chrono_lord_deja(); void AddSC_boss_temporus(); void AddSC_the_black_morass(); void AddSC_instance_the_black_morass(); void AddSC_boss_epoch(); //CoT Culling Of Stratholme void AddSC_boss_infinite_corruptor(); void AddSC_boss_salramm(); void AddSC_boss_mal_ganis(); void AddSC_boss_meathook(); void AddSC_culling_of_stratholme(); void AddSC_instance_culling_of_stratholme(); void AddSC_boss_echo_of_baine(); //CoT End Time void AddSC_boss_echo_of_jaina(); void AddSC_boss_echo_of_sylvanas(); void AddSC_boss_echo_of_tyrande(); void AddSC_boss_murozond(); void AddSC_instance_end_time(); void AddSC_end_time_teleport(); void AddSC_boss_morchok(); //CoT Dragon Soul void AddSC_boss_unsleeping(); void AddSC_boss_hagara(); void AddSC_boss_warlord(); void AddSC_boss_ultraxion(); void AddSC_boss_warmaster_blackhorn(); void AddSC_boss_deathwing(); void AddSC_dragon_soul(); void AddSC_instance_dragon_soul(); void AddSC_dragon_soul_teleport_and_transport(); void AddSC_boss_arcurion(); //CoT Hour Of Twilight void AddSC_instance_hour_of_twilight(); void AddSC_boss_shannox(); //Firelands void AddSC_boss_bethtilac(); void AddSC_boss_alysrazor(); void AddSC_boss_lord_rhyolith(); void AddSC_boss_ragnaros_firelands(); void AddSC_boss_baloroc(); void AddSC_boss_majordomus(); void AddSC_instance_firelands(); void AddSC_boss_ammunae(); //Halls Of Origination void AddSC_boss_anraphet(); void AddSC_boss_earthrager_ptah(); void AddSC_boss_isiset(); void AddSC_boss_rajh(); void AddSC_boss_setesh(); //void AddSC_boss_anhuur(); void AddSC_boss_temple_guardian_anhuur(); void AddSC_elementaires_sdo(); void AddSC_npc_trash_sdo(); void AddSC_instance_halls_of_origination(); void AddSC_instance_dire_maul(); //Dire Maul void AddSC_dire_maul(); void AddSC_gordoks_commons(); void AddSC_capital_gardens(); void AddSC_warpwood_quarter(); void AddSC_boss_alzzin_the_wildshaper(); void AddSC_boss_captain_kromcrush(); void AddSC_boss_chorush_the_observer(); void AddSC_boss_guard_fengus(); void AddSC_boss_guard_moldar(); void AddSC_boss_guard_slipkik(); void AddSC_boss_hydrospawn(); void AddSC_boss_illyanna_ravenoak(); void AddSC_boss_immolthar(); void AddSC_boss_king_gordok(); void AddSC_boss_lethtendris(); void AddSC_boss_magister_kalendris(); void AddSC_boss_prince_tortheldrin(); void AddSC_boss_stomper_kreeg(); void AddSC_boss_tendris_warpwood(); void AddSC_boss_zevrim_thornhoof(); void AddSC_lost_city_of_the_tolvir(); //Lost City of the Tol'Vir void AddSC_boss_general_husam(); void AddSC_boss_lockmaw_augh(); void AddSC_boss_high_prophet_barim(); void AddSC_boss_siamat(); void AddSC_instance_lost_city_of_the_tolvir(); void AddSC_boss_celebras_the_cursed(); //Maraudon void AddSC_boss_landslide(); void AddSC_boss_noxxion(); void AddSC_boss_ptheradras(); void AddSC_instance_maraudon(); void AddSC_boss_onyxia(); //Onyxia's Lair void AddSC_instance_onyxias_lair(); void AddSC_boss_tuten_kash(); //Razorfen Downs void AddSC_boss_mordresh_fire_eye(); void AddSC_boss_glutton(); void AddSC_boss_amnennar_the_coldbringer(); void AddSC_razorfen_downs(); void AddSC_instance_razorfen_downs(); void AddSC_razorfen_kraul(); //Razorfen Kraul void AddSC_instance_razorfen_kraul(); void AddSC_boss_kurinnaxx(); //Ruins of ahn'qiraj void AddSC_boss_rajaxx(); void AddSC_boss_moam(); void AddSC_boss_buru(); void AddSC_boss_ayamiss(); void AddSC_boss_ossirian(); void AddSC_instance_ruins_of_ahnqiraj(); void AddSC_the_vortex_pinnacle(); //The Vortex Pinnacle void AddSC_boss_grand_vizier_ertan(); void AddSC_boss_altairus(); void AddSC_boss_asaad(); void AddSC_instance_the_vortex_pinnacle(); void AddSC_boss_cthun(); //Temple of ahn'qiraj void AddSC_boss_viscidus(); void AddSC_boss_fankriss(); void AddSC_boss_huhuran(); void AddSC_bug_trio(); void AddSC_boss_sartura(); void AddSC_boss_skeram(); void AddSC_boss_twinemperors(); void AddSC_boss_ouro(); void AddSC_npc_anubisath_sentinel(); void AddSC_instance_temple_of_ahnqiraj(); void AddSC_throne_of_the_four_winds(); void AddSC_boss_conclave_of_wind(); //Throne of the Four Winds void AddSC_boss_alakir(); void AddSC_instance_throne_of_the_four_winds(); void AddSC_wailing_caverns(); //Wailing caverns void AddSC_instance_wailing_caverns(); void AddSC_boss_zum_rah(); //Zul'Farrak void AddSC_zulfarrak(); void AddSC_instance_zulfarrak(); void AddSC_instance_ragefire_chasm(); // Ragefire Chasm void AddSC_ragefire_chasm(); void AddSC_boss_taragaman_the_hungerer(); void AddSC_boss_oggleflint(); void AddSC_boss_jergosh_the_invoker(); void AddSC_boss_bazzalan(); void AddSC_ashenvale(); void AddSC_azshara(); void AddSC_zone_azuremyst_isle(); void AddSC_bloodmyst_isle(); void AddSC_darkshore(); void AddSC_desolace(); void AddSC_durotar(); void AddSC_dustwallow_marsh(); void AddSC_felwood(); void AddSC_feralas(); void AddSC_moonglade(); void AddSC_mulgore(); void AddSC_orgrimmar(); void AddSC_silithus(); void AddSC_stonetalon_mountains(); void AddSC_tanaris(); void AddSC_teldrassil(); void AddSC_the_barrens(); void AddSC_thousand_needles(); void AddSC_thunder_bluff(); void AddSC_ungoro_crater(); void AddSC_winterspring(); void AddSC_zone_northern_barrens(); // Northrend void AddSC_boss_slad_ran(); void AddSC_boss_moorabi(); void AddSC_boss_drakkari_colossus(); void AddSC_boss_gal_darah(); void AddSC_boss_eck(); void AddSC_instance_gundrak(); // Azjol-Nerub - Azjol-Nerub void AddSC_boss_krik_thir(); void AddSC_boss_hadronox(); void AddSC_boss_anub_arak(); void AddSC_instance_azjol_nerub(); // Azjol-Nerub - Ahn'kahet void AddSC_boss_elder_nadox(); void AddSC_boss_taldaram(); void AddSC_boss_amanitar(); void AddSC_boss_jedoga_shadowseeker(); void AddSC_boss_volazj(); void AddSC_instance_ahnkahet(); // Drak'Tharon Keep void AddSC_boss_trollgore(); void AddSC_boss_novos(); void AddSC_boss_king_dred(); void AddSC_boss_tharon_ja(); void AddSC_instance_drak_tharon_keep(); void AddSC_boss_argent_challenge(); //Trial of the Champion void AddSC_boss_black_knight(); void AddSC_boss_grand_champions(); void AddSC_instance_trial_of_the_champion(); void AddSC_trial_of_the_champion(); void AddSC_boss_anubarak_trial(); //Trial of the Crusader void AddSC_boss_faction_champions(); void AddSC_boss_jaraxxus(); void AddSC_boss_northrend_beasts(); void AddSC_boss_twin_valkyr(); void AddSC_trial_of_the_crusader(); void AddSC_instance_trial_of_the_crusader(); void AddSC_boss_anubrekhan(); //Naxxramas void AddSC_boss_maexxna(); void AddSC_boss_patchwerk(); void AddSC_boss_grobbulus(); void AddSC_boss_razuvious(); void AddSC_boss_kelthuzad(); void AddSC_boss_loatheb(); void AddSC_boss_noth(); void AddSC_boss_gluth(); void AddSC_boss_sapphiron(); void AddSC_boss_four_horsemen(); void AddSC_boss_faerlina(); void AddSC_boss_heigan(); void AddSC_boss_gothik(); void AddSC_boss_thaddius(); void AddSC_instance_naxxramas(); void AddSC_boss_magus_telestra(); //The Nexus Nexus void AddSC_boss_anomalus(); void AddSC_boss_ormorok(); void AddSC_boss_keristrasza(); void AddSC_instance_nexus(); void AddSC_boss_drakos(); //The Nexus The Oculus void AddSC_boss_urom(); void AddSC_boss_varos(); void AddSC_boss_eregos(); void AddSC_instance_oculus(); void AddSC_oculus(); void AddSC_boss_malygos(); //The Nexus: Eye of Eternity void AddSC_instance_eye_of_eternity(); void AddSC_boss_sartharion(); //Obsidian Sanctum void AddSC_obsidian_sanctum(); void AddSC_instance_obsidian_sanctum(); void AddSC_boss_bjarngrim(); //Ulduar Halls of Lightning void AddSC_boss_loken(); void AddSC_boss_ionar(); void AddSC_boss_volkhan(); void AddSC_instance_halls_of_lightning(); void AddSC_boss_maiden_of_grief(); //Ulduar Halls of Stone void AddSC_boss_krystallus(); void AddSC_boss_sjonnir(); void AddSC_instance_halls_of_stone(); void AddSC_halls_of_stone(); void AddSC_boss_auriaya(); //Ulduar Ulduar void AddSC_boss_flame_leviathan(); void AddSC_boss_ignis(); void AddSC_boss_razorscale(); void AddSC_boss_xt002(); void AddSC_boss_kologarn(); void AddSC_boss_assembly_of_iron(); void AddSC_boss_general_vezax(); void AddSC_ulduar_teleporter(); void AddSC_boss_mimiron(); void AddSC_boss_hodir(); void AddSC_boss_freya(); void AddSC_boss_yogg_saron(); void AddSC_boss_algalon_the_observer(); void AddSC_instance_ulduar(); // Utgarde Keep - Utgarde Keep void AddSC_boss_keleseth(); void AddSC_boss_skarvald_dalronn(); void AddSC_boss_ingvar_the_plunderer(); void AddSC_instance_utgarde_keep(); void AddSC_utgarde_keep(); // Utgarde Keep - Utgarde Pinnacle void AddSC_boss_svala(); void AddSC_boss_palehoof(); void AddSC_boss_skadi(); void AddSC_boss_ymiron(); void AddSC_instance_utgarde_pinnacle(); // Vault of Archavon void AddSC_boss_archavon(); void AddSC_boss_emalon(); void AddSC_boss_koralon(); void AddSC_boss_toravon(); void AddSC_instance_vault_of_archavon(); void AddSC_boss_cyanigosa(); //Violet Hold void AddSC_boss_erekem(); void AddSC_boss_ichoron(); void AddSC_boss_lavanthor(); void AddSC_boss_moragg(); void AddSC_boss_xevozz(); void AddSC_boss_zuramat(); void AddSC_instance_violet_hold(); void AddSC_violet_hold(); void AddSC_instance_forge_of_souls(); //Forge of Souls void AddSC_forge_of_souls(); void AddSC_boss_bronjahm(); void AddSC_boss_devourer_of_souls(); void AddSC_instance_pit_of_saron(); //Pit of Saron void AddSC_pit_of_saron(); void AddSC_boss_garfrost(); void AddSC_boss_ick(); void AddSC_boss_tyrannus(); void AddSC_instance_halls_of_reflection(); // Halls of Reflection void AddSC_halls_of_reflection(); void AddSC_boss_falric(); void AddSC_boss_marwyn(); void AddSC_boss_lord_marrowgar(); // Icecrown Citadel void AddSC_boss_lady_deathwhisper(); void AddSC_boss_icecrown_gunship_battle(); void AddSC_boss_deathbringer_saurfang(); void AddSC_boss_festergut(); void AddSC_boss_rotface(); void AddSC_boss_professor_putricide(); void AddSC_boss_blood_prince_council(); void AddSC_boss_blood_queen_lana_thel(); void AddSC_boss_valithria_dreamwalker(); void AddSC_boss_sindragosa(); void AddSC_boss_the_lich_king(); void AddSC_icecrown_citadel_teleport(); void AddSC_instance_icecrown_citadel(); void AddSC_icecrown_citadel(); void AddSC_instance_ruby_sanctum(); // Ruby Sanctum void AddSC_ruby_sanctum(); void AddSC_boss_baltharus_the_warborn(); void AddSC_boss_saviana_ragefire(); void AddSC_boss_general_zarithrian(); void AddSC_boss_halion(); void AddSC_dalaran(); void AddSC_borean_tundra(); void AddSC_dragonblight(); void AddSC_grizzly_hills(); void AddSC_howling_fjord(); void AddSC_icecrown(); void AddSC_sholazar_basin(); void AddSC_storm_peaks(); void AddSC_wintergrasp(); void AddSC_zuldrak(); void AddSC_crystalsong_forest(); void AddSC_isle_of_conquest(); // Outland // Auchindoun - Auchenai Crypts void AddSC_boss_shirrak_the_dead_watcher(); void AddSC_boss_exarch_maladaar(); void AddSC_instance_auchenai_crypts(); // Auchindoun - Mana Tombs void AddSC_boss_pandemonius(); void AddSC_boss_nexusprince_shaffar(); void AddSC_instance_mana_tombs(); // Auchindoun - Sekketh Halls void AddSC_boss_darkweaver_syth(); void AddSC_boss_talon_king_ikiss(); void AddSC_boss_anzu(); void AddSC_instance_sethekk_halls(); // Auchindoun - Shadow Labyrinth void AddSC_boss_ambassador_hellmaw(); void AddSC_boss_blackheart_the_inciter(); void AddSC_boss_grandmaster_vorpil(); void AddSC_boss_murmur(); void AddSC_instance_shadow_labyrinth(); // Black Temple void AddSC_black_temple(); void AddSC_boss_illidan(); void AddSC_boss_shade_of_akama(); void AddSC_boss_supremus(); void AddSC_boss_gurtogg_bloodboil(); void AddSC_boss_mother_shahraz(); void AddSC_boss_reliquary_of_souls(); void AddSC_boss_teron_gorefiend(); void AddSC_boss_najentus(); void AddSC_boss_illidari_council(); void AddSC_instance_black_temple(); // Coilfang Reservoir - Serpent Shrine Cavern void AddSC_boss_fathomlord_karathress(); void AddSC_boss_hydross_the_unstable(); void AddSC_boss_lady_vashj(); void AddSC_boss_leotheras_the_blind(); void AddSC_boss_morogrim_tidewalker(); void AddSC_instance_serpentshrine_cavern(); void AddSC_boss_the_lurker_below(); // Coilfang Reservoir - The Steam Vault void AddSC_boss_hydromancer_thespia(); void AddSC_boss_mekgineer_steamrigger(); void AddSC_boss_warlord_kalithresh(); void AddSC_instance_steam_vault(); // Coilfang Reservoir - The Slave Pens void AddSC_instance_the_slave_pens(); void AddSC_boss_mennu_the_betrayer(); void AddSC_boss_rokmar_the_crackler(); void AddSC_boss_quagmirran(); // Coilfang Reservoir - The Underbog void AddSC_instance_the_underbog(); void AddSC_boss_hungarfen(); void AddSC_boss_the_black_stalker(); // Gruul's Lair void AddSC_boss_gruul(); void AddSC_boss_high_king_maulgar(); void AddSC_instance_gruuls_lair(); void AddSC_boss_broggok(); //HC Blood Furnace void AddSC_boss_kelidan_the_breaker(); void AddSC_boss_the_maker(); void AddSC_instance_blood_furnace(); void AddSC_boss_magtheridon(); //HC Magtheridon's Lair void AddSC_instance_magtheridons_lair(); void AddSC_boss_grand_warlock_nethekurse(); //HC Shattered Halls void AddSC_boss_warbringer_omrogg(); void AddSC_boss_warchief_kargath_bladefist(); void AddSC_instance_shattered_halls(); void AddSC_boss_watchkeeper_gargolmar(); //HC Ramparts void AddSC_boss_omor_the_unscarred(); void AddSC_boss_vazruden_the_herald(); void AddSC_instance_ramparts(); void AddSC_arcatraz(); //TK Arcatraz void AddSC_boss_zereketh_the_unbound(); void AddSC_boss_dalliah_the_doomsayer(); void AddSC_boss_wrath_scryer_soccothrates(); void AddSC_boss_harbinger_skyriss(); void AddSC_instance_arcatraz(); void AddSC_boss_high_botanist_freywinn(); //TK Botanica void AddSC_boss_laj(); void AddSC_boss_warp_splinter(); void AddSC_boss_thorngrin_the_tender(); void AddSC_boss_commander_sarannis(); void AddSC_instance_the_botanica(); void AddSC_boss_alar(); //TK The Eye void AddSC_boss_kaelthas(); void AddSC_boss_void_reaver(); void AddSC_boss_high_astromancer_solarian(); void AddSC_instance_the_eye(); void AddSC_the_eye(); void AddSC_boss_gatewatcher_iron_hand(); //TK The Mechanar void AddSC_boss_gatewatcher_gyrokill(); void AddSC_boss_nethermancer_sepethrea(); void AddSC_boss_pathaleon_the_calculator(); void AddSC_boss_mechano_lord_capacitus(); void AddSC_instance_mechanar(); void AddSC_blades_edge_mountains(); void AddSC_boss_doomlordkazzak(); void AddSC_boss_doomwalker(); void AddSC_hellfire_peninsula(); void AddSC_nagrand(); void AddSC_netherstorm(); void AddSC_shadowmoon_valley(); void AddSC_shattrath_city(); void AddSC_terokkar_forest(); void AddSC_zangarmarsh(); // Maelstrom void AddSC_boss_corborus(); //StoneCore void AddSC_boss_slabhide(); void AddSC_boss_ozruk(); void AddSC_boss_azil(); void AddSC_stonecore(); void AddSC_instance_stonecore(); void AddSC_zone_kezan(); void AddSC_zone_the_maelstrom(); void AddSC_zone_lost_isles(); void AddSC_zone_tolbarad_peninsula(); void AddSC_zone_tolbarad(); void AddSC_zone_deepholm(); void AddSC_zone_darkmoon_island(); void AddSC_zone_echo_isles(); // Events void AddSC_event_childrens_week(); // Pets void AddSC_deathknight_pet_scripts(); void AddSC_generic_pet_scripts(); void AddSC_hunter_pet_scripts(); void AddSC_mage_pet_scripts(); void AddSC_priest_pet_scripts(); void AddSC_shaman_pet_scripts(); // battlegrounds // outdoor pvp void AddSC_outdoorpvp_hp(); void AddSC_outdoorpvp_na(); void AddSC_outdoorpvp_si(); void AddSC_outdoorpvp_tf(); void AddSC_outdoorpvp_zm(); // player void AddSC_chat_log(); void AddSC_chat_censor(); #endif void AddScripts() { AddExampleScripts(); AddSpellScripts(); AddSC_SmartSCripts(); AddCommandScripts(); #ifdef SCRIPTS AddWorldScripts(); AddEasternKingdomsScripts(); AddKalimdorScripts(); AddOutlandScripts(); AddNorthrendScripts(); AddMaelstromScripts(); AddEventScripts(); AddPetScripts(); AddBattlegroundScripts(); AddOutdoorPvPScripts(); AddCustomScripts(); #endif } void AddExampleScripts() { AddSC_example_creature(); AddSC_example_escort(); AddSC_example_gossip_codebox(); AddSC_example_misc(); AddSC_example_commandscript(); } void AddSpellScripts() { AddSC_deathknight_spell_scripts(); AddSC_druid_spell_scripts(); AddSC_generic_spell_scripts(); AddSC_hunter_spell_scripts(); AddSC_mage_spell_scripts(); AddSC_paladin_spell_scripts(); AddSC_priest_spell_scripts(); AddSC_rogue_spell_scripts(); AddSC_shaman_spell_scripts(); AddSC_warlock_spell_scripts(); AddSC_warrior_spell_scripts(); AddSC_quest_spell_scripts(); AddSC_item_spell_scripts(); AddSC_example_spell_scripts(); AddSC_holiday_spell_scripts(); AddSC_guild_spell_scripts(); } void AddCommandScripts() { AddSC_account_commandscript(); AddSC_achievement_commandscript(); AddSC_ahbot_commandscript(); AddSC_arena_commandscript(); AddSC_ban_commandscript(); AddSC_bf_commandscript(); AddSC_cast_commandscript(); AddSC_character_commandscript(); AddSC_cheat_commandscript(); AddSC_debug_commandscript(); AddSC_deserter_commandscript(); AddSC_disable_commandscript(); AddSC_event_commandscript(); AddSC_gm_commandscript(); AddSC_go_commandscript(); AddSC_gobject_commandscript(); AddSC_group_commandscript(); AddSC_guild_commandscript(); AddSC_honor_commandscript(); AddSC_instance_commandscript(); AddSC_learn_commandscript(); AddSC_lookup_commandscript(); AddSC_lfg_commandscript(); AddSC_list_commandscript(); AddSC_message_commandscript(); AddSC_misc_commandscript(); AddSC_mmaps_commandscript(); AddSC_modify_commandscript(); AddSC_npc_commandscript(); AddSC_quest_commandscript(); AddSC_pet_commandscript(); AddSC_rbac_commandscript(); AddSC_reload_commandscript(); AddSC_reset_commandscript(); AddSC_send_commandscript(); AddSC_server_commandscript(); AddSC_tele_commandscript(); AddSC_ticket_commandscript(); AddSC_titles_commandscript(); AddSC_wp_commandscript(); } void AddWorldScripts() { #ifdef SCRIPTS AddSC_areatrigger_scripts(); AddSC_emerald_dragons(); AddSC_generic_creature(); AddSC_go_scripts(); AddSC_guards(); AddSC_item_scripts(); AddSC_npc_professions(); AddSC_npc_innkeeper(); AddSC_npcs_special(); AddSC_npc_taxi(); AddSC_achievement_scripts(); AddSC_chat_log(); AddSC_chat_censor(); AddSC_npc_trainings_dummy(); #endif } void AddEasternKingdomsScripts() { #ifdef SCRIPTS AddSC_alterac_valley(); //Alterac Valley AddSC_boss_balinda(); AddSC_boss_drekthar(); AddSC_boss_galvangar(); AddSC_boss_vanndar(); AddSC_boss_alizabal(); //Baradin Hold AddSC_boss_occuthar(); AddSC_boss_pit_lord_argaloth(); AddSC_boss_argaloth(); AddSC_bh_trash(); AddSC_instance_baradin_hold(); AddSC_boss_assembly_of_ascendents(); //Bastion of Twilight AddSC_bastion_of_twilight(); AddSC_boss_halfus(); AddSC_boss_valiona_theralion(); AddSC_boss_ascendant_council(); AddSC_boss_chogall(); AddSC_boss_sinestra(); AddSC_instance_bastion_of_twilight(); AddSC_boss_ascendant_lord_obsidius(); //Blackrock Caverns AddSC_boss_beauty(); AddSC_boss_corla_herald_of_twilight(); AddSC_boss_karsh_steelbender(); AddSC_boss_romogg_bonecrusher(); AddSC_instance_blackrock_caverns(); AddSC_blackrock_depths(); //Blackrock Depths AddSC_boss_ambassador_flamelash(); AddSC_boss_anubshiah(); AddSC_boss_draganthaurissan(); AddSC_boss_general_angerforge(); AddSC_boss_gorosh_the_dervish(); AddSC_boss_grizzle(); AddSC_boss_high_interrogator_gerstahn(); AddSC_boss_magmus(); AddSC_boss_moira_bronzebeard(); AddSC_boss_tomb_of_seven(); AddSC_instance_blackrock_depths(); AddSC_boss_drakkisath(); //Blackrock Spire AddSC_boss_halycon(); AddSC_boss_highlordomokk(); AddSC_boss_mothersmolderweb(); AddSC_boss_overlordwyrmthalak(); AddSC_boss_shadowvosh(); AddSC_boss_thebeast(); AddSC_boss_warmastervoone(); AddSC_boss_quatermasterzigris(); AddSC_boss_pyroguard_emberseer(); AddSC_boss_gyth(); AddSC_boss_rend_blackhand(); AddSC_boss_gizrul_the_slavener(); AddSC_boss_urok_doomhowl(); AddSC_boss_lord_valthalak(); AddSC_instance_blackrock_spire(); AddSC_blackwing_descent(); //Blackwing descent AddSC_boss_magmaw(); AddSC_boss_omnotron_defense_system(); AddSC_boss_atramedes(); AddSC_boss_chimaeron(); AddSC_boss_maloriak(); AddSC_boss_bd_nefarian(); AddSC_instance_blackwing_descent(); AddSC_boss_razorgore(); //Blackwing lair AddSC_boss_vaelastrasz(); AddSC_boss_broodlord(); AddSC_boss_firemaw(); AddSC_boss_ebonroc(); AddSC_boss_flamegor(); AddSC_boss_chromaggus(); AddSC_boss_nefarian(); AddSC_instance_blackwing_lair(); AddSC_deadmines(); //Deadmines AddSC_boss_mr_smite(); AddSC_instance_deadmines(); AddSC_boss_admiral_ripsnarl(); AddSC_boss_captain_cookie(); AddSC_boss_foo_reaper_5000(); AddSC_boss_glubtok(); AddSC_boss_helix_gearbreaker(); AddSC_boss_vanessa_van_cleef(); AddSC_gnomeregan(); //Gnomeregan AddSC_instance_gnomeregan(); AddSC_grim_batol(); //Grim Batol AddSC_boss_general_umbriss(); AddSC_boss_forgemaster_throngus(); AddSC_boss_drahga_shadowburner(); AddSC_boss_erudax(); AddSC_instance_grim_batol(); AddSC_boss_attumen(); //Karazhan AddSC_boss_curator(); AddSC_boss_maiden_of_virtue(); AddSC_boss_shade_of_aran(); AddSC_boss_malchezaar(); AddSC_boss_terestian_illhoof(); AddSC_boss_moroes(); AddSC_bosses_opera(); AddSC_boss_netherspite(); AddSC_instance_karazhan(); AddSC_karazhan(); AddSC_boss_nightbane(); AddSC_boss_felblood_kaelthas(); //Magister's Terrace AddSC_boss_selin_fireheart(); AddSC_boss_vexallus(); AddSC_boss_priestess_delrissa(); AddSC_instance_magisters_terrace(); AddSC_magisters_terrace(); AddSC_boss_lucifron(); //Molten core AddSC_boss_magmadar(); AddSC_boss_gehennas(); AddSC_boss_garr(); AddSC_boss_baron_geddon(); AddSC_boss_shazzrah(); AddSC_boss_golemagg(); AddSC_boss_sulfuron(); AddSC_boss_majordomo(); AddSC_boss_ragnaros(); AddSC_instance_molten_core(); AddSC_the_scarlet_enclave(); //Scarlet Enclave AddSC_the_scarlet_enclave_c1(); AddSC_the_scarlet_enclave_c2(); AddSC_the_scarlet_enclave_c5(); AddSC_boss_arcanist_doan(); //Scarlet Monastery AddSC_boss_azshir_the_sleepless(); AddSC_boss_bloodmage_thalnos(); AddSC_boss_headless_horseman(); AddSC_boss_herod(); AddSC_boss_high_inquisitor_fairbanks(); AddSC_boss_houndmaster_loksey(); AddSC_boss_interrogator_vishas(); AddSC_boss_scorn(); AddSC_instance_scarlet_monastery(); AddSC_boss_mograine_and_whitemane(); AddSC_boss_darkmaster_gandling(); //Scholomance AddSC_boss_death_knight_darkreaver(); AddSC_boss_theolenkrastinov(); AddSC_boss_illuciabarov(); AddSC_boss_instructormalicia(); AddSC_boss_jandicebarov(); AddSC_boss_kormok(); AddSC_boss_lordalexeibarov(); AddSC_boss_lorekeeperpolkelt(); AddSC_boss_rasfrost(); AddSC_boss_theravenian(); AddSC_boss_vectus(); AddSC_boss_kirtonos_the_herald(); AddSC_instance_scholomance(); AddSC_shadowfang_keep(); //Shadowfang keep AddSC_boss_apothecary_trio(); AddSC_boss_lord_walden(); AddSC_boss_baron_ashbury(); AddSC_boss_baron_silverlaine(); AddSC_boss_lord_godfrey(); AddSC_boss_commander_springvale(); AddSC_instance_shadowfang_keep(); AddSC_boss_magistrate_barthilas(); //Stratholme AddSC_boss_maleki_the_pallid(); AddSC_boss_nerubenkan(); AddSC_boss_cannon_master_willey(); AddSC_boss_baroness_anastari(); AddSC_boss_ramstein_the_gorger(); AddSC_boss_timmy_the_cruel(); AddSC_boss_postmaster_malown(); AddSC_boss_baron_rivendare(); AddSC_boss_dathrohan_balnazzar(); AddSC_boss_order_of_silver_hand(); AddSC_instance_stratholme(); AddSC_stratholme(); AddSC_sunken_temple(); //Sunken Temple AddSC_instance_sunken_temple(); AddSC_instance_sunwell_plateau(); //Sunwell Plateau AddSC_boss_kalecgos(); AddSC_boss_brutallus(); AddSC_boss_felmyst(); AddSC_boss_eredar_twins(); AddSC_boss_muru(); AddSC_boss_kiljaeden(); AddSC_sunwell_plateau(); AddSC_instance_the_stockade(); //The Stockade AddSC_throne_of_the_tides(); //Throne of the Tides AddSC_boss_lady_nazjar(); AddSC_boss_commander_ulthok(); AddSC_boss_erunak_stonespeaker(); AddSC_boss_ozumat(); AddSC_instance_throne_of_the_tides(); AddSC_boss_revelosh(); //Uldaman AddSC_boss_the_lost_dwarves(); AddSC_boss_ironaya(); AddSC_boss_obsidian_sentinel(); AddSC_boss_ancient_stone_keeper(); AddSC_boss_galgann_firehammer(); AddSC_boss_grimlok(); AddSC_boss_archaedas(); AddSC_uldaman(); AddSC_instance_uldaman(); AddSC_boss_akilzon(); //Zul'Aman AddSC_boss_halazzi(); AddSC_boss_hex_lord_malacrass(); AddSC_boss_janalai(); AddSC_boss_nalorakk(); AddSC_boss_daakara(); AddSC_instance_zulaman(); AddSC_zulaman(); AddSC_boss_grilek(); //Zul'Gurub AddSC_boss_hazzarah(); AddSC_boss_jindo_the_godbreaker(); AddSC_boss_kilnara(); AddSC_boss_mandokir(); AddSC_boss_renataki(); AddSC_boss_venoxis(); AddSC_boss_wushoolay(); AddSC_boss_zanzil(); AddSC_instance_zulgurub(); //AddSC_alterac_mountains(); AddSC_arathi_highlands(); AddSC_blasted_lands(); AddSC_burning_steppes(); AddSC_zone_coldridge_valley(); AddSC_zone_dun_morogh(); AddSC_zone_gnomeregan(); AddSC_duskwood(); AddSC_eastern_plaguelands(); AddSC_elwynn_forest(); AddSC_eversong_woods(); AddSC_ghostlands(); AddSC_hinterlands(); AddSC_ironforge(); AddSC_isle_of_queldanas(); AddSC_loch_modan(); AddSC_redridge_mountains(); AddSC_silvermoon_city(); AddSC_silverpine_forest(); AddSC_stormwind_city(); AddSC_stranglethorn_vale(); AddSC_swamp_of_sorrows(); AddSC_tirisfal_glades(); AddSC_undercity(); AddSC_western_plaguelands(); AddSC_westfall(); AddSC_wetlands(); AddSC_zone_gilneas_duskhaven(); AddSC_zone_gilneas_city1(); AddSC_zone_gilneas2(); AddSC_zone_gilneas_city3(); AddSC_zone_northern_stranglethorn(); #endif } void AddKalimdorScripts() { #ifdef SCRIPTS AddSC_blackfathom_deeps(); //Blackfathom Depths AddSC_boss_gelihast(); AddSC_boss_kelris(); AddSC_boss_aku_mai(); AddSC_instance_blackfathom_deeps(); AddSC_hyjal(); //CoT Battle for Mt. Hyjal AddSC_boss_archimonde(); AddSC_instance_mount_hyjal(); AddSC_hyjal_trash(); AddSC_zone_hyjal(); AddSC_boss_rage_winterchill(); AddSC_boss_anetheron(); AddSC_boss_kazrogal(); AddSC_boss_azgalor(); AddSC_boss_captain_skarloc(); //CoT Old Hillsbrad AddSC_boss_epoch_hunter(); AddSC_boss_lieutenant_drake(); AddSC_instance_old_hillsbrad(); AddSC_old_hillsbrad(); AddSC_boss_aeonus(); //CoT The Black Morass AddSC_boss_chrono_lord_deja(); AddSC_boss_temporus(); AddSC_the_black_morass(); AddSC_instance_the_black_morass(); AddSC_boss_epoch(); //CoT Culling Of Stratholme AddSC_boss_infinite_corruptor(); AddSC_boss_salramm(); AddSC_boss_mal_ganis(); AddSC_boss_meathook(); AddSC_culling_of_stratholme(); AddSC_boss_echo_of_baine(); //CoT End Time AddSC_boss_echo_of_jaina(); AddSC_boss_echo_of_sylvanas(); AddSC_boss_echo_of_tyrande(); AddSC_boss_murozond(); AddSC_instance_end_time(); AddSC_end_time_teleport(); AddSC_boss_morchok(); //CoT Dragon Soul AddSC_boss_unsleeping(); AddSC_boss_hagara(); AddSC_instance_dragon_soul(); AddSC_dragon_soul(); AddSC_dragon_soul_teleport_and_transport(); AddSC_boss_warlord(); AddSC_boss_ultraxion(); AddSC_boss_warmaster_blackhorn(); AddSC_boss_deathwing(); AddSC_boss_arcurion(); //CoT Hour Of Twilight AddSC_instance_hour_of_twilight(); AddSC_instance_culling_of_stratholme(); AddSC_instance_dire_maul(); //Dire Maul AddSC_dire_maul(); AddSC_gordoks_commons(); AddSC_capital_gardens(); AddSC_warpwood_quarter(); AddSC_boss_alzzin_the_wildshaper(); AddSC_boss_captain_kromcrush(); AddSC_boss_chorush_the_observer(); AddSC_boss_guard_fengus(); AddSC_boss_guard_moldar(); AddSC_boss_guard_slipkik(); AddSC_boss_hydrospawn(); AddSC_boss_illyanna_ravenoak(); AddSC_boss_immolthar(); AddSC_boss_king_gordok(); AddSC_boss_lethtendris(); AddSC_boss_magister_kalendris(); AddSC_boss_prince_tortheldrin(); AddSC_boss_stomper_kreeg(); AddSC_boss_tendris_warpwood(); AddSC_boss_zevrim_thornhoof(); AddSC_boss_shannox(); //Firelands AddSC_boss_bethtilac(); AddSC_boss_alysrazor(); AddSC_boss_lord_rhyolith(); AddSC_boss_ragnaros_firelands(); AddSC_boss_baloroc(); AddSC_boss_majordomus(); AddSC_instance_firelands(); AddSC_boss_ammunae(); //Halls Of Origination //AddSC_boss_anhuur(); AddSC_boss_temple_guardian_anhuur(); AddSC_boss_anraphet(); AddSC_boss_earthrager_ptah(); AddSC_boss_isiset(); AddSC_boss_rajh(); AddSC_boss_setesh(); AddSC_elementaires_sdo(); AddSC_npc_trash_sdo(); AddSC_instance_halls_of_origination(); AddSC_lost_city_of_the_tolvir(); //Lost City of the Tol'Vir AddSC_boss_general_husam(); AddSC_boss_lockmaw_augh(); AddSC_boss_high_prophet_barim(); AddSC_boss_siamat(); AddSC_instance_lost_city_of_the_tolvir(); AddSC_boss_celebras_the_cursed(); //Maraudon AddSC_boss_landslide(); AddSC_boss_noxxion(); AddSC_boss_ptheradras(); AddSC_instance_maraudon(); AddSC_boss_onyxia(); //Onyxia's Lair AddSC_instance_onyxias_lair(); AddSC_boss_tuten_kash(); //Razorfen Downs AddSC_boss_mordresh_fire_eye(); AddSC_boss_glutton(); AddSC_boss_amnennar_the_coldbringer(); AddSC_razorfen_downs(); AddSC_instance_razorfen_downs(); AddSC_razorfen_kraul(); //Razorfen Kraul AddSC_instance_razorfen_kraul(); AddSC_boss_kurinnaxx(); //Ruins of ahn'qiraj AddSC_boss_rajaxx(); AddSC_boss_moam(); AddSC_boss_buru(); AddSC_boss_ayamiss(); AddSC_boss_ossirian(); AddSC_instance_ruins_of_ahnqiraj(); AddSC_boss_cthun(); //Temple of ahn'qiraj AddSC_boss_viscidus(); AddSC_boss_fankriss(); AddSC_boss_huhuran(); AddSC_bug_trio(); AddSC_boss_sartura(); AddSC_boss_skeram(); AddSC_boss_twinemperors(); AddSC_boss_ouro(); AddSC_npc_anubisath_sentinel(); AddSC_instance_temple_of_ahnqiraj(); AddSC_the_vortex_pinnacle(); //The Vortex Pinnacle AddSC_boss_grand_vizier_ertan(); AddSC_boss_altairus(); AddSC_boss_asaad(); AddSC_instance_the_vortex_pinnacle(); AddSC_throne_of_the_four_winds(); //Throne of the Four Winds AddSC_boss_alakir(); AddSC_boss_conclave_of_wind(); AddSC_instance_throne_of_the_four_winds(); AddSC_wailing_caverns(); //Wailing caverns AddSC_instance_wailing_caverns(); AddSC_boss_zum_rah(); //Zul'Farrak AddSC_zulfarrak(); AddSC_instance_zulfarrak(); AddSC_instance_ragefire_chasm(); // Ragefire Chasm AddSC_ragefire_chasm(); AddSC_boss_taragaman_the_hungerer(); AddSC_boss_oggleflint(); AddSC_boss_jergosh_the_invoker(); AddSC_boss_bazzalan(); AddSC_ashenvale(); AddSC_azshara(); AddSC_zone_azuremyst_isle(); AddSC_bloodmyst_isle(); AddSC_darkshore(); AddSC_desolace(); AddSC_durotar(); AddSC_dustwallow_marsh(); AddSC_felwood(); AddSC_feralas(); AddSC_moonglade(); AddSC_mulgore(); AddSC_orgrimmar(); AddSC_silithus(); AddSC_stonetalon_mountains(); AddSC_tanaris(); AddSC_teldrassil(); AddSC_the_barrens(); AddSC_thousand_needles(); AddSC_thunder_bluff(); AddSC_ungoro_crater(); AddSC_winterspring(); AddSC_zone_northern_barrens(); #endif } void AddOutlandScripts() { #ifdef SCRIPTS // Auchindoun - Auchenai Crypts AddSC_boss_shirrak_the_dead_watcher(); AddSC_boss_exarch_maladaar(); AddSC_instance_auchenai_crypts(); // Auchindoun - Mana Tombs AddSC_boss_pandemonius(); AddSC_boss_nexusprince_shaffar(); AddSC_instance_mana_tombs(); // Auchindoun - Sekketh Halls AddSC_boss_darkweaver_syth(); AddSC_boss_talon_king_ikiss(); AddSC_boss_anzu(); AddSC_instance_sethekk_halls(); // Auchindoun - Shadow Labyrinth AddSC_boss_ambassador_hellmaw(); AddSC_boss_blackheart_the_inciter(); AddSC_boss_grandmaster_vorpil(); AddSC_boss_murmur(); AddSC_instance_shadow_labyrinth(); // Black Temple AddSC_black_temple(); AddSC_boss_illidan(); AddSC_boss_shade_of_akama(); AddSC_boss_supremus(); AddSC_boss_gurtogg_bloodboil(); AddSC_boss_mother_shahraz(); AddSC_boss_reliquary_of_souls(); AddSC_boss_teron_gorefiend(); AddSC_boss_najentus(); AddSC_boss_illidari_council(); AddSC_instance_black_temple(); // Coilfang Reservoir - Serpent Shrine Cavern AddSC_boss_fathomlord_karathress(); AddSC_boss_hydross_the_unstable(); AddSC_boss_lady_vashj(); AddSC_boss_leotheras_the_blind(); AddSC_boss_morogrim_tidewalker(); AddSC_instance_serpentshrine_cavern(); AddSC_boss_the_lurker_below(); // Coilfang Reservoir - The Steam Vault AddSC_instance_steam_vault(); AddSC_boss_hydromancer_thespia(); AddSC_boss_mekgineer_steamrigger(); AddSC_boss_warlord_kalithresh(); // Coilfang Reservoir - The Slave Pens AddSC_instance_the_slave_pens(); AddSC_boss_mennu_the_betrayer(); AddSC_boss_rokmar_the_crackler(); AddSC_boss_quagmirran(); // Coilfang Reservoir - The Underbog AddSC_instance_the_underbog(); AddSC_boss_hungarfen(); AddSC_boss_the_black_stalker(); // Gruul's Lair AddSC_boss_gruul(); AddSC_boss_high_king_maulgar(); AddSC_instance_gruuls_lair(); AddSC_boss_broggok(); //HC Blood Furnace AddSC_boss_kelidan_the_breaker(); AddSC_boss_the_maker(); AddSC_instance_blood_furnace(); AddSC_boss_magtheridon(); //HC Magtheridon's Lair AddSC_instance_magtheridons_lair(); AddSC_boss_grand_warlock_nethekurse(); //HC Shattered Halls AddSC_boss_warbringer_omrogg(); AddSC_boss_warchief_kargath_bladefist(); AddSC_instance_shattered_halls(); AddSC_boss_watchkeeper_gargolmar(); //HC Ramparts AddSC_boss_omor_the_unscarred(); AddSC_boss_vazruden_the_herald(); AddSC_instance_ramparts(); AddSC_arcatraz(); //TK Arcatraz AddSC_boss_zereketh_the_unbound(); AddSC_boss_dalliah_the_doomsayer(); AddSC_boss_wrath_scryer_soccothrates(); AddSC_boss_harbinger_skyriss(); AddSC_instance_arcatraz(); AddSC_boss_high_botanist_freywinn(); //TK Botanica AddSC_boss_laj(); AddSC_boss_warp_splinter(); AddSC_boss_thorngrin_the_tender(); AddSC_boss_commander_sarannis(); AddSC_instance_the_botanica(); AddSC_boss_alar(); //TK The Eye AddSC_boss_kaelthas(); AddSC_boss_void_reaver(); AddSC_boss_high_astromancer_solarian(); AddSC_instance_the_eye(); AddSC_the_eye(); AddSC_boss_gatewatcher_iron_hand(); //TK The Mechanar AddSC_boss_gatewatcher_gyrokill(); AddSC_boss_nethermancer_sepethrea(); AddSC_boss_pathaleon_the_calculator(); AddSC_boss_mechano_lord_capacitus(); AddSC_instance_mechanar(); AddSC_blades_edge_mountains(); AddSC_boss_doomlordkazzak(); AddSC_boss_doomwalker(); AddSC_hellfire_peninsula(); AddSC_nagrand(); AddSC_netherstorm(); AddSC_shadowmoon_valley(); AddSC_shattrath_city(); AddSC_terokkar_forest(); AddSC_zangarmarsh(); #endif } void AddNorthrendScripts() { #ifdef SCRIPTS AddSC_boss_slad_ran(); //Gundrak AddSC_boss_moorabi(); AddSC_boss_drakkari_colossus(); AddSC_boss_gal_darah(); AddSC_boss_eck(); AddSC_instance_gundrak(); // Azjol-Nerub - Ahn'kahet AddSC_boss_elder_nadox(); AddSC_boss_taldaram(); AddSC_boss_amanitar(); AddSC_boss_jedoga_shadowseeker(); AddSC_boss_volazj(); AddSC_instance_ahnkahet(); // Azjol-Nerub - Azjol-Nerub AddSC_boss_krik_thir(); AddSC_boss_hadronox(); AddSC_boss_anub_arak(); AddSC_instance_azjol_nerub(); // Drak'Tharon Keep AddSC_boss_trollgore(); AddSC_boss_novos(); AddSC_boss_king_dred(); AddSC_boss_tharon_ja(); AddSC_instance_drak_tharon_keep(); AddSC_boss_argent_challenge(); //Trial of the Champion AddSC_boss_black_knight(); AddSC_boss_grand_champions(); AddSC_instance_trial_of_the_champion(); AddSC_trial_of_the_champion(); AddSC_boss_anubarak_trial(); //Trial of the Crusader AddSC_boss_faction_champions(); AddSC_boss_jaraxxus(); AddSC_trial_of_the_crusader(); AddSC_boss_twin_valkyr(); AddSC_boss_northrend_beasts(); AddSC_instance_trial_of_the_crusader(); AddSC_boss_anubrekhan(); //Naxxramas AddSC_boss_maexxna(); AddSC_boss_patchwerk(); AddSC_boss_grobbulus(); AddSC_boss_razuvious(); AddSC_boss_kelthuzad(); AddSC_boss_loatheb(); AddSC_boss_noth(); AddSC_boss_gluth(); AddSC_boss_sapphiron(); AddSC_boss_four_horsemen(); AddSC_boss_faerlina(); AddSC_boss_heigan(); AddSC_boss_gothik(); AddSC_boss_thaddius(); AddSC_instance_naxxramas(); AddSC_boss_magus_telestra(); //The Nexus Nexus AddSC_boss_anomalus(); AddSC_boss_ormorok(); AddSC_boss_keristrasza(); AddSC_instance_nexus(); AddSC_boss_drakos(); //The Nexus The Oculus AddSC_boss_urom(); AddSC_boss_varos(); AddSC_boss_eregos(); AddSC_instance_oculus(); AddSC_oculus(); AddSC_boss_malygos(); // The Nexus: Eye of Eternity AddSC_instance_eye_of_eternity(); AddSC_boss_sartharion(); //Obsidian Sanctum AddSC_obsidian_sanctum(); AddSC_instance_obsidian_sanctum(); AddSC_boss_bjarngrim(); //Ulduar Halls of Lightning AddSC_boss_loken(); AddSC_boss_ionar(); AddSC_boss_volkhan(); AddSC_instance_halls_of_lightning(); AddSC_boss_maiden_of_grief(); //Ulduar Halls of Stone AddSC_boss_krystallus(); AddSC_boss_sjonnir(); AddSC_instance_halls_of_stone(); AddSC_halls_of_stone(); AddSC_boss_auriaya(); //Ulduar Ulduar AddSC_boss_flame_leviathan(); AddSC_boss_ignis(); AddSC_boss_razorscale(); AddSC_boss_xt002(); AddSC_boss_general_vezax(); AddSC_boss_assembly_of_iron(); AddSC_boss_kologarn(); AddSC_ulduar_teleporter(); AddSC_boss_mimiron(); AddSC_boss_hodir(); AddSC_boss_freya(); AddSC_boss_yogg_saron(); AddSC_boss_algalon_the_observer(); AddSC_instance_ulduar(); // Utgarde Keep - Utgarde Keep AddSC_boss_keleseth(); AddSC_boss_skarvald_dalronn(); AddSC_boss_ingvar_the_plunderer(); AddSC_instance_utgarde_keep(); AddSC_utgarde_keep(); // Utgarde Keep - Utgarde Pinnacle AddSC_boss_svala(); AddSC_boss_palehoof(); AddSC_boss_skadi(); AddSC_boss_ymiron(); AddSC_instance_utgarde_pinnacle(); // Vault of Archavon AddSC_boss_archavon(); AddSC_boss_emalon(); AddSC_boss_koralon(); AddSC_boss_toravon(); AddSC_instance_vault_of_archavon(); AddSC_boss_cyanigosa(); //Violet Hold AddSC_boss_erekem(); AddSC_boss_ichoron(); AddSC_boss_lavanthor(); AddSC_boss_moragg(); AddSC_boss_xevozz(); AddSC_boss_zuramat(); AddSC_instance_violet_hold(); AddSC_violet_hold(); AddSC_instance_forge_of_souls(); //Forge of Souls AddSC_forge_of_souls(); AddSC_boss_bronjahm(); AddSC_boss_devourer_of_souls(); AddSC_instance_pit_of_saron(); //Pit of Saron AddSC_pit_of_saron(); AddSC_boss_garfrost(); AddSC_boss_ick(); AddSC_boss_tyrannus(); AddSC_instance_halls_of_reflection(); // Halls of Reflection AddSC_halls_of_reflection(); AddSC_boss_falric(); AddSC_boss_marwyn(); AddSC_boss_lord_marrowgar(); // Icecrown Citadel AddSC_boss_lady_deathwhisper(); AddSC_boss_icecrown_gunship_battle(); AddSC_boss_deathbringer_saurfang(); AddSC_boss_festergut(); AddSC_boss_rotface(); AddSC_boss_professor_putricide(); AddSC_boss_blood_prince_council(); AddSC_boss_blood_queen_lana_thel(); AddSC_boss_valithria_dreamwalker(); AddSC_boss_sindragosa(); AddSC_boss_the_lich_king(); AddSC_icecrown_citadel_teleport(); AddSC_instance_icecrown_citadel(); AddSC_icecrown_citadel(); AddSC_instance_ruby_sanctum(); // Ruby Sanctum AddSC_ruby_sanctum(); AddSC_boss_baltharus_the_warborn(); AddSC_boss_saviana_ragefire(); AddSC_boss_general_zarithrian(); AddSC_boss_halion(); AddSC_dalaran(); AddSC_borean_tundra(); AddSC_dragonblight(); AddSC_grizzly_hills(); AddSC_howling_fjord(); AddSC_icecrown(); AddSC_sholazar_basin(); AddSC_storm_peaks(); AddSC_wintergrasp(); AddSC_zuldrak(); AddSC_crystalsong_forest(); AddSC_isle_of_conquest(); #endif } void AddMaelstromScripts() { #ifdef SCRIPTS AddSC_boss_corborus(); //StoneCore AddSC_boss_slabhide(); AddSC_boss_ozruk(); AddSC_boss_azil(); AddSC_stonecore(); AddSC_instance_stonecore(); AddSC_zone_kezan(); AddSC_zone_tolbarad_peninsula(); AddSC_zone_tolbarad(); AddSC_zone_the_maelstrom(); AddSC_zone_lost_isles(); AddSC_zone_deepholm(); AddSC_zone_darkmoon_island(); AddSC_zone_echo_isles(); #endif } void AddEventScripts() { #ifdef SCRIPTS AddSC_event_childrens_week(); #endif } void AddPetScripts() { #ifdef SCRIPTS AddSC_deathknight_pet_scripts(); AddSC_generic_pet_scripts(); AddSC_hunter_pet_scripts(); AddSC_mage_pet_scripts(); AddSC_priest_pet_scripts(); AddSC_shaman_pet_scripts(); #endif } void AddOutdoorPvPScripts() { #ifdef SCRIPTS AddSC_outdoorpvp_hp(); AddSC_outdoorpvp_na(); AddSC_outdoorpvp_si(); AddSC_outdoorpvp_tf(); AddSC_outdoorpvp_zm(); #endif } void AddBattlegroundScripts() { #ifdef SCRIPTS #endif } #ifdef SCRIPTS /* This is where custom scripts' loading functions should be declared. */ // TeleNPC2 void AddSC_npc_teleport(); void AddSC_CdReset(); void AddSC_morphs_npc(); void AddSC_NPC_VisualWeapon(); void AddSC_System_Censure(); void AddSC_Ingame_commandscript(); void AddSC_Title_gossip_codebox(); void AddSC_arenateamranks(); //Bots void AddSC_death_knight_bot(); void AddSC_druid_bot(); void AddSC_hunter_bot(); void AddSC_mage_bot(); void AddSC_paladin_bot(); void AddSC_priest_bot(); void AddSC_rogue_bot(); void AddSC_shaman_bot(); void AddSC_warlock_bot(); void AddSC_warrior_bot(); void AddSC_script_bot_commands(); #endif void AddCustomScripts() { #ifdef SCRIPTS /* This is where custom scripts should be added. */ // TeleNPC2 AddSC_npc_teleport(); AddSC_CdReset(); AddSC_morphs_npc(); AddSC_NPC_VisualWeapon(); AddSC_System_Censure(); AddSC_Ingame_commandscript(); AddSC_Title_gossip_codebox(); AddSC_arenateamranks(); //Bots AddSC_death_knight_bot(); AddSC_druid_bot(); AddSC_hunter_bot(); AddSC_mage_bot(); AddSC_paladin_bot(); AddSC_priest_bot(); AddSC_rogue_bot(); AddSC_shaman_bot(); AddSC_warlock_bot(); AddSC_warrior_bot(); AddSC_script_bot_commands(); #endif }
[ "inc723@gmail.com" ]
inc723@gmail.com
004067c862abe30f5511073354152c35f4c7eff4
a2aa6386ced191526b012c784efae8153684c679
/String Search/Neddle-Haystack.cpp
b8541199ddfbef82469920eb0b78ee7b2cdfa418
[]
no_license
pravj648/container
cd5bf04a338b648d2d850cd2eded7d7eaff9a3aa
203528840720ef11b50dbc353cf73e3908091037
refs/heads/master
2021-01-10T04:37:49.334350
2015-10-29T13:18:49
2015-10-29T13:18:49
45,098,211
0
0
null
2015-10-29T13:18:49
2015-10-28T08:18:43
C++
UTF-8
C++
false
false
1,088
cpp
#include <bits/stdc++.h> using namespace std; int main() { int t; string s1, s2; while (cin >> t) { cin >> s2 >> s1; int len = s2.length(); int a[len]; a[0] = 0; int j = 0; for(int i = 1; i < len; i++){ if(s2[i] == s2[j]){ a[i] = j + 1; j++; } else{ while (1) { if(j == 0 || s2[j] == s2[i]) break; else j = a[j-1]; } if(s2[j] == s2[i]){ a[i] = j + 1; j++; } else{ a[i] = 0; } } } int start = 0,checkFrom = 0; bool matched = false; while (start < s1.length()) { if(s1[start] == s2[checkFrom]){ if(checkFrom == len - 1){ matched = true; break; } else{ start++; checkFrom++; } } else{ if(checkFrom == 0){ start++; } else{ checkFrom = a[checkFrom - 1]; } } } if(matched) printf("Y\n"); else printf("N\n"); } }
[ "hackpravj@gmail.com" ]
hackpravj@gmail.com
1bd1876bb99c652f0f732cc6203d0a7de886d31c
6f2b6e9d77fc4dd5e1dae8ba6e5a66eb7c7ae849
/sstd_boost/sstd/boost/fiber/detail/thread_barrier.hpp
cb3f859d35d81f8f5433ced0d71f0779824cbaba
[ "BSL-1.0" ]
permissive
KqSMea8/sstd_library
9e4e622e1b01bed5de7322c2682539400d13dd58
0fcb815f50d538517e70a788914da7fbbe786ce1
refs/heads/master
2020-05-03T21:07:01.650034
2019-04-01T00:10:47
2019-04-01T00:10:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,580
hpp
 // Copyright Oliver Kowalke 2013. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_FIBER_DETAIL_THREAD_BARRIER_H #define BOOST_FIBER_DETAIL_THREAD_BARRIER_H #include <cstddef> #include <condition_variable> #include <mutex> #include <sstd/boost/assert.hpp> #include <sstd/boost/config.hpp> #include <sstd/boost/fiber/detail/config.hpp> #ifdef BOOST_HAS_ABI_HEADERS # include BOOST_ABI_PREFIX #endif namespace boost { namespace fibers { namespace detail { class thread_barrier { private: std::size_t initial_; std::size_t current_; bool cycle_{ true }; std::mutex mtx_{}; std::condition_variable cond_{}; public: explicit thread_barrier( std::size_t initial) : initial_{ initial }, current_{ initial_ } { BOOST_ASSERT ( 0 != initial); } thread_barrier( thread_barrier const&) = delete; thread_barrier & operator=( thread_barrier const&) = delete; bool wait() { std::unique_lock< std::mutex > lk( mtx_); const bool cycle = cycle_; if ( 0 == --current_) { cycle_ = ! cycle_; current_ = initial_; lk.unlock(); // no pessimization cond_.notify_all(); return true; } else { cond_.wait( lk, [&](){ return cycle != cycle_; }); } return false; } }; }}} #endif // BOOST_FIBER_DETAIL_THREAD_BARRIER_H
[ "zhaixueqiang@hotmail.com" ]
zhaixueqiang@hotmail.com
2aa3e2c31925f8fa6018999a2193afeec51957c4
d7df51c050d653c18419f9ab6a99c29b02a866bf
/0898e.cpp
8f5930fd8799c48363ab7e48c577c5cc141b2d04
[]
no_license
mpfeifer1/Codeforces
5cb90074e3ed87cd6ec19da6ed09481917bf827f
c43b6288f6e72fd65d586d36a7bfe847e09d8e30
refs/heads/master
2021-05-06T19:36:34.378643
2019-02-27T07:03:11
2019-02-27T07:03:11
112,151,399
1
3
null
null
null
null
UTF-8
C++
false
false
986
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { set<ll> squares; for(ll i = 0; i < 500000; i++) { squares.insert(i*i); } ll n; cin >> n; vector<ll> g, b; for(ll i = 0; i < n; i++) { ll temp; cin >> temp; if(temp == 0) { b.push_back(2); } // If square, dist = 1 else if(squares.count(temp) > 0) { b.push_back(1); } else { ll newnum = round(sqrt(temp)); newnum *= newnum; ll dist = abs(temp - newnum); g.push_back(dist); } } sort(b.rbegin(), b.rend()); sort(g.rbegin(), g.rend()); ll total = 0; while(g.size() < b.size()) { total += b.back(); b.pop_back(); g.push_back(1); } while(b.size() < g.size()) { total += g.back(); g.pop_back(); b.push_back(1); } cout << total << endl; }
[ "mikepf97@gmail.com" ]
mikepf97@gmail.com
52c17d2c70ec8669f3830ec21d65b4b57af518e7
abf958f9d7f5c180e9b24df98d980a8ffc39e951
/Ispiti/2018-09-10/Grupa A - Zadatak 03.cpp
903eab57e6918c8811f1acf6eeffb210ebf0d6cd
[]
no_license
kovaB/Programiranje-1
117fef5c197391b88c99d78668d81699f9ebfd7d
7acb497e1195bf91863f4ac77f58ad7ff81c72c5
refs/heads/master
2020-04-20T23:26:33.721837
2019-02-01T10:26:35
2019-02-01T10:26:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
949
cpp
#include <iostream> using namespace std; void Unos(char niz[], int duzina) { for (int i = 0; i < duzina; i++) while ( cout << "Unesite slovo: ", cin >> niz[i], niz[i] < 'A' || (niz[i] > 'Z' && niz[i] < 'a') || niz[i] < 'z' ); } void Ispis(char niz[], int duzina) { for (int i = 0; i < duzina; i++) cout << niz[i] << " "; cout << endl; } void Ukloni(char niz[], int duzina) { for (int i = 0; i < duzina; i++) { if (niz[i] >= 'A' && niz[i] <= 'Z') { for (int j = i + 1; j < duzina; j++) niz[j - 1] = niz[j]; i--; duzina--; } } Ispis(niz, duzina); } int main() { const int duzina = 20; char niz[duzina]; Unos(niz, duzina); Ispis(niz, duzina); Ukloni(niz, duzina); system("pause>0"); return 0; }
[ "noreply@github.com" ]
kovaB.noreply@github.com
6d203d18a307ac418bf397872d67b9d5e9968a65
9dcfdacaed24457f7ae5733394acc6970b225d76
/ath.vpn.ui/ath.vpn.ui.cpp
1b96ab2d649f0458f89ecb38c0e321f94eaa2cb7
[]
no_license
radtek/vpn
d063c17ee98a9b4b2859cb2efe91a69ce2ffc1c0
9fe0962a10440c06583b742fd670524811b73080
refs/heads/master
2021-03-04T04:24:08.242946
2019-01-29T11:53:55
2019-01-29T11:53:55
null
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
3,479
cpp
// ath.vpn.ui.cpp : Определяет поведение классов для приложения. // #include "stdafx.h" #include "ath.vpn.ui.h" #include "ath.vpn.uiDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #endif // CathvpnuiApp BEGIN_MESSAGE_MAP(CathvpnuiApp, CWinApp) ON_COMMAND(ID_HELP, &CWinApp::OnHelp) END_MESSAGE_MAP() // создание CathvpnuiApp CathvpnuiApp::CathvpnuiApp() { // TODO: добавьте код создания, // Размещает весь важный код инициализации в InitInstance } // Единственный объект CathvpnuiApp CathvpnuiApp theApp; // инициализация CathvpnuiApp BOOL CathvpnuiApp::InitInstance() { CWinApp::InitInstance(); // Создать диспетчер оболочки, в случае, если диалоговое окно содержит // представление дерева оболочки или какие-либо его элементы управления. CShellManager *pShellManager = new CShellManager; // Активация визуального диспетчера "Классический Windows" для включения элементов управления MFC CMFCVisualManager::SetDefaultManager(RUNTIME_CLASS(CMFCVisualManagerWindows)); // Стандартная инициализация // Если эти возможности не используются и необходимо уменьшить размер // конечного исполняемого файла, необходимо удалить из следующих // конкретных процедур инициализации, которые не требуются // Измените раздел реестра, в котором хранятся параметры // TODO: следует изменить эту строку на что-нибудь подходящее, // например на название организации SetRegistryKey(_T("BoB_Edition for ATH")); CathvpnuiDlg dlg; m_pMainWnd = &dlg; INT_PTR nResponse = dlg.DoModal(); if (nResponse == IDOK) { // TODO: Введите код для обработки закрытия диалогового окна // с помощью кнопки "ОК" } else if (nResponse == IDCANCEL) { // TODO: Введите код для обработки закрытия диалогового окна // с помощью кнопки "Отмена" } else if (nResponse == -1) { TRACE(traceAppMsg, 0, "Предупреждение. Не удалось создать диалоговое окно, поэтому работа приложения неожиданно завершена.\n"); TRACE(traceAppMsg, 0, "Предупреждение. При использовании элементов управления MFC для диалогового окна невозможно #define _AFX_NO_MFC_CONTROLS_IN_DIALOGS.\n"); } // Удалить диспетчер оболочки, созданный выше. if (pShellManager != NULL) { delete pShellManager; } #ifndef _AFXDLL ControlBarCleanUp(); #endif // Поскольку диалоговое окно закрыто, возвратите значение FALSE, чтобы можно было выйти из // приложения вместо запуска генератора сообщений приложения. return FALSE; }
[ "BoB1Edition@gmail.com" ]
BoB1Edition@gmail.com
4d5ef39a18c0717e310ebfc40232d8db142e50a1
8fbbc09a563d82d177d636721aff73d4b5e02966
/Class/Thread.h
afe64de6dbe2eac23c9935aa2de18804f935ca86
[]
no_license
EdwardTanshuo/capture_demo
8fe8dcf73bb415944f5a481994fad006ab979efc
e951ca32b9fb1135169418fdde59565041515fc7
refs/heads/master
2020-03-31T22:39:00.505387
2018-10-01T23:01:42
2018-10-01T23:01:42
152,626,050
1
0
null
null
null
null
UTF-8
C++
false
false
978
h
#pragma once #include <windows.h> #include <process.h> #include "Synchronized.h" class Thread { private: HANDLE _hThread; bool _active; public: Thread() : _hThread(), _active(false) {} virtual ~Thread() {} bool start() { _hThread = (HANDLE)_beginthread(threadProc, 0, this); return (_hThread != NULL); } void join() { if (_hThread) { ::WaitForSingleObject(_hThread, INFINITE); _hThread = NULL; } } void sleep(int millisec) const { if (_hThread) { Sleep(millisec); } } HANDLE handle() const { return this->_hThread; } /* void resume() const { if(_hThread ) { ResumeThread(_hThread); } } void suspend() const { if(_hThread) { SuspendThread(_hThread); } } */ public: virtual void run() = 0; protected: static void threadProc(void* lParam) { Thread* thread = (Thread *)lParam; if (thread != NULL) { thread->_active = true; thread->run(); thread->_active = false; } _endthread(); } };
[ "etan@fulgent.com" ]
etan@fulgent.com
e0639b2c48158e802ad950fe9b5c07e825f243fe
2af2ca451ff522eaafca4c4ee66adead7d32d360
/Editor/ModelImporter_OBJ.cpp
290445b6a5f5500b72a54ebefec6d501e3274a9a
[ "MIT", "Zlib", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
tula18/WickedEngine
25564867ea30c4e9b0e704935ae7bac084462214
35d9e0cc77baa06bf0b10217717e59583d628d70
refs/heads/master
2020-09-19T20:16:44.400606
2019-11-25T22:48:31
2019-11-25T22:48:31
224,287,532
1
0
NOASSERTION
2019-11-26T21:16:03
2019-11-26T21:16:02
null
UTF-8
C++
false
false
6,371
cpp
#include "stdafx.h" #include "wiSceneSystem.h" #include "ModelImporter.h" #define TINYOBJLOADER_IMPLEMENTATION #include "tiny_obj_loader.h" #include <fstream> using namespace std; using namespace wiGraphics; using namespace wiSceneSystem; using namespace wiECS; // Transform the data from OBJ space to engine-space: static const bool transform_to_LH = true; void ImportModel_OBJ(const std::string& fileName, Scene& scene) { string directory, name; wiHelper::SplitPath(fileName, directory, name); wiHelper::RemoveExtensionFromFileName(name); tinyobj::attrib_t obj_attrib; vector<tinyobj::shape_t> obj_shapes; vector<tinyobj::material_t> obj_materials; string obj_errors; bool success = tinyobj::LoadObj(&obj_attrib, &obj_shapes, &obj_materials, &obj_errors, fileName.c_str(), directory.c_str(), true); if (!obj_errors.empty()) { wiBackLog::post(obj_errors.c_str()); } if (success) { // Load material library: vector<Entity> materialLibrary = {}; for (auto& obj_material : obj_materials) { Entity materialEntity = scene.Entity_CreateMaterial(obj_material.name); MaterialComponent& material = *scene.materials.GetComponent(materialEntity); material.baseColor = XMFLOAT4(obj_material.diffuse[0], obj_material.diffuse[1], obj_material.diffuse[2], 1); material.baseColorMapName = obj_material.diffuse_texname; material.displacementMapName = obj_material.displacement_texname; material.emissiveColor.x = obj_material.emission[0]; material.emissiveColor.y = obj_material.emission[1]; material.emissiveColor.z = obj_material.emission[2]; material.emissiveColor.w = max(obj_material.emission[0], max(obj_material.emission[1], obj_material.emission[2])); material.refractionIndex = obj_material.ior; material.metalness = obj_material.metallic; material.normalMapName = obj_material.normal_texname; material.surfaceMapName = obj_material.specular_texname; material.roughness = obj_material.roughness; if (material.normalMapName.empty()) { material.normalMapName = obj_material.bump_texname; } if (material.surfaceMapName.empty()) { material.surfaceMapName = obj_material.specular_highlight_texname; } if (!material.surfaceMapName.empty()) { material.surfaceMap = (Texture*)wiResourceManager::GetGlobal().add(directory + material.surfaceMapName); } if (!material.baseColorMapName.empty()) { material.baseColorMap = (Texture*)wiResourceManager::GetGlobal().add(directory + material.baseColorMapName); } if (!material.normalMapName.empty()) { material.normalMap = (Texture*)wiResourceManager::GetGlobal().add(directory + material.normalMapName); } if (!material.displacementMapName.empty()) { material.displacementMap = (Texture*)wiResourceManager::GetGlobal().add(directory + material.displacementMapName); } materialLibrary.push_back(materialEntity); // for subset-indexing... } if (materialLibrary.empty()) { // Create default material if nothing was found: Entity materialEntity = scene.Entity_CreateMaterial("OBJImport_defaultMaterial"); MaterialComponent& material = *scene.materials.GetComponent(materialEntity); materialLibrary.push_back(materialEntity); // for subset-indexing... } // Load objects, meshes: for (auto& shape : obj_shapes) { Entity objectEntity = scene.Entity_CreateObject(shape.name); Entity meshEntity = scene.Entity_CreateMesh(shape.name + "_mesh"); ObjectComponent& object = *scene.objects.GetComponent(objectEntity); MeshComponent& mesh = *scene.meshes.GetComponent(meshEntity); object.meshID = meshEntity; unordered_map<int, int> registered_materialIndices = {}; unordered_map<size_t, uint32_t> uniqueVertices = {}; for (size_t i = 0; i < shape.mesh.indices.size(); i += 3) { tinyobj::index_t reordered_indices[] = { shape.mesh.indices[i + 0], shape.mesh.indices[i + 1], shape.mesh.indices[i + 2], }; // todo: option param would be better bool flipCulling = false; if (flipCulling) { reordered_indices[1] = shape.mesh.indices[i + 2]; reordered_indices[2] = shape.mesh.indices[i + 1]; } for (auto& index : reordered_indices) { XMFLOAT3 pos = XMFLOAT3( obj_attrib.vertices[index.vertex_index * 3 + 0], obj_attrib.vertices[index.vertex_index * 3 + 1], obj_attrib.vertices[index.vertex_index * 3 + 2] ); XMFLOAT3 nor = XMFLOAT3(0, 0, 0); if (!obj_attrib.normals.empty()) { nor = XMFLOAT3( obj_attrib.normals[index.normal_index * 3 + 0], obj_attrib.normals[index.normal_index * 3 + 1], obj_attrib.normals[index.normal_index * 3 + 2] ); } XMFLOAT2 tex = XMFLOAT2(0, 0); if (index.texcoord_index >= 0 && !obj_attrib.texcoords.empty()) { tex = XMFLOAT2( obj_attrib.texcoords[index.texcoord_index * 2 + 0], 1 - obj_attrib.texcoords[index.texcoord_index * 2 + 1] ); } int materialIndex = max(0, shape.mesh.material_ids[i / 3]); // this indexes the material library if (registered_materialIndices.count(materialIndex) == 0) { registered_materialIndices[materialIndex] = (int)mesh.subsets.size(); mesh.subsets.push_back(MeshComponent::MeshSubset()); mesh.subsets.back().materialID = materialLibrary[materialIndex]; mesh.subsets.back().indexOffset = (uint32_t)mesh.indices.size(); } if (transform_to_LH) { pos.z *= -1; nor.z *= -1; } // eliminate duplicate vertices by means of hashing: size_t vertexHash = 0; wiHelper::hash_combine(vertexHash, index.vertex_index); wiHelper::hash_combine(vertexHash, index.normal_index); wiHelper::hash_combine(vertexHash, index.texcoord_index); wiHelper::hash_combine(vertexHash, materialIndex); if (uniqueVertices.count(vertexHash) == 0) { uniqueVertices[vertexHash] = (uint32_t)mesh.vertex_positions.size(); mesh.vertex_positions.push_back(pos); mesh.vertex_normals.push_back(nor); mesh.vertex_uvset_0.push_back(tex); } mesh.indices.push_back(uniqueVertices[vertexHash]); mesh.subsets.back().indexCount++; } } mesh.CreateRenderData(); } scene.Update(0); } else { wiHelper::messageBox("OBJ import failed! Check backlog for errors!", "Error!"); } }
[ "turanszkij@gmail.com" ]
turanszkij@gmail.com
182c5bfdb1b4533b26550e71052db6319c3530e3
dfdaaed3ef6a1dba53b5262cf714e0aa1a5e4b0a
/src/util/TextureManager.h
975b6f7d50d64c0f93414e1f4775a3e9076f9a31
[]
no_license
CyberSys/geck-map-editor
2da8faf7059568441feeda5620208a4ed5640b92
a59e846ee8b50924854fc75613bdc8232628aa3f
refs/heads/master
2023-06-07T13:15:41.383269
2021-07-14T15:51:45
2021-07-14T15:51:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
634
h
#pragma once #include <memory> #include <string> #include <unordered_map> #include <SFML/Graphics.hpp> namespace geck { class TextureManager { private: std::string _dataPath = ""; std::unordered_map<std::string, std::unique_ptr<sf::Texture>> _resources; std::unique_ptr<sf::Texture> loadTextureFRM(const std::string& filename, uint32_t orientation = 0); public: bool exists(const std::string& filename); void insert(const std::string& filename, uint32_t orientation = 0); const sf::Texture& get(const std::string& filename) const; void setDataPath(const std::string& path); }; } // namespace geck
[ "jsimek.cz@gmail.com" ]
jsimek.cz@gmail.com
9e021c99ba69bfc7269b40665a857d5269c7009c
88236b634db839bd39d4d4a5a045baf9cebeaa6d
/software/voerUit/voerUit.ino
eefc347f7887630dd4cbd06b51e43782269488e4
[]
no_license
TeamBartje/ArduinoProject
229132b57dfca8f9043af10ead78358b9320178e
795a28ba737aa3914ab27f30fbc86a65d2035023
refs/heads/master
2021-09-13T19:16:57.614593
2018-05-03T11:05:47
2018-05-03T11:05:47
109,822,383
0
0
null
null
null
null
UTF-8
C++
false
false
335
ino
#include <Motor.h> Motor motor; int nutijd=0; int previoustijd; int duration; int i=0; void setup() { Serial.begin(9600); } void loop() { previoustijd=nutijd; nutijd=millis(); duration=nutijd-previoustijd; if(i==50){ Serial.println(duration); } i++; motor.bepaalPID(); }
[ "32935830+allemanm@users.noreply.github.com" ]
32935830+allemanm@users.noreply.github.com
b84af3189c254d332601096a06da50a4d8dcc16f
05dd6c56b0c3e36c3230a620ce63b9b62e93ba8e
/Task/09/Homework9-3.cpp
981c6866b47578b491258d6ab3621d2ab7c3b2c3
[]
no_license
jckling/Learn-C
3b37d819ff9c40c79991a07dfcbe809e380a47c2
56d8c8a47ccb371d627cc6ff39ca5fda66496316
refs/heads/master
2021-01-01T04:03:50.851823
2019-07-07T06:07:05
2019-07-07T06:07:05
97,115,103
3
1
null
null
null
null
UTF-8
C++
false
false
765
cpp
#include <stdio.h> int main() { int *pmax, *pmin; int data[10], temp, i, n; // printf("enter n:"); scanf("%d", &n); // printf("enter %d data:",n); for (i = 0; i < n; i++) scanf("%d", &data[i]); printf("orgin:"); for (i = 0; i < n; i++) printf("%4d", data[i]); printf("\n"); pmin = pmax = data; for (i = 1; i < n; i++) { if (data[i] > *pmax) pmax = &data[i]; } for (i = 1; i < n; i++) { if (data[i] < *pmin) pmin = &data[i]; } printf("max=%d", *pmax); printf("\n"); printf("min=%d", *pmin); printf("\n"); int x; x = data[0]; data[0] = *pmax; *pmax = x; if (*pmin != data[0]) { x = data[n - 1]; data[n - 1] = *pmin; *pmin = x; } printf("sorted:"); for (i = 0; i < n; i++) printf("%4d", data[i]); printf("\n"); }
[ "jckling@163.com" ]
jckling@163.com
4fb727d4a455874e406b6a43113f136c975dc7ca
36183993b144b873d4d53e7b0f0dfebedcb77730
/GameDevelopment/AI Game Programming Wisdom/SourceCode/11 Learning/04 Mommersteeg/Penny/StdAfx.cpp
21b512bac8db3cf8f096dea0a0d72fffd27affc0
[]
no_license
alecnunn/bookresources
b95bf62dda3eb9b0ba0fb4e56025c5c7b6d605c0
4562f6430af5afffde790c42d0f3a33176d8003b
refs/heads/master
2020-04-12T22:28:54.275703
2018-12-22T09:00:31
2018-12-22T09:00:31
162,790,540
20
14
null
null
null
null
UTF-8
C++
false
false
207
cpp
// stdafx.cpp : source file that includes just the standard includes // PennyMatching.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.h"
[ "alec.nunn@gmail.com" ]
alec.nunn@gmail.com
52d3a854a280aa9cdd7807488fabaddb0869d5f1
5c9d497a4db29e6a5a995ce1d0c77d2a53b6f661
/hola/aes.cpp
e57bcf50cf131dc34eea5d5a8449861f5a0fd680
[]
no_license
aurea1123/Git
67179876f15d9b5b69433bf21764e627c5af3025
0e7ab551999a3060cb501120abbf8499e57b01d7
refs/heads/master
2021-04-29T14:29:03.505030
2018-02-16T23:05:46
2018-02-16T23:05:46
121,774,908
1
0
null
null
null
null
UTF-8
C++
false
false
16,283
cpp
/* * aes256.cpp * * Copyright (c) 2014, Danilo Treffiletti <urban82@gmail.com> * All rights reserved. * * This file is part of Aes256. * * Aes256 is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation, either version 2.1 * of the License, or (at your option) any later version. * * Aes256 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with Aes256. * If not, see <http://www.gnu.org/licenses/>. */ #include "aes.hpp" #include <iostream> #include <stdlib.h> #define FE(x) (((x) << 1) ^ ((((x)>>7) & 1) * 0x1b)) #define FD(x) (((x) >> 1) ^ (((x) & 1) ? 0x8d : 0)) #define KEY_SIZE 32 #define NUM_ROUNDS 14 unsigned char rj_xtime(unsigned char x); const unsigned char sbox[256] = { 0x63, 0x7c, 0x77, 0x7b, 0xf2, 0x6b, 0x6f, 0xc5, 0x30, 0x01, 0x67, 0x2b, 0xfe, 0xd7, 0xab, 0x76, 0xca, 0x82, 0xc9, 0x7d, 0xfa, 0x59, 0x47, 0xf0, 0xad, 0xd4, 0xa2, 0xaf, 0x9c, 0xa4, 0x72, 0xc0, 0xb7, 0xfd, 0x93, 0x26, 0x36, 0x3f, 0xf7, 0xcc, 0x34, 0xa5, 0xe5, 0xf1, 0x71, 0xd8, 0x31, 0x15, 0x04, 0xc7, 0x23, 0xc3, 0x18, 0x96, 0x05, 0x9a, 0x07, 0x12, 0x80, 0xe2, 0xeb, 0x27, 0xb2, 0x75, 0x09, 0x83, 0x2c, 0x1a, 0x1b, 0x6e, 0x5a, 0xa0, 0x52, 0x3b, 0xd6, 0xb3, 0x29, 0xe3, 0x2f, 0x84, 0x53, 0xd1, 0x00, 0xed, 0x20, 0xfc, 0xb1, 0x5b, 0x6a, 0xcb, 0xbe, 0x39, 0x4a, 0x4c, 0x58, 0xcf, 0xd0, 0xef, 0xaa, 0xfb, 0x43, 0x4d, 0x33, 0x85, 0x45, 0xf9, 0x02, 0x7f, 0x50, 0x3c, 0x9f, 0xa8, 0x51, 0xa3, 0x40, 0x8f, 0x92, 0x9d, 0x38, 0xf5, 0xbc, 0xb6, 0xda, 0x21, 0x10, 0xff, 0xf3, 0xd2, 0xcd, 0x0c, 0x13, 0xec, 0x5f, 0x97, 0x44, 0x17, 0xc4, 0xa7, 0x7e, 0x3d, 0x64, 0x5d, 0x19, 0x73, 0x60, 0x81, 0x4f, 0xdc, 0x22, 0x2a, 0x90, 0x88, 0x46, 0xee, 0xb8, 0x14, 0xde, 0x5e, 0x0b, 0xdb, 0xe0, 0x32, 0x3a, 0x0a, 0x49, 0x06, 0x24, 0x5c, 0xc2, 0xd3, 0xac, 0x62, 0x91, 0x95, 0xe4, 0x79, 0xe7, 0xc8, 0x37, 0x6d, 0x8d, 0xd5, 0x4e, 0xa9, 0x6c, 0x56, 0xf4, 0xea, 0x65, 0x7a, 0xae, 0x08, 0xba, 0x78, 0x25, 0x2e, 0x1c, 0xa6, 0xb4, 0xc6, 0xe8, 0xdd, 0x74, 0x1f, 0x4b, 0xbd, 0x8b, 0x8a, 0x70, 0x3e, 0xb5, 0x66, 0x48, 0x03, 0xf6, 0x0e, 0x61, 0x35, 0x57, 0xb9, 0x86, 0xc1, 0x1d, 0x9e, 0xe1, 0xf8, 0x98, 0x11, 0x69, 0xd9, 0x8e, 0x94, 0x9b, 0x1e, 0x87, 0xe9, 0xce, 0x55, 0x28, 0xdf, 0x8c, 0xa1, 0x89, 0x0d, 0xbf, 0xe6, 0x42, 0x68, 0x41, 0x99, 0x2d, 0x0f, 0xb0, 0x54, 0xbb, 0x16 }; const unsigned char sboxinv[256] = { 0x52, 0x09, 0x6a, 0xd5, 0x30, 0x36, 0xa5, 0x38, 0xbf, 0x40, 0xa3, 0x9e, 0x81, 0xf3, 0xd7, 0xfb, 0x7c, 0xe3, 0x39, 0x82, 0x9b, 0x2f, 0xff, 0x87, 0x34, 0x8e, 0x43, 0x44, 0xc4, 0xde, 0xe9, 0xcb, 0x54, 0x7b, 0x94, 0x32, 0xa6, 0xc2, 0x23, 0x3d, 0xee, 0x4c, 0x95, 0x0b, 0x42, 0xfa, 0xc3, 0x4e, 0x08, 0x2e, 0xa1, 0x66, 0x28, 0xd9, 0x24, 0xb2, 0x76, 0x5b, 0xa2, 0x49, 0x6d, 0x8b, 0xd1, 0x25, 0x72, 0xf8, 0xf6, 0x64, 0x86, 0x68, 0x98, 0x16, 0xd4, 0xa4, 0x5c, 0xcc, 0x5d, 0x65, 0xb6, 0x92, 0x6c, 0x70, 0x48, 0x50, 0xfd, 0xed, 0xb9, 0xda, 0x5e, 0x15, 0x46, 0x57, 0xa7, 0x8d, 0x9d, 0x84, 0x90, 0xd8, 0xab, 0x00, 0x8c, 0xbc, 0xd3, 0x0a, 0xf7, 0xe4, 0x58, 0x05, 0xb8, 0xb3, 0x45, 0x06, 0xd0, 0x2c, 0x1e, 0x8f, 0xca, 0x3f, 0x0f, 0x02, 0xc1, 0xaf, 0xbd, 0x03, 0x01, 0x13, 0x8a, 0x6b, 0x3a, 0x91, 0x11, 0x41, 0x4f, 0x67, 0xdc, 0xea, 0x97, 0xf2, 0xcf, 0xce, 0xf0, 0xb4, 0xe6, 0x73, 0x96, 0xac, 0x74, 0x22, 0xe7, 0xad, 0x35, 0x85, 0xe2, 0xf9, 0x37, 0xe8, 0x1c, 0x75, 0xdf, 0x6e, 0x47, 0xf1, 0x1a, 0x71, 0x1d, 0x29, 0xc5, 0x89, 0x6f, 0xb7, 0x62, 0x0e, 0xaa, 0x18, 0xbe, 0x1b, 0xfc, 0x56, 0x3e, 0x4b, 0xc6, 0xd2, 0x79, 0x20, 0x9a, 0xdb, 0xc0, 0xfe, 0x78, 0xcd, 0x5a, 0xf4, 0x1f, 0xdd, 0xa8, 0x33, 0x88, 0x07, 0xc7, 0x31, 0xb1, 0x12, 0x10, 0x59, 0x27, 0x80, 0xec, 0x5f, 0x60, 0x51, 0x7f, 0xa9, 0x19, 0xb5, 0x4a, 0x0d, 0x2d, 0xe5, 0x7a, 0x9f, 0x93, 0xc9, 0x9c, 0xef, 0xa0, 0xe0, 0x3b, 0x4d, 0xae, 0x2a, 0xf5, 0xb0, 0xc8, 0xeb, 0xbb, 0x3c, 0x83, 0x53, 0x99, 0x61, 0x17, 0x2b, 0x04, 0x7e, 0xba, 0x77, 0xd6, 0x26, 0xe1, 0x69, 0x14, 0x63, 0x55, 0x21, 0x0c, 0x7d }; Aes256::Aes256(const ByteArray& key) : m_key(ByteArray(key.size() > KEY_SIZE ? KEY_SIZE : key.size(), 0)) , m_salt(ByteArray(KEY_SIZE - m_key.size(), 0)) , m_rkey(ByteArray(KEY_SIZE, 0)) , m_buffer_pos(0) , m_remainingLength(0) , m_decryptInitialized(false) { for(ByteArray::size_type i = 0; i < m_key.size(); ++i) m_key[i] = key[i]; } Aes256::~Aes256() {} ByteArray::size_type Aes256::encrypt(const ByteArray& key, const ByteArray& plain, ByteArray& encrypted) { Aes256 aes(key); aes.encrypt_start(plain.size(), encrypted); aes.encrypt_continue(plain, encrypted); aes.encrypt_end(encrypted); return encrypted.size(); } ByteArray::size_type Aes256::encrypt(const ByteArray& key, const unsigned char* plain, const ByteArray::size_type plain_length, ByteArray& encrypted) { Aes256 aes(key); aes.encrypt_start(plain_length, encrypted); aes.encrypt_continue(plain, plain_length, encrypted); aes.encrypt_end(encrypted); return encrypted.size(); } ByteArray::size_type Aes256::decrypt(const ByteArray& key, const ByteArray& encrypted, ByteArray& plain) { Aes256 aes(key); aes.decrypt_start(encrypted.size()); aes.decrypt_continue(encrypted, plain); aes.decrypt_end(plain); return plain.size(); } ByteArray::size_type Aes256::decrypt(const ByteArray& key, const unsigned char* encrypted, const ByteArray::size_type encrypted_length, ByteArray& plain) { Aes256 aes(key); aes.decrypt_start(encrypted_length); aes.decrypt_continue(encrypted, encrypted_length, plain); aes.decrypt_end(plain); return plain.size(); } ByteArray::size_type Aes256::encrypt_start(const ByteArray::size_type plain_length, ByteArray& encrypted) { //tengo que desengranar todo m_remainingLength = plain_length; // Generate salt ByteArray::iterator it = m_salt.begin(), itEnd = m_salt.end(); while (it != itEnd) *(it++) = (rand() & 0xFF); // Calculate padding ByteArray::size_type padding = 0; if (m_remainingLength % BLOCK_SIZE != 0) padding = (BLOCK_SIZE - (m_remainingLength % BLOCK_SIZE)); m_remainingLength += padding; // Add salt encrypted.insert(encrypted.end(), m_salt.begin(), m_salt.end()); m_remainingLength += m_salt.size(); // Add 1 bytes for padding size encrypted.push_back(padding & 0xFF); ++m_remainingLength; // Reset buffer m_buffer_pos = 0; return encrypted.size(); } ByteArray::size_type Aes256::encrypt_continue(const ByteArray& plain, ByteArray& encrypted) { ByteArray::const_iterator it = plain.begin(), itEnd = plain.end(); while(it != itEnd) { m_buffer[m_buffer_pos++] = *(it++); check_and_encrypt_buffer(encrypted); } return encrypted.size(); } ByteArray::size_type Aes256::encrypt_continue(const unsigned char* plain, const ByteArray::size_type plain_length, ByteArray& encrypted) { ByteArray::size_type i = 0; while(i < plain_length) { m_buffer[m_buffer_pos++] = plain[i++]; check_and_encrypt_buffer(encrypted); } return encrypted.size(); } void Aes256::check_and_encrypt_buffer(ByteArray& encrypted) { if (m_buffer_pos == BLOCK_SIZE) { encrypt(m_buffer); for (m_buffer_pos = 0; m_buffer_pos < BLOCK_SIZE; ++m_buffer_pos) { encrypted.push_back(m_buffer[m_buffer_pos]); --m_remainingLength; } m_buffer_pos = 0; } } ByteArray::size_type Aes256::encrypt_end(ByteArray& encrypted) { if (m_buffer_pos > 0) { while (m_buffer_pos < BLOCK_SIZE) m_buffer[m_buffer_pos++] = 0; encrypt(m_buffer); for (m_buffer_pos = 0; m_buffer_pos < BLOCK_SIZE; ++m_buffer_pos) { encrypted.push_back(m_buffer[m_buffer_pos]); --m_remainingLength; } m_buffer_pos = 0; } return encrypted.size(); } void Aes256::encrypt(unsigned char* buffer) { unsigned char i, rcon; copy_key(); add_round_key(buffer, 0); for(i = 1, rcon = 1; i < NUM_ROUNDS; ++i) { sub_bytes(buffer); shift_rows(buffer); mix_columns(buffer); if( !(i & 1) ) expand_enc_key(&rcon); add_round_key(buffer, i); } sub_bytes(buffer); shift_rows(buffer); expand_enc_key(&rcon); add_round_key(buffer, i); } ByteArray::size_type Aes256::decrypt_start(const ByteArray::size_type encrypted_length) { register unsigned char j; m_remainingLength = encrypted_length; // Reset salt for(j = 0; j < m_salt.size(); ++j) m_salt[j] = 0; m_remainingLength -= m_salt.size(); // Reset buffer m_buffer_pos = 0; m_decryptInitialized = false; return m_remainingLength; } ByteArray::size_type Aes256::decrypt_continue(const ByteArray& encrypted, ByteArray& plain) { ByteArray::const_iterator it = encrypted.begin(), itEnd = encrypted.end(); while(it != itEnd) { m_buffer[m_buffer_pos++] = *(it++); check_and_decrypt_buffer(plain); } return plain.size(); } ByteArray::size_type Aes256::decrypt_continue(const unsigned char* encrypted, const ByteArray::size_type encrypted_length, ByteArray& plain) { ByteArray::size_type i = 0; while(i < encrypted_length) { m_buffer[m_buffer_pos++] = encrypted[i++]; check_and_decrypt_buffer(plain); } return plain.size(); } void Aes256::check_and_decrypt_buffer(ByteArray& plain) { if (!m_decryptInitialized && m_buffer_pos == m_salt.size() + 1) { register unsigned char j; ByteArray::size_type padding; // Get salt for(j = 0; j < m_salt.size(); ++j) m_salt[j] = m_buffer[j]; // Get padding padding = (m_buffer[j] & 0xFF); m_remainingLength -= padding + 1; // Start decrypting m_buffer_pos = 0; m_decryptInitialized = true; } else if (m_decryptInitialized && m_buffer_pos == BLOCK_SIZE) { decrypt(m_buffer); for (m_buffer_pos = 0; m_buffer_pos < BLOCK_SIZE; ++m_buffer_pos) if (m_remainingLength > 0) { plain.push_back(m_buffer[m_buffer_pos]); --m_remainingLength; } m_buffer_pos = 0; } } ByteArray::size_type Aes256::decrypt_end(ByteArray& plain) { return plain.size(); } void Aes256::decrypt(unsigned char* buffer) { unsigned char i, rcon = 1; copy_key(); for (i = NUM_ROUNDS / 2; i > 0; --i) expand_enc_key(&rcon); add_round_key(buffer, NUM_ROUNDS); shift_rows_inv(buffer); sub_bytes_inv(buffer); for (i = NUM_ROUNDS, rcon = 0x80; --i;) { if( (i & 1) ) expand_dec_key(&rcon); add_round_key(buffer, i); mix_columns_inv(buffer); shift_rows_inv(buffer); sub_bytes_inv(buffer); } add_round_key(buffer, i); } void Aes256::expand_enc_key(unsigned char* rc) { register unsigned char i; m_rkey[0] = m_rkey[0] ^ sbox[m_rkey[29]] ^ (*rc); m_rkey[1] = m_rkey[1] ^ sbox[m_rkey[30]]; m_rkey[2] = m_rkey[2] ^ sbox[m_rkey[31]]; m_rkey[3] = m_rkey[3] ^ sbox[m_rkey[28]]; *rc = FE(*rc); for(i = 4; i < 16; i += 4) { m_rkey[i] = m_rkey[i] ^ m_rkey[i-4]; m_rkey[i+1] = m_rkey[i+1] ^ m_rkey[i-3]; m_rkey[i+2] = m_rkey[i+2] ^ m_rkey[i-2]; m_rkey[i+3] = m_rkey[i+3] ^ m_rkey[i-1]; } m_rkey[16] = m_rkey[16] ^ sbox[m_rkey[12]]; m_rkey[17] = m_rkey[17] ^ sbox[m_rkey[13]]; m_rkey[18] = m_rkey[18] ^ sbox[m_rkey[14]]; m_rkey[19] = m_rkey[19] ^ sbox[m_rkey[15]]; for(i = 20; i < 32; i += 4) { m_rkey[i] = m_rkey[i] ^ m_rkey[i-4]; m_rkey[i+1] = m_rkey[i+1] ^ m_rkey[i-3]; m_rkey[i+2] = m_rkey[i+2] ^ m_rkey[i-2]; m_rkey[i+3] = m_rkey[i+3] ^ m_rkey[i-1]; } } void Aes256::expand_dec_key(unsigned char* rc) { unsigned char i; for(i = 28; i > 16; i -= 4) { m_rkey[i+0] = m_rkey[i+0] ^ m_rkey[i-4]; m_rkey[i+1] = m_rkey[i+1] ^ m_rkey[i-3]; m_rkey[i+2] = m_rkey[i+2] ^ m_rkey[i-2]; m_rkey[i+3] = m_rkey[i+3] ^ m_rkey[i-1]; } m_rkey[16] = m_rkey[16] ^ sbox[m_rkey[12]]; m_rkey[17] = m_rkey[17] ^ sbox[m_rkey[13]]; m_rkey[18] = m_rkey[18] ^ sbox[m_rkey[14]]; m_rkey[19] = m_rkey[19] ^ sbox[m_rkey[15]]; for(i = 12; i > 0; i -= 4) { m_rkey[i+0] = m_rkey[i+0] ^ m_rkey[i-4]; m_rkey[i+1] = m_rkey[i+1] ^ m_rkey[i-3]; m_rkey[i+2] = m_rkey[i+2] ^ m_rkey[i-2]; m_rkey[i+3] = m_rkey[i+3] ^ m_rkey[i-1]; } *rc = FD(*rc); m_rkey[0] = m_rkey[0] ^ sbox[m_rkey[29]] ^ (*rc); m_rkey[1] = m_rkey[1] ^ sbox[m_rkey[30]]; m_rkey[2] = m_rkey[2] ^ sbox[m_rkey[31]]; m_rkey[3] = m_rkey[3] ^ sbox[m_rkey[28]]; } void Aes256::sub_bytes(unsigned char* buffer) { register unsigned char i = KEY_SIZE / 2; while (i--) buffer[i] = sbox[buffer[i]]; } void Aes256::sub_bytes_inv(unsigned char* buffer) { register unsigned char i = KEY_SIZE / 2; while (i--) buffer[i] = sboxinv[buffer[i]]; } void Aes256::copy_key() { ByteArray::size_type i; for (i = 0; i < m_key.size(); ++i) m_rkey[i] = m_key[i]; for (i = 0; i < m_salt.size(); ++i) m_rkey[i + m_key.size()] = m_salt[i]; } void Aes256::add_round_key(unsigned char* buffer, const unsigned char round) { register unsigned char i = KEY_SIZE / 2; while (i--) buffer[i] ^= m_rkey[ (round & 1) ? i + 16 : i ]; } void Aes256::shift_rows(unsigned char* buffer) { register unsigned char i, j, k, l; /* to make it potentially parallelable :) */ i = buffer[1]; buffer[1] = buffer[5]; buffer[5] = buffer[9]; buffer[9] = buffer[13]; buffer[13] = i; j = buffer[10]; buffer[10] = buffer[2]; buffer[2] = j; k = buffer[3]; buffer[3] = buffer[15]; buffer[15] = buffer[11]; buffer[11] = buffer[7]; buffer[7] = k; l = buffer[14]; buffer[14] = buffer[6]; buffer[6] = l; } void Aes256::shift_rows_inv(unsigned char* buffer) { register unsigned char i, j, k, l; /* same as above :) */ i = buffer[1]; buffer[1] = buffer[13]; buffer[13] = buffer[9]; buffer[9] = buffer[5]; buffer[5] = i; j = buffer[2]; buffer[2] = buffer[10]; buffer[10] = j; k = buffer[3]; buffer[3] = buffer[7]; buffer[7] = buffer[11]; buffer[11] = buffer[15]; buffer[15] = k; l = buffer[6]; buffer[6] = buffer[14]; buffer[14] = l; } void Aes256::mix_columns(unsigned char* buffer) { register unsigned char i, a, b, c, d, e; for (i = 0; i < 16; i += 4) { a = buffer[i]; b = buffer[i + 1]; c = buffer[i + 2]; d = buffer[i + 3]; e = a ^ b ^ c ^ d; buffer[i ] ^= e ^ rj_xtime(a^b); buffer[i + 1] ^= e ^ rj_xtime(b^c); buffer[i + 2] ^= e ^ rj_xtime(c^d); buffer[i + 3] ^= e ^ rj_xtime(d^a); } } void Aes256::mix_columns_inv(unsigned char* buffer) { register unsigned char i, a, b, c, d, e, x, y, z; for (i = 0; i < 16; i += 4) { a = buffer[i]; b = buffer[i + 1]; c = buffer[i + 2]; d = buffer[i + 3]; e = a ^ b ^ c ^ d; z = rj_xtime(e); x = e ^ rj_xtime(rj_xtime(z^a^c)); y = e ^ rj_xtime(rj_xtime(z^b^d)); buffer[i ] ^= x ^ rj_xtime(a^b); buffer[i + 1] ^= y ^ rj_xtime(b^c); buffer[i + 2] ^= x ^ rj_xtime(c^d); buffer[i + 3] ^= y ^ rj_xtime(d^a); } } inline unsigned char rj_xtime(unsigned char x) { return (x & 0x80) ? ((x << 1) ^ 0x1b) : (x << 1); }
[ "noreply@github.com" ]
aurea1123.noreply@github.com
7a806d15834f1f00a5eaba99e6a2db29dd2590a2
a5406087be04d0946cd9ece86af080aa893dfdd1
/socket/udp/cli.cc
fab11cbeceeeeea6b79bb4a21630af1f527ebf50
[]
no_license
lyyyyc/test
86de55b1101c54e5d6d53bef506fac4777d5fc0f
bf53de9a9ee1e5e023e17d9c59511e34015bd8f5
refs/heads/master
2022-12-10T02:44:18.389565
2020-08-31T07:38:03
2020-08-31T07:38:03
286,398,678
0
0
null
null
null
null
UTF-8
C++
false
false
515
cc
#include "udp.hpp" #include <sstream> int main(int argc, char *argv[]){ if(argc != 3){ std::cerr<<"./udp_cli ip port"<<std::endl; return -1; } uint16_t port; std::string ip = argv[1]; std::stringstream tmp; tmp << argv[2]; tmp >> port; UdpSocket sock; CHECK_RET(sock.Socket()); while(1){ std::string buf; std::cin>>buf; sock.Send(buf, ip, port); buf.clear(); sock.Recv(buf, ip, port); std::cout<<"server say:"<<buf<<std::endl; } sock.Close(); return 0; }
[ "806223557@qq.com" ]
806223557@qq.com
059eed5741073c322e2d08e716574b0e0cd282fd
4373c4a1bf61ded162a0a9d93512e0094798f2b5
/Assignment5/Assignment5.cpp
c39c16567a7fa79abf6f261ff2f36ea54c9dfaa8
[]
no_license
HrushiMakode/DSF
a69e81fb06f774665b82a3defee09321242117a7
1b58d74a8d5968521cdeb0ac640b05befa598d7c
refs/heads/master
2020-12-21T05:29:47.904467
2020-03-20T20:47:05
2020-03-20T20:47:05
236,323,766
0
0
null
null
null
null
UTF-8
C++
false
false
1,771
cpp
//============================================================================ // Name : Assignment5.cpp // Author : Hrushikesh Makode // Version : // Copyright : Your copyright notice // Description : Hello World in C++, Ansi-style //============================================================================ #include <iostream> #include "btree.cpp" #include "btree.h" using namespace std; int main() { btree<string>b; string x; int ch; //CHOICE do{ cout<<"\nMenu\n1:Insert\n2:Display\n3:Delete\n4:Search\n5:Mirror\n6:Level order display\n7:Exit"; cout<<"\nEnter choice\n"; cin>>ch; switch(ch) { case 1: cout<<"Enter element to insert"; cin>>x; b.insert(x); //b.insertNonRecursive(x); cout<<"Tree after insertion : "; cout<<"\nInorder Display : "; b.display(); cout<<"\nPreorder Display : "; b.displayPreorder(); cout<<"\nPostorder Display : "; b.displayPostorder(); cout<<"\nLevel Order Display is : "; b.LevelOrderDisplay(); break; case 2: cout<<"\nInorder Display : "; b.display(); cout<<"\nPreorder Display : "; b.displayPreorder(); cout<<"\nPostorder Display : "; b.displayPostorder(); cout<<"\nLevel Order Display is : "; b.LevelOrderDisplay(); break; case 3: cout<<"Enter element to delete"; cin>>x; b.del(x); //b.delNonRecursive(x); break; case 4: cout<<"Enter element to search"; cin>>x; //b.search(x); b.searchNonRecursive(x); break; case 5: //b.mirrorR(); b.MirrorNonRecursive(); break; case 6: cout<<"Level Order Display is : "; b.LevelOrderDisplay(); break; case 7: break; } }while(ch!=7); return 0; }
[ "makodehrushikesh@gmail.com" ]
makodehrushikesh@gmail.com
f02e3b53e307a3b3b21ed172e5066682e6032316
76859f325589b72fbb1c4bf8678505cf64a62334
/src/lib/physics2/vec3gen.hpp
481975961f55473915bee7dad948031de7e3e4e1
[]
no_license
yf885188/BigWorld-Engine-1.9.1
267d3d24c29e414308143d3b2440cd4255ec4557
e9d5a56739eb20c0c6973653a1342000e9f699be
refs/heads/master
2023-08-29T17:12:16.985405
2021-11-18T06:41:31
2021-11-18T06:41:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,659
hpp
/****************************************************************************** BigWorld Technology Copyright BigWorld Pty, Ltd. All Rights Reserved. Commercial in confidence. WARNING: This computer program is protected by copyright law and international treaties. Unauthorized use, reproduction or distribution of this program, or any portion of this program, may result in the imposition of civil and criminal penalties as provided by law. ******************************************************************************/ /** * @file */ #ifndef VECTOR3GEN_HPP #define VECTOR3GEN_HPP #include <math/vector3.hpp> /** * This class is the base class for classes used to generate random Vector3 * instances. */ class Vector3Generator { public: virtual ~Vector3Generator(); /// This method sets the input vector to a random value. virtual void generate(Vector3 & vec) const = 0; }; /** * This class is used to generate Vector3 instances at a fixed point. */ class PointV3Gen : public Vector3Generator { public: PointV3Gen(const Vector3 & point); virtual void generate(Vector3 & vec) const; protected: Vector3 point_; ///< Where the points are generated at. }; /** * This class is used to generate Vector3 instances randomly along a line. */ class LineV3Gen : public Vector3Generator { public: LineV3Gen(const Vector3 & start, const Vector3 & end); virtual void generate(Vector3 & vec) const; void setSource(const Vector3 & source); private: Vector3 start_; Vector3 dir_; }; /** * This class is used to generate Vector3 instances in a cylinder. */ class CylinderV3Gen : public Vector3Generator { public: CylinderV3Gen(const Vector3 & source, const Vector3 & target, float minRadius, float maxRadius); virtual void generate(Vector3 & vec) const; void setSource(const Vector3 & source); private: Vector3 source_; Vector3 dir_; float r1_; float r2_; Vector3 u_; Vector3 v_; }; /** * This class is used to generate Vector3 instances in a sphere. */ class SphereV3Gen : public Vector3Generator { public: SphereV3Gen(const Vector3 & centre, float maxRadius, float minRadius = 0.f); virtual void generate(Vector3 & vec) const; private: Vector3 centre_; float minRadius_; float maxRadius_; }; /** * This class is used to generate Vector3 instances in a box. */ class BoxV3Gen : public Vector3Generator { public: BoxV3Gen(const Vector3 & min, const Vector3 & max); virtual void generate(Vector3 & vec) const; Vector3 min_; ///< The minimum coordinate of the box. Vector3 max_; ///< The maximum coordinate of the box. private: }; #ifdef CODE_INLINE #include "vec3gen.ipp" #endif #endif
[ "terran.erre@mail.ru" ]
terran.erre@mail.ru
25dbd0610b905c93184fd37a5226f2738e635d8f
8d27a29c9414506a2023cb06113cb885bf7fc3ea
/dissector/dissectors/dissectoreth/dissectorudp.cpp
086155ab4004bd56f3338bbf441cb66b71201357
[]
no_license
Ghivern/MyShark
a5d9c7b9426146b81e26e8e96343481b9c5b49d7
97412d9920f3ff9d6b55e3d45f283971ee3ad3c5
refs/heads/master
2021-03-03T15:54:01.724182
2020-05-31T15:25:25
2020-05-31T15:25:25
245,971,326
1
0
null
null
null
null
UTF-8
C++
false
false
7,453
cpp
#include "dissectorudp.h" /* * bit 0: validate the udp checksum */ quint32 DissectorUdp::flags = 0x1; StreamRecorder DissectorUdp::streamRecorder; DissectorUdp::DissectorUdp() { } void DissectorUdp::Dissect(DissRes *dissRes, ProTree *proTree, Info *info){ udp_hdr *header = GetUdpHdr(dissRes,info==NULL?true:false); DissResEth *dissResEth = ((DissResEth*)dissRes); if(info == NULL){ dissResEth->SetSrcPort(GetUdpSrcPort(header)); dissResEth->SetDstPort(GetUdpDstPort(header)); //添加进流记录器 GetStreamRecorder().Add(dissResEth->GetStrIpSrc() ,dissResEth->GetStrIpDst() ,dissResEth->GetSrcPort() ,dissResEth->GetDstPort() ,dissResEth->GetNo()); }else{ proTree->AddItem("udp",UdpMsgSummery(dissResEth)); proTree->AddItem("udp",UdpMsgSourcePort(dissResEth),ProTree::level::NEW); proTree->AddItem("udp",UdpMsgDestinationPort(dissResEth)); proTree->AddItem("udp",UdpMsgLength(header)); UdpDealChecksum(proTree,dissRes); proTree->AddItem("udp",UdpMsgStreamIndex(dissResEth)); proTree->Pop(); } } //Get方法 udp_hdr* DissectorUdp::GetUdpHdr(DissRes *dissRes,bool first){ if(first) dissRes->AddToProtocolStackWithSE("udp",sizeof(udp_hdr)); udp_hdr *udp = (udp_hdr*)(dissRes->GetData() + dissRes->GetProStart("udp")); return udp; } ushort DissectorUdp::GetUdpDstPort(udp_hdr *header){ return ntohs(header->dport); } ushort DissectorUdp::GetUdpSrcPort(udp_hdr *header){ return ntohs(header->sport); } ushort DissectorUdp::GetUdpLength(udp_hdr *header){ return ntohs(header->tot_len); } ushort DissectorUdp::GetUdpCheckSum(udp_hdr *header){ return ntohs(header->check_sum); } QString DissectorUdp::GetUdpStrCheckSum(udp_hdr *header){ ushort checksum = GetUdpCheckSum(header); return QString::asprintf("0x%02x%02x" ,((uchar*)&checksum)[1] ,((uchar*)&checksum)[0] ); } //获取StreamRecorder StreamRecorder& DissectorUdp::GetStreamRecorder(){ return streamRecorder; } //Get方法,参数直接为DissRes*类型 ushort DissectorUdp::GetUdpDstPort(DissRes *dissRes){ return GetUdpDstPort(GetUdpHdr(dissRes)); } ushort DissectorUdp::GetUdpSrcPort(DissRes *dissRes){ return GetUdpSrcPort(GetUdpHdr(dissRes)); } //Flag方法 bool DissectorUdp::UdpFlagValidateChecksum(){ if(DissectorUdp::flags & VALIDATE_CHECKSUM) return true; else return false; } //Msg方法 QString DissectorUdp::UdpMsgSummery(DissResEth *dissResEth){ return QString::asprintf("User Datagram Protocol, Src Port : %ud, Dst Port : %ud" ,dissResEth->GetSrcPort() ,dissResEth->GetDstPort() ); } QString DissectorUdp::UdpMsgSourcePort(DissResEth *dissResEth){ return QString::asprintf("Source Port : %ud",dissResEth->GetSrcPort()); } QString DissectorUdp::UdpMsgDestinationPort(DissResEth *dissResEth){ return QString::asprintf("Destination Port : %ud",dissResEth->GetDstPort()); } QString DissectorUdp::UdpMsgLength(udp_hdr *header){ return QString::asprintf("Length : %ud",GetUdpLength(header)); } void DissectorUdp::UdpDealChecksum(ProTree *tree,DissRes *dissRes){ QString msg; udp_hdr *header = GetUdpHdr(dissRes); if(!UdpFlagValidateChecksum()){ //不验证checksum msg.append("Checksum : ").append(GetUdpStrCheckSum(header)).append(" [unverified]"); tree->AddItem("udp",msg); msg.clear(); msg.append("[Check status : unverified]"); tree->AddItem("udp",msg); }else{ quint16 cal_checksum = GetCalculateCheckSum(dissRes); if(cal_checksum == GetUdpCheckSum(header)){ //相等 msg.append("Checksum : ").append(GetUdpStrCheckSum(header)).append("[correct]"); tree->AddItem("udp",msg); msg.clear(); msg.append("[Calculated checksum : ") .append(GetStrCalculateCheckSum(cal_checksum)) .append("]"); tree->AddItem("udp",msg,ProTree::level::NEW); tree->Pop(); msg.clear(); msg.append("[Check status : Good]"); tree->AddItem("udp",msg,ProTree::level::NEW); }else{ msg.append("Checksum : ").append(GetUdpStrCheckSum(header)) .append(" incorrect, should be ") .append(GetStrCalculateCheckSum(cal_checksum)) .append( QString::asprintf(" (maybe caused by \"UDP checksum offload\"?") ); tree->AddItem("udp",msg); msg.clear(); msg.append("[Calculated checksum : ") .append(GetStrCalculateCheckSum(cal_checksum)) .append("]"); tree->AddItem("udp",msg,ProTree::level::NEW); tree->Pop(); msg.clear(); msg.append("[Checksum status : Bad]"); tree->AddItem("udp",msg); } } } QString DissectorUdp::UdpMsgStreamIndex(DissResEth *dissResEth){ qint64 streamIndex =GetStreamRecorder() .GetStreamIndex(dissResEth->GetStrSrc(),dissResEth->GetStrDst(),dissResEth->GetSrcPort(),dissResEth->GetDstPort()); return QString::asprintf("[Stream Index : %lld]",streamIndex); } //计算检验和 void DissectorUdp::GetInverseSum(quint16 *sum,quint16 num){ quint32 res = (quint32)*sum + (quint32)num; if(res > 0x0000ffff) *sum = (quint16)(res - 0x00010000 + 1); else *sum = (quint16)(res); } quint16 DissectorUdp::GetCalculateCheckSum(DissRes *dissRes){ DissResEth *dissResEth = ((DissResEth*)dissRes); udp_hdr *header = GetUdpHdr(dissRes); quint16 udpLen = GetUdpLength(header); quint16 res = 0; quint32 temp32; quint16* start =(quint16*)&temp32; /* 伪首部: 源IP(4) 目的IP(4) 0(1) 17(1) UDP长度(2)*/ temp32 = htonl(dissResEth->GetIpSrcAddress()); for(qint32 index = 0; index < 2; index++) GetInverseSum(&res,ntohs(start[index])); temp32 = htonl(dissResEth->GetIpDstAddress()); for(qint32 index = 0; index < 2; index++) GetInverseSum(&res,ntohs(start[index])); temp32 = htonl((0x00000011 << 16) | GetUdpLength(header)); for(qint32 index = 0; index < 2; index++) GetInverseSum(&res,ntohs(start[index])); start = (quint16*)GetUdpHdr(dissRes); for(qint32 index = 0; index < (qint32)udpLen/2; index++){ if(index != 3){ DissectorUdp::GetInverseSum(&res,ntohs(start[index])); } } if(udpLen%2!=0){ quint16 temp = ((uchar*)header)[udpLen-1]; GetInverseSum(&res,htons(temp)); } return ~res; } QString DissectorUdp::GetStrCalculateCheckSum(DissRes *dissRes){ quint16 checksum = GetCalculateCheckSum(dissRes); return QString::asprintf("0x%02x%02x" ,((uchar*)&checksum)[1] ,((uchar*)&checksum)[0] ); } QString DissectorUdp::GetStrCalculateCheckSum(quint16 checksum){ return QString::asprintf("0x%02x%02x" ,((uchar*)&checksum)[1] ,((uchar*)&checksum)[0] ); }
[ "ghivern@foxmail.com" ]
ghivern@foxmail.com
96c56f04f71296a5fcc2750f5ba3dc9c3534206c
a6fd363b13b9d9a94f3729710721f447f07b2f71
/Stage/MyMover.h
616210806bad69c06bdc1fdd9a0c8e427bec4edf
[]
no_license
sasanon/hig
1230d3259b536dd8012537f25be8806f14e30e89
5bbd4ae8209a8420516cd0c3d6d7a133825b291e
refs/heads/master
2021-01-20T12:03:41.078661
2014-05-17T06:45:16
2014-05-17T06:45:16
null
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
134
h
// 移動物体の拡張 class CMyMover : public CMover { public: CMyMover(CMoverList& list) : CMover(list) {} CVector PosNext; };
[ "sasa.milkcocoa@gmail.com" ]
sasa.milkcocoa@gmail.com
9d916ec77bb3592fb5b3cd3314c6941338596db8
59d26f54e985df3a0df505827b25da0c5ff586e8
/Tests/httpReq.cpp
b841516cc1d390cb02adba207b80649220f15c86
[]
no_license
minhaz1217/My-C-Journey
820f7b284e221eff2595611b2e86dc9e32f90278
3c8d998ede172e9855dc6bd02cb468d744a9cad6
refs/heads/master
2022-12-06T06:12:30.823678
2022-11-27T12:09:03
2022-11-27T12:09:03
160,788,252
2
1
null
null
null
null
UTF-8
C++
false
false
1,617
cpp
#include <string.h> #include <winsock2.h> #include <windows.h> #include <iostream> #include <vector> #include <locale> #include <sstream> using namespace std; #pragma comment(lib,"ws2_32.lib") int main( void ){ WSADATA wsaData; SOCKET Socket; SOCKADDR_IN SockAddr; int lineCount=0; int rowCount=0; struct hostent *host; locale local; char buffer[10000]; int i = 0 ; int nDataLength; string website_HTML; // website url string url = "www.google.com"; //HTTP GET string get_http = "GET / HTTP/1.1\r\nHost: " + url + "\r\nConnection: close\r\n\r\n"; if (WSAStartup(MAKEWORD(2,2), &wsaData) != 0){ cout << "WSAStartup failed.\n"; system("pause"); //return 1; } Socket=socket(AF_INET,SOCK_STREAM,IPPROTO_TCP); host = gethostbyname(url.c_str()); SockAddr.sin_port=htons(80); SockAddr.sin_family=AF_INET; SockAddr.sin_addr.s_addr = *((unsigned long*)host->h_addr); if(connect(Socket,(SOCKADDR*)(&SockAddr),sizeof(SockAddr)) != 0){ cout << "Could not connect"; system("pause"); //return 1; } // send GET / HTTP send(Socket,get_http.c_str(), strlen(get_http.c_str()),0 ); // recieve html while ((nDataLength = recv(Socket,buffer,10000,0)) > 0){ int i = 0; while (buffer[i] >= 32 || buffer[i] == '\n' || buffer[i] == '\r'){ website_HTML+=buffer[i]; i += 1; } } closesocket(Socket); WSACleanup(); // Display HTML source cout<<website_HTML; // pause cout<<"\n\nPress ANY key to close.\n\n"; cin.ignore(); cin.get(); return 0; }
[ "minhaz1217@gmail.com" ]
minhaz1217@gmail.com
ed5c251ecbc3843dd01069e8ba323fe2d35d5a90
37bebd58615bbcdaaa751285c86d59f82d4cb920
/Chapter11/BookEngine/Camera3D.cpp
f88b9c539f3ba91f2d812783a2a3de4a21a9f072
[ "MIT" ]
permissive
PacktPublishing/Mastering-Cpp-Game-Development
80333bfa7f53912944f0df8b540508df0bdaba33
30b187250727e27edc1d9c8394eb6985eb84c873
refs/heads/master
2023-02-08T01:10:56.284355
2023-01-30T08:40:18
2023-01-30T08:40:18
117,197,589
79
37
null
null
null
null
WINDOWS-1252
C++
false
false
2,746
cpp
/* Copyright (c) 2016 Michael "Mickey" MacDonald. 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 "Camera3D.h" #include <SDL/SDL.h> namespace BookEngine { Camera3D::Camera3D() { } Camera3D::~Camera3D() { } void Camera3D::Init(glm::vec3 cameraPosition, float horizontalAngle, float verticalAngle, float initialFoV) { m_position = cameraPosition; m_horizontalAngle = horizontalAngle; m_verticalAngle = verticalAngle; m_initialFoV = initialFoV; Update(); } void Camera3D::Update() { // Direction : Spherical coordinates to Cartesian coordinates conversion m_forward = glm::vec3( glm::cos(m_verticalAngle) * glm::sin(m_horizontalAngle), glm::sin(m_verticalAngle), glm::cos(m_verticalAngle) * glm::cos(m_horizontalAngle) ); // Right vector m_right = glm::vec3( sin(m_horizontalAngle - 3.14f / 2.0f), 0, cos(m_horizontalAngle - 3.14f / 2.0f) ); // Up vector m_up = glm::cross(m_right, m_forward); float FoV = m_initialFoV;// - 5 * glfwGetMouseWheel(); // Now GLFW 3 requires setting up a callback for this. It's a bit too complicated for this beginner's tutorial, so it's disabled instead. // Projection matrix : 45° Field of View, 4:3 ratio, display range : 0.1 unit <-> 100 units m_projection = glm::perspective(glm::radians(FoV), 4.0f / 3.0f, 0.1f, 100.0f); // Camera matrix m_view = glm::lookAt( m_position, // Camera is here m_position + m_forward, // and looks here : at the same position, plus "direction" m_up // Head is up (set to 0,-1,0 to look upside-down) ); m_MVP = m_projection * m_view * m_model; // Remember, matrix multiplication is the other way around } }
[ "mohdr@packtpub.com" ]
mohdr@packtpub.com
558f056bf7946b151966ec92076acb4aff810646
8fbc6b5463fb08f93cd3a71130519975ed7d76ac
/nicoPBRT/pbrt.h
3983eaab2cf13ec328f9e697a641b0a0de6fe5ca
[]
no_license
litonico/nicoPBRT
6817ea7dffeec6a85061d5bacf050fdd38e07e8d
07df7277c4a5db58ce50aa0fb9f98fc90c613675
refs/heads/master
2020-05-30T22:43:11.585832
2013-09-06T21:00:56
2013-09-06T21:00:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,574
h
// // pbrt.h // nicoPBRT // // Created by Lito Nicolai on 7/25/13. // Copyright (c) 2013 Lito Nicolai. All rights reserved. // #ifndef nicoPBRT_pbrt_h #define nicoPBRT_pbrt_h #include <string> #include <math.h> typedef RGBSpectrum Spectrum; //choose spectrum type //typedef SampledSpectrum Spectrum; // global inline functions inline float Lerp(float t, float v1, float v2) { // Linear Interpolation between pts v1 and v2 return (1.f - t)*v1 + t*v2; } inline float Clamp(float val, float low, float high) { if (val < low) return low; else if (val > high ) return high; else return val; } inline int Mod(int a, int divisor) { //works with negatives int n = int(a/divisor); a -= n*divisor; if (a < 0) a += divisor; return a; } inline float Radians (float deg) { return (M_PI/180.f) * deg; } inline float Degrees (float rad) { return (180.f/M_PI) * rad; } inline float Log2(float x) { static float invLog2 = 1.f/logf(2.f); return logf(x) *invLog2; } inline bool IsPowerOf2 (int v) { // Magic return (v & (v-1)) == 0; } #ifdef NDEBUG #define Assert(expr) ((void)0) #else #define Assert(expr) \ ((expr) ? (void)0 : \ Severe("Assertion \"%s\" failed in %s, line %d", \ #expr, __FILE__, __LINE__)) #endif //Constants #ifdef M_PI #undef M_PI #endif #define M_PI 3.14159265358979323846f #define INV_PI 0.31830988618379067154f #define INV_TWOPI 0.15915494309189533577f #define INV_FOURPI 0.07957747154594766788f #ifndef INFINITY #define INFINITY FLT_MAX // is this a good idea? #endif #endif
[ "nicolai@oxy.edu" ]
nicolai@oxy.edu
e12a86afb0aea7ca657855b079edb9d4260766a7
89b928c4bdb8e01051dc2698e9e9befe1ef8bca5
/d04/ex01/AWeapon.cpp
04753521355f2872a8e4a5bbcdb9316ea9dc39e8
[]
no_license
aalokhin/CPP
a3c3a1cbaad77cd33aac7740b5ee0bc3f6bf6f14
5b7d03d69ae66a4ec98526d59afa0ab49e3cdd1f
refs/heads/master
2020-04-15T06:15:37.126868
2019-01-31T10:02:20
2019-01-31T10:02:20
164,454,090
0
0
null
null
null
null
UTF-8
C++
false
false
667
cpp
#include "AWeapon.hpp" AWeapon::AWeapon( void ) {return ;} AWeapon::AWeapon( const std::string &name, int apcost, int damage ) : _name(name), _apcost(apcost), _damage(damage) { return ; } AWeapon::AWeapon( const AWeapon &Copy ) { *this = Copy; } AWeapon::~AWeapon( void ) { return ; } AWeapon &AWeapon::operator=( const AWeapon &Copy ) { this->_name = Copy._name; this->_apcost = Copy._apcost; this->_damage = Copy._damage; return *this; } std::string AWeapon::getName( void ) const { return this->_name; } int AWeapon::getAPCost( void ) const { return this->_apcost; } int AWeapon::getDamage( void ) const { return this->_damage; }
[ "aalokhin@e2r3p8.unit.ua" ]
aalokhin@e2r3p8.unit.ua
d995db90d9be8c07c3ca61f21ba5f78f0c109306
c5952a9650383deecb75d80eb275cf10dee84436
/hw3/hash.cpp
bb9ae002fffde432c6fce5f906a036b60f7440fb
[]
no_license
mbryk/DSA-2-Work
2c3bd76fabd627e2fadb370696365c30109930ef
6b322c956804fea54cf77e0fd0880d96dd08e758
refs/heads/master
2020-04-06T03:32:43.727631
2015-09-17T03:44:54
2015-09-17T03:44:54
5,766,216
0
0
null
null
null
null
UTF-8
C++
false
false
3,624
cpp
/* * File: hash.cpp * Author: Mark Bryk * ECE 165 * HW #1 * * Created on September 10, 2012, 12:23 PM */ #include "hash.h" using namespace std; hashTable::hashTable(int size) { capacity = getPrime(size); filled = 0; try{ data.resize(capacity); } catch (bad_alloc const&) { } for(int i = 0; i< size; i++) data[i].isOccupied = false; } int hashTable::insert(const std::string &key, void *pv) { if(filled>0 &&(capacity/filled)<2) if(!rehash()) return 2; int number = hash(key); while(data[number].isOccupied == true){ if((data[number].key == key) && (data[number].isDeleted==false)) return 1; else { number++; if(number >= capacity) number-=capacity; } } data[number].key = key; data[number].isOccupied = true; data[number].isDeleted = false; data[number].pv = pv; if(++filled) return 0; } bool hashTable::contains(const std::string &key){ int pos = findPos(key); if(pos!=-1) return true; return false; } void* hashTable::getPointer(const std::string &key, bool *b){ int pos = findPos(key); if(pos!=-1){ if(b) *b = true; return data[pos].pv; } if(b) *b = false; return NULL; } int hashTable::setPointer(const std::string &key, void *pv){ int pos = findPos(key); if(pos==-1) return 1; else data[pos].pv = pv; return 0; } bool hashTable::remove(const std::string &key){ int number = findPos(key); if(number != -1){ data[number].isDeleted = true; return true; } return false; } int hashTable::hash(const std::string &key){ int hashVal = 0; for( int i = 0; i< key.length(); i++) hashVal = 37*hashVal + key[i]; hashVal %= capacity; if(hashVal < 0) hashVal += capacity; return hashVal; } int hashTable::findPos(const std::string &key){ int number = hash(key); while(data[number].isOccupied == true){ if((data[number].key == key) && (data[number].isDeleted==false)) return number; else { number++; if(number >= capacity) number-=capacity; } } return -1; } bool hashTable::rehash(){ std::vector<hashItem> oldData = data; capacity = getPrime(capacity*2); try{ data.resize(capacity); } catch (bad_alloc const&) { return false; } for(int i = 0; i< capacity; i++) data[i].isOccupied = false; filled = 0; for(int j = 0; j<oldData.size(); j++) { if((oldData[j].isOccupied == true)&&(oldData[j].isDeleted == false)){ insert(oldData[j].key, oldData[j].pv); } } return true; } int hashTable::getPrime(int size){ int primes[] = {101,467,947,2063,9901,19997,40009,80021,160049,320101,640219,1301221,2783999,6500003}; for(int i=0; i < sizeof(primes); i++) { if(size<primes[i]) return primes[i]; } return 0; }
[ "bryk@cooper.edu" ]
bryk@cooper.edu
701b0e6ccb4d6531df90509712f314b7748a6e50
5b4d44875317312bc1d1b9b4d74372602f4bb772
/Desktop/Tower-Defence/gamescene.cpp
7cd9c3cf6abf7bea918c05f83e06bee3d743306b
[]
no_license
HAO-Jiaxin/Tower-Defence
fd17e762574cf4793d60fa73f5a93353164cc45b
a1f525b328d61a531cdad5f4ec5b068afe37085d
refs/heads/master
2022-09-06T07:45:09.311148
2020-05-31T07:26:44
2020-05-31T07:26:44
268,205,257
0
0
null
null
null
null
UTF-8
C++
false
false
89
cpp
#include "gamescene.h" GameScene::GameScene(QWidget *parent) : QMainWindow(parent) { }
[ "1062295654@qq.com" ]
1062295654@qq.com
41d07316e96904187302034dfa1b5eca0f6703c1
ac67de87a6c7c4391c8398f409745e284fd70d76
/Team.h
cbf5dd9f9ca7f9718c1585ab8efa9a4c0b45b380
[]
no_license
Wasgo097/mygame
6a2af89edf83749cd793568203de0b0b4d7112fd
dce2ebd0afc0c08019b5d1da321653c39930d7ac
refs/heads/master
2020-06-26T16:37:20.432575
2019-07-30T16:45:28
2019-07-30T16:45:28
199,687,279
0
0
null
null
null
null
UTF-8
C++
false
false
4,012
h
#pragma once #include "Archer.h" #include "Fighter.h" #include "Mage_warrior.h" #include "Tank.h" #include "Wizzard.h" class Team { std::pair < sf::Sprite *, std::shared_ptr<Archer>> archer_full; std::pair < sf::Sprite *, std::shared_ptr<Fighter>> fighter_full; std::pair < sf::Sprite *, std::shared_ptr<Mage_warrior>> m_warrior_full; std::pair < sf::Sprite *, std::shared_ptr<Tank>> tank_full; std::pair < sf::Sprite *, std::shared_ptr<Wizzard>> wizzard_full; std::shared_ptr<Archer> archer; std::shared_ptr<Fighter> fighter; std::shared_ptr<Mage_warrior> m_warrior; std::shared_ptr<Tank> tank; std::shared_ptr<Wizzard> wizzard; /*std::vector<std::shared_ptr<Party_member>> team; std::vector<sf::Sprite*> sprite_team;*/ std::vector<std::pair < sf::Sprite *, std::shared_ptr<Party_member>>> team_full; sf::Sprite archer_sprite; sf::Sprite fighter_sprite; sf::Sprite m_warrior_sprite; sf::Sprite tank_sprite; sf::Sprite wizzard_sprite; sf::Texture archer_texture; sf::Texture fighter_texture; sf::Texture m_warrior_texture; sf::Texture tank_texture; sf::Texture wizzard_texture; sf::Vector2f ratio; public: Team(const sf::Vector2f & ratio, Quality q = Quality::weak) { archer = std::make_shared<Archer>(rand_bow(q), rand_helmet(q), rand_armor(q), rand_shield(q)); fighter = std::make_shared<Fighter>(rand_sword(q), rand_helmet(q), rand_armor(q), rand_shield(q)); m_warrior = std::make_shared<Mage_warrior>(rand_sword(q), rand_helmet(q), rand_armor(q), rand_shield(q)); tank = std::make_shared<Tank>(rand_sword(q), rand_helmet(q), rand_armor(q), rand_shield(q)); wizzard = std::make_shared<Wizzard>(rand_staff(q), rand_helmet(q), rand_armor(q), rand_shield(q)); /*team.push_back(archer); team.push_back(fighter); team.push_back(m_warrior); team.push_back(tank); team.push_back(wizzard);*/ if (!archer_texture.loadFromFile("Hero/Archer.png")) { std::cout << "Error :" << "Hero/Archer.png" << " not found!" << std::endl; std::cin.ignore(1); exit(0); } archer_sprite.setTexture(archer_texture); team_full.push_back(std::make_pair(&archer_sprite, archer)); if (!fighter_texture.loadFromFile("Hero/Fighter.png")) { std::cout << "Error :" << "Hero/Fighter.png" << " not found!" << std::endl; std::cin.ignore(1); exit(0); } fighter_sprite.setTexture(fighter_texture); team_full.push_back(std::make_pair(&fighter_sprite, fighter)); if (!m_warrior_texture.loadFromFile("Hero/Mage warrior.png")) { std::cout << "Error :" << "Hero/Mage warrior.png" << " not found!" << std::endl; std::cin.ignore(1); exit(0); } m_warrior_sprite.setTexture(m_warrior_texture); team_full.push_back(std::make_pair(&m_warrior_sprite,m_warrior)); if (!tank_texture.loadFromFile("Hero/Tank.png")) { std::cout << "Error :" << "Hero/Tank.png" << " not found!" << std::endl; std::cin.ignore(1); exit(0); } tank_sprite.setTexture(tank_texture); team_full.push_back(std::make_pair(&tank_sprite, tank)); if (!wizzard_texture.loadFromFile("Hero/Wizzard.png")) { std::cout << "Error :" << "Hero/Wizard.png" << " not found!" << std::endl; std::cin.ignore(1); exit(0); } wizzard_sprite.setTexture(wizzard_texture); team_full.push_back(std::make_pair(&wizzard_sprite, wizzard)); /*sprite_team.push_back(&archer_sprite); sprite_team.push_back(&fighter_sprite); sprite_team.push_back(&m_warrior_sprite); sprite_team.push_back(&tank_sprite); sprite_team.push_back(&wizzard_sprite);*/ for (auto& c : team_full) { c.first->setScale(ratio.x, ratio.y); } this->ratio = ratio; } /*auto get_team() { return& team; } auto get_sprite_team() {return &sprite_team;}*/ auto get_team() { return &team_full; } auto get_archer() { return team_full[0]; } auto get_fighter() { return team_full[1]; } auto get_m_warrior() { return team_full[2]; } auto get_tank() { return team_full[3]; } auto get_wizzard() { return team_full[4]; } auto get_ratio() { return ratio; } void save_to_file()const; void load_from_file(); };
[ "patrykpakula321@gmail.com" ]
patrykpakula321@gmail.com
7d4e1999da0a2a9e1885cd2ca409e8f9c650cf60
11595170c7b0d51505dabb3e330df875a95093c5
/RPCHitAnalyzer/interface/ZvertexCalculator.h
9644599cacece947ad0d9e1df8aeabdbbcf77125
[]
no_license
ggrenier/CMSusercode
61d7e7ee25f7a0a68f48011d8ad798e85ea8a8a8
a90320daf8be5d1c2b448256b3e3fb0d907eb051
refs/heads/master
2021-01-10T11:23:20.668795
2016-03-11T13:46:34
2016-03-11T13:46:34
53,138,550
0
0
null
null
null
null
UTF-8
C++
false
false
1,224
h
#ifndef ZvertexCalculator_HH #define ZvertexCalculator_HH #include <cmath> // // helper class to compute Z-vertex // struct hitData { double x,y; double r; double z; double t; double localdirEta,localdirPhi,localdirTheta; int region; int station; int ring; }; class ZvertexCalculator { public: ZvertexCalculator() : region(1), b(1), c(0), cosbeta(1), sinbeta(0), hit_time(0) {} inline ZvertexCalculator(hitData &hit) { setHitData(hit); } void setHitData(hitData &hit); void setTimeShift(double timeshift); inline int computeSignOfCos() { if ((region==1 && b<c)||(region==-1 && b>c)) return 1; else return -1; } inline bool hasSolution() {return b>c*sinbeta;} inline double aOneSolution(){return sqrt(b*b-c*c*sinbeta*sinbeta)+c*cosbeta;} inline double aSecondSolution(){return c*cosbeta-sqrt(b*b-c*c*sinbeta*sinbeta);} inline bool hasTwoSolution() {return hasSolution() && b<c && cosbeta>0;} double aMinSolution(); private: //see http://en.wikipedia.org/wiki/Solution_of_triangles#Two_sides_and_non-included_angle_given_.28SSA.29 //for notation int region; double b; double c; double cosbeta; double sinbeta; double hit_time; }; #endif
[ "grenier@ipnl.in2p3.fr" ]
grenier@ipnl.in2p3.fr
e43d01fc1e7c86e1e9c402bcdc50ff942dd4e91e
4d22f318f8de87b2cf2dcc2193021eb7f28060f2
/Reverse first k elements of queue.cpp
1fb9be796b02c56778d0e810163ef792666947d7
[]
no_license
krishnateja-nanduri/MyCodePractice
f97f710a684c6098d6f52b3bbcce9a8ca0dbad80
de6b9f19fb694c54ce847153d3ce14279e1b60fc
refs/heads/master
2021-09-07T03:54:08.583326
2018-02-16T23:30:21
2018-02-16T23:30:21
104,292,690
1
1
null
2018-02-08T22:14:12
2017-09-21T02:39:22
C++
UTF-8
C++
false
false
604
cpp
/* Please note that it's Function problem i.e. you need to write your solution in the form of Function(s) only. Driver Code to call/invoke your function would be added by GfG's Online Judge.*/ //User function Template for C++ queue<ll> modifyQueue(queue<ll> q, int k) { stack<ll> stk; for (int i = 0; !q.empty() && i < k; ++i) { stk.push(q.front()); q.pop(); } for (int i = 0; !stk.empty() && i < k; ++i) { q.push(stk.top()); stk.pop(); } for (int i = 0; i < q.size() - k; ++i) { q.push(q.front()); q.pop(); } return q; }
[ "krishnateja.nanduri@gmail.com" ]
krishnateja.nanduri@gmail.com
b1b79253712a7d60efc151fe8992aae76101ff70
bd0459f71473280bc584fa8ce882a6a4a4155cd9
/Goalie Code/master/invisible_ball.ino
27e4cfd30daf916cf97d7616d985cc9caf58186d
[]
no_license
ryannapali/BILB2019
6b27589f649701c7c6727766d85d9f2490fbb62c
551c531c72996a7ba73f56309eb6cd8c9637b3fc
refs/heads/master
2020-05-04T11:51:59.878737
2019-07-02T23:13:50
2019-07-02T23:13:50
179,117,241
1
0
null
null
null
null
UTF-8
C++
false
false
1,621
ino
boolean farAway; int startTime; void invBall() { backSensor = lidars.readSensor3(); leftSensor = lidars.readSensor2(); rightSensor = lidars.readSensor4(); if (firstInvBall) { startTime = millis(); firstInvBall = false; } else if (millis() - startTime < 1000 && backSensor < 100) { //Serial.println("wating"); motor.stopMotors(); } else if (digitalRead(37) == HIGH) { //Serial.println("going to center"); goToLocation(90, 45, max(leftSensor, rightSensor)); } else { if (lastXPos > 200) farAway = true; else farAway = false; if (farAway) goToLocation(90, 45, max(leftSensor, rightSensor)); //ball is far and invisible else if (lastAngle < 20 && lastAngle > 360 - 20) { //ball is close and invisible and infront motor.stopMotors(); } else { goToLocation(determineSide(), 45, max(leftSensor, rightSensor)); } } } int determineSide() { int xLocation; if (whichSide() == 1) { //center Serial.println("center"); if (ballAngle < 60 || ballAngle > 300) xLocation = 90; else if (ballAngle > 60 && ballAngle < 180) xLocation = 112; else xLocation = 60; } else if (whichSide() == 0) { //left Serial.println("left"); if (ballAngle < 40 || ballAngle > 180) xLocation = 60; else if (ballAngle > 90 && ballAngle < 180) xLocation = 112; else xLocation = 90; } else if (whichSide() == 2) { //right Serial.println("right"); if (ballAngle > 320 || ballAngle < 180) xLocation = 112; else if (ballAngle < 270 && ballAngle > 180) xLocation = 60; else xLocation = 90; } return xLocation; }
[ "jesse.gallant4@gmail.com" ]
jesse.gallant4@gmail.com
48c37580969b2c446696654b72c97706465d0076
95a43c10c75b16595c30bdf6db4a1c2af2e4765d
/codecrawler/_code/hdu4855/16214690.cpp
816ab9b5a353555168e8656a12c39e990f8f478e
[]
no_license
kunhuicho/crawl-tools
945e8c40261dfa51fb13088163f0a7bece85fc9d
8eb8c4192d39919c64b84e0a817c65da0effad2d
refs/heads/master
2021-01-21T01:05:54.638395
2016-08-28T17:01:37
2016-08-28T17:01:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,884
cpp
/************************************************** * Problem: HDU 4855 (Xi'an Invitation 2014 Problem I) * Author: clavichord93 * State: Accepted **************************************************/ #include <iostream> #include <cstdio> #include <cstdlib> #include <cstring> #include <cmath> #include <algorithm> #define sqr(a) ((a) * (a)) using namespace std; const double DINF = 1e30; const double PI = acos(-1.0); const double EPS = 1e-13; inline int sgn(double a) { return a > EPS ? 1 : (a < -EPS ? -1 : 0); } const int MAX_N = 205; struct Circle { double x, y, r; void read() { scanf("%lf %lf %lf", &x, &y, &r); } }; int n; Circle c[MAX_N]; int cntAng; double ang[MAX_N * 3]; double calc(double ang) { double A = sin(ang); double B = -cos(ang); double _A = cos(ang); double _B = sin(ang); double ret = 0; for (int i = 0; i < n; i++) { double dist = fabs(A * c[i].x + B * c[i].y); double tag = _A * c[i].x + _B * c[i].y; if (sgn(dist - c[i].r) < 0 && sgn(tag) > 0) { double length = 2.0 * sqrt(sqr(c[i].r) - sqr(dist)); ret += length; } } return ret; } int main() { #ifdef LOCAL_JUDGE freopen("in.txt", "r", stdin); #endif while (scanf("%d", &n) != EOF) { cntAng = 0; ang[cntAng++] = -PI; ang[cntAng++] = PI; for (int i = 0; i < n; i++) { c[i].read(); double angCenter = atan2(c[i].y, c[i].x); double dist = sqrt(sqr(c[i].x) + sqr(c[i].y)); double alpha = asin(c[i].r / dist); double angLeft = angCenter - alpha; double angRight = angCenter + alpha; if (sgn(angLeft + PI) < 0) { angLeft += 2.0 * PI; } if (sgn(angRight - PI) > 0) { angRight -= 2.0 * PI; } ang[cntAng++] = angLeft; ang[cntAng++] = angCenter; ang[cntAng++] = angRight; } sort(ang, ang + cntAng); cntAng = unique(ang, ang + cntAng) - ang; double ans = 0; for (int i = 0; i < cntAng - 1; i++) { double l = ang[i], r = ang[i + 1]; double res = 0; while (l <= r) { double length = (r - l) / 3; double x1 = l + length; double x2 = l + length * 2; double f1 = calc(x1); double f2 = calc(x2); if (sgn(f1 - f2) >= 0) { res = f1; r = x2 - EPS; } else { res = f2; l = x1 + EPS; } } if (sgn(ans - res) < 0) { ans = res; } } printf("%.10f\n", ans); } return 0; }
[ "zhouhai02@meituan.com" ]
zhouhai02@meituan.com
acd8395c5c4cfa9aef34e39dc1978c0f6b569222
43490b42ce26995b925ebdcd752e0b6aadfd09c9
/skia/src/images/SkJpegEncoder.cpp
8c54bdd69eec0c90c56ef54e860dcf07c6e319c4
[]
no_license
lineCode/render_skia2
010eb67788573307cee4d805cee9121b9fdaab8c
6ffb52a596a6a1e7f0920ddde570015ffebce5ab
refs/heads/master
2020-08-01T13:36:46.880346
2019-09-25T14:44:51
2019-09-25T15:22:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,982
cpp
/* * Copyright 2007 The Android Open Source Project * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "src/images/SkImageEncoderPriv.h" #ifdef SK_HAS_JPEG_LIBRARY #include "include/core/SkStream.h" #include "include/encode/SkJpegEncoder.h" #include "include/private/SkColorData.h" #include "include/private/SkImageInfoPriv.h" #include "include/private/SkTemplates.h" #include "src/core/SkMSAN.h" #include "src/images/SkImageEncoderFns.h" #include "src/images/SkJPEGWriteUtility.h" #include <stdio.h> extern "C" { #include "jpeglib.h" #include "jerror.h" } class SkJpegEncoderMgr final : SkNoncopyable { public: /* * Create the decode manager * Does not take ownership of stream */ static std::unique_ptr<SkJpegEncoderMgr> Make(SkWStream* stream) { return std::unique_ptr<SkJpegEncoderMgr>(new SkJpegEncoderMgr(stream)); } bool setParams(const SkImageInfo& srcInfo, const SkJpegEncoder::Options& options); jpeg_compress_struct* cinfo() { return &fCInfo; } skjpeg_error_mgr* errorMgr() { return &fErrMgr; } transform_scanline_proc proc() const { return fProc; } ~SkJpegEncoderMgr() { jpeg_destroy_compress(&fCInfo); } private: SkJpegEncoderMgr(SkWStream* stream) : fDstMgr(stream) , fProc(nullptr) { fCInfo.err = jpeg_std_error(&fErrMgr); fErrMgr.error_exit = skjpeg_error_exit; jpeg_create_compress(&fCInfo); fCInfo.dest = &fDstMgr; } jpeg_compress_struct fCInfo; skjpeg_error_mgr fErrMgr; skjpeg_destination_mgr fDstMgr; transform_scanline_proc fProc; }; bool SkJpegEncoderMgr::setParams(const SkImageInfo& srcInfo, const SkJpegEncoder::Options& options) { auto chooseProc8888 = [&]() { if (kUnpremul_SkAlphaType == srcInfo.alphaType() && options.fAlphaOption == SkJpegEncoder::AlphaOption::kBlendOnBlack) { return transform_scanline_to_premul_legacy; } return (transform_scanline_proc) nullptr; }; J_COLOR_SPACE jpegColorType = JCS_EXT_RGBA; int numComponents = 0; switch (srcInfo.colorType()) { case kRGBA_8888_SkColorType: fProc = chooseProc8888(); jpegColorType = JCS_EXT_RGBA; numComponents = 4; break; case kBGRA_8888_SkColorType: fProc = chooseProc8888(); jpegColorType = JCS_EXT_BGRA; numComponents = 4; break; case kRGB_565_SkColorType: fProc = transform_scanline_565; jpegColorType = JCS_RGB; numComponents = 3; break; case kARGB_4444_SkColorType: if (SkJpegEncoder::AlphaOption::kBlendOnBlack == options.fAlphaOption) { return false; } fProc = transform_scanline_444; jpegColorType = JCS_RGB; numComponents = 3; break; case kGray_8_SkColorType: SkASSERT(srcInfo.isOpaque()); jpegColorType = JCS_GRAYSCALE; numComponents = 1; break; case kRGBA_F16_SkColorType: if (kUnpremul_SkAlphaType == srcInfo.alphaType() && options.fAlphaOption == SkJpegEncoder::AlphaOption::kBlendOnBlack) { fProc = transform_scanline_F16_to_premul_8888; } else { fProc = transform_scanline_F16_to_8888; } jpegColorType = JCS_EXT_RGBA; numComponents = 4; break; default: return false; } fCInfo.image_width = srcInfo.width(); fCInfo.image_height = srcInfo.height(); fCInfo.in_color_space = jpegColorType; fCInfo.input_components = numComponents; jpeg_set_defaults(&fCInfo); if (kGray_8_SkColorType != srcInfo.colorType()) { switch (options.fDownsample) { case SkJpegEncoder::Downsample::k420: SkASSERT(2 == fCInfo.comp_info[0].h_samp_factor); SkASSERT(2 == fCInfo.comp_info[0].v_samp_factor); SkASSERT(1 == fCInfo.comp_info[1].h_samp_factor); SkASSERT(1 == fCInfo.comp_info[1].v_samp_factor); SkASSERT(1 == fCInfo.comp_info[2].h_samp_factor); SkASSERT(1 == fCInfo.comp_info[2].v_samp_factor); break; case SkJpegEncoder::Downsample::k422: fCInfo.comp_info[0].h_samp_factor = 2; fCInfo.comp_info[0].v_samp_factor = 1; fCInfo.comp_info[1].h_samp_factor = 1; fCInfo.comp_info[1].v_samp_factor = 1; fCInfo.comp_info[2].h_samp_factor = 1; fCInfo.comp_info[2].v_samp_factor = 1; break; case SkJpegEncoder::Downsample::k444: fCInfo.comp_info[0].h_samp_factor = 1; fCInfo.comp_info[0].v_samp_factor = 1; fCInfo.comp_info[1].h_samp_factor = 1; fCInfo.comp_info[1].v_samp_factor = 1; fCInfo.comp_info[2].h_samp_factor = 1; fCInfo.comp_info[2].v_samp_factor = 1; break; } } // Tells libjpeg-turbo to compute optimal Huffman coding tables // for the image. This improves compression at the cost of // slower encode performance. fCInfo.optimize_coding = TRUE; return true; } std::unique_ptr<SkEncoder> SkJpegEncoder::Make(SkWStream* dst, const SkPixmap& src, const Options& options) { if (!SkPixmapIsValid(src)) { return nullptr; } std::unique_ptr<SkJpegEncoderMgr> encoderMgr = SkJpegEncoderMgr::Make(dst); skjpeg_error_mgr::AutoPushJmpBuf jmp(encoderMgr->errorMgr()); if (setjmp(jmp)) { return nullptr; } if (!encoderMgr->setParams(src.info(), options)) { return nullptr; } jpeg_set_quality(encoderMgr->cinfo(), options.fQuality, TRUE); jpeg_start_compress(encoderMgr->cinfo(), TRUE); sk_sp<SkData> icc = icc_from_color_space(src.info()); if (icc) { // Create a contiguous block of memory with the icc signature followed by the profile. sk_sp<SkData> markerData = SkData::MakeUninitialized(kICCMarkerHeaderSize + icc->size()); uint8_t* ptr = (uint8_t*) markerData->writable_data(); memcpy(ptr, kICCSig, sizeof(kICCSig)); ptr += sizeof(kICCSig); *ptr++ = 1; // This is the first marker. *ptr++ = 1; // Out of one total markers. memcpy(ptr, icc->data(), icc->size()); jpeg_write_marker(encoderMgr->cinfo(), kICCMarker, markerData->bytes(), markerData->size()); } return std::unique_ptr<SkJpegEncoder>(new SkJpegEncoder(std::move(encoderMgr), src)); } SkJpegEncoder::SkJpegEncoder(std::unique_ptr<SkJpegEncoderMgr> encoderMgr, const SkPixmap& src) : INHERITED(src, encoderMgr->proc() ? encoderMgr->cinfo()->input_components*src.width() : 0) , fEncoderMgr(std::move(encoderMgr)) {} SkJpegEncoder::~SkJpegEncoder() {} bool SkJpegEncoder::onEncodeRows(int numRows) { skjpeg_error_mgr::AutoPushJmpBuf jmp(fEncoderMgr->errorMgr()); if (setjmp(jmp)) { return false; } const size_t srcBytes = SkColorTypeBytesPerPixel(fSrc.colorType()) * fSrc.width(); const size_t jpegSrcBytes = fEncoderMgr->cinfo()->input_components * fSrc.width(); const void* srcRow = fSrc.addr(0, fCurrRow); for (int i = 0; i < numRows; i++) { JSAMPLE* jpegSrcRow = (JSAMPLE*) srcRow; if (fEncoderMgr->proc()) { sk_msan_assert_initialized(srcRow, SkTAddOffset<const void>(srcRow, srcBytes)); fEncoderMgr->proc()((char*)fStorage.get(), (const char*)srcRow, fSrc.width(), fEncoderMgr->cinfo()->input_components); jpegSrcRow = fStorage.get(); sk_msan_assert_initialized(jpegSrcRow, SkTAddOffset<const void>(jpegSrcRow, jpegSrcBytes)); } else { // Same as above, but this repetition allows determining whether a // proc was used when msan asserts. sk_msan_assert_initialized(jpegSrcRow, SkTAddOffset<const void>(jpegSrcRow, jpegSrcBytes)); } jpeg_write_scanlines(fEncoderMgr->cinfo(), &jpegSrcRow, 1); srcRow = SkTAddOffset<const void>(srcRow, fSrc.rowBytes()); } fCurrRow += numRows; if (fCurrRow == fSrc.height()) { jpeg_finish_compress(fEncoderMgr->cinfo()); } return true; } bool SkJpegEncoder::Encode(SkWStream* dst, const SkPixmap& src, const Options& options) { auto encoder = SkJpegEncoder::Make(dst, src, options); return encoder.get() && encoder->encodeRows(src.height()); } #endif
[ "setoutsoft@qq.com" ]
setoutsoft@qq.com
590770f81308a8170844ec515e26ab8f201f48d5
69a69f058ba4b0cc8a67d7f18354df1a623c9b8b
/SortSearch1/Misc.cpp
9497c8528915e276395c3895f522994ef2820521
[]
no_license
eglrp/CST16_DataStruct
8e83643128bfc53adc08df2dced759a32aca8f9e
188ea8ee6b897afb24040e434e47d0bd1f2c252d
refs/heads/master
2020-04-02T04:08:37.733930
2017-06-10T06:38:16
2017-06-10T06:38:16
null
0
0
null
null
null
null
GB18030
C++
false
false
1,269
cpp
#include <math.h> #include <stdio.h> #include <stdlib.h> #include "Misc.h" // find the sequence, the sum of which equals n, between 1 ~ n. // void find_sum_equals_n(int sum) { // sum = n * (a1 + an) / 2 = n * a1 + n * (n - 1) / 2 // --> k = sum – n * (n - 1) / 2 // --> a1 = k / n // a1 >= 1 // --> k > n int n = 1; // n 从 1 开始遍历 int k = sum - n * (n - 1) / 2; // k 为 sum –n * (n - 1)/2 while (k > n) { // 如果 k 可以被 n 整除,则存在连续 n 个正整数序列总和为 sum。 if (k % n == 0) { int a1 = k / n; for (int i = 0; i < n; ++i) { printf("%d ", a1 + i); } printf("\n"); } ++n; k = sum - n * (n - 1) / 2; } } // 查找水仙花数 // void find_daffodils_number() { const int cube[10] = {0, 1, 8, 27, 64, 125, 216, 343, 512, 729}; printf("\nFind the daffodils number: "); int sum = 0; int t = 0; for (int i = 100; i < 1000; i++) { sum = 0; t = i; while (t) { sum += cube[t % 10]; t /= 10; } if (sum == i) { printf("%d ", i); } } printf("\n"); }
[ "czldl@tom.com" ]
czldl@tom.com
bfbc5821df2c0b5b9ec3d5cc8299a1306917bfaf
67006d222dc40550482ffca889fdc4170bca4931
/CSGO-External-Main/cCheat.cpp
595f2d2fc132156298397e8af9c6c619ead3e87a
[]
no_license
Crossy101/CSGO-External-Master
029c176f160d9225ad3493536129efb8949928b4
053c90aef3f18f0a833731c1bda831ffaa642116
refs/heads/master
2020-04-12T15:13:14.596951
2018-12-22T02:12:03
2018-12-22T02:12:03
162,574,266
2
1
null
null
null
null
UTF-8
C++
false
false
1,094
cpp
#include "cCheat.h" cCheat::cCheat() { } cCheat::~cCheat() { delete ModuleFinder; delete ProcessFinder; delete EspCheat; } void cCheat::MainLoop() { //If the console is open for 30 secs and game is not open, exit! this->startTimer = GetTickCount(); while (!FindGameWindow()) { Sleep(1000); this->endTimer = GetTickCount() - startTimer; if (this->endTimer >= 30000) { exit(EXIT_SUCCESS); } } //Check if user has quit while (!userQuit) { if (GetAsyncKeyState(VK_F4)) { userQuit = true; } if (GetAsyncKeyState(VK_F1)) { ESPEnabled = !ESPEnabled; } if (ESPEnabled) { EspCheat->EnableESP(ModuleFinder->GetClientAddress(), ModuleFinder, ProcessFinder); } Sleep(10); if (!FindGameWindow()) { cout << "CSGO has been closed shutting down!" << endl; Sleep(1000); exit(EXIT_SUCCESS); } } exit(EXIT_SUCCESS); } //Finds Game Window bool cCheat::FindGameWindow() { if (FindWindow(NULL, this->WindowName) == NULL) { return false; } else return true; }
[ "noreply@github.com" ]
Crossy101.noreply@github.com
e2e46c6208631e4611546c518dafea01a8a6d6df
037d518773420f21d74079ee492827212ba6e434
/blazetest/src/mathtest/dvecsvecouter/VHbVCb.cpp
af61461fd04b5a052b3b12838162dc30bf688a8e
[ "BSD-3-Clause" ]
permissive
chkob/forked-blaze
8d228f3e8d1f305a9cf43ceaba9d5fcd603ecca8
b0ce91c821608e498b3c861e956951afc55c31eb
refs/heads/master
2021-09-05T11:52:03.715469
2018-01-27T02:31:51
2018-01-27T02:31:51
112,014,398
0
0
null
null
null
null
UTF-8
C++
false
false
4,545
cpp
//================================================================================================= /*! // \file src/mathtest/dvecsvecouter/VHbVCb.cpp // \brief Source file for the VHbVCb dense vector/sparse vector outer product math test // // Copyright (C) 2012-2018 Klaus Iglberger - All Rights Reserved // // This file is part of the Blaze library. You can redistribute it and/or modify it under // the terms of the New (Revised) BSD License. Redistribution and use in source and binary // forms, with or without modification, are permitted provided that the following conditions // are met: // // 1. Redistributions of source code must retain the above copyright notice, this list of // conditions and the following disclaimer. // 2. Redistributions in binary form must reproduce the above copyright notice, this list // of conditions and the following disclaimer in the documentation and/or other materials // provided with the distribution. // 3. Neither the names of the Blaze development group nor the names of its contributors // may be used to endorse or promote products derived from this software without specific // prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT // SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED // TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR // BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH // DAMAGE. */ //================================================================================================= //************************************************************************************************* // Includes //************************************************************************************************* #include <cstdlib> #include <iostream> #include <blaze/math/CompressedVector.h> #include <blaze/math/HybridVector.h> #include <blazetest/mathtest/Creator.h> #include <blazetest/mathtest/dvecsvecouter/OperationTest.h> #include <blazetest/system/MathTest.h> //================================================================================================= // // MAIN FUNCTION // //================================================================================================= //************************************************************************************************* int main() { std::cout << " Running 'VHbVCb'..." << std::endl; using blazetest::mathtest::TypeB; try { // Vector type definitions typedef blaze::HybridVector<TypeB,128UL> VHb; typedef blaze::CompressedVector<TypeB> VCb; // Creator type definitions typedef blazetest::Creator<VHb> CVHb; typedef blazetest::Creator<VCb> CVCb; // Running tests with small vectors for( size_t i=0UL; i<=8UL; ++i ) { for( size_t j=0UL; j<=8UL; ++j ) { for( size_t k=0UL; k<=j; ++k ) { RUN_DVECSVECOUTER_OPERATION_TEST( CVHb( i ), CVCb( j, k ) ); } } } // Running tests with large vectors RUN_DVECSVECOUTER_OPERATION_TEST( CVHb( 67UL ), CVCb( 67UL, 7UL ) ); RUN_DVECSVECOUTER_OPERATION_TEST( CVHb( 67UL ), CVCb( 127UL, 13UL ) ); RUN_DVECSVECOUTER_OPERATION_TEST( CVHb( 127UL ), CVCb( 67UL, 7UL ) ); RUN_DVECSVECOUTER_OPERATION_TEST( CVHb( 127UL ), CVCb( 127UL, 13UL ) ); RUN_DVECSVECOUTER_OPERATION_TEST( CVHb( 64UL ), CVCb( 64UL, 8UL ) ); RUN_DVECSVECOUTER_OPERATION_TEST( CVHb( 64UL ), CVCb( 128UL, 16UL ) ); RUN_DVECSVECOUTER_OPERATION_TEST( CVHb( 128UL ), CVCb( 64UL, 8UL ) ); RUN_DVECSVECOUTER_OPERATION_TEST( CVHb( 128UL ), CVCb( 128UL, 16UL ) ); } catch( std::exception& ex ) { std::cerr << "\n\n ERROR DETECTED during dense vector/sparse vector outer product:\n" << ex.what() << "\n"; return EXIT_FAILURE; } return EXIT_SUCCESS; } //*************************************************************************************************
[ "klaus.iglberger@gmail.com" ]
klaus.iglberger@gmail.com
260be018e80ff159d2c9f2bf74a0014fab61a3df
b4e89cb98d303de2d698d4dec8b9507594df55e6
/cpp/exceptional/class_exception.cpp
9133f4845d02dbcdbdd3d0e11905e13b31201c17
[]
no_license
bgohel/Algo
d98ebd4df6d669847a9da6a5fb4882f202a4ae29
a5ecf115f26ecde43d5ab5370ea2abcf395ad031
refs/heads/master
2021-01-11T17:30:45.801213
2017-11-27T13:19:59
2017-11-27T13:19:59
79,792,340
0
0
null
null
null
null
UTF-8
C++
false
false
478
cpp
#include<iostream> using namespace std; void fun(); class A { public: A() { // throw 10; // throw 22.5f; // throw "BHARGAV"; throw 34.5; } }; void fun() { A obj; } int main() { try { // A obj; fun(); } catch(int x) { cout<<"in int block : x = "<<x<<endl; } catch(float f) { cout<<"in float block : x = "<<f<<endl; } catch(const char *p) { cout<<"in string block : x = "<<p<<endl; } catch(...) { cout<<" Exceptional Handling "<<endl; } }
[ "bhargavp1993@gmail.com" ]
bhargavp1993@gmail.com
58d92e0a9d67770922870386902ca809f22ab385
0b9be1ea411063fba7e2be9cc5277704b1bd6ab7
/TestBeam_Geant4Simu/trunk/MimosaSimu/include/MimosaSimuSetup.hh
80df87b30eb0eb78289a0f34af698f4e724f2598
[]
no_license
jeromebaudot/SiTrInEo
ccd01b70a9d5bb0d5dcd1173bfcaa1b5fe4abf2d
621481b68d71af39dad899e4a5f28ad2a1cf328b
refs/heads/master
2020-04-28T07:07:00.248070
2019-01-28T17:03:50
2019-01-28T17:03:50
175,080,575
0
0
null
2019-03-11T20:41:12
2019-03-11T20:41:12
null
UTF-8
C++
false
false
22,933
hh
// @(#)maf/dtools:$Name: $:$Id:MimosaSimuSetup.h v.1 2005/10/02 18:03:46 sha Exp $ #ifndef MimosaSimuSetup_h #define MimosaSimuSetup_h //////////////////////////////////////////////////////////// // Class Description of MimosaSimuSetup // // - Read geometry of experimental setup for simulation // //////////////////////////////////////////////////////////// #include "Riostream.h" #include <iostream> #include <fstream> // ROOT classes #include "TString.h" #include "TObject.h" #include "TVector.h" #include "TVector3.h" #include "TFile.h" #include "TMath.h" #include "globals.hh" #include "G4ThreeVector.hh" #include "TSystem.h" #define fMaxSubmatrices 10 #define fMaxGeomatrices 10 #define fMaxModules 30 #define fMaxDigitalThresholds 16 using namespace std; class MimosaSimuSetup : public TObject { private: void copy(const MimosaSimuSetup& a); void ReadRunParameters(); void ReadTrackerParameters(); void ReadExperimentGeometryParameters(); void ReadLadderParameters( Int_t aLadderNumber=-1); void ReadPlaneParameters( Int_t aPlaneNumber=-1); void ReadDAQParameters(); void ReadDAQBoardParameters(Int_t aBoardNumber=-1); void ReadAnalysisParameters(); void ReadSubmatrixParameters(Int_t aSubmatrixNumber=-1); void nextField(); void nextItem(Char_t delimiter); void read_r3(G4ThreeVector &arg); void read_item(Int_t &arg); void read_item(UInt_t &arg); void read_item(Float_t &arg); void read_strings(Char_t *aString, Int_t aLength); void read_TStrings(TString &TheString, Int_t aLength); void getRidOfLine(); void CheckExpSetupParameters(void); void CheckBeamTestParameters(void); void CheckSourceParameters(void); void InitSourceList(void); void CheckPlaneDigitizationParameters(Int_t aPlaneNumber); ifstream fConfigFileStream; TString fConfigPathAndFileName; // both path and file name appended Int_t MimosaSimuSetupDebug; Int_t fFieldMaxLength; Int_t fAddedPlanes; // counter of planes added in config Int_t fAddedLadders; // counter of ladders added in config Char_t *fFieldName; public: MimosaSimuSetup(); MimosaSimuSetup(const char* ConfigFile); MimosaSimuSetup(const MimosaSimuSetup& c); MimosaSimuSetup& operator=(const MimosaSimuSetup&); ~MimosaSimuSetup() {}; // BEWARE No Destructor ! Structure Added, Destructor should be implemented, LC 2015/03/10 void SetConfigFileName(TString aCFN) ; TString GetConfigFileName() {return fConfigPathAndFileName;}; void SetDebug(Int_t aDebug) { MimosaSimuSetupDebug = aDebug; std::cout << "MimosaSimuSetup debug updated to " << MimosaSimuSetupDebug << std::endl;} Int_t GetDebug() { return MimosaSimuSetupDebug;} void ReadConfiguration(); bool CheckIfSourceExists(TString SourceName); struct AnalysisParameter_t { bool SavePlots; bool DoTelResolutionMC; int MCEvents; int MCSeed; bool MCDoDisplay; bool DoGaussianMS; int ResolutionScanSteps; Float_t ResolutionScanInit; Float_t ResolutionScanEnd; Int_t CacheSize; Int_t StatisticCells; Int_t CmsNoiseCut; Int_t MaxNbOfHits; Int_t MinNbOfHits; Float_t TrackChi2Limit; Int_t MinHitsPerTrack; // JB 2013/06/22 Int_t MaxTracksExGeom; // JB 2013/06/21 Int_t ExGeomatrix; // JB 2013/06/21 Int_t Submatrices; Float_t HistoChargeRange; // JB 2013/09/12 Float_t HistoSNRRange; Float_t HistoNoiseRange; TString AnalysisGoal; // Jb 2014/01/16 Float_t PixelSizeU[fMaxSubmatrices]; Float_t PixelSizeV[fMaxSubmatrices]; Int_t PixelsInRaw[fMaxSubmatrices]; Int_t PixelsInColumn[fMaxSubmatrices]; Int_t Matrixtype[fMaxSubmatrices]; // JB 2013/07/17 Int_t MinSeedIndex[fMaxSubmatrices]; // JB 2013/08/21 Int_t MaxSeedIndex[fMaxSubmatrices]; // JB 2013/08/21 Int_t MinSeedCol[fMaxSubmatrices]; // JB 2013/08/22 Int_t MaxSeedCol[fMaxSubmatrices]; // JB 2013/08/22 Int_t MinSeedRow[fMaxSubmatrices]; // JB 2013/08/22 Int_t MaxSeedRow[fMaxSubmatrices]; // JB 2013/08/22 Int_t MaxNofPixelsInCluster[fMaxSubmatrices]; Int_t MinNofPixelsInCluster[fMaxSubmatrices]; // JB 2013/09/12 Float_t MinSeedCharge[fMaxSubmatrices]; // JB 2013/11/08 Float_t MinClusterCharge[fMaxSubmatrices]; // JB 2014/01/21 Float_t MinNeighbourCharge[fMaxSubmatrices]; // JB 2013/11/08 Float_t NoiseScope[fMaxSubmatrices]; Float_t Calibration[fMaxSubmatrices]; Int_t Geomatrices[fMaxSubmatrices]; // JB 2013/01/16 Float_t Umin[fMaxSubmatrices][fMaxGeomatrices]; Float_t Umax[fMaxSubmatrices][fMaxGeomatrices]; Float_t Vmin[fMaxSubmatrices][fMaxGeomatrices]; Float_t Vmax[fMaxSubmatrices][fMaxGeomatrices]; Int_t UserFlag; // JB 2013/07/17 }; AnalysisParameter_t AnalysisParameter; AnalysisParameter_t& GetAnalysisPar(){return AnalysisParameter;} struct TrackerParameter_t { enum {tpsz = 20}; Int_t Planes; // # planes in this tracker Int_t Ladders; // # ladders in this tracker Int_t TracksMaximum; // maximum number of tracks to be allowed Int_t TracksFinder; // method for track finding Int_t PlanesForTrackMinimum; // min # planes to build a track in an event Int_t HitsInPlaneTrackMaximum;// max # hits allowed per plane to do tracking Float_t SearchHitDistance; // max distance hit-track to add hit to track Float_t SearchMoreHitDistance; // max distance hit-track to add hit to a pre-track Int_t HitsInPlaneMaximum; // maximum number of hits per plane to be allowed Float_t Resolution; // estimated spatial resolution of ref planes TString ExpSetup; //String with the kind of experimental setup. E.g. Beam-Test, source, ... //Beam-Test experimental setup parameters TString BeamType; // nature of the particles making the beam Float_t BeamMomentum; // momentum of the beam particles (in GeV/c) G4ThreeVector BeamDirection; // momentum direction vectorm, (px,py,pz)/p, no units G4ThreeVector BeamAngularSpread; // beam angular X' and Y' directions perpendicular to main beam direction, no units Float_t BeamMomentumSpread; // beam relative momentum spread, delta-p/p, no units G4ThreeVector BeamOrigin; // beam origin position, in mm G4ThreeVector BeamOriginSpread; // beam origin spread (gaussian) in X' and Y'directions perpendicular to main beam direction, in mm Float_t BeamNparticles; // Number of beam particles to simulate per event bool BeamRandNparticles; // flag to generate the number of particles per event: if false (true) generate exactly BeamNparticles (with poisson distribution) //Source experimental setup parameters G4ThreeVector SourcePosition; // source position, in mm G4ThreeVector SourceTilt; // source tilt, in degrees Float_t SourceRadius; // source radius, in mm Float_t SourceActivity; // source activity, in decays per sec Float_t SourceSensorROTime; // sensor integration time, in usec bool FillNonSensitiveBranch; // Fill to fill up the non-sensitive brach of output n-tuple //Magnetic field, assumed constant all over the world volume Float_t BFieldMagnitude; // B-field magnitude in tesla G4ThreeVector BFieldDirection; // B-field direction (Bx,By,Bz)/B, no units TString MediumMaterial; // Material of the medium containing the sensors. E.g. DryAir of Vacuum Int_t VertexMaximum; // maximum number of tracks to be allowed Int_t VertexConstraint; // use a vertex constraint to start track Int_t UseSlopeInTrackFinder; // use the track slope to extrapolate track Int_t TrackingPlaneOrderType; // the planes ordering type for finding tracks Int_t EventsForAlignmentFit; // minimum number of events to fit alignement parameters Int_t TimeLimit; // maximum frame length (in 10ns units) //RDM260609 from Float to Int RDM250809 Int_t HitMonteCarlo; // Enable/Disable Hit Monte Carlo (Default = 0) Int_t KeepUnTrackedHitsBetw2evts; // explicit // VR 2014.08.28 Int_t DPrecAlignMethod; // Default : (0) Old method | (1) New method // For TracksFinder=2 : Int_t TrackingPass; // nb of pass in the tracking loop Int_t* PreTrackHitsNbMinimum; // explicit Int_t* PreTrackHitsTypeUsed; // explicit Float_t* PreTrackHitsMaxDist; // explicit Int_t* ExtTrackHitsNbMinimum; // explicit Int_t* ExtTrackHitsTypeUsed; // explicit Float_t* ExtTrackHitsMaxDist; // explicit Int_t* FullTrackHitsNbMinimum; // explicit Int_t TrackingOrderLines; // Number of Lines to define planes tracking order Int_t** TrackingOrderPreTrack; // Planes'order to build pre-tracks Int_t** TrackingOrderExtTrack; // Planes'order to build ext-tracks Int_t SubtrackNplanes; // Number of planes in subtrack, JB 2014/12/22 Int_t* SubtrackPlanes; // List of planes used in subtrack }; std::vector<TString> _Source_list; TrackerParameter_t TrackerParameter; TrackerParameter_t& GetTrackerPar(){return TrackerParameter;} struct IviGeometryParameter_t { enum {tpsz = 256}; Char_t GeometryName[tpsz]; Char_t GeometryVersion[tpsz]; G4ThreeVector BeamOrigin; G4ThreeVector BeamSlope; G4ThreeVector BeamDisplayStrongBegin; G4ThreeVector BeamDisplayStrongStop; G4ThreeVector BeamDisplayMediumBegin; G4ThreeVector BeamDisplayMediumStop; G4ThreeVector BeamDisplayLightBegin; G4ThreeVector BeamDisplayLightStop; Char_t TargetType[tpsz]; G4ThreeVector TargetSize; Float_t TargetRadius; Float_t TargetLength; TString TargetAxis; G4ThreeVector TargetCenter; G4ThreeVector TrackerOrigin; G4ThreeVector TrackerTilt; Char_t VertexingMethod[tpsz]; }; IviGeometryParameter_t IviGeometryParameter; IviGeometryParameter_t& GetIviGeometryParameter() {return IviGeometryParameter;} // Ladder information, added JB 2013/01/16 struct LadderParameter_t { enum {tpsz = 20}; Int_t LadderID; Int_t Status; // ladder status Char_t Name[tpsz]; // name of device Int_t Planes; // # planes in this ladder G4ThreeVector Position; // center position of the device in x,y,z system G4ThreeVector Tilt; // tilting angles [degree] in x,y,z system Int_t* PlaneList; // array of plane number associated G4ThreeVector* PlaneShift; // array of shift vectors from plane center to ladder center G4ThreeVector* PlaneTilt; // array of rotation vectors from plane orientation to ladder orientation }; LadderParameter_t *pLadderParameter; LadderParameter_t& GetLadderPar(Int_t anID){return pLadderParameter[anID];} //Defining a region for multiplicity dependent resolution information, added AP 2014/11/20 struct Region_t { int R_col[2]; int R_lin[2]; }; // Multiplicity dependent resolution informaton, added AP 2014/11/20 struct PlanePerformances_t { Float_t FakeRate; Region_t Region; Float_t GlobalPlaneResolution; Float_t GlobalPlaneResolutionU; Float_t GlobalPlaneResolutionV; std::vector<Float_t> MultProb; std::vector<Float_t> MultProbCumul; std::vector<Float_t> ResolutionU; std::vector<Float_t> ResolutionV; }; struct PlaneParameter_t { enum {tpsz = 20}; Int_t Inputs; // Number of inputs used for this plane max 4, JB 2009/05/07 Int_t ModuleType[fMaxModules]; // the Module (Sirocco type 1, or 2 or something else) Int_t ModuleNumber[fMaxModules]; // connected to which acquisition module number Int_t InputNumber[fMaxModules]; // number of the input plug Int_t ChannelNumber[fMaxModules]; // first strip nb associated to the first channel number for this input (start at 1) Int_t ChannelOffset[fMaxModules]; // the number of the first channel related to the plane for this input (start at 1) Int_t Channels[fMaxModules]; // Number of channels taken for this input Int_t TimeLimit; // limit in timestamp distance Char_t Name[tpsz]; // name of device Char_t Purpose[tpsz]; // purpose of device e.g. reference Int_t Readout; // readout status Alice128c Int_t MimosaType; // pitch of Mimo25 RDM210509 Int_t AnalysisMode; // normal 0 , read noise file 1... Int_t HitFinder; // method for the hit finder2 Int_t InitialPedestal; // nb of events required for pedestal Int_t InitialNoise; // nb of events required for noise Int_t CacheSize ; // Size of the cache for the hit suppression in pedestal and noise computation Float_t DistanceZero; // distance to zero in [mm] // old G4ThreeVector Position; // center position of the device in x,y,z system G4ThreeVector Tilt; // tilting angles [degree], u,v,w vectors rotated to x,y,z vectors Float_t AlignmentU; // offset perpendicular to strip direction, to be added to position Float_t AlignmentV; // offset parallel to strip direction, to be added to position Float_t AlignmentTilt; // w-tilting angle about 0 in the device coordinates G4ThreeVector Size; // assume rectangular shape, extensions in a,b,c G4ThreeVector Strips; // number of strips in u,v,w directions G4ThreeVector Pitch; // pitch in mm in u,v,w directions G4ThreeVector StripSize; // size of a strip in u,v,w directions Float_t PlaneResolution; // expected resolution, JB 2013/06/22 Float_t PlaneResolutionU; // expected resolution in U, AP 2014/11/20 Float_t PlaneResolutionV; // expected resolution in V, AP 2014/11/20 Float_t PlaneThickness; // plane thickness in mu, AP 2015/03/10 //Plane geometry parameters TString PlaneMaterial; // plane material, AP 2015/03/10 Float_t PlaneMetalThickness; //plane metalization thickness in fraction of total thickness, AP 2016/07/07 Float_t PlaneEpiThickness; //plane epitaxy thickness in fraction of total thickness, AP 2016/07/07 bool UsingTrackerResolution; //Bool to decide if using tracker resolution std::vector<PlanePerformances_t> PlanePerformancesList; //Resolution map vs multiplicity, added AP 2014/11/20 //Plane digitization parameters TString PlaneDigitization; // Digitization model Float_t PlaneDigitizeOcc; // Occupancy, only in case of digital output sensors Float_t PlaneDigitizeNoise; // Noise in electrons Float_t PlaneDigitizeCalib; // Calibration factor: from elec to volts Float_t PlaneDigitizeThre; // Threhold in noise units, mainly in case of digital output sensors Int_t PlaneDigitizeADCbits; // number of ADC bits Float_t PlaneDigitizeADCMin; // Lower level of ADC range, in volts Float_t PlaneDigitizeADCMax; // Upper level of ADC range, in volts Int_t Mapping; // 980106: only Mapping = 1 is supported Float_t ThreshNeighbourSN; // threshold of mean Signal-to-Noise on neighbour strips (adjcnt seed) Float_t ThreshSeedSN; // threshold of mean Signal-to-Noise on seed strip Int_t MaxNStrips; // maximum number of strips in the cluster Int_t MinNStrips; // maximum number of strips in the cluster G4ThreeVector ClusterLimit; // maximum extension of clusters in u,v,w direction Float_t ClusterLimitRadius; // maximum radius from center of gravity to associate a pixel to a cluster Int_t CommonRegions; // number of regions for common mode/shift correction (2 in case of 2 VA) Int_t Status; // Status: Primary Reference = 1., Secondary Reference = 2. Test = 3. Int_t ParentLadderID; // ID of parent ladder, -1 if none, JB 2013/01/16 Int_t HitPositionAlgorithm; // 1= Center of Gravity, 2 = eta, 3 = kappa Int_t EtaCoefficientsN; // number of eta correction coefficients Float_t EtaCoefficient[tpsz]; // the coefficients Float_t EtaLowLimit; // use eta correction from lower limit Float_t EtaHighLimit; // .. to high limit Int_t KappaCoefficientsN; // number of kappa correction coefficients Float_t KappaCoefficient[tpsz]; // the coefficients Float_t KappaLowLimit; // use kappa correction from lower limit Float_t KappaHighLimit; // .. to high limi Int_t GammaCoefficientsN; // number of gamma correction coefficients Float_t GammaCoefficient[tpsz];// the coefficients Float_t GammaLowLimit; // kappa-to-eta limit, low limit Float_t GammaHighLimit; // eta-to-kappa limit, high limit Int_t NoisyStripsN; // number of noisy strips Float_t NoisyStripsIndex[tpsz]; // noisy strips index Int_t IfDigitize; // >0 if to emulate digitization over IfDigitization(<=4) bits Int_t DigitizeThresholds[fMaxDigitalThresholds]; // 2^(IfDigitization) thresholds to emulate digitization Int_t IfDeformed; // >0 to take deformation into account Float_t CoeffLegendreU[7]; // Deformation coeff, U-direction Float_t CoeffLegendreV[7]; // Deformation coeff, V-direction }; PlaneParameter_t *pPlaneParameter; PlaneParameter_t& GetPlanePar(Int_t aPN) {return pPlaneParameter[aPN-1];} std::vector<int> ListOfSensitivePlanes; int GetNSensitivePlanes(void) {return ListOfSensitivePlanes.size();} int GetSensitivePlanesIdx(int idx) {return ListOfSensitivePlanes[idx];} Int_t** ChannelUse; //! pointer to bits on good channels Int_t* ChannelAllUse; //! use all channels in DAcq struct AcqParameter_t { Int_t FileHeaderSize; // size of the FileHeader Int_t EventBufferSize; // size given by ExaByte format Int_t FileHeaderLine; // significan run header in this line Int_t ModuleTypes; // number of acquisition modul types // e.g. a Sirocco of Type A, B, or LBL-Pixel device Int_t BinaryCoding; // 0 for BigEndian, 1 for LittleEndian Int_t TriggerMode; // Expect a Trigger (1) or not (0) to separate event, JB 2010/08/23 Int_t EventBuildingMode; // SS 2011.11.14 } AcqParameter; AcqParameter_t& GetAcqPar(){return AcqParameter;} struct AcqModuleParameter_t { enum {tpsz = 100}; Char_t Name[tpsz]; // Name of the Acquisition Module (e.g. Sirocco Type A) Int_t Devices; // Quantity of Devices of this Module type Int_t Type; // Type of this Module ( e.g. 1 = Sirocco Type A... ) Int_t EventBuildingBoardMode; // JB 2013.06.22 Int_t Inputs; // Number of Inputs per Module Int_t Channels[fMaxModules];// Number of Channels acquired via an input Int_t Bits[fMaxModules]; // Number of Bits reserved for value Int_t SigBits[fMaxModules]; // Number of significant bits, coding the value Char_t *DeviceDataFile[fMaxModules]; // Data file name for each device, JB 2009/05/25 Int_t NbOfFramesPerChannel[fMaxModules]; Int_t PixelShiftMod[fMaxModules]; // JB 2015/05/12 Int_t FirstTriggerChannel; Int_t LastTriggerChannel; Int_t PixelShift; // JB,CB,PLR 2015/03/24 Int_t AmpOffset; // JB,CB,PLR 2015/03/24 Float_t AmpFactor; // JB,CB,PLR 2015/03/24 UInt_t Trailer; // JB,CB,PLR 2015/03/24 }; //Char_t* GetModuleDataFile( Int_t aMod) { return pModuleDataFile[aMod]; } AcqModuleParameter_t *pAcqModuleParameter; //! don''t put in Streamer AcqModuleParameter_t& GetModulePar(Int_t aMTN) { return pAcqModuleParameter[aMTN-1]; } struct RunParameter_t { enum {tpsz = 250}; TString Affiliation; // your group TString Signature; // whom to blame on this analysis result TString BeamTime; // when this data was taken TString Confidence; // state of alignement or other comments TString DataPath; // Path to the data TString DataSubDirPrefix; // Prefix of the subdir that contains data files, concatenated with run number TString Extension; // Extension for a data file Int_t Number; // Run Number to be analysed as a String Int_t EventsInFile; // How many events are in a file Int_t StartIndex; // start index of the file for processing Int_t EndIndex; // end index Int_t NoiseRun; // Run number of noise run YV 27/11/09 } RunParameter; RunParameter_t& GetRunPar() {return RunParameter;} }; #endif
[ "jongho.lee@cern.ch" ]
jongho.lee@cern.ch
fecd5a6d4550dd5ee41e9771121479b5b985f5f4
50b7980236b960b133c91c6d653fb334d904252c
/SDK/BP_FullBeardMale01_classes.h
4d15ba40eb92cc03f3439fffd8c99b36edef44a9
[]
no_license
wyverns1/mordhau_sdk
c5fa2978203f6c3d405a011c06c39274f52549d1
43693f2102efc684c1d27fb5b4a0abfa67c1f596
refs/heads/master
2020-06-04T00:55:40.096978
2019-06-13T17:12:36
2019-06-13T17:12:36
191,802,239
0
0
null
null
null
null
UTF-8
C++
false
false
647
h
#pragma once // Name: MORDHAU, Version: 1.0.0 #ifdef _MSC_VER #pragma pack(push, 0x8) #endif namespace SDK { //--------------------------------------------------------------------------- // Classes //--------------------------------------------------------------------------- // BlueprintGeneratedClass BP_FullBeardMale01.BP_FullBeardMale01_C // 0x0000 (0x0070 - 0x0070) class UBP_FullBeardMale01_C : public UCharacterHair { public: static UClass* StaticClass() { static auto ptr = UObject::FindClass("BlueprintGeneratedClass BP_FullBeardMale01.BP_FullBeardMale01_C"); return ptr; } }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "jay50@pitt.edu" ]
jay50@pitt.edu
c176f8178fc799384889abbb1e0045106afe96a1
486c7e8a16a1d5419bc7a385dd4d043558ee04ef
/VmpcPlugin/Source/ThirdParty/include/mpc/src/sequencer/ControlChangeEvent.hpp
fb82affe03a1eff183a7814abd3217411d7399ed
[]
no_license
izzyreal/vmpc-unreal-plugin
73751fcd825ffe777fd08c7b651ef374aeb7c2fa
338ae3373956b88473d804ca75f081a756382f11
refs/heads/master
2023-04-11T02:24:46.902201
2021-04-28T20:39:10
2021-04-28T20:39:10
113,060,206
0
0
null
null
null
null
UTF-8
C++
false
false
432
hpp
#pragma once #include <sequencer/Event.hpp> #include <memory> namespace mpc { namespace sequencer { class ControlChangeEvent : public Event { private: int controllerNumber{ 0 }; int controllerValue{ 0 }; public: void setController(int i); int getController(); void setAmount(int i); int getAmount(); void CopyValuesTo(std::weak_ptr<Event> dest) override; ControlChangeEvent(); }; } }
[ "izmaelverhage@gmail.com" ]
izmaelverhage@gmail.com
703af45c48eb10e8d1500594f2d6d0a100972a31
a328bae3b9cbb579904afda1e889b65c5941346d
/Laboratorio 05/CW-02.cpp
defd881252b4adde16f2c74cdef53db70db11914
[]
no_license
RobertoLopez107/PED0319-RRLA-00213019
689279a933da153aa86d28408621c24a5baa944d
5a49535cbdaf841ab44c3777d9e39a7997f5d0f4
refs/heads/master
2020-12-10T04:53:18.952596
2020-02-05T18:11:35
2020-02-05T18:11:35
233,157,934
1
0
null
null
null
null
UTF-8
C++
false
false
1,825
cpp
#include <iostream> #include <string> using namespace std; struct node{ string content, address; float weight; node* next; }; typedef node* st; void push(st* pSt, string content, string address, float weight); node top(st* pSt); node pop(st* pSt); bool isEmpty(); int main (void){ st pSt = NULL; int option = 0; string content, address; float weight; do{ cout << "Peso "; cin >> weight; cin.ignore(); cout << "Contenido: "; getline (cin, content); cout << "Destino: "; getline(cin, address); push(&pSt, content, address, weight); }while(option != 0); node aux = top(&pSt); cout << "Peso: " << aux.weight << endl; cout << "Content: " << aux.content << endl; cout << "Direccion: " << aux.address << endl; } void push(st* pSt, string content, string address, float weight){ node* newNode = new node; newNode->address = address; newNode->content= content; newNode->weight = weight; newNode -> next = *pSt; *pSt = newNode; } node top(st* pSt){ node aux; if(!(*pSt)){ aux.address = ""; aux.content = ""; aux.weight = 0; aux.next = NULL; return aux; } else{ aux.address = (*pSt)->address; aux.content = (*pSt)->content; aux.weight = (*pSt)->weight; aux.next = NULL; } return aux; } node pop(st* pSt){ node aux; if(!(*pSt)){ aux.address = ""; aux.content = ""; aux.weight = 0; aux.next = NULL; return aux; } else{ aux.address = (*pSt)->address; aux.content = (*pSt)->content; aux.weight = (*pSt)->weight; aux.next = NULL; (*pSt) = (*pSt)->next; } return aux; } bool isEmpty(*pSt){ return *pSt == NULL; }
[ "00213019@uca.edu.sv" ]
00213019@uca.edu.sv
24df0b0bca9ee08f2640243db3783146b199f563
d494ec6c33c51c1abeac71a6ce55e29f40090131
/src/native/win_dx11/WinDX11Theme.h
b0c8c5a560bf1b0b5c39f6288808a707b62911ad
[]
no_license
ENgineE777/EUI
6c66dfa29f086a356080770e390f39b06f668e06
b99b6f95a25a04b22d6a4b6bf3ac1f634757cf1c
refs/heads/master
2021-06-02T02:28:20.244427
2020-05-31T02:21:16
2020-05-31T02:21:16
86,351,436
3
1
null
2018-01-11T18:33:32
2017-03-27T15:21:44
C++
UTF-8
C++
false
false
3,831
h
#pragma once #ifdef PLATFORM_WIN_DX11 #include "d3d11.h" #include <map> #include "EUITheme.h" #include "WinDX11Font.h" class WinDX11Theme : public EUITheme { public: ID3D11Device* pd3dDevice = nullptr; IDXGIFactory1* factory = nullptr; ID3D11DeviceContext* immediateContext = nullptr; struct WindowData { IDXGISwapChain* swapChain = nullptr; ID3D11RenderTargetView* renderTargetView = nullptr; ID3D11Texture2D* depthStencil = nullptr; ID3D11DepthStencilView* depthStencilView = nullptr; }; ID3D11Buffer* buffer = nullptr; ID3D11InputLayout* layout = nullptr; ID3D11VertexShader* vshader; ID3D11PixelShader* pshader; ID3D11Buffer* struct_buffer = nullptr; ID3D11ShaderResourceView* sbuffer_srview; ID3D11Texture2D* texture; ID3D11ShaderResourceView* srview; ID3D11SamplerState* sampler; ID3D11RasterizerState* raster_state = nullptr; ID3D11BlendState* blend_state = nullptr; uint32_t scr_width = 0; uint32_t scr_height = 0; struct Elem { float u, v, du, dv; float offset_u = -1; float offset_v = -1; float offset_du = -1; float offset_dv = -1; }; std::map<std::string, Elem> elems; enum { MaxInstCount = 1000 }; struct Params { float x, y, width, height; float u, v, du, dv; float scr_width, scr_height; int texture, dummy1; float r, g, b, a; float dummy[16]; }; int inst_count = 0; Params params; Params* data_buffer = nullptr; int skin_width = 0; int skin_height = 0; WinDX11Font font; int clamp_x = 0; int clamp_y = 0; int clamp_x2 = 0; int clamp_y2 = 0; int image_index = 0; std::map<std::string, HCURSOR> cursors; public: WinDX11Theme(); void* GetRenderDevice() override; void ReadTheme(JSONParser& parser) override; void Ulnload() override; void LoadImage(const char* name); void SetOutputWnd(WindowData& data, HWND hwnd, int wgt, int hgt); HCURSOR GetCursor(const char* name); void SetClampBorder(int x, int y, int w, int h); void SetScreenSize(WindowData& data, int scr_width, int scr_height); void Draw(const char* elem, int x, int y, int width, int height); void Draw(void* texture, float* color, int x, int y, int width, int height, float u = 0.0f, float v = 0.0f, float du = 1.0f, float dv = 1.0f); inline void Start() { D3D11_MAPPED_SUBRESOURCE res; immediateContext->Map(struct_buffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &res); data_buffer = (Params*)res.pData; inst_count = 0; } inline bool WinDX11Theme::ClampRect() { if (clamp_x > params.x + params.width) { return false; } if (params.x > clamp_x2) { return false; } if (clamp_y > params.y + params.height) { return false; } if (params.y > clamp_y2 + params.height) { return false; } if (clamp_x > params.x) { float k = (clamp_x - params.x) / params.width; params.width *= (1.0f - k); params.x = (float)clamp_x; params.u += params.du * k; params.du *= (1.0f - k); } if (params.x + params.width > clamp_x2) { float k = (clamp_x2 - params.x) / params.width; params.width *= k; params.du *= k; } if (clamp_y > params.y) { float k = (clamp_y - params.y) / params.height; params.height *= (1.0f - k); params.y = (float)clamp_y; params.v += params.dv * k; params.dv *= (1.0f - k); } if (params.y + params.height > clamp_y2) { float k = (clamp_y2 - params.y) / params.height; params.height *= k; params.dv *= k; } return true; } inline void GetNext() { memcpy(data_buffer, &params, sizeof(params)); inst_count++; if (inst_count >= MaxInstCount) { immediateContext->Unmap(struct_buffer, 0); immediateContext->DrawInstanced(4, inst_count, 0, 0); Start(); } else { data_buffer++; } } void Present(WindowData& data); }; extern WinDX11Theme* theme; #endif
[ "eguskov" ]
eguskov
44677d85b9d9b3fd765ddc4895370646e8254f67
98ea884dfa0ccdef32c6a361b848e20f6ea6cbed
/PString/PString.cpp
405e960564f932276a63317cc40b6b5c144f5235
[]
no_license
dhahaj/Arduino-libraries
c95a4818326c6c59537d9e935f0854b98f13a0d4
9a67d0cd1ce80c60b668f6743c3d4ca66c3937b0
refs/heads/master
2021-01-01T18:46:32.105068
2018-02-16T18:55:13
2018-02-16T18:55:13
98,433,137
1
0
null
null
null
null
UTF-8
C++
false
false
1,072
cpp
/** * * @file PString.cpp * @revision: A * */ #include "PString.h" /** * @brief begin * * @return void * * @details Details */ void PString::begin(void) { _cur = _buf; if (_size > 0) _buf[0] = '\0'; } /** * @brief write * * @param [uint8_t] b 8-bit unsigned integer. * @return size_t or void * * @details Details */ #if defined(ARDUINO) && ARDUINO >= 100 size_t PString::write(uint8_t b) #else void PString::write(uint8_t b) #endif { if (_cur + 1 < _buf + _size) { *_cur++ = (char)b; *_cur = '\0'; #if defined(ARDUINO) && ARDUINO >= 100 return 1; #endif } #if defined(ARDUINO) && ARDUINO >= 100 return 0; #endif } /** * @brief Brief * * @param [char *] str Pointer to a string or char array. * @param [in] ... Parameter_Description * @return Return_Description * * @details Details */ int PString::format(char *str, ...) { va_list argptr; va_start(argptr, str); int ret = vsnprintf(_cur, _size - (_cur - _buf), str, argptr); if (_size) while (*_cur) ++_cur; return ret; }
[ "dhahaj@gmail.com" ]
dhahaj@gmail.com
639b75d8802e3585f3487ba73b87b6ac2dcb710c
66165dc042ba505d7137a5baf27aac1ec5ffa033
/dia006/cat.cxx
0bccbc034b0269bd5246ae379190cd3cca788735
[]
no_license
ricardo-rios/programacionii
92a3e7069a71eecb4eb5601455f8f8b55f1d3dc2
6af5857f5fd877a8188743db6e46b81f76010948
refs/heads/master
2020-12-30T09:27:24.746166
2018-08-27T20:42:31
2018-08-27T20:42:31
100,416,756
0
0
null
2017-08-15T20:41:55
2017-08-15T20:28:31
null
UTF-8
C++
false
false
597
cxx
// Demonstrates inline functions // and inclusion of header files #include "cat.hxx" // be sure to include the header files! Cat::Cat(int initialAge) // { itsAge = initialAge; } Cat::~Cat() { } //constructor //destructor, takes no action // Create a cat, set its age, have it // meow, tell us its age, then meow again. int main() { Cat Frisky(5); Frisky.Meow(); cout << "Frisky is a cat who is " ; cout << Frisky.GetAge() << " years old.\n"; Frisky.Meow(); Frisky.SetAge(7); cout << "Now Frisky is " ; cout << Frisky.GetAge() << " years old.\n"; return 0; }
[ "ric@gmail.com" ]
ric@gmail.com
341f6c2b145fc8b5484c4601777f46d04381950c
20cf028a57ec7e7a3a020cbc8b11daac99319c31
/Set8/A8/CherryDatTruong.h
780fb45fc6aaa5bc94b0f52b795d5c00c140088e
[]
no_license
carolinearndt/CSCI261F18
a72bd97fd2b48b71fbf915f7b6e9342ffd54ba25
7327868a851d1058e4738816ff9da3df586bc233
refs/heads/master
2020-04-23T01:01:09.684395
2019-02-15T04:05:08
2019-02-15T04:05:08
170,799,875
0
0
null
null
null
null
UTF-8
C++
false
false
581
h
// // Created by Caroline Arndt on 12/10/18. // #ifndef A8_CHERRYDATTRUONG_H #define A8_CHERRYDATTRUONG_H class Magic{ public: void GetPrize(); bool GuessesRemain(); bool IsGuessCorrect(int); bool DidUserWin(); Magic(); private: void _Intro(); int _GenerateNum(); bool _userWon; const int _numTries = 3; //Can be changed to give different number of tries const int _randNumUpperBound = 15; // can be changed to increase the upper bound of random number int _randNum; int _failCount; }; #endif //A8_CHERRYDATTRUONG_H
[ "carolinearndt@mymail.mines.edu" ]
carolinearndt@mymail.mines.edu
4c8c06ab26f05e9a8f700ef88290e451a18a4e40
9df24e9110f06ea1004588c87a908c68497b22c0
/2016/BZOJ2200.cpp
e3999979d12cc26fb695d3b7b22824acc8117d95
[]
no_license
zhangz5434/code
b98f9df50f9ec687342737a4a2eaa9ef5bbf5579
def5fdcdc19c01f34ab08c5f27fe9d1b7253ba4f
refs/heads/master
2020-07-02T17:24:14.355545
2019-03-13T12:39:45
2019-03-13T12:39:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,281
cpp
#include<bits/stdc++.h> using namespace std; const int MAXN=25005; const int MAXM=150005; const int INF=0x3fffff; struct Edge { int to,nxt; int w; }e[MAXM]; int first[MAXN]; int tot; int n,r,p; int s; inline void Add_Edge(const int& u,const int& v,const int& w) { e[++tot].to=v; e[tot].w=w; e[tot].nxt=first[u]; first[u]=tot; } void init() { memset(first,-1,sizeof(first)); cin>>n>>r>>p>>s; int u,v,w; for(int i=1;i<=r;i++) { cin>>u>>v>>w; Add_Edge(u,v,w); Add_Edge(v,u,w); } for(int i=1;i<=p;i++) { cin>>u>>v>>w; Add_Edge(u,v,w); } } bool inq[MAXN]; int d[MAXN]; deque<int> q; void work() { for(int i=1;i<=n;i++) d[i]=INF; d[s]=0; q.push_back(s); inq[s]=1; while(!q.empty()) { int u=q.front(); q.pop_front(); inq[u]=0; for(int i=first[u];i!=-1;i=e[i].nxt) { int& v=e[i].to; int& w=e[i].w; if(d[v]>d[u]+w) { d[v]=d[u]+w; if(!inq[v]) { inq[v]=1; if(q.empty()) q.push_back(v); else if(d[v]<d[q.front()]) q.push_front(v); else q.push_back(v); } } } } for(int i=1;i<=n;i++) if(d[i]==INF) printf("NO PATH\n"); else printf("%d\n",d[i]); } int main() { init(); work(); return 0; }
[ "728031989@qq.com" ]
728031989@qq.com
941d0033fedebee62aa5101f9008af9139004f93
493720d6125d28867308817ecc476539a8eac6a0
/problem-056/Powerful digit sum.cpp
0f04aaa4a4d297e391b1ab169ed06aec39a2c785
[]
no_license
karkad96/project-euler
672c1e7289cbd54d18e2d6b7c166d4149f469c02
9e25cd9e59db53762d0af8d402dc36963d436d1b
refs/heads/master
2022-11-12T18:33:54.720624
2020-06-18T12:59:13
2020-06-18T12:59:13
268,080,789
0
0
null
null
null
null
UTF-8
C++
false
false
1,111
cpp
#include <iostream> #include <string> using namespace std; string multiply(string a, unsigned int b) { string res = ""; unsigned int mx = a.size(); int carry = 0; for (int i = mx - 1; i >= 0; i--) { int mul = ((int)a[i] - 48) * b; res = (char)((mul + carry) % 10 + 48) + res; carry = (mul + carry) / 10; } while (carry) { res = (char)(carry % 10 + 48) + res; carry /= 10; } return res; } string power(unsigned int a, unsigned int b) { string res = "1"; for (unsigned int i = 0; i < b; i++) { res = multiply(res, a); } return res; } int digitalSum(string s) { int sum = 0; for (unsigned int i = 0; i < s.size(); i++) { sum += (int)s[i] - 48; } return sum; } int main() { int mx = 0; for (int a = 90; a < 100; a++) { for (int b = 90; b < 100; b++) { string s = power(a, b); int sum = digitalSum(s); if (mx < sum) mx = sum; } } cout << mx << endl; return 0; }
[ "62353693+karkad96@users.noreply.github.com" ]
62353693+karkad96@users.noreply.github.com
806dccc3b0cbe6b442fc07bfbc8485743d883f4d
76859f325589b72fbb1c4bf8678505cf64a62334
/src/lib/moo/discrete_animation_channel.cpp
006eabc1267baf567384ea971e07095079cad456
[]
no_license
yf885188/BigWorld-Engine-1.9.1
267d3d24c29e414308143d3b2440cd4255ec4557
e9d5a56739eb20c0c6973653a1342000e9f699be
refs/heads/master
2023-08-29T17:12:16.985405
2021-11-18T06:41:31
2021-11-18T06:41:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,553
cpp
/****************************************************************************** BigWorld Technology Copyright BigWorld Pty, Ltd. All Rights Reserved. Commercial in confidence. WARNING: This computer program is protected by copyright law and international treaties. Unauthorized use, reproduction or distribution of this program, or any portion of this program, may result in the imposition of civil and criminal penalties as provided by law. ******************************************************************************/ #include "pch.hpp" #include "discrete_animation_channel.hpp" #ifndef CODE_INLINE #include "discrete_animation_channel.ipp" #endif #include "cstdmf/binaryfile.hpp" memoryCounterDeclare( animation ); namespace Moo { DiscreteAnimationChannel::DiscreteAnimationChannel() { } DiscreteAnimationChannel::~DiscreteAnimationChannel() { BW_GUARD; memoryCounterSub( animation ); memoryClaim( keyframes_ ); for (DiscreteKeyframes::iterator it = keyframes_.begin(); it != keyframes_.end(); it++) { memoryClaim( keyframes_, it ); } } Matrix DiscreteAnimationChannel::result( float time ) const { BW_GUARD; Matrix m; DiscreteKeyframes::const_iterator it = keyframes_.upper_bound( time ); if (it != keyframes_.begin()) --it; if (it != keyframes_.end()) m = (const Matrix&)it->second; else XPMatrixIdentity( &m ); return m; } void DiscreteAnimationChannel::addKey( float time, const Matrix& key ) { keyframes_[ time ] = key; } void DiscreteAnimationChannel::result( float time, Matrix& out ) const { BW_GUARD; DiscreteKeyframes::const_iterator it = keyframes_.upper_bound( time ); if (it != keyframes_.begin()) --it; if (it != keyframes_.end()) out = (const Matrix&)it->second; } /** * Call this method when you have finished adding keys. * Currently it is only necessary for memory accounting balancing. */ void DiscreteAnimationChannel::finalise() { BW_GUARD; memoryCounterAdd( animation ); memoryClaim( keyframes_ ); for (DiscreteKeyframes::iterator it = keyframes_.begin(); it != keyframes_.end(); it++) { memoryClaim( keyframes_, it ); } } void DiscreteAnimationChannel::preCombine( const AnimationChannel & rOther ) { BW_GUARD; Matrix m; for (DiscreteKeyframes::iterator it = keyframes_.begin(); it != keyframes_.end(); it++) { rOther.result( it->first, m ); //it->second.preMultiply( m ); Matrix our( (Matrix&)it->second ); // copy since it->second unaligned our.preMultiply( m ); it->second = our; } } void DiscreteAnimationChannel::postCombine( const AnimationChannel & rOther ) { BW_GUARD; Matrix m; for (DiscreteKeyframes::iterator it = keyframes_.begin(); it != keyframes_.end(); it++) { rOther.result( it->first, m ); //it->second.postMultiply( m ); //it->second.preMultiply( m ); Matrix our( (Matrix&)it->second ); // copy since it->second unaligned our.postMultiply( m ); it->second = our; } } bool DiscreteAnimationChannel::load( BinaryFile & bf ) { BW_GUARD; if( !this->AnimationChannel::load( bf ) ) return false; bf.readMap( keyframes_ ); this->finalise(); return !!bf; } bool DiscreteAnimationChannel::save( BinaryFile & bf ) const { BW_GUARD; if( !this->AnimationChannel::save( bf ) ) return false; bf.writeMap( keyframes_ ); return !!bf; } DiscreteAnimationChannel::TypeRegisterer DiscreteAnimationChannel::s_rego_( 0, New ); std::ostream& operator<<(std::ostream& o, const DiscreteAnimationChannel& t) { o << "DiscreteAnimationChannel\n"; return o; } } // discrete_animation_channel.cpp
[ "terran.erre@mail.ru" ]
terran.erre@mail.ru
1b8bd0a5de5767d2a90d97d2279b09bb64dca3e1
76712340a51d94b478bc0d696c59ea52b09704fa
/wcs2kml_install/include/google/color.h
a9661eb5768f1104ec89b1c752b0ed28bdddbfb3
[]
no_license
jgbrainstorm/des-google-earth
8c230ff925d6622b44b69f865eacfa2924bd6957
e8d5d904a8c1b94355efb5f4acdc20123dace40b
refs/heads/master
2018-12-28T18:16:36.923735
2012-12-05T19:09:39
2012-12-05T19:09:39
33,557,073
0
0
null
null
null
null
UTF-8
C++
false
false
6,417
h
// Copyright 2007 Google Inc. // Author: Jeremy Brewer // // 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 COLOR_H__ #define COLOR_H__ #include <cassert> #include <google/uint8.h> namespace google_sky { // Class for storing uint8 pixel values. // // Color is a simple uint8 array container class that implements bounds // checking. It is designed to be used with the PngImage class which stores // a plain uint8 C array underneath. // // The meaning of the channels (which are simply index by number 0 to 3) changes // depending on the colorspace of the image. For example, an RGB image has // 3 channels where R = 0, G = 1, and B = 2. An image in the grayscale + // alpha colorspace has 2 channels where channel 0 = intensity and channel 1 = // alpha. For this reason, it only makes sense to compare Colors that have // the same number of channels -- the Equals() and EqualsIgnoringAlpha() // will die if the Colors differ in number of channels. // // One final note is that the convention for the channels is such that the // alpha channel is always the last channel. The EqualsIgnoringAlpha() method // will therefore compare every channel except the last one, which only makes // sense for grayscale + alpha or RGBA pixels. Thus, you can compare 2 RGB // pixels with EqualsIgnoringAlpha() and it will compare R and G only. This // isn't optimum, but it was done for efficiency reasons to reduce the number // of checks needed. So it is up to you to make sure you use this method // properly. // // Example Usage: // // // Creates a pixel with 3 channels (RGB). By default, every pixel value // // is set to 0 (black). // Color pixel(3); // // // Makes RGB values gray. // pixel.SetAllChannels(128); // // // Set the G channel to max intensity. // pixel.SetChannel(1, 255); // // // Compare 2 colors. They must have the same number of channels. // Color black(3); // // if (black.Equals(pixel)) { // printf("Something is very wrong.\n"); // } // // // Pass off the internal array to a function that takes a const uint8 * and // // its length. // DoSomethingWithAConstArray(pixel.get(), pixel.channels()); // // // get() is const overloaded, so we can also pass off a mutable version. // DoSomethingWithAMutableArray(pixel.get(), pixel.channels()); class Color { public: // Creates a color the given number of channels and the color value 0 for // every value. explicit Color(int num_channels); // Creates a color object from an array values for each channel. Color(const uint8 *color, int num_channels); // Sets all channels to the given color value. inline void SetAllChannels(uint8 value) { for (int i = 0; i < channels_; ++i) { array_[i] = value; } } // Returns the value of the ith channel. The index i must be in the // range 0 to # channels - 1. inline uint8 GetChannel(int i) const { CheckIndex(i); return array_[i]; } // Sets the value of the ith channel. The index i must be in the // range 0 to # channels - 1. inline void SetChannel(int i, uint8 value) { CheckIndex(i); array_[i] = value; } // Sets all channels in the given range to the given value. The range // of the loop is start to stop - 1, just like a normal C for loop of the // form for (int i = start; i < stop; ++i) { ... }. inline void SetChannels(int start, int stop, uint8 value) { CheckIndex(start); CheckIndex(stop - 1); for (int i = start; i < stop; ++i) { array_[i] = value; } } // Copies the given range of channels from the input color. The range // of the loop is start to stop - 1, just like a normal C for loop of the // form for (int i = start; i < stop; ++i) { ... }. inline void CopyChannels(const Color &color, int start, int stop) { CheckIndex(start); CheckIndex(stop - 1); for (int i = start; i < stop; ++i) { array_[i] = color.array_[i]; } } // Tests whether two colors are equal. The colors must have the same // number of channels. inline bool Equals(const Color &color) const { assert(channels_ == color.channels_); for (int i = 0; i < channels_; ++i) { if (array_[i] != color.array_[i]) { return false; } } return true; } // Tests whether two colors are equal except for their alpha channel. The // colors must have the same number of channels. inline bool EqualsIgnoringAlpha(const Color &color) const { assert(channels_ == color.channels_); // The alpha channel is always stored as the last channel. for (int i = 0; i < channels_ - 1; ++i) { if (array_[i] != color.array_[i]) { return false; } } return true; } // Returns the number of channels for this color. inline int channels(void) const { return channels_; } // Returns a const pointer to the underlying array. The array contains the // colors in the order RGBA. If there are fewer than 3 channels, the colors // are order grayscale, alpha. inline const uint8 *get(void) const { return const_cast<const uint8 *>(array_); } // Returns a mutable pointer to the underlying array. The array contains the // colors in the order RGBA. If there are fewer than 3 channels, the colors // are order grayscale, alpha. inline uint8 *get(void) { return array_; } ~Color() { // Nothing needed. } private: // Maximum number of channels. static const int MAX_CHANNELS = 4; // Internal array. uint8 array_[4]; // Actual length of array. int channels_; // Not allowed because the number of channels should be explicitly set. Color(); // Checks whether the given index is valid and dies otherwise. inline void CheckIndex(int i) const { assert(i >= 0 && i < channels_); } // Don't allow copying. Color(const Color &); Color &operator=(const Color &); }; // end Color } // end namespace google_sky #endif // COLOR_H__
[ "jiangang.steven.hao@c8e35367-afbd-0482-d819-7f1455ac6a61" ]
jiangang.steven.hao@c8e35367-afbd-0482-d819-7f1455ac6a61
2c2ac32e76ce4063fcc5a263d157b850a7d3b82a
c20c4812ac0164c8ec2434e1126c1fdb1a2cc09e
/Source/Source/Tools/GameDesignerEditor/AtlKG3DEngineProxy/IndeSource/SO3Represent/case/actionobject/krlcursor.h
29233307f535ab0cf8eb06a374ab0c3ee1d52f5f
[ "MIT" ]
permissive
uvbs/FullSource
f8673b02e10c8c749b9b88bf18018a69158e8cb9
07601c5f18d243fb478735b7bdcb8955598b9a90
refs/heads/master
2020-03-24T03:11:13.148940
2018-07-25T18:30:25
2018-07-25T18:30:25
142,408,505
2
2
null
2018-07-26T07:58:12
2018-07-26T07:58:12
null
UTF-8
C++
false
false
1,180
h
#ifndef CASE_ACTION_OBJECT_KRLCURSOR_H #define CASE_ACTION_OBJECT_KRLCURSOR_H #include "../gameworld/ktabledefine.h" class IKG3DModel; class KRLScene; class KRLCursor : public IKG3DAnimationEventHandler { public: KRLCursor(); virtual ~KRLCursor(); int Update(double fTime, double fTimeLast, DWORD dwGameLoop, BOOL bFrame); HRESULT Init(KRLScene* pRLScene); HRESULT Exit(); HRESULT Show(DWORD dwSkillID, DWORD dwSkillLevel, ROLE_TYPE nRoleType); HRESULT Hide(); KRLScene* GetScene(); protected: virtual HRESULT OnPlayAnimationFinish(IKG3DAnimationController* pController); virtual HRESULT OnTagPlayingSFX(IKG3DAnimationController* pController, IKG3DModel* pModelSFX, TagSFXCallBackExtraInfo* pExtraInfo); virtual HRESULT OnMotionNotify(IKG3DAnimationController* pController, DWORD dwMotionInfo, TagMotionCallBackExtraInfo* pMotionCallBackExtraInfo); int UpdatePosition(); private: IKG3DModel* m_p3DModel; KRLScene* m_pRLScene; BOOL m_bVisible; }; int GetRLCursorPosition(KRLScene* pRLScene, D3DXVECTOR3* pvPosition); int ShowRLCursorEffect(KRLScene* pRLScene, KRLCursorEffectModel const* pcCursorEffectModel); #endif // CASE_ACTION_OBJECT_KRLCURSOR_H
[ "dark.hades.1102@GAMIL.COM" ]
dark.hades.1102@GAMIL.COM
663342f8d09ebe9d401ecf52e9ac38fc671c8598
f4db4250cb7cd32b8700db4de1ee23d3452c1596
/Practica/Volumenes Finitos/OpenFoam/Ejercicio3_Temperatura/0.65/U
fa0bad7f4ec5f5d34649fb3cdaab39a319f86726
[]
no_license
santichialvo/MecanicaComputacional
cc7e7af64542d7a6149a865ab0b16124db90a0d7
c7f63f6f39da1e7dcddfa4b0e83bb9179bdcff21
refs/heads/master
2021-01-10T04:00:05.616777
2015-12-08T02:45:23
2015-12-08T02:45:23
47,593,143
1
1
null
null
null
null
UTF-8
C++
false
false
40,546
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.4.0 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volVectorField; location "0.65"; object U; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 -1 0 0 0 0]; internalField nonuniform List<vector> 1600 ( (7.49477e-05 -7.44559e-05 0) (0.000159171 -4.8888e-05 0) (8.45007e-05 1.23101e-05 0) (-0.000169166 6.63763e-05 0) (-0.000570279 0.000106178 0) (-0.00107747 0.00013199 0) (-0.001661 0.000148842 0) (-0.0023016 0.000161721 0) (-0.00298972 0.000173939 0) (-0.00372161 0.000187002 0) (-0.00449507 0.000200898 0) (-0.00530563 0.00021446 0) (-0.00614382 0.000225716 0) (-0.00699329 0.000232184 0) (-0.00782987 0.000231128 0) (-0.00862152 0.000219803 0) (-0.00932916 0.000195737 0) (-0.00990849 0.000157114 0) (-0.010313 0.000103308 0) (-0.0104984 3.50511e-05 0) (-0.0104249 -4.67433e-05 0) (-0.010064 -0.000137107 0) (-0.00940452 -0.00022984 0) (-0.00845535 -0.000317506 0) (-0.00724816 -0.000391895 0) (-0.00583761 -0.000445049 0) (-0.00429878 -0.000470442 0) (-0.0027214 -0.000464093 0) (-0.00120148 -0.000425533 0) (0.00016694 -0.000358333 0) (0.00130159 -0.000268141 0) (0.00214196 -0.00016343 0) (0.00265354 -5.41144e-05 0) (0.00282946 5.07414e-05 0) (0.00269022 0.000142658 0) (0.00228289 0.000214025 0) (0.00168184 0.000254918 0) (0.000988817 0.000249637 0) (0.000345084 0.000174382 0) (2.82297e-05 2.88437e-05 0) (5.4342e-05 -0.000163978 0) (-3.63367e-05 3.49335e-05 0) (-0.000527589 0.000354279 0) (-0.00140339 0.000649396 0) (-0.00261027 0.000883663 0) (-0.00407816 0.00105613 0) (-0.00574584 0.00118332 0) (-0.00756956 0.00128383 0) (-0.00952168 0.00137104 0) (-0.0115841 0.00145108 0) (-0.0137402 0.00152301 0) (-0.0159676 0.00158009 0) (-0.0182322 0.0016114 0) (-0.0204844 0.00160353 0) (-0.0226578 0.00154221 0) (-0.0246698 0.00141406 0) (-0.0264243 0.00120828 0) (-0.0278171 0.000918588 0) (-0.0287435 0.00054496 0) (-0.0291091 9.48631e-05 0) (-0.0288336 -0.000416188 0) (-0.0278629 -0.000961439 0) (-0.0261847 -0.00150732 0) (-0.0238297 -0.00201462 0) (-0.0208757 -0.00244182 0) (-0.0174472 -0.00274971 0) (-0.0137099 -0.00290648 0) (-0.00985946 -0.00289246 0) (-0.00610677 -0.00270385 0) (-0.00265951 -0.00235463 0) (0.000295612 -0.0018737 0) (0.00261155 -0.00130231 0) (0.00419557 -0.000690351 0) (0.00501557 -8.93696e-05 0) (0.00510321 0.000450686 0) (0.00455394 0.000881362 0) (0.00352443 0.00115057 0) (0.00222534 0.00119478 0) (0.00094186 0.000936402 0) (0.00017303 0.000343684 0) (-1.65366e-05 -8.60841e-05 0) (-0.000419726 0.000539533 0) (-0.00148531 0.00134372 0) (-0.00309373 0.00208364 0) (-0.00515926 0.00268556 0) (-0.00759399 0.0031483 0) (-0.010319 0.00350326 0) (-0.0132758 0.00378729 0) (-0.016424 0.00402751 0) (-0.0197327 0.0042355 0) (-0.0231701 0.00440683 0) (-0.0266944 0.0045235 0) (-0.0302468 0.00455774 0) (-0.0337468 0.00447635 0) (-0.0370915 0.00424512 0) (-0.0401573 0.00383341 0) (-0.0428049 0.00321858 0) (-0.044888 0.00239036 0) (-0.0462633 0.00135454 0) (-0.0468036 0.000136162 0) (-0.0464053 -0.00121759 0) (-0.0450023 -0.00264196 0) (-0.0425842 -0.00405395 0) (-0.0391958 -0.00535911 0) (-0.0349429 -0.00645954 0) (-0.0299913 -0.00726363 0) (-0.0245608 -0.00769664 0) (-0.0189124 -0.00771091 0) (-0.0133314 -0.00729385 0) (-0.00810458 -0.00647216 0) (-0.00349688 -0.00531064 0) (0.000272806 -0.00390517 0) (0.00305298 -0.00237359 0) (0.00477444 -0.000844361 0) (0.00545673 0.000553475 0) (0.00520996 0.00169285 0) (0.00423077 0.00244612 0) (0.00278822 0.00267559 0) (0.00125008 0.00223176 0) (0.000255787 0.000994847 0) (-9.86035e-05 0.000229681 0) (-0.000872083 0.00156117 0) (-0.00260439 0.00303097 0) (-0.00502473 0.00434424 0) (-0.00800004 0.00541331 0) (-0.011423 0.00624755 0) (-0.0152019 0.00689913 0) (-0.01927 0.00742544 0) (-0.0235798 0.0078671 0) (-0.0280917 0.00823893 0) (-0.0327616 0.00852924 0) (-0.037531 0.00870396 0) (-0.042319 0.00871327 0) (-0.0470181 0.00849934 0) (-0.0514946 0.00800436 0) (-0.0555915 0.00717851 0) (-0.0591356 0.00598767 0) (-0.0619477 0.00442032 0) (-0.0638548 0.00249337 0) (-0.0647032 0.000256797 0) (-0.0643712 -0.00220456 0) (-0.0627793 -0.00477932 0) (-0.059908 -0.007325 0) (-0.0558028 -0.00968235 0) (-0.0505779 -0.0116871 0) (-0.0444178 -0.0131846 0) (-0.0375724 -0.0140463 0) (-0.0303457 -0.0141861 0) (-0.0230788 -0.0135735 0) (-0.0161257 -0.0122426 0) (-0.009825 -0.0102928 0) (-0.00446952 -0.00788101 0) (-0.000277825 -0.00520664 0) (0.00262811 -0.00249328 0) (0.00423604 2.88493e-05 0) (0.00464865 0.00213118 0) (0.00407755 0.00358951 0) (0.00282563 0.00417303 0) (0.0013161 0.00363787 0) (0.00027995 0.00173783 0) (-0.000184788 0.000806179 0) (-0.0013546 0.00315621 0) (-0.00380112 0.00547967 0) (-0.00708007 0.00748239 0) (-0.0109997 0.00909694 0) (-0.0154298 0.0103628 0) (-0.0202677 0.0113628 0) (-0.0254426 0.0121786 0) (-0.0309054 0.0128637 0) (-0.0366125 0.0134332 0) (-0.0425123 0.0138637 0) (-0.0485335 0.0141003 0) (-0.0545772 0.0140664 0) (-0.0605142 0.0136759 0) (-0.0661847 0.0128447 0) (-0.0714042 0.0115028 0) (-0.0759709 0.00960504 0) (-0.0796767 0.00714035 0) (-0.0823203 0.00413921 0) (-0.0837201 0.000678898 0) (-0.0837307 -0.00311585 0) (-0.0822479 -0.00708191 0) (-0.0792278 -0.011013 0) (-0.0746983 -0.0146798 0) (-0.0687621 -0.0178437 0) (-0.061602 -0.0202767 0) (-0.0534803 -0.0217831 0) (-0.0447309 -0.0222231 0) (-0.0357438 -0.0215335 0) (-0.0269407 -0.0197431 0) (-0.0187425 -0.0169787 0) (-0.0115312 -0.013458 0) (-0.00561129 -0.00947114 0) (-0.00117734 -0.00535374 0) (0.00170617 -0.00145873 0) (0.00311608 0.00186294 0) (0.00326474 0.00426812 0) (0.00247777 0.00541384 0) (0.00122002 0.00494285 0) (0.000271327 0.00246651 0) (-0.000271012 0.00164739 0) (-0.00184658 0.00534953 0) (-0.00502817 0.00872552 0) (-0.0091872 0.0115341 0) (-0.0140679 0.0137665 0) (-0.019516 0.0155166 0) (-0.0254192 0.0169118 0) (-0.0317069 0.0180633 0) (-0.038333 0.0190377 0) (-0.0452554 0.0198474 0) (-0.0524195 0.020453 0) (-0.0597463 0.0207734 0) (-0.067124 0.0207008 0) (-0.0744057 0.0201167 0) (-0.0814104 0.0189081 0) (-0.0879292 0.016983 0) (-0.0937337 0.0142837 0) (-0.098587 0.0107986 0) (-0.102256 0.006571 0) (-0.104523 0.00170433 0) (-0.10521 -0.00363755 0) (-0.104174 -0.00924037 0) (-0.101326 -0.0148316 0) (-0.0966601 -0.0201074 0) (-0.0902465 -0.0247471 0) (-0.0822474 -0.0284356 0) (-0.0729209 -0.0308928 0) (-0.0626191 -0.0319034 0) (-0.0517768 -0.0313486 0) (-0.0408882 -0.0292312 0) (-0.0304711 -0.0256904 0) (-0.0210202 -0.0210002 0) (-0.012955 -0.0155482 0) (-0.00657294 -0.00980024 0) (-0.00201518 -0.00425796 0) (0.000749709 0.000577215 0) (0.00192155 0.00421758 0) (0.00184457 0.00618613 0) (0.00101949 0.00599653 0) (0.000247116 0.00311473 0) (-0.00035659 0.00275622 0) (-0.00233794 0.00814853 0) (-0.00625596 0.0127782 0) (-0.0112959 0.0165086 0) (-0.0171377 0.019429 0) (-0.0236037 0.0217151 0) (-0.0305753 0.023554 0) (-0.0379857 0.0250934 0) (-0.0457964 0.0264141 0) (-0.0539716 0.0275229 0) (-0.0624591 0.0283594 0) (-0.0711762 0.0288116 0) (-0.0800027 0.0287353 0) (-0.0887776 0.0279753 0) (-0.0973016 0.0263857 0) (-0.105343 0.023849 0) (-0.112645 0.0202916 0) (-0.118941 0.0156976 0) (-0.123957 0.0101185 0) (-0.127435 0.0036795 0) (-0.129152 -0.00342025 0) (-0.128911 -0.0109171 0) (-0.126567 -0.0184729 0) (-0.122061 -0.0257065 0) (-0.115413 -0.0322066 0) (-0.106746 -0.0375575 0) (-0.0962934 -0.0413727 0) (-0.0844095 -0.0433347 0) (-0.0715633 -0.0432372 0) (-0.0583213 -0.0410255 0) (-0.0453107 -0.036826 0) (-0.0331649 -0.030955 0) (-0.0224559 -0.0239004 0) (-0.013625 -0.0162778 0) (-0.00692843 -0.00876924 0) (-0.00240736 -0.00206552 0) (0.000110536 0.00316728 0) (0.000983768 0.00629103 0) (0.000749198 0.00667456 0) (0.000217139 0.00363935 0) (-0.000440981 0.0041305 0) (-0.00282056 0.0115475 0) (-0.00746023 0.0176297 0) (-0.0133638 0.0223968 0) (-0.02015 0.0260767 0) (-0.0276213 0.0289544 0) (-0.035656 0.0312935 0) (-0.0441955 0.0332853 0) (-0.0532131 0.0350259 0) (-0.0626834 0.0365137 0) (-0.07256 0.0376627 0) (-0.0827607 0.0383242 0) (-0.0931591 0.0383121 0) (-0.103582 0.0374291 0) (-0.113814 0.0354914 0) (-0.123598 0.0323504 0) (-0.132648 0.0279109 0) (-0.140661 0.0221469 0) (-0.147322 0.0151112 0) (-0.152325 0.00694249 0) (-0.155395 -0.00212966 0) (-0.156277 -0.0117784 0) (-0.15476 -0.0216229 0) (-0.150725 -0.0312003 0) (-0.144126 -0.0400018 0) (-0.135025 -0.0474982 0) (-0.123609 -0.0531764 0) (-0.110204 -0.0565862 0) (-0.0952914 -0.057395 0) (-0.0794932 -0.0554471 0) (-0.0635463 -0.0508142 0) (-0.0482436 -0.0438256 0) (-0.0343498 -0.0350618 0) (-0.022504 -0.0253051 0) (-0.0131323 -0.0154573 0) (-0.00639243 -0.0064487 0) (-0.00216516 0.00082675 0) (-8.48706e-05 0.00553224 0) (0.000425465 0.00686852 0) (0.000186626 0.00401241 0) (-0.000522774 0.00576346 0) (-0.00328461 0.0155285 0) (-0.00861528 0.0232556 0) (-0.0153473 0.0291731 0) (-0.0230438 0.033687 0) (-0.0314919 0.0372195 0) (-0.040571 0.0401262 0) (-0.050234 0.0426499 0) (-0.0604693 0.0449027 0) (-0.0712644 0.0468716 0) (-0.0825812 0.0484396 0) (-0.094339 0.0494151 0) (-0.106406 0.0495636 0) (-0.118598 0.0486394 0) (-0.130678 0.0464139 0) (-0.142365 0.0427009 0) (-0.15334 0.0373776 0) (-0.163262 0.0304012 0) (-0.171777 0.021821 0) (-0.17853 0.0117852 0) (-0.183182 0.000549578 0) (-0.185443 -0.0115137 0) (-0.185053 -0.0239711 0) (-0.181812 -0.036284 0) (-0.175603 -0.047848 0) (-0.166408 -0.0580165 0) (-0.154337 -0.0661358 0) (-0.139653 -0.0715958 0) (-0.122803 -0.0738954 0) (-0.104424 -0.0727218 0) (-0.0853406 -0.0680308 0) (-0.066505 -0.0601108 0) (-0.0489093 -0.0496037 0) (-0.0334527 -0.0374642 0) (-0.0208071 -0.0248557 0) (-0.0113151 -0.0130146 0) (-0.00495615 -0.00313312 0) (-0.00137617 0.00369654 0) (4.88143e-05 0.0064723 0) (0.000157963 0.00421227 0) (-0.000599632 0.0076424 0) (-0.00371751 0.0200602 0) (-0.00969107 0.0296146 0) (-0.0171968 0.0367935 0) (-0.0257498 0.0422197 0) (-0.0351266 0.0464779 0) (-0.0452109 0.0500315 0) (-0.0559697 0.0531808 0) (-0.0674076 0.0560545 0) (-0.079526 0.0586242 0) (-0.0922944 0.0607362 0) (-0.105633 0.0621484 0) (-0.119402 0.0625706 0) (-0.133401 0.061701 0) (-0.147372 0.0592593 0) (-0.161004 0.0550155 0) (-0.173945 0.0488135 0) (-0.185817 0.0405905 0) (-0.196231 0.030391 0) (-0.204798 0.0183741 0) (-0.211144 0.00481705 0) (-0.214945 -0.00988781 0) (-0.215903 -0.0252341 0) (-0.213762 -0.0406253 0) (-0.208332 -0.0553748 0) (-0.199503 -0.0687276 0) (-0.187276 -0.0798897 0) (-0.171801 -0.0880748 0) (-0.153428 -0.0925758 0) (-0.132742 -0.0928599 0) (-0.110592 -0.0886847 0) (-0.0880585 -0.0802098 0) (-0.06637 -0.0680701 0) (-0.0467448 -0.053368 0) (-0.0301949 -0.0375621 0) (-0.0173499 -0.0222753 0) (-0.00836508 -0.00909787 0) (-0.00293514 0.000535536 0) (-0.000391981 0.0053646 0) (0.00013027 0.0042145 0) (-0.000668427 0.0097469 0) (-0.00410391 0.0250955 0) (-0.0106526 0.0366458 0) (-0.0188558 0.0451935 0) (-0.0281886 0.0516128 0) (-0.0384211 0.0566744 0) (-0.0494438 0.0609627 0) (-0.0612377 0.0648412 0) (-0.0738228 0.0684538 0) (-0.087212 0.0717524 0) (-0.101379 0.0745388 0) (-0.116241 0.076513 0) (-0.131645 0.0773202 0) (-0.147371 0.0765948 0) (-0.163131 0.0739983 0) (-0.178583 0.0692523 0) (-0.193343 0.0621664 0) (-0.207006 0.0526594 0) (-0.219162 0.0407747 0) (-0.229411 0.0266858 0) (-0.237376 0.010693 0) (-0.24272 -0.00678291 0) (-0.245138 -0.0251892 0) (-0.24435 -0.043888 0) (-0.240102 -0.0621347 0) (-0.23219 -0.0790921 0) (-0.220483 -0.0938464 0) (-0.20497 -0.105441 0) (-0.185829 -0.112939 0) (-0.1635 -0.115531 0) (-0.138755 -0.11268 0) (-0.112718 -0.104293 0) (-0.0868139 -0.0908744 0) (-0.0626111 -0.0735962 0) (-0.0415618 -0.0542111 0) (-0.0247194 -0.0348129 0) (-0.0125392 -0.0175233 0) (-0.00483717 -0.00425091 0) (-0.000922275 0.00339198 0) (9.99491e-05 0.00398504 0) (-0.00072545 0.0120472 0) (-0.00442632 0.0305691 0) (-0.0114606 0.0442668 0) (-0.0202608 0.0542849 0) (-0.0302709 0.0617785 0) (-0.0412572 0.0677244 0) (-0.0531166 0.0728387 0) (-0.0658421 0.0775511 0) (-0.0794653 0.0820192 0) (-0.0940053 0.0861686 0) (-0.109435 0.0897489 0) (-0.125658 0.0923926 0) (-0.142505 0.093672 0) (-0.159726 0.0931506 0) (-0.177001 0.0904272 0) (-0.193957 0.0851753 0) (-0.210183 0.0771749 0) (-0.225259 0.0663365 0) (-0.238776 0.0527141 0) (-0.250356 0.0365062 0) (-0.259654 0.0180451 0) (-0.266358 -0.00221708 0) (-0.270195 -0.0237137 0) (-0.270896 -0.0457773 0) (-0.268175 -0.0676481 0) (-0.261746 -0.0884523 0) (-0.251341 -0.107202 0) (-0.236754 -0.122803 0) (-0.217924 -0.134098 0) (-0.19504 -0.139964 0) (-0.16866 -0.139478 0) (-0.139811 -0.132143 0) (-0.110004 -0.118153 0) (-0.081122 -0.0985853 0) (-0.0551286 -0.0754132 0) (-0.0336613 -0.0512595 0) (-0.0176571 -0.028941 0) (-0.00718312 -0.0110309 0) (-0.00157847 0.000357846 0) (6.20946e-05 0.00347427 0) (-0.000766708 0.0145034 0) (-0.00466615 0.0363963 0) (-0.0120735 0.0523715 0) (-0.0213448 0.0639534 0) (-0.0319015 0.0726 0) (-0.0435067 0.0795088 0) (-0.0560614 0.0855356 0) (-0.0695654 0.0911777 0) (-0.0840551 0.0966024 0) (-0.0995481 0.101702 0) (-0.116007 0.106165 0) (-0.133317 0.109547 0) (-0.151279 0.11134 0) (-0.16961 0.111031 0) (-0.187956 0.108156 0) (-0.205913 0.102347 0) (-0.223056 0.0933679 0) (-0.238969 0.0811379 0) (-0.25327 0.0657425 0) (-0.265631 0.0474229 0) (-0.275777 0.0265537 0) (-0.283475 0.00361599 0) (-0.28851 -0.0208226 0) (-0.290664 -0.0460968 0) (-0.28967 -0.0714795 0) (-0.285191 -0.0961198 0) (-0.276844 -0.119024 0) (-0.264224 -0.139027 0) (-0.246988 -0.154801 0) (-0.224982 -0.164915 0) (-0.198411 -0.167999 0) (-0.168015 -0.163008 0) (-0.1352 -0.149591 0) (-0.102028 -0.128469 0) (-0.0709631 -0.101644 0) (-0.0443703 -0.0722433 0) (-0.0239032 -0.043944 0) (-0.0100883 -0.020245 0) (-0.00240513 -0.00398715 0) (9.68972e-06 0.00261045 0) (-0.000788308 0.0170648 0) (-0.00480521 0.0424722 0) (-0.0124506 0.0608297 0) (-0.0220413 0.0740575 0) (-0.032985 0.083929 0) (-0.0450403 0.091871 0) (-0.0581071 0.0988829 0) (-0.0721843 0.105529 0) (-0.0873041 0.111982 0) (-0.103473 0.118093 0) (-0.120635 0.12348 0) (-0.138647 0.127614 0) (-0.157275 0.129899 0) (-0.176199 0.129746 0) (-0.195033 0.126633 0) (-0.21335 0.120164 0) (-0.230726 0.110106 0) (-0.246766 0.0964134 0) (-0.261145 0.0792289 0) (-0.273612 0.0588577 0) (-0.283993 0.0357295 0) (-0.292162 0.010355 0) (-0.298 -0.0167007 0) (-0.301384 -0.0448174 0) (-0.302108 -0.0733414 0) (-0.299836 -0.101511 0) (-0.294116 -0.12841 0) (-0.28438 -0.1529 0) (-0.27001 -0.173572 0) (-0.250467 -0.188756 0) (-0.225483 -0.196636 0) (-0.195321 -0.195513 0) (-0.161031 -0.184259 0) (-0.124599 -0.16289 0) (-0.0888459 -0.133085 0) (-0.0569153 -0.0982896 0) (-0.0314272 -0.0631456 0) (-0.0136667 -0.0323975 0) (-0.00345093 -0.00995007 0) (-6.60034e-05 0.00129582 0) (-0.000786906 0.019671 0) (-0.00482753 0.0486731 0) (-0.0125555 0.0694877 0) (-0.0222902 0.0844291 0) (-0.0334341 0.0955861 0) (-0.0457384 0.104617 0) (-0.0590945 0.112664 0) (-0.0734909 0.120357 0) (-0.0889456 0.127867 0) (-0.105445 0.134999 0) (-0.122905 0.141292 0) (-0.141149 0.146124 0) (-0.159907 0.148813 0) (-0.178824 0.148693 0) (-0.197486 0.145198 0) (-0.215462 0.137921 0) (-0.232339 0.126659 0) (-0.247771 0.111431 0) (-0.261503 0.0924625 0) (-0.273382 0.0701452 0) (-0.283351 0.0449788 0) (-0.291408 0.0175098 0) (-0.297552 -0.0117085 0) (-0.301782 -0.042126 0) (-0.303989 -0.0731942 0) (-0.303895 -0.104301 0) (-0.30105 -0.134693 0) (-0.294793 -0.163367 0) (-0.284295 -0.188966 0) (-0.268652 -0.209707 0) (-0.247083 -0.223414 0) (-0.219227 -0.227722 0) (-0.185518 -0.220549 0) (-0.147536 -0.200836 0) (-0.108143 -0.169429 0) (-0.0711415 -0.129673 0) (-0.0402932 -0.0871009 0) (-0.0180111 -0.0480277 0) (-0.00476286 -0.0178879 0) (-0.000174409 -0.000591228 0) (-0.000760187 0.0222537 0) (-0.00472129 0.0548594 0) (-0.01236 0.0781716 0) (-0.0220438 0.0948762 0) (-0.0331782 0.107364 0) (-0.045503 0.117517 0) (-0.0588928 0.12662 0) (-0.0733156 0.135362 0) (-0.0887652 0.14391 0) (-0.1052 0.152014 0) (-0.122503 0.15913 0) (-0.140464 0.164545 0) (-0.15878 0.167486 0) (-0.177069 0.167224 0) (-0.194906 0.163164 0) (-0.211868 0.15491 0) (-0.227579 0.142317 0) (-0.24175 0.125493 0) (-0.254212 0.104771 0) (-0.264915 0.0806499 0) (-0.273915 0.0537095 0) (-0.28133 0.0245406 0) (-0.287284 -0.00631749 0) (-0.291899 -0.0384038 0) (-0.295179 -0.0712786 0) (-0.296957 -0.104523 0) (-0.296853 -0.137612 0) (-0.294215 -0.169787 0) (-0.288108 -0.199885 0) (-0.277361 -0.226186 0) (-0.260727 -0.246328 0) (-0.237174 -0.257391 0) (-0.206335 -0.25629 0) (-0.169036 -0.240588 0) (-0.127749 -0.209721 0) (-0.0865825 -0.166245 0) (-0.0504222 -0.116192 0) (-0.0231676 -0.0676582 0) (-0.0063762 -0.028191 0) (-0.00032271 -0.00319699 0) (-0.000707289 0.0247394 0) (-0.00448068 0.0608801 0) (-0.0118483 0.0866924 0) (-0.0212731 0.105188 0) (-0.0321722 0.119033 0) (-0.0442701 0.130318 0) (-0.0574161 0.140462 0) (-0.0715483 0.150211 0) (-0.0866281 0.159725 0) (-0.102581 0.168696 0) (-0.119258 0.176499 0) (-0.136421 0.182327 0) (-0.153741 0.185329 0) (-0.170829 0.184724 0) (-0.187267 0.179906 0) (-0.20266 0.170516 0) (-0.216683 0.156487 0) (-0.22912 0.138041 0) (-0.239888 0.115634 0) (-0.249028 0.0898789 0) (-0.256692 0.0614436 0) (-0.263099 0.0309663 0) (-0.268485 -0.00102061 0) (-0.273059 -0.0341394 0) (-0.276931 -0.0680568 0) (-0.280083 -0.102557 0) (-0.282261 -0.137382 0) (-0.282914 -0.172086 0) (-0.281135 -0.205834 0) (-0.275639 -0.237162 0) (-0.264847 -0.263757 0) (-0.247132 -0.282376 0) (-0.221264 -0.289056 0) (-0.187068 -0.279861 0) (-0.146161 -0.252302 0) (-0.102421 -0.207268 0) (-0.0615424 -0.150487 0) (-0.0291137 -0.0917197 0) (-0.00831371 -0.041254 0) (-0.000519557 -0.00668599 0) (-0.000629111 0.0270535 0) (-0.00410732 0.0665801 0) (-0.0110201 0.0948532 0) (-0.0199725 0.115145 0) (-0.0304035 0.130351 0) (-0.0420187 0.142752 0) (-0.0546353 0.153887 0) (-0.0681533 0.164558 0) (-0.0824972 0.174917 0) (-0.0975588 0.184604 0) (-0.113163 0.192913 0) (-0.129051 0.198955 0) (-0.144892 0.201812 0) (-0.160306 0.200669 0) (-0.174903 0.194927 0) (-0.18834 0.184286 0) (-0.200355 0.168774 0) (-0.21081 0.148736 0) (-0.219699 0.124757 0) (-0.227139 0.0975637 0) (-0.233343 0.0679077 0) (-0.238595 0.0364697 0) (-0.24321 0.00378506 0) (-0.247443 -0.0297961 0) (-0.251486 -0.0640777 0) (-0.255464 -0.0990139 0) (-0.259277 -0.134601 0) (-0.26255 -0.170739 0) (-0.264523 -0.207006 0) (-0.263966 -0.242361 0) (-0.25917 -0.2748 0) (-0.248088 -0.30107 0) (-0.228719 -0.316631 0) (-0.199793 -0.31616 0) (-0.16172 -0.294948 0) (-0.117545 -0.251357 0) (-0.0731637 -0.189604 0) (-0.0357373 -0.12046 0) (-0.0105758 -0.0574361 0) (-0.000771236 -0.0112275 0) (-0.000528445 0.0291248 0) (-0.00361113 0.0718074 0) (-0.00989265 0.102458 0) (-0.0181642 0.124522 0) (-0.0278971 0.141073 0) (-0.0387775 0.154545 0) (-0.0505853 0.166591 0) (-0.063178 0.178062 0) (-0.0764405 0.189108 0) (-0.090235 0.199324 0) (-0.104369 0.207937 0) (-0.118582 0.213988 0) (-0.132558 0.21651 0) (-0.145949 0.21467 0) (-0.158421 0.207898 0) (-0.169693 0.195962 0) (-0.179581 0.178998 0) (-0.188021 0.157471 0) (-0.19507 0.132089 0) (-0.200895 0.103682 0) (-0.205743 0.0730734 0) (-0.209915 0.0409804 0) (-0.213734 0.0079455 0) (-0.217489 -0.0256869 0) (-0.221434 -0.059825 0) (-0.225775 -0.094547 0) (-0.230567 -0.130062 0) (-0.235643 -0.16659 0) (-0.240476 -0.204153 0) (-0.244041 -0.242247 0) (-0.244706 -0.279401 0) (-0.240245 -0.312696 0) (-0.228098 -0.337425 0) (-0.205987 -0.347226 0) (-0.172959 -0.335204 0) (-0.130718 -0.296564 0) (-0.0846021 -0.232628 0) (-0.0428267 -0.153854 0) (-0.013137 -0.077016 0) (-0.00108137 -0.0169862 0) (-0.000409894 0.0308905 0) (-0.00301046 0.0764224 0) (-0.00850153 0.109321 0) (-0.0158987 0.133108 0) (-0.0247177 0.150962 0) (-0.0346267 0.16544 0) (-0.0453668 0.178287 0) (-0.0567509 0.190408 0) (-0.068626 0.201956 0) (-0.0808307 0.212498 0) (-0.0931677 0.221208 0) (-0.105393 0.227081 0) (-0.117226 0.229115 0) (-0.128377 0.226482 0) (-0.138579 0.21865 0) (-0.147634 0.205467 0) (-0.155435 0.18717 0) (-0.161983 0.164336 0) (-0.167384 0.137777 0) (-0.17183 0.108407 0) (-0.175567 0.0771045 0) (-0.178877 0.0446172 0) (-0.182052 0.0114948 0) (-0.185373 -0.0219377 0) (-0.189111 -0.0556152 0) (-0.193515 -0.0896927 0) (-0.198761 -0.124525 0) (-0.204878 -0.160592 0) (-0.211608 -0.198325 0) (-0.218229 -0.237797 0) (-0.223359 -0.278229 0) (-0.224841 -0.317339 0) (-0.219834 -0.350703 0) (-0.205284 -0.371435 0) (-0.178925 -0.370805 0) (-0.140831 -0.34064 0) (-0.0950719 -0.278132 0) (-0.0500777 -0.19153 0) (-0.0159457 -0.100149 0) (-0.00145064 -0.0241082 0) (-0.000279573 0.0323005 0) (-0.00233136 0.080306 0) (-0.00689994 0.115279 0) (-0.0132547 0.140706 0) (-0.0209684 0.159804 0) (-0.0296959 0.175201 0) (-0.0391414 0.18872 0) (-0.0490744 0.201321 0) (-0.0593077 0.213174 0) (-0.0696646 0.223835 0) (-0.0799561 0.23245 0) (-0.0899715 0.237988 0) (-0.099486 0.239436 0) (-0.108283 0.235983 0) (-0.116182 0.227149 0) (-0.12307 0.212854 0) (-0.128917 0.193427 0) (-0.133779 0.169539 0) (-0.137794 0.14208 0) (-0.141152 0.112019 0) (-0.144077 0.0802729 0) (-0.146805 0.0476047 0) (-0.149575 0.0145696 0) (-0.152623 -0.0185114 0) (-0.156195 -0.0515684 0) (-0.160549 -0.0847772 0) (-0.165933 -0.118564 0) (-0.172528 -0.153577 0) (-0.180329 -0.190581 0) (-0.18895 -0.230193 0) (-0.197376 -0.27239 0) (-0.203722 -0.315756 0) (-0.205153 -0.356561 0) (-0.198145 -0.387977 0) (-0.179341 -0.400033 0) (-0.147139 -0.381397 0) (-0.103833 -0.324332 0) (-0.0571256 -0.232756 0) (-0.0189275 -0.126837 0) (-0.00187669 -0.0327077 0) (-0.00014462 0.0333215 0) (-0.00160623 0.0833686 0) (-0.00515664 0.120197 0) (-0.0103364 0.147155 0) (-0.0167875 0.167411 0) (-0.024159 0.183625 0) (-0.0321235 0.197677 0) (-0.0404114 0.210578 0) (-0.0488064 0.222537 0) (-0.0571248 0.233118 0) (-0.0651978 0.241469 0) (-0.0728617 0.246554 0) (-0.0799623 0.247373 0) (-0.0863693 0.243144 0) (-0.0919964 0.233438 0) (-0.0968165 0.218243 0) (-0.10087 0.197961 0) (-0.10426 0.173326 0) (-0.107137 0.14528 0) (-0.109677 0.11482 0) (-0.112063 0.0828768 0) (-0.114475 0.0502168 0) (-0.117084 0.0173976 0) (-0.120065 -0.0152508 0) (-0.123615 -0.0476343 0) (-0.127964 -0.0799054 0) (-0.133383 -0.112492 0) (-0.14015 -0.14612 0) (-0.148455 -0.181779 0) (-0.158226 -0.22054 0) (-0.168854 -0.263117 0) (-0.178867 -0.309075 0) (-0.185677 -0.355709 0) (-0.185618 -0.396807 0) (-0.174556 -0.421877 0) (-0.149375 -0.417017 0) (-0.110343 -0.369326 0) (-0.0636057 -0.276488 0) (-0.0219952 -0.156918 0) (-0.00235527 -0.0428583 0) (-1.26933e-05 0.0339398 0) (-0.000872008 0.0855563 0) (-0.00335286 0.123982 0) (-0.00726945 0.152327 0) (-0.0123429 0.173638 0) (-0.0182266 0.190553 0) (-0.0245695 0.204989 0) (-0.0310698 0.218012 0) (-0.0374885 0.229881 0) (-0.0436421 0.2402 0) (-0.0493904 0.248142 0) (-0.0546266 0.252697 0) (-0.0592756 0.252892 0) (-0.0633004 0.247986 0) (-0.0667097 0.237598 0) (-0.0695616 0.22177 0) (-0.0719601 0.20095 0) (-0.0740431 0.175911 0) (-0.0759647 0.147611 0) (-0.0778775 0.117055 0) (-0.0799191 0.085164 0) (-0.0822088 0.0526974 0) (-0.0848533 0.0202113 0) (-0.0879625 -0.0119496 0) (-0.0916704 -0.0436553 0) (-0.0961614 -0.0750064 0) (-0.101688 -0.106381 0) (-0.108561 -0.138503 0) (-0.117095 -0.172473 0) (-0.127464 -0.209693 0) (-0.13944 -0.25152 0) (-0.152025 -0.298511 0) (-0.163057 -0.349195 0) (-0.169017 -0.398448 0) (-0.165352 -0.436008 0) (-0.147717 -0.446224 0) (-0.114346 -0.411342 0) (-0.0692289 -0.321471 0) (-0.0250662 -0.190092 0) (-0.00288248 -0.0545927 0) (0.000108157 0.0341631 0) (-0.000168305 0.0868563 0) (-0.0015786 0.126589 0) (-0.00419589 0.156145 0) (-0.00782631 0.178384 0) (-0.0121378 0.195871 0) (-0.0167663 0.210539 0) (-0.0213876 0.223509 0) (-0.0257468 0.235105 0) (-0.0296662 0.244995 0) (-0.0330392 0.252409 0) (-0.0358202 0.256385 0) (-0.0380164 0.255997 0) (-0.0396845 0.250549 0) (-0.0409259 0.239702 0) (-0.0418787 0.223534 0) (-0.0427037 0.202517 0) (-0.0435669 0.177427 0) (-0.044622 0.149218 0) (-0.045996 0.118871 0) (-0.047784 0.0872887 0) (-0.0500523 0.0552106 0) (-0.0528504 0.0231891 0) (-0.0562303 -0.00841595 0) (-0.0602666 -0.0394353 0) (-0.065086 -0.0699054 0) (-0.0708952 -0.100124 0) (-0.0779905 -0.130753 0) (-0.0867326 -0.162909 0) (-0.0974519 -0.198186 0) (-0.110229 -0.238443 0) (-0.124528 -0.285152 0) (-0.138713 -0.338148 0) (-0.149646 -0.393754 0) (-0.152697 -0.442619 0) (-0.14265 -0.468296 0) (-0.115873 -0.448918 0) (-0.0738424 -0.366375 0) (-0.0280927 -0.225963 0) (-0.00345809 -0.0679164 0) (0.000210209 0.0340197 0) (0.000465154 0.0873011 0) (7.13918e-05 0.128025 0) (-0.00126972 0.158586 0) (-0.0034472 0.181601 0) (-0.00615237 0.199513 0) (-0.00902067 0.21426 0) (-0.0117195 0.227006 0) (-0.0139843 0.238157 0) (-0.0156474 0.247468 0) (-0.0166381 0.254252 0) (-0.0169716 0.257621 0) (-0.016735 0.256708 0) (-0.0160736 0.250868 0) (-0.0151766 0.239795 0) (-0.0142555 0.223585 0) (-0.013523 0.202707 0) (-0.0131707 0.177918 0) (-0.0133521 0.150137 0) (-0.0141741 0.120309 0) (-0.015698 0.0892988 0) (-0.0179491 0.0578243 0) (-0.0209331 0.0264294 0) (-0.0246576 -0.00451267 0) (-0.0291468 -0.0347944 0) (-0.0344692 -0.064392 0) (-0.0407729 -0.0935106 0) (-0.0483053 -0.122718 0) (-0.0574092 -0.153076 0) (-0.0684801 -0.186247 0) (-0.0818071 -0.224426 0) (-0.0972464 -0.269846 0) (-0.113714 -0.323611 0) (-0.128613 -0.383696 0) (-0.137541 -0.442241 0) (-0.134791 -0.48297 0) (-0.11515 -0.480963 0) (-0.0774404 -0.409925 0) (-0.0311015 -0.26408 0) (-0.00409272 -0.0828353 0) (0.000287162 0.0335619 0) (0.000988931 0.0869756 0) (0.00150114 0.128354 0) (0.00135035 0.15968 0) (0.000570793 0.183282 0) (-0.000545905 0.20147 0) (-0.00164988 0.216132 0) (-0.00242599 0.228487 0) (-0.00260136 0.239031 0) (-0.00202407 0.247627 0) (-0.000657108 0.253692 0) (0.00142556 0.256431 0) (0.00406281 0.255053 0) (0.00702961 0.248964 0) (0.0100571 0.237886 0) (0.0128668 0.221915 0) (0.0151985 0.201494 0) (0.0168343 0.177339 0) (0.0176146 0.150313 0) (0.0174425 0.121309 0) (0.0162775 0.0911474 0) (0.0141207 0.0605161 0) (0.0109959 0.0299485 0) (0.00692717 -0.000172476 0) (0.00192417 -0.0296053 0) (-0.00402861 -0.0582718 0) (-0.0110173 -0.0863033 0) (-0.0192251 -0.11416 0) (-0.0289292 -0.142802 0) (-0.0405125 -0.173865 0) (-0.0543668 -0.209722 0) (-0.0706385 -0.25317 0) (-0.0887527 -0.306442 0) (-0.106743 -0.36922 0) (-0.120684 -0.43557 0) (-0.124747 -0.490307 0) (-0.112491 -0.506716 0) (-0.0801192 -0.450972 0) (-0.0342063 -0.303965 0) (-0.00482718 -0.099403 0) (0.000334264 0.0328623 0) (0.00136096 0.0860119 0) (0.00260211 0.127709 0) (0.00348839 0.159526 0) (0.0040113 0.183495 0) (0.00441291 0.201772 0) (0.00501625 0.216173 0) (0.0061333 0.22797 0) (0.00801469 0.237754 0) (0.0107913 0.245506 0) (0.0144648 0.250768 0) (0.0189125 0.252853 0) (0.02391 0.251058 0) (0.0291602 0.244844 0) (0.0343258 0.233955 0) (0.0390681 0.218472 0) (0.0430807 0.198797 0) (0.046116 0.175583 0) (0.0479998 0.149623 0) (0.0486332 0.121743 0) (0.0479818 0.0927137 0) (0.0460579 0.0631896 0) (0.0428997 0.0336909 0) (0.0385523 0.00460497 0) (0.0330505 -0.0238052 0) (0.0264088 -0.0514175 0) (0.0185993 -0.0783052 0) (0.00951899 -0.104832 0) (-0.00102395 -0.131844 0) (-0.0133432 -0.160889 0) (-0.0278403 -0.194377 0) (-0.0448362 -0.235463 0) (-0.064179 -0.287288 0) (-0.0845517 -0.351163 0) (-0.10269 -0.423345 0) (-0.112995 -0.490558 0) (-0.108188 -0.525656 0) (-0.0820129 -0.488481 0) (-0.0376045 -0.345139 0) (-0.00575282 -0.117783 0) (0.00034525 0.032013 0) (0.00154057 0.0845912 0) (0.00326994 0.126287 0) (0.00497399 0.158293 0) (0.00662576 0.182366 0) (0.00842705 0.200488 0) (0.0106611 0.214433 0) (0.0136111 0.2255 0) (0.0174943 0.234372 0) (0.0224115 0.241157 0) (0.0283285 0.245534 0) (0.0350793 0.246935 0) (0.0423868 0.244755 0) (0.049895 0.238512 0) (0.0572085 0.227969 0) (0.0639355 0.213182 0) (0.0697251 0.194502 0) (0.074296 0.172501 0) (0.0774504 0.147894 0) (0.0790745 0.121431 0) (0.0791262 0.0938249 0) (0.077615 0.0656929 0) (0.0745806 0.0375388 0) (0.0700754 0.0097491 0) (0.064147 -0.0174033 0) (0.056837 -0.0437764 0) (0.0481651 -0.0693915 0) (0.0381011 -0.0945444 0) (0.026546 -0.119978 0) (0.0132892 -0.14712 0) (-0.00200698 -0.178317 0) (-0.0197321 -0.216885 0) (-0.0400473 -0.26661 0) (-0.0622476 -0.330227 0) (-0.0838496 -0.406278 0) (-0.0998019 -0.484061 0) (-0.102407 -0.537402 0) (-0.0832091 -0.521471 0) (-0.0415423 -0.387087 0) (-0.00702808 -0.138315 0) (0.000311582 0.0311292 0) (0.00147884 0.0829515 0) (0.00338502 0.124352 0) (0.00561426 0.156208 0) (0.00816299 0.180059 0) (0.0112024 0.197745 0) (0.0149623 0.210998 0) (0.0196703 0.221142 0) (0.0254926 0.228947 0) (0.032487 0.234648 0) (0.0405799 0.238058 0) (0.0495654 0.23874 0) (0.059124 0.236188 0) (0.0688538 0.229981 0) (0.0783134 0.219898 0) (0.0870659 0.205971 0) (0.0947189 0.188486 0) (0.100955 0.167935 0) (0.105544 0.144941 0) (0.108348 0.120173 0) (0.109303 0.0942795 0) (0.108404 0.0678368 0) (0.105682 0.0413248 0) (0.101188 0.0151224 0) (0.0949686 -0.0104953 0) (0.0870903 -0.0353832 0) (0.0776139 -0.0595356 0) (0.0665686 -0.0832068 0) (0.0539459 -0.10706 0) (0.0396496 -0.132399 0) (0.0234449 -0.161443 0) (0.00496144 -0.197501 0) (-0.0161591 -0.244737 0) (-0.0397486 -0.306998 0) (-0.0641618 -0.385025 0) (-0.0851667 -0.471177 0) (-0.0950927 -0.541626 0) (-0.083651 -0.548933 0) (-0.046231 -0.429173 0) (-0.00888373 -0.161558 0) (0.000219508 0.0303552 0) (0.00110745 0.0813979 0) (0.00279675 0.122242 0) (0.00518582 0.153564 0) (0.00834965 0.176793 0) (0.012435 0.193692 0) (0.0176005 0.205966 0) (0.0239905 0.214967 0) (0.0316949 0.221544 0) (0.0407107 0.226044 0) (0.0509164 0.228412 0) (0.0620679 0.228336 0) (0.0738112 0.22541 0) (0.0857114 0.219277 0) (0.0972933 0.209733 0) (0.108085 0.196783 0) (0.117658 0.180651 0) (0.125658 0.161743 0) (0.131821 0.140588 0) (0.135973 0.117772 0) (0.138022 0.0938713 0) (0.137939 0.0694144 0) (0.135736 0.0448503 0) (0.13146 0.0205381 0) (0.125147 -0.00326325 0) (0.116886 -0.0263779 0) (0.106773 -0.0488333 0) (0.0948854 -0.0708661 0) (0.0812941 -0.0930835 0) (0.0660104 -0.116681 0) (0.0489148 -0.143717 0) (0.0297015 -0.177369 0) (0.00792515 -0.221918 0) (-0.0166777 -0.281975 0) (-0.0433072 -0.360196 0) (-0.0687683 -0.452267 0) (-0.0858907 -0.537996 0) (-0.0830286 -0.569744 0) (-0.0517126 -0.470504 0) (-0.0116 -0.188292 0) (4.45311e-05 0.0298796 0) (0.000319941 0.0803223 0) (0.00129494 0.120374 0) (0.0034082 0.150715 0) (0.00687063 0.172826 0) (0.0118007 0.18849 0) (0.0182593 0.199434 0) (0.0262722 0.207037 0) (0.0358226 0.212212 0) (0.0468237 0.2154 0) (0.0590947 0.216659 0) (0.0723505 0.215792 0) (0.0862089 0.212487 0) (0.100213 0.206449 0) (0.113867 0.197493 0) (0.126675 0.185601 0) (0.138182 0.170937 0) (0.148001 0.153824 0) (0.155832 0.134698 0) (0.161465 0.114057 0) (0.164774 0.0924058 0) (0.165699 0.0702152 0) (0.164231 0.0478959 0) (0.160397 0.0257793 0) (0.154272 0.00410319 0) (0.145929 -0.0169769 0) (0.135464 -0.0375061 0) (0.123026 -0.057726 0) (0.10875 -0.0782179 0) (0.092729 -0.100091 0) (0.0749447 -0.125237 0) (0.0551722 -0.156618 0) (0.0329345 -0.198406 0) (0.00766664 -0.255605 0) (-0.0206115 -0.332369 0) (-0.0499165 -0.427701 0) (-0.0740705 -0.52616 0) (-0.0806615 -0.582614 0) (-0.0576829 -0.509782 0) (-0.0154265 -0.219439 0) (-0.000263248 0.0299817 0) (-0.00106777 0.0802295 0) (-0.00143961 0.11925 0) (-9.53022e-05 0.148053 0) (0.00334312 0.168429 0) (0.00894377 0.182292 0) (0.0166256 0.191475 0) (0.0262437 0.197386 0) (0.0376415 0.200973 0) (0.0506247 0.202745 0) (0.0649384 0.202846 0) (0.0802522 0.201171 0) (0.0961595 0.197491 0) (0.112191 0.191566 0) (0.127842 0.183232 0) (0.142608 0.172451 0) (0.156015 0.159334 0) (0.167656 0.144127 0) (0.1772 0.127177 0) (0.184405 0.108896 0) (0.189111 0.08971 0) (0.191232 0.0700291 0) (0.190739 0.0502151 0) (0.187652 0.0305634 0) (0.182041 0.0112841 0) (0.173993 -0.00753829 0) (0.163636 -0.025937 0) (0.151142 -0.0441803 0) (0.136686 -0.0628442 0) (0.120413 -0.0829693 0) (0.102369 -0.106287 0) (0.0823908 -0.135499 0) (0.0599991 -0.174506 0) (0.0344236 -0.228329 0) (0.00502574 -0.30212 0) (-0.0274914 -0.397876 0) (-0.0584654 -0.505748 0) (-0.0753871 -0.586022 0) (-0.0633051 -0.545126 0) (-0.0204103 -0.255832 0) (-0.000832194 0.0310889 0) (-0.00340761 0.0818104 0) (-0.00590448 0.119477 0) (-0.00584126 0.145982 0) (-0.00270765 0.163805 0) (0.00346209 0.175218 0) (0.0123918 0.18211 0) (0.0236743 0.185998 0) (0.0369779 0.187809 0) (0.0519844 0.188077 0) (0.0683517 0.186996 0) (0.0857 0.184524 0) (0.103601 0.180494 0) (0.121583 0.174712 0) (0.139144 0.167031 0) (0.155782 0.1574 0) (0.171025 0.145881 0) (0.184454 0.132652 0) (0.195722 0.117979 0) (0.204567 0.102187 0) (0.210805 0.0856251 0) (0.214331 0.0686328 0) (0.215104 0.0515147 0) (0.213142 0.0345163 0) (0.208512 0.0178026 0) (0.201326 0.00142322 0) (0.191728 -0.0146951 0) (0.17989 -0.0308409 0) (0.165999 -0.0475838 0) (0.150212 -0.065903 0) (0.13258 -0.087375 0) (0.112953 -0.114424 0) (0.0908371 -0.150576 0) (0.0653263 -0.200581 0) (0.0352856 -0.270013 0) (0.000173015 -0.363262 0) (-0.0373861 -0.47641 0) (-0.0654486 -0.57814 0) (-0.0670723 -0.57385 0) (-0.0261361 -0.297777 0) (-0.00190261 0.0339202 0) (-0.00731303 0.0860383 0) (-0.0129077 0.121757 0) (-0.0145998 0.144867 0) (-0.0118328 0.159072 0) (-0.00502569 0.167207 0) (0.00527892 0.171284 0) (0.0184196 0.172786 0) (0.0337743 0.172642 0) (0.0509074 0.17135 0) (0.069387 0.169101 0) (0.0887848 0.16588 0) (0.108657 0.161557 0) (0.128538 0.15597 0) (0.147942 0.148982 0) (0.166388 0.14053 0) (0.183419 0.130637 0) (0.198626 0.119419 0) (0.211666 0.107065 0) (0.22227 0.0938216 0) (0.230251 0.0799562 0) (0.235497 0.0657362 0) (0.237967 0.051401 0) (0.237679 0.0371398 0) (0.234706 0.023069 0) (0.229164 0.00920328 0) (0.221198 -0.00457494 0) (0.210967 -0.0185614 0) (0.198626 -0.0333061 0) (0.184286 -0.0497201 0) (0.167944 -0.0692234 0) (0.149392 -0.0939602 0) (0.128075 -0.127036 0) (0.102981 -0.172738 0) (0.0726302 -0.236536 0) (0.0354598 -0.324383 0) (-0.00841228 -0.437951 0) (-0.0483018 -0.556767 0) (-0.0667911 -0.592257 0) (-0.0315131 -0.34462 0) (-0.00397146 0.0397779 0) (-0.0138823 0.0942662 0) (-0.0236592 0.1268 0) (-0.0273199 0.144902 0) (-0.0246572 0.15415 0) (-0.0167337 0.158027 0) (-0.00461892 0.15872 0) (0.010712 0.157532 0) (0.0284373 0.155307 0) (0.0479397 0.152448 0) (0.0687096 0.149095 0) (0.0902848 0.145216 0) (0.112219 0.14069 0) (0.134066 0.135368 0) (0.155374 0.129119 0) (0.175698 0.121863 0) (0.194619 0.11359 0) (0.211757 0.104359 0) (0.226792 0.0942946 0) (0.239473 0.0835634 0) (0.249621 0.0723576 0) (0.257132 0.0608708 0) (0.261968 0.0492768 0) (0.264148 0.0377082 0) (0.263739 0.0262354 0) (0.260843 0.0148418 0) (0.255578 0.003392 0) (0.248061 -0.00840745 0) (0.238374 -0.0210681 0) (0.226534 -0.0354105 0) (0.21242 -0.0526819 0) (0.195702 -0.0747449 0) (0.175687 -0.104273 0) (0.151249 -0.145007 0) (0.120642 -0.201938 0) (0.0816575 -0.281657 0) (0.0319487 -0.390356 0) (-0.0202215 -0.519635 0) (-0.0596804 -0.595795 0) (-0.0347846 -0.394527 0) (-0.00803549 0.0511621 0) (-0.0249943 0.108336 0) (-0.0397203 0.135079 0) (-0.0446553 0.145782 0) (-0.0408978 0.148448 0) (-0.030632 0.147096 0) (-0.0155908 0.143833 0) (0.00287604 0.139748 0) (0.0237451 0.135413 0) (0.0462662 0.131062 0) (0.0698734 0.126727 0) (0.0940956 0.122324 0) (0.118508 0.117713 0) (0.142705 0.112739 0) (0.16629 0.107265 0) (0.188875 0.101196 0) (0.210096 0.0944894 0) (0.229623 0.0871587 0) (0.247177 0.0792659 0) (0.262534 0.0709109 0) (0.275534 0.0622162 0) (0.286081 0.0533086 0) (0.294133 0.0443026 0) (0.299698 0.0352818 0) (0.302821 0.026281 0) (0.303565 0.0172647 0) (0.301995 0.00810164 0) (0.298153 -0.00146707 0) (0.292024 -0.0119058 0) (0.283509 -0.0239054 0) (0.272324 -0.038513 0) (0.257973 -0.0572964 0) (0.239544 -0.082481 0) (0.215754 -0.117252 0) (0.18451 -0.165929 0) (0.143329 -0.234955 0) (0.0883492 -0.333343 0) (0.0240059 -0.465329 0) (-0.0421063 -0.579838 0) (-0.0333062 -0.443585 0) (-0.0160516 0.0727674 0) (-0.0435353 0.130194 0) (-0.0616217 0.146022 0) (-0.0639666 0.145879 0) (-0.055165 0.140087 0) (-0.039091 0.132635 0) (-0.0182083 0.125118 0) (0.00578123 0.11814 0) (0.0317105 0.111866 0) (0.0587939 0.106264 0) (0.0864882 0.101201 0) (0.11438 0.0965052 0) (0.142122 0.091993 0) (0.169394 0.0874907 0) (0.195888 0.0828502 0) (0.221305 0.0779602 0) (0.24536 0.0727523 0) (0.267788 0.0672015 0) (0.288362 0.0613224 0) (0.306893 0.0551606 0) (0.323239 0.0487821 0) (0.337307 0.0422602 0) (0.349043 0.0356626 0) (0.358432 0.0290368 0) (0.365481 0.0223953 0) (0.370206 0.0156966 0) (0.37262 0.00882606 0) (0.372661 0.0015736 0) (0.37023 -0.0064184 0) (0.365129 -0.0156917 0) (0.35689 -0.0270617 0) (0.344863 -0.0417674 0) (0.327837 -0.0615314 0) (0.30438 -0.0889579 0) (0.271824 -0.1276 0) (0.227814 -0.183281 0) (0.166787 -0.265592 0) (0.090896 -0.390927 0) (-0.00758694 -0.538016 0) (-0.0212368 -0.482377 0) (-0.0312744 0.109565 0) (-0.0710964 0.15713 0) (-0.0789199 0.15302 0) (-0.0646751 0.137784 0) (-0.0401862 0.122315 0) (-0.0104853 0.108965 0) (0.0218682 0.0979766 0) (0.0553392 0.0890433 0) (0.0890358 0.0817509 0) (0.122464 0.0757214 0) (0.155345 0.070636 0) (0.187498 0.0662278 0) (0.218779 0.0622716 0) (0.249047 0.058579 0) (0.27815 0.0549982 0) (0.305925 0.0514137 0) (0.332198 0.047746 0) (0.356797 0.0439501 0) (0.379561 0.0400118 0) (0.400348 0.0359409 0) (0.419044 0.0317649 0) (0.435563 0.0275194 0) (0.449848 0.0232391 0) (0.461866 0.0189477 0) (0.471596 0.0146487 0) (0.479017 0.0103058 0) (0.484103 0.00584224 0) (0.486741 0.00105337 0) (0.486788 -0.00421898 0) (0.483962 -0.0103692 0) (0.477634 -0.0179475 0) (0.467118 -0.0278155 0) (0.450834 -0.0410953 0) (0.42737 -0.0596949 0) (0.393036 -0.0861669 0) (0.345952 -0.125603 0) (0.277759 -0.186383 0) (0.191038 -0.292388 0) (0.055338 -0.457306 0) (0.013792 -0.489474 0) (-0.0510943 0.203152 0) (-0.0678006 0.169611 0) (-0.0144019 0.124326 0) (0.0416899 0.0981662 0) (0.0946699 0.0796805 0) (0.14424 0.0657996 0) (0.190282 0.05557 0) (0.23293 0.0480523 0) (0.272528 0.0423992 0) (0.309478 0.0380159 0) (0.344136 0.0345156 0) (0.376778 0.0316342 0) (0.407605 0.0291767 0) (0.436739 0.0269942 0) (0.464243 0.0249733 0) (0.490122 0.0230303 0) (0.51434 0.0211072 0) (0.536835 0.019168 0) (0.557532 0.0171962 0) (0.576355 0.01519 0) (0.593234 0.0131583 0) (0.608119 0.0111155 0) (0.620972 0.00907587 0) (0.631778 0.00704806 0) (0.640511 0.00502864 0) (0.647174 0.00300082 0) (0.651645 0.000922692 0) (0.653936 -0.0012477 0) (0.653859 -0.00366452 0) (0.65112 -0.00657959 0) (0.644997 -0.0102508 0) (0.634988 -0.0151285 0) (0.619182 -0.0216899 0) (0.596688 -0.0310233 0) (0.562411 -0.044254 0) (0.515694 -0.0650091 0) (0.442451 -0.0985386 0) (0.350799 -0.168065 0) (0.176688 -0.316994 0) (0.0997845 -0.416322 0) (0.219913 0.149162 0) (0.267002 0.11206 0) (0.38896 0.0742137 0) (0.477374 0.05155 0) (0.538711 0.0371236 0) (0.585356 0.0272624 0) (0.623147 0.0204763 0) (0.654697 0.0158359 0) (0.681629 0.0126326 0) (0.705128 0.0103719 0) (0.726025 0.00873395 0) (0.744879 0.00751195 0) (0.76206 0.00656743 0) (0.777814 0.00580483 0) (0.792293 0.00515766 0) (0.805582 0.00457999 0) (0.817719 0.004041 0) (0.828712 0.00352131 0) (0.83855 0.00301022 0) (0.847219 0.00250364 0) (0.854704 0.00200161 0) (0.861003 0.00150715 0) (0.866117 0.00102208 0) (0.870061 0.00054977 0) (0.872843 8.23989e-05 0) (0.874489 -0.000374726 0) (0.874968 -0.000853184 0) (0.874269 -0.00128884 0) (0.87213 -0.00178722 0) (0.868469 -0.00244247 0) (0.862745 -0.00331189 0) (0.854784 -0.00451817 0) (0.842937 -0.00614581 0) (0.827352 -0.00849216 0) (0.802915 -0.0118014 0) (0.772156 -0.0169389 0) (0.715129 -0.0261221 0) (0.646724 -0.043707 0) (0.463667 -0.0966862 0) (0.332248 -0.163819 0) ) ; boundaryField { carasuperior { type fixedValue; value uniform (0 0 0); } lateralizquierda { type fixedValue; value uniform (0 0 0); } lateralderecha { type fixedValue; value uniform (0 0 0); } carainferior { type fixedValue; value uniform (0 0 0); } frontAndBack { type empty; } } // ************************************************************************* //
[ "santi_0926@hotmail.com" ]
santi_0926@hotmail.com
71f10ac8064ddde0cd4d50894d3b1715d10dc969
1e3b324c4fc5a30899c8802b982b53e0e237499b
/Simpl/SPlsWork/CrestronKNXLibrary.h
ff7daa497e6e7cbd76a14a22befff4709a789ded
[]
no_license
RBSystems/Home-Crestron-1
38f95d21929d1e11319905bdfb1c7a25932e1115
5d4cd5189c1ec482b95aba080a86725f8dae60fc
refs/heads/master
2020-04-02T20:53:04.066401
2018-11-07T09:43:43
2018-11-07T09:43:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
16,113
h
namespace CrestronKNXLibrary.Data_Types; // class declarations class DataTypeComponent; class KNXTwoByteSimplSharpComponent; class KNXOneByteSimplSharpComponent; class KNXOneBitSimplSharpComponent; class KNXTwoBitSimplSharpComponent; class KNXFourteenByteSimplSharpComponent; class KNXFourBytesSimplSharpComponent; class KNXDateSimplSharpComponent; class KNXTimeSimplSharpComponent; class KNXFourBitSimplSharpComponent; class KNXSixByteSimplSharpComponent; class DelegateNoParameters; class RouterComponent; class DelegateUshort; class DelegateShort; class DelegateString; class DelegateInteger; class DataTypeComponent { // class delegates delegate FUNCTION DelegateNoParameters ( ); // class events // class functions FUNCTION InitializeSettings ( SIGNED_LONG_INTEGER id , STRING version , STRING address ); FUNCTION KNXRouterInitializationCompleteEventHandler ( SIGNED_LONG_INTEGER id , RouterComponent router ); FUNCTION PollValue (); STRING_FUNCTION ToString (); SIGNED_LONG_INTEGER_FUNCTION GetHashCode (); // class variables INTEGER __class_id__; // class properties DelegateProperty DelegateNoParameters basicInitializationIsComplete; }; class KNXTwoByteSimplSharpComponent { // class delegates delegate FUNCTION DelegateUshort ( INTEGER value ); delegate FUNCTION DelegateShort ( SIGNED_INTEGER value ); delegate FUNCTION DelegateString ( SIMPLSHARPSTRING value ); delegate FUNCTION DelegateNoParameters ( ); // class events // class functions FUNCTION BeginInitialization (); FUNCTION ChangeValue ( SIGNED_LONG_INTEGER value ); FUNCTION ChangeEIS5Value ( SIGNED_LONG_INTEGER sign , SIGNED_LONG_INTEGER value ); FUNCTION InitializeSettings ( SIGNED_LONG_INTEGER id , STRING version , STRING address ); FUNCTION KNXRouterInitializationCompleteEventHandler ( SIGNED_LONG_INTEGER id , RouterComponent router ); FUNCTION PollValue (); STRING_FUNCTION ToString (); SIGNED_LONG_INTEGER_FUNCTION GetHashCode (); // class variables INTEGER __class_id__; // class properties DelegateProperty DelegateUshort initializationIsComplete; DelegateProperty DelegateUshort UpdateTwoByteValue; DelegateProperty DelegateUshort UpdateTwoByteEIS5MantissaValue; DelegateProperty DelegateUshort UpdateTwoByteEIS5ExponentValue; DelegateProperty DelegateUshort UpdateTwoByteEIS5SignValue; DelegateProperty DelegateShort UpdateTwoByteEIS5AbsoluteValue; DelegateProperty DelegateString UpdateTwoByteEIS5AbsoluteValueText; DelegateProperty DelegateString UpdateTwoByteEIS5DecimalValueText; DelegateProperty DelegateNoParameters basicInitializationIsComplete; }; class KNXOneByteSimplSharpComponent { // class delegates delegate FUNCTION DelegateUshort ( INTEGER value ); delegate FUNCTION DelegateNoParameters ( ); // class events // class functions FUNCTION BeginInitialization (); FUNCTION ChangeValue ( SIGNED_LONG_INTEGER value ); FUNCTION InitializeSettings ( SIGNED_LONG_INTEGER id , STRING version , STRING address ); FUNCTION KNXRouterInitializationCompleteEventHandler ( SIGNED_LONG_INTEGER id , RouterComponent router ); FUNCTION PollValue (); STRING_FUNCTION ToString (); SIGNED_LONG_INTEGER_FUNCTION GetHashCode (); // class variables INTEGER __class_id__; // class properties DelegateProperty DelegateUshort initializationIsComplete; DelegateProperty DelegateUshort UpdateOneByteValue; DelegateProperty DelegateNoParameters basicInitializationIsComplete; }; class KNXOneBitSimplSharpComponent { // class delegates delegate FUNCTION DelegateUshort ( INTEGER value ); delegate FUNCTION DelegateNoParameters ( ); // class events // class functions FUNCTION BeginInitialization (); FUNCTION ChangeValue ( SIGNED_LONG_INTEGER value ); FUNCTION InitializeSettings ( SIGNED_LONG_INTEGER id , STRING version , STRING address ); FUNCTION KNXRouterInitializationCompleteEventHandler ( SIGNED_LONG_INTEGER id , RouterComponent router ); FUNCTION PollValue (); STRING_FUNCTION ToString (); SIGNED_LONG_INTEGER_FUNCTION GetHashCode (); // class variables INTEGER __class_id__; // class properties DelegateProperty DelegateUshort initializationIsComplete; DelegateProperty DelegateUshort UpdateOneBitValue; DelegateProperty DelegateNoParameters basicInitializationIsComplete; }; class KNXTwoBitSimplSharpComponent { // class delegates delegate FUNCTION DelegateUshort ( INTEGER value ); delegate FUNCTION DelegateNoParameters ( ); // class events // class functions FUNCTION BeginInitialization (); FUNCTION SetControl ( SIGNED_LONG_INTEGER temp ); FUNCTION SetValue ( SIGNED_LONG_INTEGER temp ); FUNCTION InitializeSettings ( SIGNED_LONG_INTEGER id , STRING version , STRING address ); FUNCTION KNXRouterInitializationCompleteEventHandler ( SIGNED_LONG_INTEGER id , RouterComponent router ); FUNCTION PollValue (); STRING_FUNCTION ToString (); SIGNED_LONG_INTEGER_FUNCTION GetHashCode (); // class variables INTEGER __class_id__; // class properties DelegateProperty DelegateUshort initializationIsComplete; DelegateProperty DelegateUshort UpdateControlValue; DelegateProperty DelegateUshort UpdateValue; DelegateProperty DelegateNoParameters basicInitializationIsComplete; }; class KNXFourteenByteSimplSharpComponent { // class delegates delegate FUNCTION DelegateUshort ( INTEGER value ); delegate FUNCTION DelegateString ( SIMPLSHARPSTRING value ); delegate FUNCTION DelegateNoParameters ( ); // class events // class functions FUNCTION BeginInitialization (); FUNCTION ChangeValue ( STRING value ); FUNCTION InitializeSettings ( SIGNED_LONG_INTEGER id , STRING version , STRING address ); FUNCTION KNXRouterInitializationCompleteEventHandler ( SIGNED_LONG_INTEGER id , RouterComponent router ); FUNCTION PollValue (); STRING_FUNCTION ToString (); SIGNED_LONG_INTEGER_FUNCTION GetHashCode (); // class variables INTEGER __class_id__; // class properties DelegateProperty DelegateUshort initializationIsComplete; DelegateProperty DelegateString UpdateFourteenByteValue; DelegateProperty DelegateNoParameters basicInitializationIsComplete; }; class KNXFourBytesSimplSharpComponent { // class delegates delegate FUNCTION DelegateUshort ( INTEGER value ); delegate FUNCTION DelegateString ( SIMPLSHARPSTRING value ); delegate FUNCTION DelegateNoParameters ( ); // class events // class functions FUNCTION BeginInitialization (); FUNCTION ChangeValue ( LONG_INTEGER lowBytes , LONG_INTEGER highBytes ); FUNCTION InitializeSettings ( SIGNED_LONG_INTEGER id , STRING version , STRING address ); FUNCTION KNXRouterInitializationCompleteEventHandler ( SIGNED_LONG_INTEGER id , RouterComponent router ); FUNCTION PollValue (); STRING_FUNCTION ToString (); SIGNED_LONG_INTEGER_FUNCTION GetHashCode (); // class variables INTEGER __class_id__; // class properties DelegateProperty DelegateUshort initializationIsComplete; DelegateProperty DelegateUshort UpdateFourByteValueLowBytes; DelegateProperty DelegateUshort UpdateFourByteValueHighBytes; DelegateProperty DelegateString UpdateFourBytesUnsignedValue; DelegateProperty DelegateString UpdateFourBytesSignedValue; DelegateProperty DelegateString UpdateFourBytesFPValue; DelegateProperty DelegateNoParameters basicInitializationIsComplete; }; class KNXDateSimplSharpComponent { // class delegates delegate FUNCTION DelegateUshort ( INTEGER value ); delegate FUNCTION DelegateString ( SIMPLSHARPSTRING value ); delegate FUNCTION DelegateNoParameters ( ); // class events // class functions FUNCTION BeginInitialization (); FUNCTION SendSystemDate (); FUNCTION InitializeSettings ( SIGNED_LONG_INTEGER id , STRING version , STRING address ); FUNCTION KNXRouterInitializationCompleteEventHandler ( SIGNED_LONG_INTEGER id , RouterComponent router ); FUNCTION PollValue (); STRING_FUNCTION ToString (); SIGNED_LONG_INTEGER_FUNCTION GetHashCode (); // class variables INTEGER __class_id__; // class properties DelegateProperty DelegateUshort initializationIsComplete; DelegateProperty DelegateUshort UpdateDayValue; DelegateProperty DelegateUshort UpdateMonthValue; DelegateProperty DelegateUshort UpdateYearValue; DelegateProperty DelegateString UpdateDateValueText; DelegateProperty DelegateNoParameters basicInitializationIsComplete; }; class KNXTimeSimplSharpComponent { // class delegates delegate FUNCTION DelegateUshort ( INTEGER value ); delegate FUNCTION DelegateString ( SIMPLSHARPSTRING value ); delegate FUNCTION DelegateNoParameters ( ); // class events // class functions FUNCTION BeginInitialization (); FUNCTION SendSystemTime (); FUNCTION InitializeSettings ( SIGNED_LONG_INTEGER id , STRING version , STRING address ); FUNCTION KNXRouterInitializationCompleteEventHandler ( SIGNED_LONG_INTEGER id , RouterComponent router ); FUNCTION PollValue (); STRING_FUNCTION ToString (); SIGNED_LONG_INTEGER_FUNCTION GetHashCode (); // class variables INTEGER __class_id__; // class properties DelegateProperty DelegateUshort initializationIsComplete; DelegateProperty DelegateUshort UpdateDayValue; DelegateProperty DelegateUshort UpdateHoursValue; DelegateProperty DelegateUshort UpdateMinutesValue; DelegateProperty DelegateUshort UpdateSecondsValue; DelegateProperty DelegateString UpdateTimeValueText; DelegateProperty DelegateNoParameters basicInitializationIsComplete; }; class KNXFourBitSimplSharpComponent { // class delegates delegate FUNCTION DelegateInteger ( SIGNED_LONG_INTEGER value ); delegate FUNCTION DelegateNoParameters ( ); // class events // class functions FUNCTION BeginInitialization (); FUNCTION DimUp (); FUNCTION DimDown (); FUNCTION StopDimming (); FUNCTION InitializeSettings ( SIGNED_LONG_INTEGER id , STRING version , STRING address ); FUNCTION KNXRouterInitializationCompleteEventHandler ( SIGNED_LONG_INTEGER id , RouterComponent router ); FUNCTION PollValue (); STRING_FUNCTION ToString (); SIGNED_LONG_INTEGER_FUNCTION GetHashCode (); // class variables INTEGER __class_id__; // class properties DelegateProperty DelegateInteger initializationIsComplete; DelegateProperty DelegateInteger UpdateFourBitValue; DelegateProperty DelegateNoParameters basicInitializationIsComplete; }; class KNXSixByteSimplSharpComponent { // class delegates delegate FUNCTION DelegateUshort ( INTEGER value ); delegate FUNCTION DelegateString ( SIMPLSHARPSTRING value ); delegate FUNCTION DelegateNoParameters ( ); // class events // class functions FUNCTION BeginInitialization (); FUNCTION ChangeValue ( LONG_INTEGER lowBytes , LONG_INTEGER midBytes , LONG_INTEGER highBytes ); FUNCTION InitializeSettings ( SIGNED_LONG_INTEGER id , STRING version , STRING address ); FUNCTION KNXRouterInitializationCompleteEventHandler ( SIGNED_LONG_INTEGER id , RouterComponent router ); FUNCTION PollValue (); STRING_FUNCTION ToString (); SIGNED_LONG_INTEGER_FUNCTION GetHashCode (); // class variables INTEGER __class_id__; // class properties DelegateProperty DelegateUshort initializationIsComplete; DelegateProperty DelegateUshort UpdateSixByteValueLowBytes; DelegateProperty DelegateUshort UpdateSixByteValueMidBytes; DelegateProperty DelegateUshort UpdateSixByteValueHighBytes; DelegateProperty DelegateString UpdateSixBytesUnsignedValue; DelegateProperty DelegateNoParameters basicInitializationIsComplete; }; namespace CrestronKNXLibrary.General; // class declarations class KNXRouterType; class KNXSystem; static class KNXRouterType // enum { static SIGNED_LONG_INTEGER CGEIBIP; static SIGNED_LONG_INTEGER CIKNX; static SIGNED_LONG_INTEGER CIKNX2; }; static class KNXSystem { // class delegates // class events // class functions STRING_FUNCTION ToString (); SIGNED_LONG_INTEGER_FUNCTION GetHashCode (); // class variables INTEGER __class_id__; // class properties }; namespace CrestronKNXLibrary.Routing; // class declarations class RouterComponent; class KNXRouterSimplSharpComponent; class KNXRouter; class RouterComponent { // class delegates // class events // class functions FUNCTION PollAll (); STRING_FUNCTION ToString (); SIGNED_LONG_INTEGER_FUNCTION GetHashCode (); // class variables INTEGER __class_id__; // class properties }; class KNXRouterSimplSharpComponent { // class delegates delegate FUNCTION DelegateNoParameters ( ); delegate FUNCTION DelegateUshort ( INTEGER value ); // class events // class functions FUNCTION InitializeSettings ( SIGNED_LONG_INTEGER id , SIGNED_LONG_INTEGER type , STRING version , STRING address , SIGNED_LONG_INTEGER port ); FUNCTION BeginInitialization (); FUNCTION ChangeDebugMode ( SIGNED_LONG_INTEGER value ); FUNCTION PollAllAddresses (); STRING_FUNCTION ToString (); SIGNED_LONG_INTEGER_FUNCTION GetHashCode (); // class variables INTEGER __class_id__; // class properties DelegateProperty DelegateNoParameters basicInitializationIsComplete; DelegateProperty DelegateUshort initializationIsComplete; DelegateProperty DelegateUshort UpdateConnectionStatus; }; class KNXRouter { // class delegates // class events // class functions FUNCTION PollAll (); STRING_FUNCTION ToString (); SIGNED_LONG_INTEGER_FUNCTION GetHashCode (); // class variables INTEGER __class_id__; // class properties }; namespace CrestronKNXLibrary.Communication; // class declarations class KNXCommunicationComponent; class CIKNX2Communication; class CGEIBIPCommunication; class CIKNXCommunication; class KNXCommunicationComponent { // class delegates // class events // class functions STRING_FUNCTION ToString (); SIGNED_LONG_INTEGER_FUNCTION GetHashCode (); // class variables INTEGER __class_id__; // class properties };
[ "pchouard@gmail.com" ]
pchouard@gmail.com
bd2c0ec0719be4c9022dcc28d6021fdc26a31839
872f24199d847f05ddb4d8f7ac69eaed9336a0d5
/code/plotms/Gui/PlotMSLoggerWidget.qo.h
ec22a82eb4a124d8fb81ed3c1501843a4e39f856
[]
no_license
schiebel/casa
8004f7d63ca037b4579af8a8bbfb4fa08e87ced4
e2ced7349036d8fc13d0a65aad9a77b76bfe55d1
refs/heads/master
2016-09-05T16:20:59.022063
2015-08-26T18:46:26
2015-08-26T18:46:26
41,441,084
1
1
null
null
null
null
UTF-8
C++
false
false
3,242
h
//# PlotMSLoggerWidget.qo.h: Widget to set log events and priority filter. //# Copyright (C) 2009 //# Associated Universities, Inc. Washington DC, USA. //# //# This library is free software; you can redistribute it and/or modify it //# under the terms of the GNU Library General Public License as published by //# the Free Software Foundation; either version 2 of the License, or (at your //# option) any later version. //# //# This library 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 Library General Public //# License for more details. //# //# You should have received a copy of the GNU Library General Public License //# along with this library; if not, write to the Free Software Foundation, //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA. //# //# Correspondence concerning AIPS++ should be addressed as follows: //# Internet email: aips2-request@nrao.edu. //# Postal address: AIPS++ Project Office //# National Radio Astronomy Observatory //# 520 Edgemont Road //# Charlottesville, VA 22903-2475 USA //# //# $Id: $ #ifndef PLOTMSLOGGERWIDGET_QO_H_ #define PLOTMSLOGGERWIDGET_QO_H_ #include <casa/Logging/LogMessage.h> #include <casaqt/QtUtilities/QtEditingWidget.qo.h> #include <QComboBox> #include <casa/namespace.h> using namespace std; namespace casa { //# Forward declarations. class QtComboCheckBox; // Widget to set log events and priority filter. class PlotMSLoggerWidget : public QtEditingWidget { Q_OBJECT public: // Constructor which takes the maximum width for the widget and an optional // parent. MUST be created after plotms' extended log types have already // been registered with PlotLogger. PlotMSLoggerWidget(const String& filename, int events, LogMessage::Priority priority, int maxWidth, bool editFilename = true, bool editPriority = true, QWidget* parent = NULL); // Destructor. ~PlotMSLoggerWidget(); // Gets/Sets the currently set filename. // <group> String filename() const; void setFilename(const String& filename); // </group> // Gets/Sets the currently set events flag. // <group> int events() const; void setEvents(int events); // </group> // Gets/Sets the currently set priority. // <group> LogMessage::Priority priority() const; void setPriority(LogMessage::Priority priority); // </group> private: // Last set filename. String itsFilename_; // Widget for editing filename. QtFileWidget* itsFilenameWidget_; // Last set events flag. int itsEvents_; // Combo check box for events. QtComboCheckBox* itsEventsBox_; // Event values for the combo box indices. QList<int> itsEventsIndexValues_; // Last set priority. LogMessage::Priority itsPriority_; // Combo box. QComboBox* itsPriorityBox_; private slots: // Slot for when the widget changes. void widgetChanged(); }; } #endif /* PLOTMSLOGGERWIDGET_QO_H_ */
[ "darrell@schiebel.us" ]
darrell@schiebel.us
b758b7a915714f5196ef9e0f17610a96eb60ad81
3579b4de0c15259d83504c12c8996418142a0a45
/mod/gemc/2.3/source/detector/detector_factory.cc
162410cc0793e1f54ee707891cb59c47e94e182f
[]
no_license
JeffersonLab/solid_gemc
146cf2105e4f7e4d44cdb9ca5045a3942a348a53
0817316475a8ad4d54bc62e7be9730225c2adf80
refs/heads/master
2023-08-16T19:52:00.097897
2023-06-21T23:31:30
2023-06-21T23:31:30
159,871,444
1
8
null
2022-03-09T17:46:12
2018-11-30T19:47:48
C
UTF-8
C++
false
false
9,749
cc
// gemc headers #include "detector_factory.h" #include "mysql_det_factory.h" #include "text_det_factory.h" #include "gdml_det_factory.h" #include "clara_det_factory.h" // c++ headers #include <set> using namespace std; // CLHEP units #include "CLHEP/Units/PhysicalConstants.h" using namespace CLHEP; detectorFactory *getDetectorFactory(map<string, detectorFactoryInMap> *detectorFactoryMap, string fname) { if(detectorFactoryMap->find(fname) == detectorFactoryMap->end()) { cout << " *** WARNING: " << fname << " NOT FOUND IN Detector Factory Map." << endl; return NULL; } return (*detectorFactoryMap)[fname](); } // factory registration and initialization map<string, detectorFactoryInMap> registerDetectorFactory() { // the key of the STL map also set factoryType in initFactory map<string, detectorFactoryInMap> dFactoryMap; // mysql factory dFactoryMap["MYSQL"] = &mysql_det_factory::createFactory; // text factory dFactoryMap["TEXT"] = &text_det_factory::createFactory; // gdml factory dFactoryMap["GDML"] = &gdml_det_factory::createFactory; // clara factory dFactoryMap["CLARA"] = clara_det_factory::createFactory; return dFactoryMap; } map<string, detector> buildDetector(map<string, detectorFactoryInMap> detectorFactoryMap, goptions go, runConditions rc) { map<string, detector> hallMap; // getting detector factories one by one for(map<string, detectorFactoryInMap>::iterator it = detectorFactoryMap.begin(); it != detectorFactoryMap.end(); it++) { // building detectors from this factory detectorFactory *thisFactory = getDetectorFactory(&detectorFactoryMap, it->first); // initialize factory with the key of the STL map thisFactory->initFactory(go, rc, it->first); // loading detectors map<string, detector> thisDMap = thisFactory->loadDetectors(); // merging these detectors to hallMap for(map<string, detector>::iterator idet = thisDMap.begin(); idet != thisDMap.end(); idet++) { // big warning if detector already exist // detector is NOT loaded if already existing if(hallMap.find(idet->first) != hallMap.end()) { cout << " *** WARNING! A detector >" << idet->first << "< in factory " << it->first << " exists already " << endl; } // loading detector if not present yet // assigning member factory to it else { hallMap[idet->first] = idet->second; } } // done with the factory, deleting factory pointer delete thisFactory; } // adding root mother volume string hall_mat = go.optMap["HALL_MATERIAL"].args; string hall_field = go.optMap["HALL_FIELD"].args; vector<string> hall_dims = get_strings(go.optMap["HALL_DIMENSIONS"].args, ","); if(hall_dims.size() != 3) cout << " !!! Error: Hall dimensions is not a vector of 3 numbers. Example of dimensions: \"20*m, 20*m, 20*m\"" << endl; detector queen; queen.name = "root"; queen.mother = "akasha"; queen.description = "mother of us all"; queen.pos = G4ThreeVector(0, 0, 0); queen.rot = G4RotationMatrix(G4ThreeVector(1, 0, 0), G4ThreeVector(0, 1, 0), G4ThreeVector(0, 0, 1)); queen.type = "Box"; queen.dimensions.push_back(get_number(hall_dims[0],1)); queen.dimensions.push_back(get_number(hall_dims[1],1)); queen.dimensions.push_back(get_number(hall_dims[2],1)); queen.material = hall_mat; queen.magfield = hall_field; queen.exist = 1; queen.visible = 0; queen.ncopy = 0; queen.scanned = 1; hallMap[queen.name] = queen; // Transmitting the magnetic field properties along the genealogy // if they have mfield set to "no" and if the option argument NO_FIELD doesn't apply string nofield = go.optMap["NO_FIELD"].args; // Transmitting the magnetic field properties along the genealogy if they are set to "no" for( map<string, detector>::iterator it = hallMap.begin(); it!=hallMap.end() && nofield != "all" ; it++) { // if this is tagged for no field, continue if(it->first == nofield) continue; if(it->second.magfield == "no") { // looking up the whole genealogy, until the first field is found string mother = it->second.mother; string firstAncestorFieldFound = "no"; while(mother != "akasha" && firstAncestorFieldFound == "no") { if(hallMap[mother].magfield != "no") { firstAncestorFieldFound = hallMap[mother].magfield; it->second.magfield = hallMap[mother].magfield; } // moving up in genealogy mother = hallMap[mother].mother; } } } return hallMap; } // returns a string that log if the factory requested are present or not string check_factory_existance(map<string, detectorFactoryInMap> detectorFactoryMap, runConditions rc) { set<string> requested; set<string> present; string frequested; string fnotfound; // logging requested factories for(map<string, detectorCondition>::iterator it = rc.detectorConditionsMap.begin(); it != rc.detectorConditionsMap.end(); it++) { requested.insert(it->second.get_factory()); } // logging present factories for(map<string, detectorFactoryInMap>::iterator it = detectorFactoryMap.begin(); it != detectorFactoryMap.end(); it++) present.insert(it->first); int found_all = 1; for(set<string>::iterator it = requested.begin(); it != requested.end(); it++ ) { frequested.append(*it + " "); if(present.find(*it) == present.end()) { found_all = 0; fnotfound.append(*it + " "); } } if(!found_all) return string(" *** WARNING: These detector factories were requested but not found: " + fnotfound); return string(" >> All detector factories requested are found: " + frequested); } void detectorFactory::initFactory(goptions go, runConditions rc, string ft) { if(gemcOpt.optMap["LOG_VERBOSITY"].arg > 0) cout << " > " << ft << " Detector Factory is Initialized " << endl; factoryType = ft; gemcOpt = go; RC = rc; } // returns detector from a gtable detector get_detector(gtable gt, goptions go, runConditions RC) { if(gt.data.size() < 18) { cout << " !!! ERROR: Detector data size should be at least 18. There are " << gt.data.size() << " items on the line for " << gt.data[0] << endl; exit(0); } string hd_msg = " >> TEXT Factory: "; double verbosity = go.optMap["GEO_VERBOSITY"].arg; string catch_v = go.optMap["CATCH"].args; detector det; // 0,1,2: Id, Mother, Description det.name = gt.data[0]; det.mother = gt.data[1]; det.description = gt.data[2]; // 3: Position Vector det.pos = calc_position(gt.data[3]); // 4: Rotation Vector det.rot = calc_rotation(gt.data[4], det.name); // Checking for displacements and rotation from nominal position if(RC.detectorConditionsMap.find(det.name) != RC.detectorConditionsMap.end()) { // Adding gcard displacement for this detector if non zero G4ThreeVector shiftp = RC.detectorConditionsMap[det.name].get_position(); if(shiftp.mag2() != 0) { if(verbosity > 3 || det.name.find(catch_v)) cout << hd_msg << " Detector " << det.name << " is displaced by: " << shiftp/cm << " cm" << endl; det.pos += shiftp; } // Adding gcard rotation for this detector if if non zero G4ThreeVector more_rot = RC.detectorConditionsMap[det.name].get_vrotation(); if(more_rot.mag2() != 0) { if(verbosity > 3 || det.name.find(catch_v)) cout << hd_msg << " Detector " << det.name << " is rotated by: " << more_rot/deg << " deg" << endl; det.rot.rotateX(more_rot.x()); det.rot.rotateY(more_rot.y()); det.rot.rotateZ(more_rot.z()); } } // end of checking displacement // 5: Color, opacity if(gt.data[5].size() != 6 && gt.data[5].size() != 7) { cout << hd_msg << " Color Attributes for " << det.name << "<" << gt.data[5] << "> have wrong size: " << gt.data[5].size() << ". It should be 6 or 7 digits rrggbb[t] (red, green, blue hexadecimals + optional transparency)." << endl; exit(9); } G4Colour thisCol = gcol(gt.data[5]); // 6: Solid Type det.type = gt.data[6]; // 7: Dimensions stringstream vars(gt.data[7]); string var; while(!vars.eof()) { vars >> var; det.dimensions.push_back(get_number(var,1)); } // 8: Material det.material = gt.data[8]; // 9: Magnetic Field det.magfield = gt.data[9]; // 10: copy number det.ncopy = atoi(gt.data[10].c_str()); // 11: pMany det.pMany = atoi(gt.data[11].c_str()); // 12: Activation flag det.exist = atoi(gt.data[12].c_str()); // Overwriting existance is set in the gcard if(RC.detectorConditionsMap.find(det.name) != RC.detectorConditionsMap.end()) { det.exist = RC.detectorConditionsMap[det.name].get_existance(); if(verbosity > 3 || det.name.find(catch_v)) cout << hd_msg << " Detector " << det.name << " has existance set to: " << det.exist << endl; } // 13: Visibility det.visible = atoi(gt.data[13].c_str()); // 14: Style det.style = atoi(gt.data[14].c_str()); // Setting the Visual Atributes Color, Visibility, Style det.VAtts = G4VisAttributes(thisCol); det.visible ? det.VAtts.SetVisibility(true) : det.VAtts.SetVisibility(false); if(det.visible) det.style ? det.VAtts.SetForceSolid(true) : det.VAtts.SetForceWireframe(true); // 15: sensitivity det.sensitivity = gt.data[15]; if(det.sensitivity != "no") { // 16: hitType det.hitType = gt.data[16]; // 17: identity det.identity = get_identifiers(gt.data[17]); } // 18 detector system det.system = gt.data[18]; det.factory = gt.data[19]; if(gt.data.size() > 20) det.variation = gt.data[20]; if(gt.data.size() > 21) det.run = atoi(gt.data[21].c_str()); if(verbosity>2) cout << det; return det; }
[ "zwzhao@jlab.org" ]
zwzhao@jlab.org
0d3d640b522e3c9edb0e90ac8acfdae8bf7a5433
b380254c12054d25167cb79eddd547e018d95821
/real environment/record.cpp
da22175893b847a8a4f73bc7aee9cf352601559f
[]
no_license
shuhao-liou/chemotaxis_paper
3e6583f919740ca3ff035eca7ea06dfa4e75a754
97f11cba81455b8ef6eba57e7e727a142b745640
refs/heads/master
2021-01-04T05:17:48.936971
2020-02-14T01:28:36
2020-02-14T01:28:36
240,403,505
0
0
null
null
null
null
UTF-8
C++
false
false
6,441
cpp
//Two purposes: //1.<Sncos>,<Snsin>,<SnCos>^2,<SnSin>^2 //2.deviation // #include <cstdlib> #include <cstdio> #include <cmath> #include <cstring> #include <iostream> #include <iomanip> #define Pi acos(-1.0) #define aa 0.01 #define nn 80000 using namespace std; int GG(int n, int m){return (2*n+m);} double sncos(double x,double p1,double p2,int q) { // if(q==0)return cos(x)/(1.0+aa *(1.0 - p1*cos(x)/2.0-p2*sin(x)/2.0+pow( p1*cos(x)+p2*sin(x) ,2.0)/8.0)); //if(q==0)return cos(x)/(1.0+aa *(1.0 - p1*cos(x)/2.0-p2*sin(x)/2.0)); if(q==0) return cos(x)/(1.0+aa *exp(-p1*cos(x)/2.0 -p2*sin(x)/2.0 )); //if(q==1)return sin(x)/(1.0+aa *(1.0 - p1*cos(x)/2.0-p2*sin(x)/2.0+pow( p1*cos(x)+p2*sin(x) ,2.0)/8.0)); if(q==1) return sin(x)/(1.0+aa *exp(-p1*cos(x)/2.0 -p2*sin(x)/2.0 )); } double simpson_sncos(double a, double b, int n, double p1, double p2,int q) { double h, sum, x4, x2; int i; h = (b - a) / (double)n; sum = sncos(a,p1,p2,q) + 4.0* sncos(a+h,p1,p2,q)+ sncos(b,p1,p2,q); for (i=2; i < (n - 1); i+=2) { x2 = a + (double)i * h; x4 = a + (double)(i+1) * h; sum = sum + 2.0 * sncos(x2,p1,p2,q) + 4.0 * sncos(x4,p1,p2,q); } return (sum * h / 3.0); } /*double sncos2(double x,double p1,double p2,int g) { double first = 0.0, second = 0.0; if(g==0) { first = pow(cos(x),2.0)/(1.0+aa *(1.0 - p1*cos(x)/2.0-p2*sin(x)/2.0+pow( p1*cos(x)+p2*sin(x) ,2.0)/8.0)); second= pow(cos(x)/(1.0+aa *(1.0 - p1*cos(x)-p2*sin(x)+pow( p1*cos(x)+p2*sin(x) ,2.0)/2.0)),2.0); } if(g==1) { first= pow(sin(x),2.0)/(1.0+aa *(1.0 - p1*cos(x)/2.0-p2*sin(x)/2.0+pow( p1*cos(x)+p2*sin(x) ,2.0)/8.0)); second= pow(sin(x)/(1.0+aa *(1.0 - p1*cos(x)-p2*sin(x)+pow( p1*cos(x)+p2*sin(x) ,2.0)/2.0)),2.0); } return (first-second); }*/ double first(double x,double p1, double p2,int g) { // if(g==0) return (pow(cos(x),2.0)/(1.0+aa *(1.0 - p1*cos(x)/2.0-p2*sin(x)/2.0+pow( p1*cos(x)+p2*sin(x) ,2.0)/8.0))); if(g==0) return pow(cos(x),2.0)/(1.0+aa *exp(-p1*cos(x)/2.0 -p2*sin(x)/2.0 )); if(g==1) return pow(sin(x),2.0)/(1.0+aa *exp(-p1*cos(x)/2.0 -p2*sin(x)/2.0 )); } double second(double x,double p1, double p2,int g) { if(g==0) return pow(cos(x)/(1.0+aa *exp(-p1*cos(x)/2.0 -p2*sin(x)/2.0)),2.0); if(g==1) return pow(sin(x)/(1.0+aa *exp(-p1*cos(x)/2.0 -p2*sin(x)/2.0)),2.0); /* double sum= pow(cos(x),2.0); double under =(1.0+2.0*aa*(1.0 - p1*cos(x)/2.0-p2*sin(x)/2.0+pow( p1*cos(x)+p2*sin(x) ,2.0)/8.0)); under+=aa*aa*(1.0 - p1*cos(x)-p2*sin(x)+pow( p1*cos(x)+p2*sin(x) ,2.0)/2.0) ; return sum/under;*/ } double simpson_sncos2(double a, double b, int n, double p1, double p2,int q) { double h, x4, x2; double sum_first =0.0, sum_second = 0.0; int i; h = (b - a) / (double)n; //first term sum_first = first(a,p1,p2,q) + 4.0* first(a+h,p1,p2,q)+ first(b,p1,p2,q); for (i=2; i < (n - 1); i+=2) { x2 = a + (double)i * h; x4 = a + (double)(i+1) * h; sum_first = sum_first + 2.0 * first(x2,p1,p2,q) + 4.0 * first(x4,p1,p2,q); } //second term sum_second = second(a,p1,p2,q) + 4.0* second(a+h,p1,p2,q)+ second(b,p1,p2,q); for (i=2; i < (n - 1); i+=2) { x2 = a + (double)i * h; x4 = a + (double)(i+1) * h; sum_second = sum_second + 2.0 * second(x2,p1,p2,q) + 4.0 * second(x4,p1,p2,q); } //return (sum_first * h / 3.0-sum_second * h / 3.0); return (sum_first * h / 3.0-sum_second * h / 3.0); } main() { double ans=0.0, ans_phi= 0.0; int iter = 50; int i=0, j=0; double upper = 1.0; double lower = 0.02; double h = (upper - lower) / (double)iter; double phi = 0.0; double h_phi = 2.0* Pi / iter; double *sncos, *dsncos, *dsncos_phi; sncos = new double [2000]; dsncos = new double [iter]; dsncos_phi = new double [iter]; double *sncos2, *dsncos2, *dsncos2_phi; sncos2 = new double [2000]; dsncos2 = new double [iter]; dsncos2_phi = new double [iter]; double *snsin, *dsnsin, *dsnsin_phi; snsin = new double [2000]; dsnsin = new double [iter]; dsnsin_phi = new double [iter]; double *snsin2, *dsnsin2, *dsnsin2_phi; snsin2 = new double [2000]; dsnsin2 = new double [iter]; dsnsin2_phi = new double [iter]; FILE *fp; fp = fopen("sigmaphi a001.txt","w"); for(i=0;i<iter;i++) { for(j=0;j<2;j++) { sncos[GG(i,j)] = nn*simpson_sncos(0.0,2.0*Pi,1000,(lower+i*h)*cos(phi+j*h_phi),(lower+i*h)*sin(phi+j*h_phi),0)/(2.0*Pi); sncos2[GG(i,j)]= nn*simpson_sncos2(0.0,2.0*Pi,1000,(lower+i*h)*cos(phi+j*h_phi),(lower+i*h)*sin(phi+j*h_phi),0)/(2.0*Pi); snsin[GG(i,j)] = nn*simpson_sncos(0.0,2.0*Pi,1000,(lower+i*h)*cos(phi+j*h_phi),(lower+i*h)*sin(phi+j*h_phi),1)/(2.0*Pi); snsin2[GG(i,j)]= nn*simpson_sncos2(0.0,2.0*Pi,1000,(lower+i*h)*cos(phi+j*h_phi),(lower+i*h)*sin(phi+j*h_phi),1)/(2.0*Pi); } } for(int j=2;j<iter-1;j++) { dsncos[j] = (sncos[GG(j+1,0)]-sncos[GG(j,0)])/h; dsncos2[j] = (sncos2[GG(j+1,0)]-sncos2[GG(j,0)])/h; dsncos_phi[j] = (sncos[GG(j,1)]-sncos[GG(j,0)])/h_phi; dsncos2_phi[j] = (sncos2[GG(j,1)]-sncos2[GG(j,0)])/h_phi; dsnsin[j] = (snsin[GG(j+1,0)]-snsin[GG(j,0)])/h; dsnsin2[j] = (snsin2[GG(j+1,0)]-snsin2[GG(j,0)])/h; dsnsin_phi[j] = (snsin[GG(j,1)]-snsin[GG(j,0)])/h_phi; dsnsin2_phi[j] = (snsin2[GG(j,1)]-snsin2[GG(j,0)])/h_phi; // ans = pow(dsncos[j],2.0)/sncos2[GG(j,0)]+pow(dsncos2[j]/sncos2[GG(j,0)],2.0)/2.0; ans = pow(dsncos[j],2.0)/sncos2[GG(j,0)]+pow(dsncos2[j]/sncos2[GG(j,0)],2.0)/2.0+pow(dsnsin[j],2.0)/snsin2[GG(j,0)]+pow(dsnsin2[j]/snsin2[GG(j,0)],2.0)/2.0; ans_phi = pow(dsncos_phi[j],2.0)/sncos2[GG(j,1)]+pow(dsncos2_phi[j]/sncos2[GG(j,1)],2.0)/2.0+pow(dsnsin_phi[j],2.0)/snsin2[GG(j,1)]+pow(dsnsin2_phi[j]/snsin2[GG(j,1)],2.0)/2.0; // ans = sncos2[GG(j,0)]; // fprintf(fp,"%.15lf %.15lf %.15lf %.15lf %.15lf\n",lower+j*h,sncos[GG(j,0)],dsncos[j],sncos2[GG(j,0)],1/ans); // fprintf(fp,"%.15lf %.15lf %.15lf %.15lf %.15lf\n",lower+j*h,sncos[GG(j,0)],snsin[GG(j,0)],sncos2[GG(j,0)],snsin2[GG(j,0)]); fprintf(fp,"%.15lf %.15lf\n",lower+j*h,1.0/ans_phi); } fclose(fp); // cout << ans<< endl; system("PAUSE"); return 0; }
[ "noreply@github.com" ]
shuhao-liou.noreply@github.com
25898ffceea66fad52425a6958d3fe909fbd737b
7f064b131b65971c53ddbc806d1bdb14fe57f2b8
/src/qt/bitcoingui.cpp
9b9d3be54fee95fa01abe906c9f49747daebb253
[ "MIT" ]
permissive
gridcoin/Gridcoin-stake
5617a81e766a28e7754c74f1a32ef2ae92dd43dd
1b9dd0ffd681f5f3c0b5660f2da41966e6079de8
refs/heads/master
2020-05-20T13:19:34.371999
2014-08-25T22:50:41
2014-08-25T22:50:41
22,660,855
7
4
null
null
null
null
UTF-8
C++
false
false
49,635
cpp
/* * Qt4 bitcoin GUI. * * W.J. van der Laan 2011-2012 * The Bitcoin Developers 2011-2012 */ #include <QApplication> #include <QProcess> #if defined(WIN32) && defined(QT_GUI) #include <QAxObject> #include <ActiveQt/qaxbase.h> #include <ActiveQt/qaxobject.h> #endif #include "bitcoingui.h" #include "transactiontablemodel.h" #include "addressbookpage.h" #include "sendcoinsdialog.h" #include "signverifymessagedialog.h" #include "optionsdialog.h" #include "aboutdialog.h" #include "clientmodel.h" #include "walletmodel.h" #include "editaddressdialog.h" #include "optionsmodel.h" #include "transactiondescdialog.h" #include "addresstablemodel.h" #include "transactionview.h" #include "overviewpage.h" #include "bitcoinunits.h" #include "guiconstants.h" #include "askpassphrasedialog.h" #include "notificator.h" #include "guiutil.h" #include "rpcconsole.h" #include "wallet.h" #include "init.h" #ifdef Q_OS_MAC #include "macdockiconhandler.h" #endif #include <QApplication> #include <QMainWindow> #include <QMenuBar> #include <QMenu> #include <QIcon> #include <QTabWidget> #include <QVBoxLayout> #include <QToolBar> #include <QStatusBar> #include <QLabel> #include <QLineEdit> #include <QPushButton> #include <QLocale> #include <QMessageBox> #include <QMimeData> #include <QProgressBar> #include <QStackedWidget> #include <QDateTime> #include <QMovie> #include <QFileDialog> #include <QDesktopServices> #include <QTimer> #include <QDragEnterEvent> #include <QUrl> #include <QStyle> #include <boost/lexical_cast.hpp> #include "bitcoinrpc.h" #include <iostream> extern CWallet* pwalletMain; extern int64_t nLastCoinStakeSearchInterval; double GetPoSKernelPS(); std::string BackupGridcoinWallet(); int nTick = 0; int nTickRestart = 0; int nBlockCount = 0; int nTick2 = 0; int nRegVersion; int nNeedsUpgrade = 0; double GetPoBDifficulty(); extern int CreateRestorePoint(); extern int DownloadBlocks(); void StopGridcoin3(); bool OutOfSyncByAge(); bool bCheckedForUpgrade = false; void ThreadCPIDs(); int Races(int iMax1000); std::string GetGlobalStatus(); std::string GetHttpPage(std::string cpid); bool TallyNetworkAverages(bool ColdBoot); void LoadCPIDsInBackground(); void InitializeCPIDs(); void RestartGridcoinMiner(); extern int UpgradeClient(); extern int CloseGuiMiner(); extern void ExecuteCode(); std::string RetrieveMd5(std::string s1); void WriteAppCache(std::string key, std::string value); void RestartGridcoin10(); void HarvestCPIDs(bool cleardata); extern int RestartClient(); extern int ReindexWallet(); #ifdef WIN32 QAxObject *globalcom = NULL; #endif int ThreadSafeVersion(); void FlushGridcoinBlockFile(bool fFinalize); extern int ReindexBlocks(); bool OutOfSync(); BitcoinGUI::BitcoinGUI(QWidget *parent): QMainWindow(parent), clientModel(0), walletModel(0), encryptWalletAction(0), changePassphraseAction(0), unlockWalletAction(0), lockWalletAction(0), aboutQtAction(0), trayIcon(0), notificator(0), rpcConsole(0), nWeight(0) { resize(850, 550); setWindowTitle(tr("GridCoin") + " - " + tr("Wallet")); #ifndef Q_OS_MAC qApp->setWindowIcon(QIcon(":icons/bitcoin")); setWindowIcon(QIcon(":icons/bitcoin")); #else setUnifiedTitleAndToolBarOnMac(true); QApplication::setAttribute(Qt::AA_DontShowIconsInMenus); #endif // Accept D&D of URIs setAcceptDrops(true); // Create actions for the toolbar, menu bar and tray/dock icon createActions(); // Create application menu bar createMenuBar(); // Create the toolbars createToolBars(); // Create the tray icon (or setup the dock icon) createTrayIcon(); // Create tabs overviewPage = new OverviewPage(); transactionsPage = new QWidget(this); QVBoxLayout *vbox = new QVBoxLayout(); transactionView = new TransactionView(this); vbox->addWidget(transactionView); transactionsPage->setLayout(vbox); addressBookPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::SendingTab); receiveCoinsPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::ReceivingTab); sendCoinsPage = new SendCoinsDialog(this); signVerifyMessageDialog = new SignVerifyMessageDialog(this); centralWidget = new QStackedWidget(this); centralWidget->addWidget(overviewPage); centralWidget->addWidget(transactionsPage); centralWidget->addWidget(addressBookPage); centralWidget->addWidget(receiveCoinsPage); centralWidget->addWidget(sendCoinsPage); setCentralWidget(centralWidget); // Create status bar statusBar(); // Status bar notification icons QFrame *frameBlocks = new QFrame(); frameBlocks->setContentsMargins(0,0,0,0); frameBlocks->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Preferred); QHBoxLayout *frameBlocksLayout = new QHBoxLayout(frameBlocks); frameBlocksLayout->setContentsMargins(3,0,3,0); frameBlocksLayout->setSpacing(3); labelEncryptionIcon = new QLabel(); labelStakingIcon = new QLabel(); labelConnectionsIcon = new QLabel(); labelBlocksIcon = new QLabel(); frameBlocksLayout->addStretch(); frameBlocksLayout->addWidget(labelEncryptionIcon); frameBlocksLayout->addStretch(); frameBlocksLayout->addWidget(labelStakingIcon); frameBlocksLayout->addStretch(); frameBlocksLayout->addWidget(labelConnectionsIcon); frameBlocksLayout->addStretch(); frameBlocksLayout->addWidget(labelBlocksIcon); frameBlocksLayout->addStretch(); if (GetBoolArg("-staking", true)) { QTimer *timerStakingIcon = new QTimer(labelStakingIcon); connect(timerStakingIcon, SIGNAL(timeout()), this, SLOT(updateStakingIcon())); timerStakingIcon->start(30 * 1000); updateStakingIcon(); } // Progress bar and label for blocks download progressBarLabel = new QLabel(); progressBarLabel->setVisible(false); progressBar = new QProgressBar(); progressBar->setAlignment(Qt::AlignCenter); progressBar->setVisible(false); // Override style sheet for progress bar for styles that have a segmented progress bar, // as they make the text unreadable (workaround for issue #1071) // See https://qt-project.org/doc/qt-4.8/gallery.html QString curStyle = qApp->style()->metaObject()->className(); if(curStyle == "QWindowsStyle" || curStyle == "QWindowsXPStyle") { progressBar->setStyleSheet("QProgressBar { background-color: #e8e8e8; border: 1px solid grey; border-radius: 7px; padding: 1px; text-align: center; } QProgressBar::chunk { background: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #FF8000, stop: 1 orange); border-radius: 7px; margin: 0px; }"); } statusBar()->addWidget(progressBarLabel); statusBar()->addWidget(progressBar); statusBar()->addPermanentWidget(frameBlocks); syncIconMovie = new QMovie(":/movies/update_spinner", "mng", this); // Clicking on a transaction on the overview page simply sends you to transaction history page connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), this, SLOT(gotoHistoryPage())); connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), transactionView, SLOT(focusTransaction(QModelIndex))); // Double-clicking on a transaction on the transaction history page shows details connect(transactionView, SIGNAL(doubleClicked(QModelIndex)), transactionView, SLOT(showDetails())); rpcConsole = new RPCConsole(this); connect(openRPCConsoleAction, SIGNAL(triggered()), rpcConsole, SLOT(show())); // Clicking on "Verify Message" in the address book sends you to the verify message tab connect(addressBookPage, SIGNAL(verifyMessage(QString)), this, SLOT(gotoVerifyMessageTab(QString))); // Clicking on "Sign Message" in the receive coins page sends you to the sign message tab connect(receiveCoinsPage, SIGNAL(signMessage(QString)), this, SLOT(gotoSignMessageTab(QString))); gotoOverviewPage(); } BitcoinGUI::~BitcoinGUI() { if(trayIcon) // Hide tray icon, as deleting will let it linger until quit (on Ubuntu) trayIcon->hide(); #ifdef Q_OS_MAC delete appMenuBar; #endif } int ReindexWallet() { printf("executing grcrestarter reindex"); QString sFilename = "GRCRestarter.exe"; QString sArgument = ""; QString path = QCoreApplication::applicationDirPath() + "\\" + sFilename; QProcess p; if (!fTestNet) { #ifdef WIN32 if (!globalcom) { globalcom = new QAxObject("BoincStake.Utilization"); } globalcom->dynamicCall("ReindexWallet()"); #endif } else { #ifdef WIN32 globalcom->dynamicCall("ReindexWalletTestNet()"); #endif } StartShutdown(); return 1; } int CreateRestorePoint() { printf("executing grcrestarter createrestorepoint"); QString sFilename = "GRCRestarter.exe"; QString sArgument = ""; QString path = QCoreApplication::applicationDirPath() + "\\" + sFilename; QProcess p; if (!fTestNet) { #ifdef WIN32 globalcom->dynamicCall("CreateRestorePoint()"); #endif } else { #ifdef WIN32 globalcom->dynamicCall("CreateRestorePointTestNet()"); #endif } //RestartGridcoin return 1; } int DownloadBlocks() { printf("executing grcrestarter downloadblocks"); QString sFilename = "GRCRestarter.exe"; QString sArgument = ""; QString path = QCoreApplication::applicationDirPath() + "\\" + sFilename; QProcess p; #ifdef WIN32 if (!globalcom) { globalcom = new QAxObject("BoincStake.Utilization"); } globalcom->dynamicCall("DownloadBlocks()"); StartShutdown(); #endif return 1; } int RestartClient() { printf("executing grcrestarter restart"); QString sFilename = "GRCRestarter.exe"; QString sArgument = ""; QString path = QCoreApplication::applicationDirPath() + "\\" + sFilename; QProcess p; #ifdef WIN32 globalcom->dynamicCall("RestartWallet()"); #endif StartShutdown(); return 1; } int UpgradeClient() { printf("Executing upgrade"); QString sFilename = "GRCRestarter.exe"; QString sArgument = "upgrade"; QString path = QCoreApplication::applicationDirPath() + "\\" + sFilename; QProcess p; if (!fTestNet) { #ifdef WIN32 globalcom->dynamicCall("UpgradeWallet()"); #endif } else { #ifdef WIN32 globalcom->dynamicCall("UpgradeWalletTestnet()"); #endif } StartShutdown(); return 1; } int CloseGuiMiner() { try { #ifdef WIN32 globalcom->dynamicCall("CloseGUIMiner()"); #endif } catch(...) { return 0; } return 1; } void BitcoinGUI::createActions() { QActionGroup *tabGroup = new QActionGroup(this); overviewAction = new QAction(QIcon(":/icons/overview"), tr("&Overview"), this); overviewAction->setToolTip(tr("Show general overview of wallet")); overviewAction->setCheckable(true); overviewAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_1)); tabGroup->addAction(overviewAction); sendCoinsAction = new QAction(QIcon(":/icons/send"), tr("&Send coins"), this); sendCoinsAction->setToolTip(tr("Send coins to a GridCoin address")); sendCoinsAction->setCheckable(true); sendCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_2)); tabGroup->addAction(sendCoinsAction); receiveCoinsAction = new QAction(QIcon(":/icons/receiving_addresses"), tr("&Receive coins"), this); receiveCoinsAction->setToolTip(tr("Show the list of addresses for receiving payments")); receiveCoinsAction->setCheckable(true); receiveCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_3)); tabGroup->addAction(receiveCoinsAction); historyAction = new QAction(QIcon(":/icons/history"), tr("&Transactions"), this); historyAction->setToolTip(tr("Browse transaction history")); historyAction->setCheckable(true); historyAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_4)); tabGroup->addAction(historyAction); addressBookAction = new QAction(QIcon(":/icons/address-book"), tr("&Address Book"), this); addressBookAction->setToolTip(tr("Edit the list of stored addresses and labels")); addressBookAction->setCheckable(true); addressBookAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_5)); tabGroup->addAction(addressBookAction); connect(overviewAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized())); connect(overviewAction, SIGNAL(triggered()), this, SLOT(gotoOverviewPage())); connect(sendCoinsAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized())); connect(sendCoinsAction, SIGNAL(triggered()), this, SLOT(gotoSendCoinsPage())); connect(receiveCoinsAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized())); connect(receiveCoinsAction, SIGNAL(triggered()), this, SLOT(gotoReceiveCoinsPage())); connect(historyAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized())); connect(historyAction, SIGNAL(triggered()), this, SLOT(gotoHistoryPage())); connect(addressBookAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized())); connect(addressBookAction, SIGNAL(triggered()), this, SLOT(gotoAddressBookPage())); quitAction = new QAction(QIcon(":/icons/quit"), tr("E&xit"), this); quitAction->setToolTip(tr("Quit application")); quitAction->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q)); quitAction->setMenuRole(QAction::QuitRole); rebuildAction = new QAction(QIcon(":/icons/bitcoin"), tr("&Rebuild Block Chain"), this); rebuildAction->setStatusTip(tr("Rebuild Block Chain")); rebuildAction->setMenuRole(QAction::TextHeuristicRole); downloadAction = new QAction(QIcon(":/icons/bitcoin"), tr("&Download Blocks"), this); downloadAction->setStatusTip(tr("Download Blocks")); downloadAction->setMenuRole(QAction::TextHeuristicRole); upgradeAction = new QAction(QIcon(":/icons/bitcoin"), tr("&Upgrade QT Client"), this); upgradeAction->setStatusTip(tr("Upgrade QT Client")); upgradeAction->setMenuRole(QAction::TextHeuristicRole); aboutAction = new QAction(QIcon(":/icons/bitcoin"), tr("&About GridCoin"), this); aboutAction->setToolTip(tr("Show information about GridCoin")); aboutAction->setMenuRole(QAction::AboutRole); miningAction = new QAction(QIcon(":/icons/bitcoin"), tr("&Mining Console"), this); miningAction->setStatusTip(tr("Go to the mining console")); miningAction->setMenuRole(QAction::TextHeuristicRole); emailAction = new QAction(QIcon(":/icons/bitcoin"), tr("&E-Mail Center"), this); emailAction->setStatusTip(tr("Go to the E-Mail center")); emailAction->setMenuRole(QAction::TextHeuristicRole); sqlAction = new QAction(QIcon(":/icons/bitcoin"), tr("&SQL Query Analyzer"), this); sqlAction->setStatusTip(tr("SQL Query Analyzer")); sqlAction->setMenuRole(QAction::TextHeuristicRole); leaderboardAction = new QAction(QIcon(":/icons/bitcoin"), tr("&Leaderboard"), this); leaderboardAction->setStatusTip(tr("Leaderboard")); leaderboardAction->setMenuRole(QAction::TextHeuristicRole); //aboutQtAction = new QAction(QIcon(":/trolltech/qmessagebox/images/qtlogo-64.png"), tr("About &Qt"), this); //aboutQtAction->setToolTip(tr("Show information about Qt")); //aboutQtAction->setMenuRole(QAction::AboutQtRole); optionsAction = new QAction(QIcon(":/icons/options"), tr("&Options..."), this); optionsAction->setToolTip(tr("Modify configuration options for GridCoin")); optionsAction->setMenuRole(QAction::PreferencesRole); toggleHideAction = new QAction(QIcon(":/icons/bitcoin"), tr("&Show / Hide"), this); encryptWalletAction = new QAction(QIcon(":/icons/lock_closed"), tr("&Encrypt Wallet..."), this); encryptWalletAction->setToolTip(tr("Encrypt or decrypt wallet")); encryptWalletAction->setCheckable(true); backupWalletAction = new QAction(QIcon(":/icons/filesave"), tr("&Backup Wallet..."), this); backupWalletAction->setToolTip(tr("Backup wallet to another location")); changePassphraseAction = new QAction(QIcon(":/icons/key"), tr("&Change Passphrase..."), this); changePassphraseAction->setToolTip(tr("Change the passphrase used for wallet encryption")); unlockWalletAction = new QAction(QIcon(":/icons/lock_open"), tr("&Unlock Wallet..."), this); unlockWalletAction->setToolTip(tr("Unlock wallet")); lockWalletAction = new QAction(QIcon(":/icons/lock_closed"), tr("&Lock Wallet"), this); lockWalletAction->setToolTip(tr("Lock wallet")); signMessageAction = new QAction(QIcon(":/icons/edit"), tr("Sign &message..."), this); verifyMessageAction = new QAction(QIcon(":/icons/transaction_0"), tr("&Verify message..."), this); exportAction = new QAction(QIcon(":/icons/export"), tr("&Export..."), this); exportAction->setToolTip(tr("Export the data in the current tab to a file")); openRPCConsoleAction = new QAction(QIcon(":/icons/debugwindow"), tr("&Debug window"), this); openRPCConsoleAction->setToolTip(tr("Open debugging and diagnostic console")); connect(quitAction, SIGNAL(triggered()), qApp, SLOT(quit())); connect(aboutAction, SIGNAL(triggered()), this, SLOT(aboutClicked())); connect(aboutQtAction, SIGNAL(triggered()), qApp, SLOT(aboutQt())); connect(optionsAction, SIGNAL(triggered()), this, SLOT(optionsClicked())); connect(toggleHideAction, SIGNAL(triggered()), this, SLOT(toggleHidden())); connect(encryptWalletAction, SIGNAL(triggered(bool)), this, SLOT(encryptWallet(bool))); connect(backupWalletAction, SIGNAL(triggered()), this, SLOT(backupWallet())); connect(changePassphraseAction, SIGNAL(triggered()), this, SLOT(changePassphrase())); connect(unlockWalletAction, SIGNAL(triggered()), this, SLOT(unlockWallet())); connect(lockWalletAction, SIGNAL(triggered()), this, SLOT(lockWallet())); connect(signMessageAction, SIGNAL(triggered()), this, SLOT(gotoSignMessageTab())); connect(verifyMessageAction, SIGNAL(triggered()), this, SLOT(gotoVerifyMessageTab())); connect(miningAction, SIGNAL(triggered()), this, SLOT(miningClicked())); connect(emailAction, SIGNAL(triggered()), this, SLOT(emailClicked())); connect(rebuildAction, SIGNAL(triggered()), this, SLOT(rebuildClicked())); connect(upgradeAction, SIGNAL(triggered()), this, SLOT(upgradeClicked())); connect(downloadAction, SIGNAL(triggered()), this, SLOT(downloadClicked())); connect(sqlAction, SIGNAL(triggered()), this, SLOT(sqlClicked())); connect(leaderboardAction, SIGNAL(triggered()), this, SLOT(leaderboardClicked())); } void BitcoinGUI::createMenuBar() { #ifdef Q_OS_MAC // Create a decoupled menu bar on Mac which stays even if the window is closed appMenuBar = new QMenuBar(); #else // Get the main window's menu bar on other platforms appMenuBar = menuBar(); #endif // Configure the menus QMenu *file = appMenuBar->addMenu(tr("&File")); file->addAction(backupWalletAction); file->addAction(exportAction); file->addAction(signMessageAction); file->addAction(verifyMessageAction); file->addSeparator(); file->addAction(quitAction); QMenu *settings = appMenuBar->addMenu(tr("&Settings")); settings->addAction(encryptWalletAction); settings->addAction(changePassphraseAction); settings->addAction(unlockWalletAction); settings->addAction(lockWalletAction); settings->addSeparator(); settings->addAction(optionsAction); QMenu *help = appMenuBar->addMenu(tr("&Help")); help->addAction(openRPCConsoleAction); help->addSeparator(); help->addAction(aboutAction); help->addAction(aboutQtAction); QMenu *mining = appMenuBar->addMenu(tr("&Mining")); mining->addSeparator(); mining->addAction(miningAction); QMenu *email = appMenuBar->addMenu(tr("&E-Mail")); email->addSeparator(); email->addAction(emailAction); QMenu *upgrade = appMenuBar->addMenu(tr("&Upgrade QT Client")); upgrade->addSeparator(); upgrade->addAction(upgradeAction); QMenu *rebuild = appMenuBar->addMenu(tr("&Rebuild Block Chain")); rebuild->addSeparator(); rebuild->addAction(rebuildAction); rebuild->addSeparator(); rebuild->addAction(downloadAction); rebuild->addSeparator(); QMenu *sql = appMenuBar->addMenu(tr("&SQL Query Analyzer")); sql->addSeparator(); sql->addAction(sqlAction); QMenu *leaderboard = appMenuBar->addMenu(tr("&Leaderboard")); leaderboard->addSeparator(); leaderboard->addAction(leaderboardAction); } void BitcoinGUI::createToolBars() { QToolBar *toolbar = addToolBar(tr("Tabs toolbar")); toolbar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); toolbar->addAction(overviewAction); toolbar->addAction(sendCoinsAction); toolbar->addAction(receiveCoinsAction); toolbar->addAction(historyAction); toolbar->addAction(addressBookAction); QToolBar *toolbar2 = addToolBar(tr("Actions toolbar")); toolbar2->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); toolbar2->addAction(exportAction); } void BitcoinGUI::setClientModel(ClientModel *clientModel) { this->clientModel = clientModel; if(clientModel) { // Replace some strings and icons, when using the testnet if(clientModel->isTestNet()) { setWindowTitle(windowTitle() + QString(" ") + tr("[testnet]")); #ifndef Q_OS_MAC qApp->setWindowIcon(QIcon(":icons/bitcoin_testnet")); setWindowIcon(QIcon(":icons/bitcoin_testnet")); #else MacDockIconHandler::instance()->setIcon(QIcon(":icons/bitcoin_testnet")); #endif if(trayIcon) { trayIcon->setToolTip(tr("GridCoin client") + QString(" ") + tr("[testnet]")); trayIcon->setIcon(QIcon(":/icons/toolbar_testnet")); toggleHideAction->setIcon(QIcon(":/icons/toolbar_testnet")); } aboutAction->setIcon(QIcon(":/icons/toolbar_testnet")); } // Keep up to date with client setNumConnections(clientModel->getNumConnections()); connect(clientModel, SIGNAL(numConnectionsChanged(int)), this, SLOT(setNumConnections(int))); setNumBlocks(clientModel->getNumBlocks(), clientModel->getNumBlocksOfPeers()); connect(clientModel, SIGNAL(numBlocksChanged(int,int)), this, SLOT(setNumBlocks(int,int))); // Report errors from network/worker thread connect(clientModel, SIGNAL(error(QString,QString,bool)), this, SLOT(error(QString,QString,bool))); rpcConsole->setClientModel(clientModel); addressBookPage->setOptionsModel(clientModel->getOptionsModel()); receiveCoinsPage->setOptionsModel(clientModel->getOptionsModel()); } } void BitcoinGUI::setWalletModel(WalletModel *walletModel) { this->walletModel = walletModel; if(walletModel) { // Report errors from wallet thread connect(walletModel, SIGNAL(error(QString,QString,bool)), this, SLOT(error(QString,QString,bool))); // Put transaction list in tabs transactionView->setModel(walletModel); overviewPage->setModel(walletModel); addressBookPage->setModel(walletModel->getAddressTableModel()); receiveCoinsPage->setModel(walletModel->getAddressTableModel()); sendCoinsPage->setModel(walletModel); signVerifyMessageDialog->setModel(walletModel); setEncryptionStatus(walletModel->getEncryptionStatus()); connect(walletModel, SIGNAL(encryptionStatusChanged(int)), this, SLOT(setEncryptionStatus(int))); // Balloon pop-up for new transaction connect(walletModel->getTransactionTableModel(), SIGNAL(rowsInserted(QModelIndex,int,int)), this, SLOT(incomingTransaction(QModelIndex,int,int))); // Ask for passphrase if needed connect(walletModel, SIGNAL(requireUnlock()), this, SLOT(unlockWallet())); } } void BitcoinGUI::createTrayIcon() { QMenu *trayIconMenu; #ifndef Q_OS_MAC trayIcon = new QSystemTrayIcon(this); trayIconMenu = new QMenu(this); trayIcon->setContextMenu(trayIconMenu); trayIcon->setToolTip(tr("GridCoin client")); trayIcon->setIcon(QIcon(":/icons/toolbar")); connect(trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)), this, SLOT(trayIconActivated(QSystemTrayIcon::ActivationReason))); trayIcon->show(); #else // Note: On Mac, the dock icon is used to provide the tray's functionality. MacDockIconHandler *dockIconHandler = MacDockIconHandler::instance(); dockIconHandler->setMainWindow((QMainWindow *)this); trayIconMenu = dockIconHandler->dockMenu(); #endif // Configuration of the tray icon (or dock icon) icon menu trayIconMenu->addAction(toggleHideAction); trayIconMenu->addSeparator(); trayIconMenu->addAction(sendCoinsAction); trayIconMenu->addAction(receiveCoinsAction); trayIconMenu->addSeparator(); trayIconMenu->addAction(signMessageAction); trayIconMenu->addAction(verifyMessageAction); trayIconMenu->addSeparator(); trayIconMenu->addAction(optionsAction); trayIconMenu->addAction(openRPCConsoleAction); #ifndef Q_OS_MAC // This is built-in on Mac trayIconMenu->addSeparator(); trayIconMenu->addAction(quitAction); #endif notificator = new Notificator(qApp->applicationName(), trayIcon); } #ifndef Q_OS_MAC void BitcoinGUI::trayIconActivated(QSystemTrayIcon::ActivationReason reason) { if(reason == QSystemTrayIcon::Trigger) { // Click on system tray icon triggers show/hide of the main window toggleHideAction->trigger(); } } #endif void BitcoinGUI::optionsClicked() { if(!clientModel || !clientModel->getOptionsModel()) return; OptionsDialog dlg; dlg.setModel(clientModel->getOptionsModel()); dlg.exec(); } void BitcoinGUI::aboutClicked() { AboutDialog dlg; dlg.setModel(clientModel); dlg.exec(); } void BitcoinGUI::setNumConnections(int count) { QString icon; switch(count) { case 0: icon = ":/icons/connect_0"; break; case 1: case 2: case 3: icon = ":/icons/connect_1"; break; case 4: case 5: case 6: icon = ":/icons/connect_2"; break; case 7: case 8: case 9: icon = ":/icons/connect_3"; break; default: icon = ":/icons/connect_4"; break; } labelConnectionsIcon->setPixmap(QIcon(icon).pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE)); labelConnectionsIcon->setToolTip(tr("%n active connection(s) to GridCoin network", "", count)); } void BitcoinGUI::setNumBlocks(int count, int nTotalBlocks) { // don't show / hide progress bar and its label if we have no connection to the network if (!clientModel || clientModel->getNumConnections() == 0) { progressBarLabel->setVisible(false); progressBar->setVisible(false); return; } QString strStatusBarWarnings = clientModel->getStatusBarWarnings(); QString tooltip; if(count < nTotalBlocks) { int nRemainingBlocks = nTotalBlocks - count; float nPercentageDone = count / (nTotalBlocks * 0.01f); if (strStatusBarWarnings.isEmpty()) { progressBarLabel->setText(tr("Synchronizing with network...")); progressBarLabel->setVisible(true); progressBar->setFormat(tr("~%n block(s) remaining", "", nRemainingBlocks)); progressBar->setMaximum(nTotalBlocks); progressBar->setValue(count); progressBar->setVisible(true); } tooltip = tr("Downloaded %1 of %2 blocks of transaction history (%3% done).").arg(count).arg(nTotalBlocks).arg(nPercentageDone, 0, 'f', 2); } else { if (strStatusBarWarnings.isEmpty()) progressBarLabel->setVisible(false); progressBar->setVisible(false); tooltip = tr("Downloaded %1 blocks of transaction history.").arg(count); } // Override progressBarLabel text and hide progress bar, when we have warnings to display if (!strStatusBarWarnings.isEmpty()) { progressBarLabel->setText(strStatusBarWarnings); progressBarLabel->setVisible(true); progressBar->setVisible(false); } QDateTime lastBlockDate = clientModel->getLastBlockDate(); int secs = lastBlockDate.secsTo(QDateTime::currentDateTime()); QString text; // Represent time from last generated block in human readable text if(secs <= 0) { // Fully up to date. Leave text empty. } else if(secs < 60) { text = tr("%n second(s) ago","",secs); } else if(secs < 60*60) { text = tr("%n minute(s) ago","",secs/60); } else if(secs < 24*60*60) { text = tr("%n hour(s) ago","",secs/(60*60)); } else { text = tr("%n day(s) ago","",secs/(60*60*24)); } // Set icon state: spinning if catching up, tick otherwise if(secs < 90*60 && count >= nTotalBlocks) { tooltip = tr("Up to date") + QString(".<br>") + tooltip; labelBlocksIcon->setPixmap(QIcon(":/icons/synced").pixmap(STATUSBAR_ICONSIZE, STATUSBAR_ICONSIZE)); overviewPage->showOutOfSyncWarning(false); } else { tooltip = tr("Catching up...") + QString("<br>") + tooltip; labelBlocksIcon->setMovie(syncIconMovie); syncIconMovie->start(); overviewPage->showOutOfSyncWarning(true); } if(!text.isEmpty()) { tooltip += QString("<br>"); tooltip += tr("Last received block was generated %1.").arg(text); } // Don't word-wrap this (fixed-width) tooltip tooltip = QString("<nobr>") + tooltip + QString("</nobr>"); labelBlocksIcon->setToolTip(tooltip); progressBarLabel->setToolTip(tooltip); progressBar->setToolTip(tooltip); } void BitcoinGUI::error(const QString &title, const QString &message, bool modal) { // Report errors from network/worker thread if(modal) { QMessageBox::critical(this, title, message, QMessageBox::Ok, QMessageBox::Ok); } else { notificator->notify(Notificator::Critical, title, message); } } void BitcoinGUI::changeEvent(QEvent *e) { QMainWindow::changeEvent(e); #ifndef Q_OS_MAC // Ignored on Mac if(e->type() == QEvent::WindowStateChange) { if(clientModel && clientModel->getOptionsModel()->getMinimizeToTray()) { QWindowStateChangeEvent *wsevt = static_cast<QWindowStateChangeEvent*>(e); if(!(wsevt->oldState() & Qt::WindowMinimized) && isMinimized()) { QTimer::singleShot(0, this, SLOT(hide())); e->ignore(); } } } #endif } void BitcoinGUI::closeEvent(QCloseEvent *event) { if(clientModel) { #ifndef Q_OS_MAC // Ignored on Mac if(!clientModel->getOptionsModel()->getMinimizeToTray() && !clientModel->getOptionsModel()->getMinimizeOnClose()) { qApp->quit(); } #endif } QMainWindow::closeEvent(event); } void BitcoinGUI::askFee(qint64 nFeeRequired, bool *payFee) { QString strMessage = tr("This transaction is over the size limit. You can still send it for a fee of %1, " "which goes to the nodes that process your transaction and helps to support the network. " "Do you want to pay the fee?").arg( BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, nFeeRequired)); QMessageBox::StandardButton retval = QMessageBox::question( this, tr("Confirm transaction fee"), strMessage, QMessageBox::Yes|QMessageBox::Cancel, QMessageBox::Yes); *payFee = (retval == QMessageBox::Yes); } void BitcoinGUI::incomingTransaction(const QModelIndex & parent, int start, int end) { if(!walletModel || !clientModel) return; TransactionTableModel *ttm = walletModel->getTransactionTableModel(); qint64 amount = ttm->index(start, TransactionTableModel::Amount, parent) .data(Qt::EditRole).toULongLong(); if(!clientModel->inInitialBlockDownload()) { // On new transaction, make an info balloon // Unless the initial block download is in progress, to prevent balloon-spam QString date = ttm->index(start, TransactionTableModel::Date, parent) .data().toString(); QString type = ttm->index(start, TransactionTableModel::Type, parent) .data().toString(); QString address = ttm->index(start, TransactionTableModel::ToAddress, parent) .data().toString(); QIcon icon = qvariant_cast<QIcon>(ttm->index(start, TransactionTableModel::ToAddress, parent) .data(Qt::DecorationRole)); notificator->notify(Notificator::Information, (amount)<0 ? tr("Sent transaction") : tr("Incoming transaction"), tr("Date: %1\n" "Amount: %2\n" "Type: %3\n" "Address: %4\n") .arg(date) .arg(BitcoinUnits::formatWithUnit(walletModel->getOptionsModel()->getDisplayUnit(), amount, true)) .arg(type) .arg(address), icon); } } std::string Trim(int i) { std::string s = ""; s=boost::lexical_cast<std::string>(i); return s; } std::string TrimD(double i) { std::string s = ""; s=boost::lexical_cast<std::string>(i); return s; } bool IsInvalidChar(char c) { int asc = (int)c; if (asc >= 0 && asc < 32) return true; if (asc > 128) return true; if (asc == 124) return true; return false; } std::string Clean(std::string s) { char ch; std::string sOut = ""; for (unsigned int i=0; i < s.length(); i++) { ch = s.at(i); if (IsInvalidChar(ch)==false) sOut = sOut + ch; } return sOut; } std::string RetrieveBlockAsString(int lSqlBlock) { //Insert into Blocks (hash,confirmations,size,height,version,merkleroot,tx,time,nonce,bits,difficulty,boinchash,previousblockhash,nextblockhash) VALUES (); try { if (lSqlBlock==0) lSqlBlock=1; if (lSqlBlock > nBestHeight-2) return ""; CBlock block; CBlockIndex* blockindex = FindBlockByHeight(lSqlBlock); block.ReadFromDisk(blockindex); std::string s = ""; std::string d = "|"; s = block.GetHash().GetHex() + d + "C" + d + "1000" + d + Trim(blockindex->nHeight) + d; s = s + Trim(block.nVersion) + d + block.hashMerkleRoot.GetHex() + d + "TX" + d + Trim(block.GetBlockTime()) + d + Trim(block.nNonce) + d + Trim(block.nBits) + d; s = s + TrimD(GetDifficulty(blockindex)) + d + Clean(block.vtx[0].hashBoinc) + d + blockindex->pprev->GetBlockHash().GetHex() + d; s = s + blockindex->pnext->GetBlockHash().GetHex(); return s; } catch(...) { printf("Runtime error in RetrieveBlockAsString"); return ""; } } std::string RetrieveBlocksAsString(int lSqlBlock) { std::string sout = ""; if (lSqlBlock > nBestHeight-5) return ""; for (int i = lSqlBlock; i < lSqlBlock+101; i++) { sout = sout + RetrieveBlockAsString(i) + "{ROW}"; } return sout; } void BitcoinGUI::rebuildClicked() { printf("Rebuilding..."); ReindexBlocks(); } void BitcoinGUI::upgradeClicked() { printf("Upgrading Gridcoin..."); UpgradeClient(); } void BitcoinGUI::downloadClicked() { DownloadBlocks(); } void BitcoinGUI::sqlClicked() { #ifdef WIN32 if (!globalcom) { globalcom = new QAxObject("BoincStake.Utilization"); } globalcom->dynamicCall("ShowSql()"); #endif } void BitcoinGUI::leaderboardClicked() { #ifdef WIN32 if (globalcom==NULL) { globalcom = new QAxObject("BoincStake.Utilization"); } globalcom->dynamicCall("ShowLeaderboard()"); #endif } int ReindexBlocks() { int result = ReindexWallet(); return 1; } void BitcoinGUI::miningClicked() { #ifdef WIN32 if (globalcom==NULL) { globalcom = new QAxObject("BoincStake.Utilization"); } globalcom->dynamicCall("ShowMiningConsole()"); #endif } void BitcoinGUI::gotoOverviewPage() { overviewAction->setChecked(true); centralWidget->setCurrentWidget(overviewPage); exportAction->setEnabled(false); disconnect(exportAction, SIGNAL(triggered()), 0, 0); } void BitcoinGUI::gotoHistoryPage() { historyAction->setChecked(true); centralWidget->setCurrentWidget(transactionsPage); exportAction->setEnabled(true); disconnect(exportAction, SIGNAL(triggered()), 0, 0); connect(exportAction, SIGNAL(triggered()), transactionView, SLOT(exportClicked())); } void BitcoinGUI::gotoAddressBookPage() { addressBookAction->setChecked(true); centralWidget->setCurrentWidget(addressBookPage); exportAction->setEnabled(true); disconnect(exportAction, SIGNAL(triggered()), 0, 0); connect(exportAction, SIGNAL(triggered()), addressBookPage, SLOT(exportClicked())); } void BitcoinGUI::gotoReceiveCoinsPage() { receiveCoinsAction->setChecked(true); centralWidget->setCurrentWidget(receiveCoinsPage); exportAction->setEnabled(true); disconnect(exportAction, SIGNAL(triggered()), 0, 0); connect(exportAction, SIGNAL(triggered()), receiveCoinsPage, SLOT(exportClicked())); } void BitcoinGUI::gotoSendCoinsPage() { sendCoinsAction->setChecked(true); centralWidget->setCurrentWidget(sendCoinsPage); exportAction->setEnabled(false); disconnect(exportAction, SIGNAL(triggered()), 0, 0); } void BitcoinGUI::gotoSignMessageTab(QString addr) { // call show() in showTab_SM() signVerifyMessageDialog->showTab_SM(true); if(!addr.isEmpty()) signVerifyMessageDialog->setAddress_SM(addr); } void BitcoinGUI::gotoVerifyMessageTab(QString addr) { // call show() in showTab_VM() signVerifyMessageDialog->showTab_VM(true); if(!addr.isEmpty()) signVerifyMessageDialog->setAddress_VM(addr); } void BitcoinGUI::dragEnterEvent(QDragEnterEvent *event) { // Accept only URIs if(event->mimeData()->hasUrls()) event->acceptProposedAction(); } void BitcoinGUI::dropEvent(QDropEvent *event) { if(event->mimeData()->hasUrls()) { int nValidUrisFound = 0; QList<QUrl> uris = event->mimeData()->urls(); foreach(const QUrl &uri, uris) { if (sendCoinsPage->handleURI(uri.toString())) nValidUrisFound++; } // if valid URIs were found if (nValidUrisFound) gotoSendCoinsPage(); else notificator->notify(Notificator::Warning, tr("URI handling"), tr("URI can not be parsed! This can be caused by an invalid GridCoin address or malformed URI parameters.")); } event->acceptProposedAction(); } void BitcoinGUI::handleURI(QString strURI) { // URI has to be valid if (sendCoinsPage->handleURI(strURI)) { showNormalIfMinimized(); gotoSendCoinsPage(); } else notificator->notify(Notificator::Warning, tr("URI handling"), tr("URI can not be parsed! This can be caused by an invalid GridCoin address or malformed URI parameters.")); } void BitcoinGUI::setEncryptionStatus(int status) { switch(status) { case WalletModel::Unencrypted: labelEncryptionIcon->hide(); encryptWalletAction->setChecked(false); changePassphraseAction->setEnabled(false); unlockWalletAction->setVisible(false); lockWalletAction->setVisible(false); encryptWalletAction->setEnabled(true); break; case WalletModel::Unlocked: labelEncryptionIcon->show(); labelEncryptionIcon->setPixmap(QIcon(":/icons/lock_open").pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE)); labelEncryptionIcon->setToolTip(tr("Wallet is <b>encrypted</b> and currently <b>unlocked</b>")); encryptWalletAction->setChecked(true); changePassphraseAction->setEnabled(true); unlockWalletAction->setVisible(false); lockWalletAction->setVisible(true); encryptWalletAction->setEnabled(false); // TODO: decrypt currently not supported break; case WalletModel::Locked: labelEncryptionIcon->show(); labelEncryptionIcon->setPixmap(QIcon(":/icons/lock_closed").pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE)); labelEncryptionIcon->setToolTip(tr("Wallet is <b>encrypted</b> and currently <b>locked</b>")); encryptWalletAction->setChecked(true); changePassphraseAction->setEnabled(true); unlockWalletAction->setVisible(true); lockWalletAction->setVisible(false); encryptWalletAction->setEnabled(false); // TODO: decrypt currently not supported break; } } void BitcoinGUI::encryptWallet(bool status) { if(!walletModel) return; AskPassphraseDialog dlg(status ? AskPassphraseDialog::Encrypt: AskPassphraseDialog::Decrypt, this); dlg.setModel(walletModel); dlg.exec(); setEncryptionStatus(walletModel->getEncryptionStatus()); } void BitcoinGUI::backupWallet() { QString saveDir = QDesktopServices::storageLocation(QDesktopServices::DocumentsLocation); QString filename = QFileDialog::getSaveFileName(this, tr("Backup Wallet"), saveDir, tr("Wallet Data (*.dat)")); if(!filename.isEmpty()) { if(!walletModel->backupWallet(filename)) { QMessageBox::warning(this, tr("Backup Failed"), tr("There was an error trying to save the wallet data to the new location.")); } } } void BitcoinGUI::changePassphrase() { AskPassphraseDialog dlg(AskPassphraseDialog::ChangePass, this); dlg.setModel(walletModel); dlg.exec(); } void BitcoinGUI::unlockWallet() { if(!walletModel) return; // Unlock wallet when requested by wallet model if(walletModel->getEncryptionStatus() == WalletModel::Locked) { AskPassphraseDialog::Mode mode = sender() == unlockWalletAction ? AskPassphraseDialog::UnlockStaking : AskPassphraseDialog::Unlock; AskPassphraseDialog dlg(mode, this); dlg.setModel(walletModel); dlg.exec(); } } void BitcoinGUI::lockWallet() { if(!walletModel) return; walletModel->setWalletLocked(true); } void BitcoinGUI::showNormalIfMinimized(bool fToggleHidden) { // activateWindow() (sometimes) helps with keyboard focus on Windows if (isHidden()) { show(); activateWindow(); } else if (isMinimized()) { showNormal(); activateWindow(); } else if (GUIUtil::isObscured(this)) { raise(); activateWindow(); } else if(fToggleHidden) hide(); } bool Timer(std::string timer_name, int max_ms) { mvTimers[timer_name] = mvTimers[timer_name] + 1; if (mvTimers[timer_name] > max_ms) { mvTimers[timer_name]=0; return true; } return false; } void BitcoinGUI::toggleHidden() { showNormalIfMinimized(true); } void BitcoinGUI::updateWeight() { if (!pwalletMain) return; TRY_LOCK(cs_main, lockMain); if (!lockMain) return; TRY_LOCK(pwalletMain->cs_wallet, lockWallet); if (!lockWallet) return; pwalletMain->GetStakeWeight(nWeight); } void ReinstantiateGlobalcom() { #ifdef WIN32 //Note, on Windows, if the performance counters are corrupted, rebuild them by going to an elevated command prompt and //issue the command: lodctr /r (to rebuild the performance counters in the registry) std::string os = GetArg("-os", "windows"); if (os == "linux" || os == "mac") { printf("Instantiating globalcom for Linux"); globalcom = new QAxObject("Boinc.LinuxUtilization"); } else { printf("Instantiating globalcom for Windows"); globalcom = new QAxObject("BoincStake.Utilization"); printf("Instantiated globalcom for Windows"); } // globalcom->dynamicCall("ShowMiningConsole()"); //printf("Showing Mining Console"); if (false && bCheckedForUpgrade == false && !fTestNet) { int nNeedsUpgrade = 0; bool bCheckedForUpgrade = true; printf("Checking to see if Gridcoin needs upgraded\r\n"); nNeedsUpgrade = globalcom->dynamicCall("ClientNeedsUpgrade()").toInt(); if (nNeedsUpgrade) UpgradeClient(); } #endif } void ExecuteCode() { printf("Globalcom executing .net code\r\n"); std::string q = "\""; std::string sCode = "For x = 1 to 5:sOut=sOut + " + q + "COUNTING: " + q + "+ trim(x):Next x:MsgBox(" + q + "Hello: " + q + " + sOut,MsgBoxStyle.Critical," + q + "Message Title" + q + ")"; QString qsCode = QString::fromUtf8(sCode.c_str()); #ifdef WIN32 globalcom->dynamicCall("ExecuteCode(Qstring)", qsCode); #endif } void BitcoinGUI::timerfire() { try { std::string time1 = DateTimeStrFormat("%m-%d-%Y %H:%M:%S", GetTime()); if (Timer("timestamp",6*5)) { printf("Timestamp: %s\r\n",time1.c_str()); } if (bExecuteCode) { bExecuteCode = false; ExecuteCode(); } //Backup the wallet once per day: if (Timer("backupwallet", 6*60*20)) { std::string backup_results = BackupGridcoinWallet(); printf("Daily backup results: %s\r\n",backup_results.c_str()); //Create a restore point once per day //int r = CreateRestorePoint(); //printf("Created restore point : %i",r); } if (nRegVersion==0 || Timer("start",10)) { printf("Starting globalcom...\r\n"); #ifdef WIN32 if (globalcom==NULL) ReinstantiateGlobalcom(); nRegVersion = globalcom->dynamicCall("Version()").toInt(); sRegVer = boost::lexical_cast<std::string>(nRegVersion); #endif } if (Timer("status_update",2)) { printf("Status Update"); std::string status = GetGlobalStatus(); bForceUpdate=true; } if (Timer("update_boinc_magnitude", 6*10)) { //double POB = GetPoBDifficulty(); TallyNetworkAverages(false); } if (false) { if (mapArgs["-restartnetlayer"] != "false") { if (Timer("restart_network",6*25)) { printf("\r\nRestarting gridcoin's network layer @ %s\r\n",time1.c_str()); RestartGridcoin10(); } } } if (true) { if (Timer("gather_cpids",6*30)) { printf("\r\nReharvesting cpids in background thread...\r\n"); LoadCPIDsInBackground(); } } if (false) { if (Timer("sql",2)) { #ifdef WIN32 //Upload the current block to the GVM //printf("Ready to sync SQL...\r\n"); //QString lbh = QString::fromUtf8(hashBestChain.ToString().c_str()); //Retrieve SQL high block number: int iSqlBlock = 0; iSqlBlock = globalcom->dynamicCall("RetrieveSqlHighBlock()").toInt(); //Send Gridcoin block to SQL: QString qsblock = QString::fromUtf8(RetrieveBlocksAsString(iSqlBlock).c_str()); globalcom->dynamicCall("SetSqlBlock(Qstring)",qsblock); //Set Public Wallet Address //QString pwa = QString::fromUtf8(DefaultWalletAddress().c_str()); //globalcom->dynamicCall("SetPublicWalletAddress(QString)",pwa); //Set Best Block globalcom->dynamicCall("SetBestBlock(int)", nBestHeight); #endif } } } catch(std::runtime_error &e) { printf("GENERAL RUNTIME ERROR!"); } } QString BitcoinGUI::toqstring(int o) { std::string pre=""; pre=strprintf("%d",o); QString str1 = QString::fromUtf8(pre.c_str()); return str1; } std::string tostdstring(QString q) { std::string ss1 = q.toLocal8Bit().constData(); return ss1; } void BitcoinGUI::detectShutdown() { //Note: This routine is used in Litecoin but not Peercoin /* // Tell the main threads to shutdown. if (ShutdownRequested()) QMetaObject::invokeMethod(QCoreApplication::instance(), "quit", Qt::QueuedConnection); */ } void BitcoinGUI::updateStakingIcon() { updateWeight(); if (nLastCoinStakeSearchInterval && nWeight) { uint64_t nNetworkWeight = GetPoSKernelPS(); unsigned nEstimateTime = GetTargetSpacing(nBestHeight) * nNetworkWeight / (nWeight+.001); QString text; if (nEstimateTime < 60) { text = tr("%n second(s)", "", nEstimateTime); } else if (nEstimateTime < 60*60) { text = tr("%n minute(s)", "", nEstimateTime/60); } else if (nEstimateTime < 24*60*60) { text = tr("%n hour(s)", "", nEstimateTime/(60*60)); } else { text = tr("%n day(s)", "", nEstimateTime/(60*60*24)); } if (IsProtocolV2(nBestHeight+1)) { nWeight /= COIN; nNetworkWeight /= COIN; } labelStakingIcon->setPixmap(QIcon(":/icons/staking_on").pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE)); labelStakingIcon->setToolTip(tr("Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3").arg(nWeight).arg(nNetworkWeight).arg(text)); } else { labelStakingIcon->setPixmap(QIcon(":/icons/staking_off").pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE)); if (pwalletMain && pwalletMain->IsLocked()) labelStakingIcon->setToolTip(tr("Not staking because wallet is locked")); else if (vNodes.empty()) labelStakingIcon->setToolTip(tr("Not staking because wallet is offline")); else if (IsInitialBlockDownload()) labelStakingIcon->setToolTip(tr("Not staking because wallet is syncing")); else if (!nWeight) labelStakingIcon->setToolTip(tr("Not staking because you don't have mature coins")); else labelStakingIcon->setToolTip(tr("Not staking")); } }
[ "contact@gridcoin.us" ]
contact@gridcoin.us
bcdc1ec1cc13b567de582b022e1a2b0cebc51a6e
188b5b159c9bb054e48be2ce130f17f536613c4a
/Vicon/CrossMarket/DataStream/ViconCGStream/UnlabeledRecons.h
c859aeac6e089497b8df87ce88682bd3d47f6da1
[ "MIT" ]
permissive
BrainsOnBoard/ViconDataStreamSDK
1b83eebffcd2531a0fba2cc4ea8f027598369333
6ec2a4a77ecb31910aaf82df814f359399c1e173
refs/heads/master
2021-06-21T05:29:38.170813
2021-02-16T17:18:08
2021-02-16T17:18:08
155,730,904
1
1
null
null
null
null
UTF-8
C++
false
false
2,638
h
////////////////////////////////////////////////////////////////////////////////// // MIT License // // Copyright (c) 2017 Vicon Motion Systems Ltd // // 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. ////////////////////////////////////////////////////////////////////////////////// #pragma once /// \file /// Contains the declaration of the ViconCGStream::VUnlabeledRecons class. #include "Item.h" #include "UnlabeledReconsDetail.h" #include <vector> namespace ViconCGStream { //------------------------------------------------------------------------------------------------- /// Contains a frame of unlabeled recons, consisting of radii, positions and covariances. class VUnlabeledRecons : public VItem { public: /// Unlabeled recons std::vector< ViconCGStreamDetail::VUnlabeledRecons_UnlabeledRecon > m_UnlabeledRecons; /// Equality operator bool operator == ( const VUnlabeledRecons & i_rOther ) const { return m_UnlabeledRecons == i_rOther.m_UnlabeledRecons; } /// Object type enum. virtual ViconCGStreamType::Enum TypeID() const { return ViconCGStreamEnum::UnlabeledRecons; } /// Filter ID virtual ViconCGStreamType::UInt32 FilterID() const { return FILTER_NA; } /// Read function. virtual bool Read( const ViconCGStreamIO::VBuffer & i_rBuffer ) { return i_rBuffer.Read( m_UnlabeledRecons ); } /// Write function. virtual void Write( ViconCGStreamIO::VBuffer & i_rBuffer ) const { i_rBuffer.Write( m_UnlabeledRecons ); } }; //------------------------------------------------------------------------------------------------- };
[ "a.dewar@sussex.ac.uk" ]
a.dewar@sussex.ac.uk
c32d46c2620575f65796a8028e87d3edaebf3f23
91a882547e393d4c4946a6c2c99186b5f72122dd
/Source/XPSP1/NT/inetsrv/iis/svcs/cmp/webdav/_davprs/sz.cpp
4ef43017639726b15fc1e55d49f267b218117710
[]
no_license
IAmAnubhavSaini/cryptoAlgorithm-nt5src
94f9b46f101b983954ac6e453d0cf8d02aa76fc7
d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2
refs/heads/master
2023-09-02T10:14:14.795579
2021-11-20T13:47:06
2021-11-20T13:47:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
513
cpp
/* * S Z . C P P * * Multi-language string support * * Copyright 1986-1997 Microsoft Corporation, All Rights Reserved */ //----------------------------------------------------------------------------- // // NOTE: This file doesn't exist anymore. All string go in \cal\src\inc\sz.h // and are declared using DEC_CONST. This is just a tombstone! This // file has been removed from the SOURCES list in the makefile. // //-----------------------------------------------------------------------------
[ "support@cryptoalgo.cf" ]
support@cryptoalgo.cf
88d0e17c2718ec8abcdb21be086a78807b53bbe7
cc738f0977aeed465fcb460cad2a20b000d4b5c5
/mediacontroller.cpp
c97feb31492d1efea14bb1b46f0b6a069f20b42a
[]
no_license
min3rd/mediar
24d0268bb2f8be4c7b46af044e7b848ede6fb066
4d7c69e6c22d6623b81673cefa9e1627e83faf40
refs/heads/Devolops
2020-03-07T00:19:00.008455
2018-04-15T15:04:11
2018-04-15T15:04:11
127,154,200
0
0
null
2018-04-15T15:04:12
2018-03-28T14:38:16
C++
UTF-8
C++
false
false
155
cpp
#include <mediacontroller.h> MediaController::MediaController(QObject *parent):QObject(parent){ } void MediaController::play(){ qDebug() << "Play"; }
[ "minhdaik9x@gmail.com" ]
minhdaik9x@gmail.com
4561c85f775936ea4ef8ccaca097279e680a9b33
c73385789f42db1a1db9d6ade242f7bbb0ca6b7a
/include/VRPN/vrpn_ForceDeviceServer.h
3a7684c0729ed73272b72e544403037bd75997ea
[]
no_license
widVE/FionaLib
b1cd4cd0f15e7849c978f8314830d74a2008cd73
bacffbf266bbdf0d9cdeee64cbdb93009b36cd93
refs/heads/master
2020-06-16T01:47:55.467750
2019-07-05T17:42:39
2019-07-05T17:42:39
195,447,201
0
0
null
null
null
null
UTF-8
C++
false
false
6,473
h
// vrpn_ForceDeviceServer.h: interface for the vrpn_ForceDeviceServer class. // ////////////////////////////////////////////////////////////////////// #if !defined( \ AFX_VRPN_FORCEDEVICESERVER_H__E5B0D6FA_E426_45E5_97C7_B2169BEBF90A__INCLUDED_) #define AFX_VRPN_FORCEDEVICESERVER_H__E5B0D6FA_E426_45E5_97C7_B2169BEBF90A__INCLUDED_ #include "vrpn_Configure.h" // for VRPN_CALLBACK, VRPN_API #include "vrpn_ForceDevice.h" // for vrpn_ForceDevice #include "vrpn_HashST.h" // for vrpn_Hash #include "vrpn_Types.h" // for vrpn_int32, vrpn_float32, etc class VRPN_API vrpn_Connection; struct vrpn_HANDLERPARAM; typedef vrpn_Hash<unsigned int, void *> vrpn_VoidHash; typedef struct _vrpn_DisplayableObject { int m_ObjectType; void *m_pObject; void *m_pObjectMesh; } vrpn_DISPLAYABLEOBJECT; typedef vrpn_Hash<unsigned int, vrpn_DISPLAYABLEOBJECT *> vrpn_DISPLAYABLEHASH; class VRPN_API vrpn_ForceDeviceServer : public vrpn_ForceDevice { public: vrpn_ForceDeviceServer(const char *name, vrpn_Connection *c); virtual ~vrpn_ForceDeviceServer(); protected: static int VRPN_CALLBACK handle_addObject_message(void *userdata, vrpn_HANDLERPARAM p); static int VRPN_CALLBACK handle_addObjectExScene_message(void *userdata, vrpn_HANDLERPARAM p); static int VRPN_CALLBACK handle_setVertex_message(void *userdata, vrpn_HANDLERPARAM p); static int VRPN_CALLBACK handle_setNormal_message(void *userdata, vrpn_HANDLERPARAM p); static int VRPN_CALLBACK handle_setTriangle_message(void *userdata, vrpn_HANDLERPARAM p); static int VRPN_CALLBACK handle_removeTriangle_message(void *userdata, vrpn_HANDLERPARAM p); static int VRPN_CALLBACK handle_updateTrimeshChanges_message(void *userdata, vrpn_HANDLERPARAM p); static int VRPN_CALLBACK handle_transformTrimesh_message(void *userdata, vrpn_HANDLERPARAM p); static int VRPN_CALLBACK handle_setTrimeshType_message(void *userdata, vrpn_HANDLERPARAM p); static int VRPN_CALLBACK handle_setObjectPosition_message(void *userdata, vrpn_HANDLERPARAM p); static int VRPN_CALLBACK handle_setObjectOrientation_message(void *userdata, vrpn_HANDLERPARAM p); static int VRPN_CALLBACK handle_setObjectScale_message(void *userdata, vrpn_HANDLERPARAM p); static int VRPN_CALLBACK handle_removeObject_message(void *userdata, vrpn_HANDLERPARAM p); static int VRPN_CALLBACK handle_moveToParent_message(void *userdata, vrpn_HANDLERPARAM p); static int VRPN_CALLBACK handle_setHapticOrigin_message(void *userdata, vrpn_HANDLERPARAM p); static int VRPN_CALLBACK handle_setHapticScale_message(void *userdata, vrpn_HANDLERPARAM p); static int VRPN_CALLBACK handle_setSceneOrigin_message(void *userdata, vrpn_HANDLERPARAM p); static int VRPN_CALLBACK handle_setObjectIsTouchable_message(void *userdata, vrpn_HANDLERPARAM p); static int VRPN_CALLBACK handle_clearTrimesh_message(void *userdata, vrpn_HANDLERPARAM p); // Add an object to the haptic scene as root (parent -1 = default) or as // child (ParentNum =the number of the parent) virtual bool addObject(vrpn_int32 objNum, vrpn_int32 ParentNum = -1) = 0; // Add an object next to the haptic scene as root virtual bool addObjectExScene(vrpn_int32 objNum) = 0; // vertNum normNum and triNum start at 0 virtual bool setVertex(vrpn_int32 objNum, vrpn_int32 vertNum, vrpn_float32 x, vrpn_float32 y, vrpn_float32 z) = 0; // NOTE: ghost doesn't take normals, // and normals still aren't implemented for Hcollide virtual bool setNormal(vrpn_int32 objNum, vrpn_int32 normNum, vrpn_float32 x, vrpn_float32 y, vrpn_float32 z) = 0; virtual bool setTriangle(vrpn_int32 objNum, vrpn_int32 triNum, vrpn_int32 vert0, vrpn_int32 vert1, vrpn_int32 vert2, vrpn_int32 norm0 = -1, vrpn_int32 norm1 = -1, vrpn_int32 norm2 = -1) = 0; virtual bool removeTriangle(vrpn_int32 objNum, vrpn_int32 triNum) = 0; // should be called to incorporate the above changes into the // displayed trimesh virtual bool updateTrimeshChanges(vrpn_int32 objNum, vrpn_float32 kspring, vrpn_float32 kdamp, vrpn_float32 fdyn, vrpn_float32 fstat) = 0; // set trimesh type virtual bool setTrimeshType(vrpn_int32 objNum, vrpn_int32 type) = 0; // set the trimesh's homogen transform matrix (in row major order) virtual bool setTrimeshTransform(vrpn_int32 objNum, vrpn_float32 homMatrix[16]) = 0; // set position of an object virtual bool setObjectPosition(vrpn_int32 objNum, vrpn_float32 Pos[3]) = 0; // set orientation of an object virtual bool setObjectOrientation(vrpn_int32 objNum, vrpn_float32 axis[3], vrpn_float32 angle) = 0; // set Scale of an object virtual bool setObjectScale(vrpn_int32 objNum, vrpn_float32 Scale[3]) = 0; // remove an object from the scene virtual bool removeObject(vrpn_int32 objNum) = 0; virtual bool clearTrimesh(vrpn_int32 objNum) = 0; /** Functions to organize the scene * **********************************************************/ // Change The parent of an object virtual bool moveToParent(vrpn_int32 objNum, vrpn_int32 ParentNum) = 0; // Set the Origin of the haptic scene virtual bool setHapticOrigin(vrpn_float32 Pos[3], vrpn_float32 axis[3], vrpn_float32 angle) = 0; // Set the Scale factor of the haptic scene virtual bool setHapticScale(vrpn_float32 Scale) = 0; // Set the Origin of the haptic scene virtual bool setSceneOrigin(vrpn_float32 Pos[3], vrpn_float32 axis[3], vrpn_float32 angle) = 0; // make an object touchable or not virtual bool setObjectIsTouchable(vrpn_int32 objNum, vrpn_bool IsTouchable = true) = 0; protected: vrpn_DISPLAYABLEHASH m_hObjectList; }; #endif // !defined(AFX_VRPN_FORCEDEVICESERVER_H__E5B0D6FA_E426_45E5_97C7_B2169BEBF90A__INCLUDED_)
[ "kalimi@wisc.edu" ]
kalimi@wisc.edu
44fe4f5b8aa1c1eb8e3bed702da001bda21331a3
fb51638f6a20d050f7cb10eeb278ebe0605ce4aa
/singlenet-tflite-class/include/tensorflow/lite/delegates/gpu/gl/compiler.h
d928a958c3d474fcdf1e9fb5be5f349c430cf4ca
[ "Apache-2.0" ]
permissive
maxenergy/graduation-design
cd6ad3cd942e5374edcb51b6631832f7a6eff98f
deaaa11ed652ac0b8843a039f04665da67181566
refs/heads/main
2023-05-15T18:00:59.806220
2021-06-18T06:05:00
2021-06-18T06:05:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,055
h
/* Copyright 2019 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #ifndef TENSORFLOW_LITE_DELEGATES_GPU_GL_COMPILER_H_ #define TENSORFLOW_LITE_DELEGATES_GPU_GL_COMPILER_H_ #include <functional> #include <memory> #include <unordered_set> #include "tensorflow/lite/delegates/gpu/common/gpu_info.h" #include "tensorflow/lite/delegates/gpu/common/model.h" #include "tensorflow/lite/delegates/gpu/common/status.h" #include "tensorflow/lite/delegates/gpu/gl/compiler/shader_code.h" #include "tensorflow/lite/delegates/gpu/gl/compiler_options.h" #include "tensorflow/lite/delegates/gpu/gl/node_shader.h" namespace tflite { namespace gpu { namespace gl { using ShaderCodeCallback = std::function<absl::Status(ShaderCode code)>; class Compiler { public: virtual ~Compiler() = default; // Goes over a graph and generates OpenGL shaders for the given graph. // Callback is called for every generated shader. Callback may execute shaders // as they come or store them elsewhere to execute later. virtual absl::Status Compile( const GraphFloat32 &graph, const std::unordered_set<int> &tflite_graph_io, // NOLINT const ShaderCodeCallback &callback) = 0; }; std::unique_ptr<Compiler> NewCompiler( const NodeShader* node_shader, const GpuInfo* gpu_info, const CompilationOptions& options); } // namespace gl } // namespace gpu } // namespace tflite #endif // TENSORFLOW_LITE_DELEGATES_GPU_GL_COMPILER_H_
[ "793881807@qq.com" ]
793881807@qq.com
2e52f740d96451de2a471461addcf26789b55701
7e309f67cafe5528eaab8757fa34dd9c59355195
/Algorithms/ReverseLinkedList/reverseLinkedList.cc
b23d544186b43e22e51e91058f0a0a957c6253ac
[]
no_license
xusiwei/leetcode
56cc827020ab5a9373d7b4221e8ae82734b01e7e
80f0c2b2a89843df2ea3adb12828991ad8534373
refs/heads/master
2021-04-22T13:26:46.577996
2020-05-24T17:06:12
2020-05-24T17:06:12
36,977,056
5
0
null
null
null
null
UTF-8
C++
false
false
714
cc
/* copyright xu(xusiwei1236@163.com), all right reserved. Reverse Linked List ==================== Reverse a singly linked list. click to show more hints. Hint: A linked list can be reversed either iteratively or recursively. Could you implement both? */ /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: ListNode* reverseList(ListNode* head) { ListNode fake(0); while(head) { ListNode *next = head->next; head->next = fake.next; fake.next = head; head = next; } return fake.next; } };
[ "xusiwei1236@163.com" ]
xusiwei1236@163.com
2f56112888c70d41b2fdb5086b1f6e859bc990dd
400b0ccfc51270b2639336e6a308918256d64c65
/Tests/Packet++Test/Tests/IPSecTests.cpp
3b83b394d34d6a12c31b11ed1bed24715b3f1924
[ "Unlicense" ]
permissive
daoxuans/PcapPlusPlus
f65579fa78b87595cafdda3999f3a957b5e1d987
84900a711de2f93b51d4dbb03a51c48d3c0fb84d
refs/heads/master
2023-09-03T10:16:52.671778
2023-06-12T01:38:35
2023-06-12T01:38:35
532,229,839
0
1
Unlicense
2023-06-21T09:43:53
2022-09-03T10:42:16
C++
UTF-8
C++
false
false
2,711
cpp
#include "../TestDefinition.h" #include "../Utils/TestUtils.h" #include "Packet.h" #include "IPSecLayer.h" #include "SystemUtils.h" PTF_TEST_CASE(IPSecParsingTest) { timeval time; gettimeofday(&time, NULL); READ_FILE_AND_CREATE_PACKET(1, "PacketExamples/ipsec_ah_esp.dat"); READ_FILE_AND_CREATE_PACKET(2, "PacketExamples/ipsec_ah_icmp.dat"); READ_FILE_AND_CREATE_PACKET(3, "PacketExamples/ipsec_esp_ipv6.dat"); pcpp::Packet ipsec1Packet(&rawPacket1); pcpp::Packet ipsec2Packet(&rawPacket2); pcpp::Packet ipsec3Packet(&rawPacket3); PTF_ASSERT_TRUE(ipsec1Packet.isPacketOfType(pcpp::IPSec)); PTF_ASSERT_TRUE(ipsec2Packet.isPacketOfType(pcpp::IPSec)); PTF_ASSERT_TRUE(ipsec3Packet.isPacketOfType(pcpp::IPSec)); PTF_ASSERT_TRUE(ipsec1Packet.isPacketOfType(pcpp::AuthenticationHeader)); PTF_ASSERT_TRUE(ipsec1Packet.isPacketOfType(pcpp::ESP)); PTF_ASSERT_TRUE(ipsec2Packet.isPacketOfType(pcpp::AuthenticationHeader)); PTF_ASSERT_TRUE(ipsec2Packet.isPacketOfType(pcpp::ICMP)); PTF_ASSERT_TRUE(ipsec3Packet.isPacketOfType(pcpp::ESP)); pcpp::AuthenticationHeaderLayer* ahLayer = ipsec1Packet.getLayerOfType<pcpp::AuthenticationHeaderLayer>(); PTF_ASSERT_NOT_NULL(ahLayer); PTF_ASSERT_EQUAL(ahLayer->getSPI(), 0x8179b705); PTF_ASSERT_EQUAL(ahLayer->getSequenceNumber(), 3); PTF_ASSERT_EQUAL(ahLayer->getICVLength(), 12); PTF_ASSERT_EQUAL(ahLayer->getICVHexStream(), "62325d2ea14e86ab902b70fb"); PTF_ASSERT_EQUAL(ahLayer->getHeaderLen(), 24); PTF_ASSERT_EQUAL(ahLayer->toString(), "Authentication Header Layer"); PTF_ASSERT_EQUAL(ahLayer->getNextLayer()->getProtocol(), pcpp::ESP, enum); pcpp::ESPLayer* espLayer = ipsec1Packet.getLayerOfType<pcpp::ESPLayer>(); PTF_ASSERT_NOT_NULL(espLayer); PTF_ASSERT_EQUAL(espLayer->getSPI(), 0x48dac2e4); PTF_ASSERT_EQUAL(espLayer->getSequenceNumber(), 3); PTF_ASSERT_EQUAL(espLayer->getHeaderLen(), 8); PTF_ASSERT_EQUAL(espLayer->toString(), "ESP Layer, SPI: 0x48dac2e4"); PTF_ASSERT_EQUAL(espLayer->getNextLayer()->getProtocol(), pcpp::GenericPayload, enum); ahLayer = ipsec2Packet.getLayerOfType<pcpp::AuthenticationHeaderLayer>(); PTF_ASSERT_NOT_NULL(ahLayer); PTF_ASSERT_EQUAL(ahLayer->getSPI(), 0x646adc80); PTF_ASSERT_EQUAL(ahLayer->getSequenceNumber(), 8); PTF_ASSERT_EQUAL(ahLayer->getICVLength(), 12); PTF_ASSERT_EQUAL(ahLayer->getICVHexStream(), "03d9ebccbbc8d14cccb87ade"); PTF_ASSERT_EQUAL(ahLayer->getHeaderLen(), 24); PTF_ASSERT_EQUAL(ahLayer->getNextLayer()->getProtocol(), pcpp::IPv4, enum); espLayer = ipsec3Packet.getLayerOfType<pcpp::ESPLayer>(); PTF_ASSERT_NOT_NULL(espLayer); PTF_ASSERT_EQUAL(espLayer->getSPI(), 0x49507636); PTF_ASSERT_EQUAL(espLayer->getSequenceNumber(), 541414224); } // IPSecParsingTest
[ "noreply@github.com" ]
daoxuans.noreply@github.com
a2a3df60dc856c6f5ed51e1c5d42162ec5dbeb3b
21fc973aa71b25743db1f917d538ee406725d7ea
/branches/mail_template/reporting/crashsender/ErrorReportSender.cpp
6c6f6772d664a154128e13e2a3b6d180c27dd2ac
[ "BSD-3-Clause" ]
permissive
YankoNik/CrashRpt
9089255055530a361a3c6cc2a43800279e66babb
50982546622758c2cd3a6bddfb64ac9df127f036
refs/heads/master
2023-03-15T19:13:36.497965
2014-02-10T10:08:36
2014-02-10T10:08:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
82,118
cpp
/************************************************************************************* This file is a part of CrashRpt library. Copyright (c) 2003-2013 The CrashRpt project authors. All Rights Reserved. Use of this source code is governed by a BSD-style license that can be found in the License.txt file in the root of the source tree. All contributing project authors may be found in the Authors.txt file in the root of the source tree. ***************************************************************************************/ #include "stdafx.h" #include "ErrorReportSender.h" #include "MailMsg.h" #include "smtpclient.h" #include "HttpRequestSender.h" #include "CrashRpt.h" #include "md5.h" #include "Utility.h" #include "zip.h" #include "CrashInfoReader.h" #include "strconv.h" #include "ScreenCap.h" #include "base64.h" #include <sys/stat.h> #include "dbghelp.h" #include "VideoRec.h" #include "VideoRecDlg.h" CErrorReportSender* CErrorReportSender::m_pInstance = NULL; // Constructor CErrorReportSender::CErrorReportSender() { // Init variables m_nStatus = 0; m_nCurReport = 0; m_hThread = NULL; m_SendAttempt = 0; m_Action=COLLECT_CRASH_INFO; m_bExport = FALSE; m_MailClientConfirm = NOT_CONFIRMED_YET; m_bSendingNow = FALSE; m_bErrors = FALSE; } // Destructor CErrorReportSender::~CErrorReportSender() { Finalize(); } CErrorReportSender* CErrorReportSender::GetInstance() { // Return singleton object if(m_pInstance==NULL) m_pInstance = new CErrorReportSender(); return m_pInstance; } BOOL CErrorReportSender::Init(LPCTSTR szFileMappingName) { m_sErrorMsg = _T("Unspecified error."); // Read crash information from the file mapping object. int nInit = m_CrashInfo.Init(szFileMappingName); if(nInit!=0) { m_sErrorMsg.Format(_T("Error reading crash info: %s"), m_CrashInfo.GetErrorMsg().GetBuffer(0)); return FALSE; } // Check window mirroring settings CString sRTL = Utility::GetINIString(m_CrashInfo.m_sLangFileName, _T("Settings"), _T("RTLReading")); if(sRTL.CompareNoCase(_T("1"))==0) { // Set Right-to-Left reading order SetProcessDefaultLayout(LAYOUT_RTL); } // Determine whether to record video if(GetCrashInfo()->m_bAddVideo) { // The following enters the video recording loop // and returns when the parent process signals the event. BOOL bRec = RecordVideo(); if(!bRec) { // Clean up temp files m_VideoRec.Destroy(); return FALSE; } // Reread crash information from the file mapping object. int nInit = m_CrashInfo.Init(szFileMappingName); if(nInit!=0) { m_sErrorMsg.Format(_T("Error reading crash info: %s"), m_CrashInfo.GetErrorMsg().GetBuffer(0)); return FALSE; } // Check if the client app has crashed or exited successfully. if(!m_CrashInfo.m_bClientAppCrashed) { // Let the parent process to continue its work UnblockParentProcess(); // Clean up temp files m_VideoRec.Destroy(); return FALSE; } } if(!m_CrashInfo.m_bSendRecentReports) { // Start crash info collection work assynchronously DoWorkAssync(COLLECT_CRASH_INFO); } else { // Check if another instance of CrashSender.exe is running. ::CreateMutex( NULL, FALSE,_T("Local\\43773530-129a-4298-88f2-20eea3e4a59b")); if (::GetLastError() == ERROR_ALREADY_EXISTS) { m_sErrorMsg = _T("Another CrashSender.exe already tries to resend recent reports."); return FALSE; } if(m_CrashInfo.GetReportCount()==0) { m_sErrorMsg = _T("There are no reports for us to send."); return FALSE; } // Check if it is ok to remind user now. if(!m_CrashInfo.IsRemindNowOK()) { m_sErrorMsg = _T("Not enough time elapsed to remind user about recent crash reports."); return FALSE; } } // Done. m_sErrorMsg = _T("Success."); return TRUE; } CCrashInfoReader* CErrorReportSender::GetCrashInfo() { return &m_CrashInfo; } CString CErrorReportSender::GetErrorMsg() { return m_sErrorMsg; } void CErrorReportSender::SetNotificationWindow(HWND hWnd) { // Set notification window m_hWndNotify = hWnd; } BOOL CErrorReportSender::Run() { if(m_CrashInfo.m_bSendRecentReports) { // We should send recently queued error reports. DoWorkAssync(SEND_RECENT_REPORTS); } else { // Wait for completion of crash info collector. WaitForCompletion(); // Determine whether to send crash report now // or to exit without sending report. if(m_CrashInfo.m_bSendErrorReport) // If we should send error report now { // Compress report files and send the report SetExportFlag(FALSE, _T("")); DoWorkAssync(COMPRESS_REPORT|RESTART_APP|SEND_REPORT); } else // If we shouldn't send error report now { // Exit } } return TRUE; } int CErrorReportSender::GetStatus() { // Return global error report delivery status return m_nStatus; } int CErrorReportSender::GetCurReport() { // Returns the index of error report currently being sent return m_nCurReport; } // This method performs crash files collection and/or // error report sending work in a worker thread. BOOL CErrorReportSender::DoWorkAssync(int nAction) { // Save the action code m_Action = nAction; // Create worker thread which will do all work assynchronously m_hThread = CreateThread(NULL, 0, WorkerThread, (LPVOID)this, 0, NULL); // Check if the thread was created ok if(m_hThread==NULL) return FALSE; // Failed to create worker thread // Done, return return TRUE; } // This method is the worker thread procedure that delegates further work // back to the CErrorReportSender class DWORD WINAPI CErrorReportSender::WorkerThread(LPVOID lpParam) { // Delegate the action to the CErrorReportSender::DoWorkAssync() method CErrorReportSender* pSender = (CErrorReportSender*)lpParam; pSender->DoWork(pSender->m_Action); pSender->m_hThread = NULL; // clean up // Exit code can be ignored return 0; } // This method unblocks the parent process void CErrorReportSender::UnblockParentProcess() { // Notify the parent process that we have finished with minidump, // so the parent process is able to unblock and terminate itself. // Open the event the parent process had created for us CString sEventName; sEventName.Format(_T("Local\\CrashRptEvent_%s"), GetCrashInfo()->GetReport(0)->GetCrashGUID()); HANDLE hEvent = CreateEvent(NULL, FALSE, FALSE, sEventName); if(hEvent!=NULL) SetEvent(hEvent); // Signal event } // This method collects required crash report files (minidump, screenshot etc.) // and then sends the error report over the Internet. BOOL CErrorReportSender::DoWork(int Action) { // Reset the completion event m_Assync.Reset(); if(Action&SEND_RECENT_REPORTS) // If we are currently sending pending error reports { return SendRecentReports(); } if(Action&COLLECT_CRASH_INFO) // Collect crash report files { // Add a message to log m_Assync.SetProgress(_T("Start collecting information about the crash..."), 0, false); // First take a screenshot of user's desktop (if needed). TakeDesktopScreenshot(); if(m_Assync.IsCancelled()) // Check if user-cancelled { // Parent process can now terminate UnblockParentProcess(); // Add a message to log m_Assync.SetProgress(_T("[exit_silently]"), 0, false); return FALSE; } // Create crash dump. CreateMiniDump(); if(m_Assync.IsCancelled()) // Check if user-cancelled { // Parent process can now terminate UnblockParentProcess(); // Add a message to log m_Assync.SetProgress(_T("[exit_silently]"), 0, false); return FALSE; } // Notify the parent process that we have finished with minidump, // so the parent process is able to unblock and terminate itself. UnblockParentProcess(); // Copy user-provided files. CollectCrashFiles(); if(m_Assync.IsCancelled()) // Check if user-cancelled { // Add a message to log m_Assync.SetProgress(_T("[exit_silently]"), 0, false); return FALSE; } // Encode recorded video to an .OGG file EncodeVideo(); if(m_Assync.IsCancelled()) // Check if user-cancelled { // Add a message to log m_Assync.SetProgress(_T("[exit_silently]"), 0, false); return FALSE; } // Create crash description XML CreateCrashDescriptionXML(*m_CrashInfo.GetReport(0)); // Add a message to log m_Assync.SetProgress(_T("[confirm_send_report]"), 100, false); } if(Action&RESTART_APP) // We need to restart the parent process { // Restart the application RestartApp(); } if(Action&COMPRESS_REPORT) // We have to compress error report file into ZIP archive { // Compress error report files BOOL bCompress = CompressReportFiles(m_CrashInfo.GetReport(m_nCurReport)); if(!bCompress) { // Add a message to log m_Assync.SetProgress(_T("[status_failed]"), 100, false); return FALSE; // Error compressing files } } if(Action&SEND_REPORT) // We need to send the report over the Internet { // Send the error report. if(!SendReport()) return FALSE; } // Done return TRUE; } // Returns the export flag (the flag is set if we are exporting error report as a ZIP archive) void CErrorReportSender::SetExportFlag(BOOL bExport, CString sExportFile) { // This is used when we need to export error report files as a ZIP archive m_bExport = bExport; m_sExportFileName = sExportFile; } // This method blocks until worker thread is exited void CErrorReportSender::WaitForCompletion() { if(m_hThread!=NULL) WaitForSingleObject(m_hThread, INFINITE); } // Gets status of the local operation void CErrorReportSender::GetCurOpStatus(int& nProgressPct, std::vector<CString>& msg_log) { m_Assync.GetProgress(nProgressPct, msg_log); } // This method cancels the current operation void CErrorReportSender::Cancel() { // User-cancelled m_Assync.Cancel(); } // This method notifies the main thread that we have finished assync operation void CErrorReportSender::FeedbackReady(int code) { m_Assync.FeedbackReady(code); } // This method cleans up temporary files BOOL CErrorReportSender::Finalize() { // Wait until worker thread exits. WaitForCompletion(); if((m_CrashInfo.m_bSendErrorReport && !m_CrashInfo.m_bQueueEnabled) || (m_CrashInfo.m_bAddVideo && !m_CrashInfo.m_bClientAppCrashed)) { // Remove report files if queue disabled (or if client app not crashed). Utility::RecycleFile(m_CrashInfo.GetReport(0)->GetErrorReportDirName(), true); } if(m_CrashInfo.m_bSendRecentReports) { // Delete log file Utility::RecycleFile(m_Assync.GetLogFilePath(), true); } if(!m_CrashInfo.m_bSendErrorReport && m_CrashInfo.m_bStoreZIPArchives) // If we should generate a ZIP archive { // Compress error report files DoWork(COMPRESS_REPORT); } // If needed, restart the application if(!m_CrashInfo.m_bSendRecentReports) { DoWork(RESTART_APP); } // Done OK return TRUE; } // This method takes the desktop screenshot (screenshot of entire virtual screen // or screenshot of the main window). BOOL CErrorReportSender::TakeDesktopScreenshot() { CScreenCapture sc; // Screen capture object ScreenshotInfo ssi; // Screenshot params // Add a message to log m_Assync.SetProgress(_T("[taking_screenshot]"), 0); // Check if screenshot capture is allowed if(!m_CrashInfo.m_bAddScreenshot) { // Add a message to log m_Assync.SetProgress(_T("Desktop screenshot generation disabled; skipping."), 0); // Exit, nothing to do here return TRUE; } // Add a message to log m_Assync.SetProgress(_T("Taking desktop screenshot"), 0); // Get screenshot flags passed by the parent process DWORD dwFlags = m_CrashInfo.m_dwScreenshotFlags; BOOL bAllowDelete = (dwFlags&CR_AS_ALLOW_DELETE)!=0; // Determine what image format to use (JPG or PNG) SCREENSHOT_IMAGE_FORMAT fmt = SCREENSHOT_FORMAT_PNG; // PNG by default if((dwFlags&CR_AS_USE_JPEG_FORMAT)!=0) fmt = SCREENSHOT_FORMAT_JPG; // Use JPEG format // Determine what to use - color or grayscale image BOOL bGrayscale = (dwFlags&CR_AS_GRAYSCALE_IMAGE)!=0; SCREENSHOT_TYPE type = SCREENSHOT_TYPE_VIRTUAL_SCREEN; if((dwFlags&CR_AS_MAIN_WINDOW)!=0) // We need to capture the main window type = SCREENSHOT_TYPE_MAIN_WINDOW; else if((dwFlags&CR_AS_PROCESS_WINDOWS)!=0) // Capture all process windows type = SCREENSHOT_TYPE_ALL_PROCESS_WINDOWS; else // (dwFlags&CR_AS_VIRTUAL_SCREEN)!=0 // Capture the virtual screen type = SCREENSHOT_TYPE_VIRTUAL_SCREEN; // Take the screen shot BOOL bTakeScreenshot = sc.TakeDesktopScreenshot( m_CrashInfo.GetReport(m_nCurReport)->GetErrorReportDirName(), ssi, type, m_CrashInfo.m_dwProcessId, fmt, m_CrashInfo.m_nJpegQuality, bGrayscale); if(bTakeScreenshot==FALSE) { return FALSE; } // Save screenshot info m_CrashInfo.GetReport(0)->SetScreenshotInfo(ssi); // Prepare the list of screenshot files we will add to the error report std::vector<ERIFileItem> FilesToAdd; size_t i; for(i=0; i<ssi.m_aMonitors.size(); i++) { CString sFileName = ssi.m_aMonitors[i].m_sFileName; CString sDestFile; int nSlashPos = sFileName.ReverseFind('\\'); sDestFile = sFileName.Mid(nSlashPos+1); ERIFileItem fi; fi.m_sSrcFile = sFileName; fi.m_sDestFile = sDestFile; fi.m_sDesc = Utility::GetINIString(m_CrashInfo.m_sLangFileName, _T("DetailDlg"), _T("DescScreenshot")); fi.m_bAllowDelete = bAllowDelete; m_CrashInfo.GetReport(0)->AddFileItem(&fi); } // Done return TRUE; } // This callback function is called by MinidumpWriteDump BOOL CALLBACK CErrorReportSender::MiniDumpCallback( PVOID CallbackParam, PMINIDUMP_CALLBACK_INPUT CallbackInput, PMINIDUMP_CALLBACK_OUTPUT CallbackOutput ) { // Delegate back to the CErrorReportSender CErrorReportSender* pErrorReportSender = (CErrorReportSender*)CallbackParam; return pErrorReportSender->OnMinidumpProgress(CallbackInput, CallbackOutput); } // This method is called when MinidumpWriteDump notifies us about // currently performed action BOOL CErrorReportSender::OnMinidumpProgress(const PMINIDUMP_CALLBACK_INPUT CallbackInput, PMINIDUMP_CALLBACK_OUTPUT CallbackOutput) { switch(CallbackInput->CallbackType) { case CancelCallback: { // This callback allows to cancel minidump generation if(m_Assync.IsCancelled()) { CallbackOutput->Cancel = TRUE; m_Assync.SetProgress(_T("Dump generation cancelled by user"), 0, true); } } break; case ModuleCallback: { // We are currently dumping some module strconv_t strconv; CString sMsg; sMsg.Format(_T("Dumping info for module %s"), strconv.w2t(CallbackInput->Module.FullPath)); // Here we want to collect module information CErrorReportInfo* eri = m_CrashInfo.GetReport(0); if(eri->GetExceptionAddress()!=0) { // Check if this is the module where exception has happened ULONG64 dwExcAddr = eri->GetExceptionAddress(); if(dwExcAddr>=CallbackInput->Module.BaseOfImage && dwExcAddr<=CallbackInput->Module.BaseOfImage+CallbackInput->Module.SizeOfImage) { // Save module information to the report eri->SetExceptionModule(CallbackInput->Module.FullPath); eri->SetExceptionModuleBase(CallbackInput->Module.BaseOfImage); // Save module version info VS_FIXEDFILEINFO* fi = &CallbackInput->Module.VersionInfo; if(fi) { WORD dwVerMajor = HIWORD(fi->dwProductVersionMS); WORD dwVerMinor = LOWORD(fi->dwProductVersionMS); WORD dwPatchLevel = HIWORD(fi->dwProductVersionLS); WORD dwVerBuild = LOWORD(fi->dwProductVersionLS); CString sVer; sVer.Format(_T("%u.%u.%u.%u"), dwVerMajor, dwVerMinor, dwPatchLevel, dwVerBuild); eri->SetExceptionModuleVersion(sVer); } } } // Update progress m_Assync.SetProgress(sMsg, 0, true); } break; case ThreadCallback: { // We are currently dumping some thread CString sMsg; sMsg.Format(_T("Dumping info for thread 0x%X"), CallbackInput->Thread.ThreadId); m_Assync.SetProgress(sMsg, 0, true); } break; } return TRUE; } // This method creates the minidump of the process BOOL CErrorReportSender::CreateMiniDump() { BOOL bStatus = FALSE; HMODULE hDbgHelp = NULL; HANDLE hFile = NULL; MINIDUMP_EXCEPTION_INFORMATION mei; MINIDUMP_CALLBACK_INFORMATION mci; CString sMinidumpFile = m_CrashInfo.GetReport(m_nCurReport)-> GetErrorReportDirName() + _T("\\crashdump.dmp"); std::vector<ERIFileItem> files_to_add; ERIFileItem fi; CString sErrorMsg; // Check our config - should we generate the minidump or not? if(m_CrashInfo.m_bGenerateMinidump==FALSE) { m_Assync.SetProgress(_T("Crash dump generation disabled; skipping."), 0, false); return TRUE; } // Update progress m_Assync.SetProgress(_T("Creating crash dump file..."), 0, false); m_Assync.SetProgress(_T("[creating_dump]"), 0, false); // Load dbghelp.dll hDbgHelp = LoadLibrary(m_CrashInfo.m_sDbgHelpPath); if(hDbgHelp==NULL) { // Try again ... fallback to dbghelp.dll in path const CString sDebugHelpDLL_name = "dbghelp.dll"; hDbgHelp = LoadLibrary(sDebugHelpDLL_name); } if(hDbgHelp==NULL) { sErrorMsg = _T("dbghelp.dll couldn't be loaded"); m_Assync.SetProgress(_T("dbghelp.dll couldn't be loaded."), 0, false); goto cleanup; } // Create the minidump file hFile = CreateFile( sMinidumpFile, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL); // Check if file has been created if(hFile==INVALID_HANDLE_VALUE) { DWORD dwError = GetLastError(); CString sMsg; sMsg.Format(_T("Couldn't create minidump file: %s"), Utility::FormatErrorMsg(dwError)); m_Assync.SetProgress(sMsg, 0, false); sErrorMsg = sMsg; return FALSE; } // Set valid dbghelp API version typedef LPAPI_VERSION (WINAPI* LPIMAGEHLPAPIVERSIONEX)(LPAPI_VERSION AppVersion); LPIMAGEHLPAPIVERSIONEX lpImagehlpApiVersionEx = (LPIMAGEHLPAPIVERSIONEX)GetProcAddress(hDbgHelp, "ImagehlpApiVersionEx"); ATLASSERT(lpImagehlpApiVersionEx!=NULL); if(lpImagehlpApiVersionEx!=NULL) { API_VERSION CompiledApiVer; CompiledApiVer.MajorVersion = 6; CompiledApiVer.MinorVersion = 1; CompiledApiVer.Revision = 11; CompiledApiVer.Reserved = 0; LPAPI_VERSION pActualApiVer = lpImagehlpApiVersionEx(&CompiledApiVer); pActualApiVer; ATLASSERT(CompiledApiVer.MajorVersion==pActualApiVer->MajorVersion); ATLASSERT(CompiledApiVer.MinorVersion==pActualApiVer->MinorVersion); ATLASSERT(CompiledApiVer.Revision==pActualApiVer->Revision); } // Write minidump to the file mei.ThreadId = m_CrashInfo.m_dwThreadId; mei.ExceptionPointers = m_CrashInfo.m_pExInfo; mei.ClientPointers = TRUE; mci.CallbackRoutine = MiniDumpCallback; mci.CallbackParam = this; typedef BOOL (WINAPI *LPMINIDUMPWRITEDUMP)( HANDLE hProcess, DWORD ProcessId, HANDLE hFile, MINIDUMP_TYPE DumpType, CONST PMINIDUMP_EXCEPTION_INFORMATION ExceptionParam, CONST PMINIDUMP_USER_STREAM_INFORMATION UserEncoderParam, CONST PMINIDUMP_CALLBACK_INFORMATION CallbackParam); // Get address of MiniDumpWirteDump function LPMINIDUMPWRITEDUMP pfnMiniDumpWriteDump = (LPMINIDUMPWRITEDUMP)GetProcAddress(hDbgHelp, "MiniDumpWriteDump"); if(!pfnMiniDumpWriteDump) { m_Assync.SetProgress(_T("Bad MiniDumpWriteDump function."), 0, false); sErrorMsg = _T("Bad MiniDumpWriteDump function"); return FALSE; } // Open client process HANDLE hProcess = OpenProcess( PROCESS_ALL_ACCESS, FALSE, m_CrashInfo.m_dwProcessId); // Now actually write the minidump BOOL bWriteDump = pfnMiniDumpWriteDump( hProcess, m_CrashInfo.m_dwProcessId, hFile, m_CrashInfo.m_MinidumpType, &mei, NULL, &mci); // Check result if(!bWriteDump) { CString sMsg = Utility::FormatErrorMsg(GetLastError()); m_Assync.SetProgress(_T("Error writing dump."), 0, false); m_Assync.SetProgress(sMsg, 0, false); sErrorMsg = sMsg; goto cleanup; } // Update progress bStatus = TRUE; m_Assync.SetProgress(_T("Finished creating dump."), 100, false); cleanup: // Close file if(hFile) CloseHandle(hFile); // Unload dbghelp.dll if(hDbgHelp) FreeLibrary(hDbgHelp); // Add the minidump file to error report fi.m_bMakeCopy = false; fi.m_sDesc = Utility::GetINIString(m_CrashInfo.m_sLangFileName, _T("DetailDlg"), _T("DescCrashDump")); fi.m_sDestFile = _T("crashdump.dmp"); fi.m_sSrcFile = sMinidumpFile; fi.m_sErrorStatus = sErrorMsg; files_to_add.push_back(fi); // Add file to the list m_CrashInfo.GetReport(0)->AddFileItem(&fi); return bStatus; } // This method adds an element to XML file void CErrorReportSender::AddElemToXML(CString sName, CString sValue, TiXmlNode* root) { strconv_t strconv; TiXmlHandle hElem = new TiXmlElement(strconv.t2utf8(sName)); root->LinkEndChild(hElem.ToNode()); TiXmlText* text = new TiXmlText(strconv.t2utf8(sValue)); hElem.ToElement()->LinkEndChild(text); } // This method generates an XML file describing the crash BOOL CErrorReportSender::CreateCrashDescriptionXML(CErrorReportInfo& eri) { BOOL bStatus = FALSE; ERIFileItem fi; CString sFileName = eri.GetErrorReportDirName() + _T("\\crashrpt.xml"); CString sErrorMsg; strconv_t strconv; TiXmlDocument doc; FILE* f = NULL; CString sNum; CString sCrashRptVer; CString sOSIs64Bit; CString sExceptionType; fi.m_bMakeCopy = false; fi.m_sDesc = Utility::GetINIString(m_CrashInfo.m_sLangFileName, _T("DetailDlg"), _T("DescXML")); fi.m_sDestFile = _T("crashrpt.xml"); fi.m_sSrcFile = sFileName; fi.m_sErrorStatus = sErrorMsg; // Add this file to the list eri.AddFileItem(&fi); TiXmlNode* root = root = new TiXmlElement("CrashRpt"); doc.LinkEndChild(root); sCrashRptVer.Format(_T("%d"), CRASHRPT_VER); TiXmlHandle(root).ToElement()->SetAttribute("version", strconv.t2utf8(sCrashRptVer)); TiXmlDeclaration * decl = new TiXmlDeclaration( "1.0", "UTF-8", "" ); doc.InsertBeforeChild(root, *decl); AddElemToXML(_T("CrashGUID"), eri.GetCrashGUID(), root); AddElemToXML(_T("AppName"), eri.GetAppName(), root); AddElemToXML(_T("AppVersion"), eri.GetAppVersion(), root); AddElemToXML(_T("ImageName"), eri.GetImageName(), root); AddElemToXML(_T("OperatingSystem"), eri.GetOSName(), root); sOSIs64Bit.Format(_T("%d"), eri.IsOS64Bit()); AddElemToXML(_T("OSIs64Bit"), sOSIs64Bit, root); AddElemToXML(_T("GeoLocation"), eri.GetGeoLocation(), root); AddElemToXML(_T("SystemTimeUTC"), eri.GetSystemTimeUTC(), root); if(eri.GetExceptionAddress()!=0) { sNum.Format(_T("0x%I64x"), eri.GetExceptionAddress()); AddElemToXML(_T("ExceptionAddress"), sNum, root); AddElemToXML(_T("ExceptionModule"), eri.GetExceptionModule(), root); sNum.Format(_T("0x%I64x"), eri.GetExceptionModuleBase()); AddElemToXML(_T("ExceptionModuleBase"), sNum, root); AddElemToXML(_T("ExceptionModuleVersion"), eri.GetExceptionModuleVersion(), root); } sExceptionType.Format(_T("%d"), m_CrashInfo.m_nExceptionType); AddElemToXML(_T("ExceptionType"), sExceptionType, root); if(m_CrashInfo.m_nExceptionType==CR_SEH_EXCEPTION) { CString sExceptionCode; sExceptionCode.Format(_T("%d"), m_CrashInfo.m_dwExceptionCode); AddElemToXML(_T("ExceptionCode"), sExceptionCode, root); } else if(m_CrashInfo.m_nExceptionType==CR_CPP_SIGFPE) { CString sFPESubcode; sFPESubcode.Format(_T("%d"), m_CrashInfo.m_uFPESubcode); AddElemToXML(_T("FPESubcode"), sFPESubcode, root); } else if(m_CrashInfo.m_nExceptionType==CR_CPP_INVALID_PARAMETER) { AddElemToXML(_T("InvParamExpression"), m_CrashInfo.m_sInvParamExpr, root); AddElemToXML(_T("InvParamFunction"), m_CrashInfo.m_sInvParamFunction, root); AddElemToXML(_T("InvParamFile"), m_CrashInfo.m_sInvParamFile, root); CString sInvParamLine; sInvParamLine.Format(_T("%d"), m_CrashInfo.m_uInvParamLine); AddElemToXML(_T("InvParamLine"), sInvParamLine, root); } CString sGuiResources; sGuiResources.Format(_T("%d"), eri.GetGuiResourceCount()); AddElemToXML(_T("GUIResourceCount"), sGuiResources, root); CString sProcessHandleCount; sProcessHandleCount.Format(_T("%d"), eri.GetProcessHandleCount()); AddElemToXML(_T("OpenHandleCount"), sProcessHandleCount, root); AddElemToXML(_T("MemoryUsageKbytes"), eri.GetMemUsage(), root); if(eri.GetScreenshotInfo().m_bValid) { TiXmlHandle hScreenshotInfo = new TiXmlElement("ScreenshotInfo"); root->LinkEndChild(hScreenshotInfo.ToNode()); TiXmlHandle hVirtualScreen = new TiXmlElement("VirtualScreen"); sNum.Format(_T("%d"), eri.GetScreenshotInfo().m_rcVirtualScreen.left); hVirtualScreen.ToElement()->SetAttribute("left", strconv.t2utf8(sNum)); sNum.Format(_T("%d"), eri.GetScreenshotInfo().m_rcVirtualScreen.top); hVirtualScreen.ToElement()->SetAttribute("top", strconv.t2utf8(sNum)); sNum.Format(_T("%d"), eri.GetScreenshotInfo().m_rcVirtualScreen.Width()); hVirtualScreen.ToElement()->SetAttribute("width", strconv.t2utf8(sNum)); sNum.Format(_T("%d"), eri.GetScreenshotInfo().m_rcVirtualScreen.Height()); hVirtualScreen.ToElement()->SetAttribute("height", strconv.t2utf8(sNum)); hScreenshotInfo.ToNode()->LinkEndChild(hVirtualScreen.ToNode()); TiXmlHandle hMonitors = new TiXmlElement("Monitors"); hScreenshotInfo.ToElement()->LinkEndChild(hMonitors.ToNode()); size_t i; for(i=0; i<eri.GetScreenshotInfo().m_aMonitors.size(); i++) { MonitorInfo& mi = eri.GetScreenshotInfo().m_aMonitors[i]; TiXmlHandle hMonitor = new TiXmlElement("Monitor"); sNum.Format(_T("%d"), mi.m_rcMonitor.left); hMonitor.ToElement()->SetAttribute("left", strconv.t2utf8(sNum)); sNum.Format(_T("%d"), mi.m_rcMonitor.top); hMonitor.ToElement()->SetAttribute("top", strconv.t2utf8(sNum)); sNum.Format(_T("%d"), mi.m_rcMonitor.Width()); hMonitor.ToElement()->SetAttribute("width", strconv.t2utf8(sNum)); sNum.Format(_T("%d"), mi.m_rcMonitor.Height()); hMonitor.ToElement()->SetAttribute("height", strconv.t2utf8(sNum)); hMonitor.ToElement()->SetAttribute("file", strconv.t2utf8(Utility::GetFileName(mi.m_sFileName))); hMonitors.ToElement()->LinkEndChild(hMonitor.ToNode()); } TiXmlHandle hWindows = new TiXmlElement("Windows"); hScreenshotInfo.ToElement()->LinkEndChild(hWindows.ToNode()); for(i=0; i<eri.GetScreenshotInfo().m_aWindows.size(); i++) { WindowInfo& wi = eri.GetScreenshotInfo().m_aWindows[i]; TiXmlHandle hWindow = new TiXmlElement("Window"); sNum.Format(_T("%d"), wi.m_rcWnd.left); hWindow.ToElement()->SetAttribute("left", strconv.t2utf8(sNum)); sNum.Format(_T("%d"), wi.m_rcWnd.top); hWindow.ToElement()->SetAttribute("top", strconv.t2utf8(sNum)); sNum.Format(_T("%d"), wi.m_rcWnd.Width()); hWindow.ToElement()->SetAttribute("width", strconv.t2utf8(sNum)); sNum.Format(_T("%d"), wi.m_rcWnd.Height()); hWindow.ToElement()->SetAttribute("height", strconv.t2utf8(sNum)); hWindow.ToElement()->SetAttribute("title", strconv.t2utf8(wi.m_sTitle)); hWindows.ToElement()->LinkEndChild(hWindow.ToNode()); } } TiXmlHandle hCustomProps = new TiXmlElement("CustomProps"); root->LinkEndChild(hCustomProps.ToNode()); int i; for(i=0; i<eri.GetPropCount(); i++) { CString sName; CString sVal; eri.GetPropByIndex(i, sName, sVal); TiXmlHandle hProp = new TiXmlElement("Prop"); hProp.ToElement()->SetAttribute("name", strconv.t2utf8(sName)); hProp.ToElement()->SetAttribute("value", strconv.t2utf8(sVal)); hCustomProps.ToElement()->LinkEndChild(hProp.ToNode()); } TiXmlHandle hFileItems = new TiXmlElement("FileList"); root->LinkEndChild(hFileItems.ToNode()); for(i=0; i<eri.GetFileItemCount(); i++) { ERIFileItem* rfi = eri.GetFileItemByIndex(i); TiXmlHandle hFileItem = new TiXmlElement("FileItem"); hFileItem.ToElement()->SetAttribute("name", strconv.t2utf8(rfi->m_sDestFile)); hFileItem.ToElement()->SetAttribute("description", strconv.t2utf8(rfi->m_sDesc)); if(rfi->m_bAllowDelete) hFileItem.ToElement()->SetAttribute("optional", "1"); if(!rfi->m_sErrorStatus.IsEmpty()) hFileItem.ToElement()->SetAttribute("error", strconv.t2utf8(rfi->m_sErrorStatus)); hFileItems.ToElement()->LinkEndChild(hFileItem.ToNode()); } #if _MSC_VER<1400 f = _tfopen(sFileName, _T("w")); #else _tfopen_s(&f, sFileName, _T("w")); #endif if(f==NULL) { sErrorMsg = _T("Error opening file for writing"); goto cleanup; } doc.useMicrosoftBOM = true; bool bSave = doc.SaveFile(f); if(!bSave) { sErrorMsg = doc.ErrorDesc(); goto cleanup; } fclose(f); f = NULL; bStatus = TRUE; cleanup: if(f) fclose(f); if(!bStatus) { eri.GetFileItemByName(fi.m_sDestFile)->m_sErrorStatus = sErrorMsg; } return bStatus; } // This method collects user-specified files BOOL CErrorReportSender::CollectCrashFiles() { BOOL bStatus = FALSE; CString str; CString sErrorReportDir = m_CrashInfo.GetReport(m_nCurReport)->GetErrorReportDirName(); CString sSrcFile; CString sDestFile; HANDLE hSrcFile = INVALID_HANDLE_VALUE; HANDLE hDestFile = INVALID_HANDLE_VALUE; LARGE_INTEGER lFileSize; BOOL bGetSize = FALSE; LPBYTE buffer[1024]; LARGE_INTEGER lTotalWritten; DWORD dwBytesRead=0; DWORD dwBytesWritten=0; BOOL bRead = FALSE; BOOL bWrite = FALSE; // Copy application-defined files that should be copied on crash m_Assync.SetProgress(_T("[copying_files]"), 0, false); // Walk through error report files int i; for(i=0; i<m_CrashInfo.GetReport(m_nCurReport)->GetFileItemCount(); i++) { ERIFileItem* pfi = m_CrashInfo.GetReport(m_nCurReport)->GetFileItemByIndex(i); // Check if operation was cancelled by user if(m_Assync.IsCancelled()) goto cleanup; // If we should make a copy of the file if(pfi->m_bMakeCopy) { str.Format(_T("Copying file %s."), pfi->m_sSrcFile); m_Assync.SetProgress(str, 0, false); // Open source file with read/write sharing permissions. hSrcFile = CreateFile(pfi->m_sSrcFile, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL); if(hSrcFile==INVALID_HANDLE_VALUE) { pfi->m_sErrorStatus = Utility::FormatErrorMsg(GetLastError()); str.Format(_T("Error opening file %s."), pfi->m_sSrcFile); m_Assync.SetProgress(str, 0, false); } bGetSize = GetFileSizeEx(hSrcFile, &lFileSize); if(!bGetSize) { pfi->m_sErrorStatus = Utility::FormatErrorMsg(GetLastError()); str.Format(_T("Couldn't get file size of %s"), pfi->m_sSrcFile); m_Assync.SetProgress(str, 0, false); CloseHandle(hSrcFile); hSrcFile = INVALID_HANDLE_VALUE; continue; } sDestFile = sErrorReportDir + _T("\\") + pfi->m_sDestFile; hDestFile = CreateFile(sDestFile, GENERIC_WRITE, FILE_SHARE_READ, NULL, CREATE_ALWAYS, 0, NULL); if(hDestFile==INVALID_HANDLE_VALUE) { pfi->m_sErrorStatus = Utility::FormatErrorMsg(GetLastError()); str.Format(_T("Error creating file %s."), sDestFile); m_Assync.SetProgress(str, 0, false); CloseHandle(hSrcFile); hSrcFile = INVALID_HANDLE_VALUE; continue; } lTotalWritten.QuadPart = 0; for(;;) { if(m_Assync.IsCancelled()) goto cleanup; bRead = ReadFile(hSrcFile, buffer, 1024, &dwBytesRead, NULL); if(!bRead || dwBytesRead==0) break; bWrite = WriteFile(hDestFile, buffer, dwBytesRead, &dwBytesWritten, NULL); if(!bWrite || dwBytesRead!=dwBytesWritten) break; lTotalWritten.QuadPart += dwBytesWritten; int nProgress = (int)(100.0f*lTotalWritten.QuadPart/lFileSize.QuadPart); m_Assync.SetProgress(nProgress, false); } CloseHandle(hSrcFile); hSrcFile = INVALID_HANDLE_VALUE; CloseHandle(hDestFile); hDestFile = INVALID_HANDLE_VALUE; // Use the copy for display and zipping. pfi->m_sSrcFile = sDestFile; } } // Create dump of registry keys CErrorReportInfo* eri = m_CrashInfo.GetReport(m_nCurReport); if(eri->GetRegKeyCount()!=0) { m_Assync.SetProgress(_T("Dumping registry keys..."), 0, false); } // Walk through our registry key list for(i=0; i<eri->GetRegKeyCount(); i++) { CString sKeyName; ERIRegKey rki; eri->GetRegKeyByIndex(i, sKeyName, rki); if(m_Assync.IsCancelled()) goto cleanup; CString sFilePath = eri->GetErrorReportDirName() + _T("\\") + rki.m_sDstFileName; str.Format(_T("Dumping registry key '%s' to file '%s' "), sKeyName, sFilePath); m_Assync.SetProgress(str, 0, false); // Create registry key dump CString sErrorMsg; DumpRegKey(sKeyName, sFilePath, sErrorMsg); ERIFileItem fi; fi.m_sSrcFile = sFilePath; fi.m_sDestFile = rki.m_sDstFileName; fi.m_sDesc = Utility::GetINIString(m_CrashInfo.m_sLangFileName, _T("DetailDlg"), _T("DescRegKey")); fi.m_bMakeCopy = FALSE; fi.m_bAllowDelete = rki.m_bAllowDelete; fi.m_sErrorStatus = sErrorMsg; std::vector<ERIFileItem> file_list; file_list.push_back(fi); // Add file to the list of file items m_CrashInfo.GetReport(0)->AddFileItem(&fi); } // Success bStatus = TRUE; cleanup: // Clean up if(hSrcFile!=INVALID_HANDLE_VALUE) CloseHandle(hSrcFile); if(hDestFile!=INVALID_HANDLE_VALUE) CloseHandle(hDestFile); m_Assync.SetProgress(_T("Finished copying files."), 100, false); return 0; } // This method dumps a registry key contents to an XML file int CErrorReportSender::DumpRegKey(CString sRegKey, CString sDestFile, CString& sErrorMsg) { strconv_t strconv; TiXmlDocument document; // Load document if file already exists // otherwise create new document. FILE* f = NULL; #if _MSC_VER<1400 f = _tfopen(sDestFile, _T("rb")); #else _tfopen_s(&f, sDestFile, _T("rb")); #endif if(f!=NULL) { document.LoadFile(f); fclose(f); f = NULL; } TiXmlHandle hdoc(&document); TiXmlElement* registry = document.RootElement(); if(registry==NULL) { registry = new TiXmlElement("registry"); document.LinkEndChild(registry); } TiXmlNode* declaration = hdoc.Child(0).ToNode(); if(declaration==NULL || declaration->Type()!=TiXmlNode::TINYXML_DECLARATION) { TiXmlDeclaration * decl = new TiXmlDeclaration( "1.0", "UTF-8", "" ); document.InsertBeforeChild(registry, *decl); } DumpRegKey(NULL, sRegKey, registry); #if _MSC_VER<1400 f = _tfopen(sDestFile, _T("wb")); #else _tfopen_s(&f, sDestFile, _T("wb")); #endif if(f==NULL) { sErrorMsg = _T("Error opening file for writing."); return 1; } bool bSave = document.SaveFile(f); fclose(f); if(!bSave) { sErrorMsg = _T("Error saving XML document to file: "); sErrorMsg += document.ErrorDesc(); } return (bSave==true)?0:1; } int CErrorReportSender::DumpRegKey(HKEY hParentKey, CString sSubKey, TiXmlElement* elem) { strconv_t strconv; HKEY hKey = NULL; if(hParentKey==NULL) { int nSkip = 0; if(sSubKey.Left(19).Compare(_T("HKEY_LOCAL_MACHINE\\"))==0) { hKey = HKEY_LOCAL_MACHINE; nSkip = 18; } else if(sSubKey.Left(18).Compare(_T("HKEY_CURRENT_USER\\"))==0) { hKey = HKEY_CURRENT_USER; nSkip = 17; } else { return 1; // Invalid key. } CString sKey = sSubKey.Mid(0, nSkip); LPCSTR szKey = strconv.t2utf8(sKey); sSubKey = sSubKey.Mid(nSkip+1); TiXmlHandle key_node = elem->FirstChild(szKey); if(key_node.ToElement()==NULL) { key_node = new TiXmlElement("k"); elem->LinkEndChild(key_node.ToNode()); key_node.ToElement()->SetAttribute("name", szKey); } DumpRegKey(hKey, sSubKey, key_node.ToElement()); } else { int pos = sSubKey.Find('\\'); CString sKey = sSubKey; if(pos>0) sKey = sSubKey.Mid(0, pos); LPCSTR szKey = strconv.t2utf8(sKey); TiXmlHandle key_node = elem->FirstChild(szKey); if(key_node.ToElement()==NULL) { key_node = new TiXmlElement("k"); elem->LinkEndChild(key_node.ToNode()); key_node.ToElement()->SetAttribute("name", szKey); } if(ERROR_SUCCESS==RegOpenKeyEx(hParentKey, sKey, 0, GENERIC_READ, &hKey)) { if(pos>0) { sSubKey = sSubKey.Mid(pos+1); DumpRegKey(hKey, sSubKey, key_node.ToElement()); } else { DWORD dwSubKeys = 0; DWORD dwMaxSubKey = 0; DWORD dwValues = 0; DWORD dwMaxValueNameLen = 0; DWORD dwMaxValueLen = 0; LONG lResult = RegQueryInfoKey(hKey, NULL, 0, 0, &dwSubKeys, &dwMaxSubKey, 0, &dwValues, &dwMaxValueNameLen, &dwMaxValueLen, NULL, NULL); if(lResult==ERROR_SUCCESS) { // Enumerate and dump subkeys int i; for(i=0; i<(int)dwSubKeys; i++) { LPWSTR szName = new WCHAR[dwMaxSubKey + 1]; DWORD dwLen = dwMaxSubKey + 1; lResult = RegEnumKeyEx(hKey, i, szName, &dwLen, 0, NULL, 0, NULL); if(lResult==ERROR_SUCCESS) { DumpRegKey(hKey, CString(szName), key_node.ToElement()); } delete [] szName; } // Dump key values for(i=0; i<(int)dwValues; i++) { LPWSTR szName = new WCHAR[dwMaxValueNameLen + 1]; LPBYTE pData = new BYTE[dwMaxValueLen]; DWORD dwNameLen = dwMaxValueNameLen + 1; DWORD dwValueLen = dwMaxValueLen; DWORD dwType = 0; lResult = RegEnumValue(hKey, i, szName, &dwNameLen, 0, &dwType, pData, &dwValueLen); if(lResult==ERROR_SUCCESS) { TiXmlHandle val_node = key_node.ToElement()->FirstChild(strconv.w2utf8(szName)); if(val_node.ToElement()==NULL) { val_node = new TiXmlElement("v"); key_node.ToElement()->LinkEndChild(val_node.ToNode()); } val_node.ToElement()->SetAttribute("name", strconv.w2utf8(szName)); char str[128] = ""; LPSTR szType = NULL; if(dwType==REG_BINARY) szType = "REG_BINARY"; else if(dwType==REG_DWORD) szType = "REG_DWORD"; else if(dwType==REG_EXPAND_SZ) szType = "REG_EXPAND_SZ"; else if(dwType==REG_MULTI_SZ) szType = "REG_MULTI_SZ"; else if(dwType==REG_QWORD) szType = "REG_QWORD"; else if(dwType==REG_SZ) szType = "REG_SZ"; else { #if _MSC_VER<1400 sprintf(str, "Unknown type (0x%08x)", dwType); #else sprintf_s(str, 128, "Unknown type (0x%08x)", dwType); #endif szType = str; } val_node.ToElement()->SetAttribute("type", szType); if(dwType==REG_BINARY) { std::string str2; int j; for(j=0; j<(int)dwValueLen; j++) { char num[10]; #if _MSC_VER<1400 sprintf(num, "%02X", pData[j]); #else sprintf_s(num, 10, "%02X", pData[j]); #endif str2 += num; if(j<(int)dwValueLen) str2 += " "; } val_node.ToElement()->SetAttribute("value", str2.c_str()); } else if(dwType==REG_DWORD) { LPDWORD pdwValue = (LPDWORD)pData; char str3[64]=""; #if _MSC_VER<1400 sprintf(str3, "0x%08x (%lu)", *pdwValue, *pdwValue); #else sprintf_s(str3, 64, "0x%08x (%lu)", *pdwValue, *pdwValue); #endif val_node.ToElement()->SetAttribute("value", str3); } else if(dwType==REG_SZ || dwType==REG_EXPAND_SZ) { LPCSTR szValue = strconv.t2utf8((LPCTSTR)pData); val_node.ToElement()->SetAttribute("value", szValue); } else if(dwType==REG_MULTI_SZ) { LPCTSTR szValues = (LPCTSTR)pData; int prev = 0; int pos2 = 0; for(;;) { if(szValues[pos2]==0) { CString sValue = CString(szValues+prev, pos2-prev); LPCSTR szValue = strconv.t2utf8(sValue); TiXmlHandle str_node = new TiXmlElement("str"); val_node.ToElement()->LinkEndChild(str_node.ToNode()); str_node.ToElement()->SetAttribute("value", szValue); prev = pos2+1; } if(szValues[pos2]==0 && szValues[pos2+1]==0) break; // Double-null pos2++; } } } delete [] szName; delete [] pData; } } } RegCloseKey(hKey); } else { CString sErrMsg = Utility::FormatErrorMsg(GetLastError()); LPCSTR szErrMsg = strconv.t2utf8(sErrMsg); key_node.ToElement()->SetAttribute("error", szErrMsg); } } return 0; } // This method calculates an MD5 hash for the file int CErrorReportSender::CalcFileMD5Hash(CString sFileName, CString& sMD5Hash) { FILE* f = NULL; // Handle to file BYTE buff[512]; // Read buffer MD5 md5; // MD5 hash MD5_CTX md5_ctx; // MD5 context unsigned char md5_hash[16]; // MD5 hash as sequence of bytes int i; // Clear output sMD5Hash.Empty(); // Open file #if _MSC_VER<1400 f = _tfopen(sFileName.GetBuffer(0), _T("rb")); #else _tfopen_s(&f, sFileName.GetBuffer(0), _T("rb")); #endif // Check if file has been opened if(f==NULL) return -1; // Init MD5 context md5.MD5Init(&md5_ctx); // Read file contents and update MD5 hash as each portion is being read while(!feof(f)) { size_t count = fread(buff, 1, 512, f); if(count>0) { md5.MD5Update(&md5_ctx, buff, (unsigned int)count); } } // Close file fclose(f); // Finalize MD5 hash calculation md5.MD5Final(md5_hash, &md5_ctx); // Format hash as a string for(i=0; i<16; i++) { CString number; number.Format(_T("%02x"), md5_hash[i]); sMD5Hash += number; } // Done return 0; } // This method restarts the client application BOOL CErrorReportSender::RestartApp() { // Check our config - if we should restart the client app or not? if(m_CrashInfo.m_bAppRestart==FALSE) return FALSE; // No need to restart // Reset restart flag to avoid restarting the app twice // (if app has been restarted already). m_CrashInfo.m_bAppRestart = FALSE; // Add a message to log and reset progress m_Assync.SetProgress(_T("Restarting the application..."), 0, false); // Set up process start up info STARTUPINFO si; memset(&si, 0, sizeof(STARTUPINFO)); si.cb = sizeof(STARTUPINFO); // Set up process information PROCESS_INFORMATION pi; memset(&pi, 0, sizeof(PROCESS_INFORMATION)); // Format command line CString sCmdLine; if(m_CrashInfo.m_sRestartCmdLine.IsEmpty()) { // Format with double quotes to avoid first empty parameter sCmdLine.Format(_T("\"%s\""), m_CrashInfo.GetReport(m_nCurReport)->GetImageName()); } else { // Format with double quotes to avoid first empty parameters sCmdLine.Format(_T("\"%s\" %s"), m_CrashInfo.GetReport(m_nCurReport)->GetImageName(), m_CrashInfo.m_sRestartCmdLine.GetBuffer(0)); } // Create process using the command line prepared earlier BOOL bCreateProcess = CreateProcess( m_CrashInfo.GetReport(m_nCurReport)->GetImageName(), sCmdLine.GetBuffer(0), NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi); // The following is to avoid a handle leak if(pi.hProcess) { CloseHandle(pi.hProcess); pi.hProcess = NULL; } // The following is to avoid a handle leak if(pi.hThread) { CloseHandle(pi.hThread); pi.hThread = NULL; } // Check if process was created if(!bCreateProcess) { // Add error message m_Assync.SetProgress(_T("Error restarting the application!"), 0, false); return FALSE; } // Success m_Assync.SetProgress(_T("Application restarted OK."), 0, false); return TRUE; } // This method compresses the files contained in the report and produces a ZIP archive. BOOL CErrorReportSender::CompressReportFiles(CErrorReportInfo* eri) { BOOL bStatus = FALSE; strconv_t strconv; zipFile hZip = NULL; CString sMsg; LONG64 lTotalSize = 0; LONG64 lTotalCompressed = 0; BYTE buff[1024]; DWORD dwBytesRead=0; HANDLE hFile = INVALID_HANDLE_VALUE; std::map<CString, ERIFileItem>::iterator it; FILE* f = NULL; CString sMD5Hash; // Add a different log message depending on the current mode. if(m_bExport) m_Assync.SetProgress(_T("[exporting_report]"), 0, false); else m_Assync.SetProgress(_T("[compressing_files]"), 0, false); // Calculate the total size of error report files lTotalSize = eri->GetTotalSize(); // Add a message to log sMsg.Format(_T("Total file size for compression is %I64d bytes"), lTotalSize); m_Assync.SetProgress(sMsg, 0, false); // Determine what name to use for the output ZIP archive file. if(m_bExport) m_sZipName = m_sExportFileName; else m_sZipName = eri->GetErrorReportDirName() + _T(".zip"); // Update progress sMsg.Format(_T("Creating ZIP archive file %s"), m_sZipName); m_Assync.SetProgress(sMsg, 1, false); // Create ZIP archive hZip = zipOpen((const char*)m_sZipName.GetBuffer(0), APPEND_STATUS_CREATE); if(hZip==NULL) { m_Assync.SetProgress(_T("Failed to create ZIP file."), 100, true); goto cleanup; } // Enumerate files contained in the report int i; for(i=0; i<eri->GetFileItemCount(); i++) { ERIFileItem* pfi = eri->GetFileItemByIndex(i); // Check if the operation was cancelled by user if(m_Assync.IsCancelled()) goto cleanup; // Define destination file name in ZIP archive CString sDstFileName = pfi->m_sDestFile.GetBuffer(0); // Define source file name CString sFileName = pfi->m_sSrcFile.GetBuffer(0); // Define file description CString sDesc = pfi->m_sDesc; // Update progress sMsg.Format(_T("Compressing file %s"), sDstFileName); m_Assync.SetProgress(sMsg, 0, false); // Open file for reading hFile = CreateFile(sFileName, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, NULL, NULL); if(hFile==INVALID_HANDLE_VALUE) { sMsg.Format(_T("Couldn't open file %s"), sFileName); m_Assync.SetProgress(sMsg, 0, false); continue; } // Get file information. BY_HANDLE_FILE_INFORMATION fi; GetFileInformationByHandle(hFile, &fi); // Convert file creation time to system file time. SYSTEMTIME st; FileTimeToSystemTime(&fi.ftLastWriteTime, &st); // Fill in the ZIP file info zip_fileinfo info; info.dosDate = 0; info.tmz_date.tm_year = st.wYear; info.tmz_date.tm_mon = st.wMonth-1; info.tmz_date.tm_mday = st.wDay; info.tmz_date.tm_hour = st.wHour; info.tmz_date.tm_min = st.wMinute; info.tmz_date.tm_sec = st.wSecond; info.external_fa = FILE_ATTRIBUTE_NORMAL; info.internal_fa = FILE_ATTRIBUTE_NORMAL; // Create new file inside of our ZIP archive int n = zipOpenNewFileInZip( hZip, (const char*)strconv.t2a(sDstFileName.GetBuffer(0)), &info, NULL, 0, NULL, 0, strconv.t2a(sDesc), Z_DEFLATED, Z_DEFAULT_COMPRESSION); if(n!=0) { sMsg.Format(_T("Couldn't compress file %s"), sDstFileName); m_Assync.SetProgress(sMsg, 0, false); continue; } // Read source file contents and write it to ZIP archive for(;;) { // Check if operation was cancelled by user if(m_Assync.IsCancelled()) goto cleanup; // Read a portion of source file BOOL bRead = ReadFile(hFile, buff, 1024, &dwBytesRead, NULL); if(!bRead || dwBytesRead==0) break; // Write a portion into destination file int res = zipWriteInFileInZip(hZip, buff, dwBytesRead); if(res!=0) { zipCloseFileInZip(hZip); sMsg.Format(_T("Couldn't write to compressed file %s"), sDstFileName); m_Assync.SetProgress(sMsg, 0, false); break; } // Update totals lTotalCompressed += dwBytesRead; // Update progress float fProgress = 100.0f*lTotalCompressed/lTotalSize; m_Assync.SetProgress((int)fProgress, false); } // Close file zipCloseFileInZip(hZip); CloseHandle(hFile); hFile = INVALID_HANDLE_VALUE; } // Close ZIP archive if(hZip!=NULL) { zipClose(hZip, NULL); hZip = NULL; } // Save MD5 hash file if(!m_bExport) { sMsg.Format(_T("Calculating MD5 hash for file %s"), m_sZipName); m_Assync.SetProgress(sMsg, 0, false); int nCalcMD5 = CalcFileMD5Hash(m_sZipName, sMD5Hash); if(nCalcMD5!=0) { sMsg.Format(_T("Couldn't calculate MD5 hash for file %s"), m_sZipName); m_Assync.SetProgress(sMsg, 0, false); goto cleanup; } #if _MSC_VER <1400 f = _tfopen(m_sZipName + _T(".md5"), _T("wt")); #else _tfopen_s(&f, m_sZipName + _T(".md5"), _T("wt")); #endif if(f==NULL) { sMsg.Format(_T("Couldn't save MD5 hash for file %s"), m_sZipName); m_Assync.SetProgress(sMsg, 0, false); goto cleanup; } _ftprintf(f, sMD5Hash); fclose(f); f = NULL; } // Check if totals match if(lTotalSize==lTotalCompressed) bStatus = TRUE; cleanup: // Clean up if(hZip!=NULL) zipClose(hZip, NULL); if(hFile!=INVALID_HANDLE_VALUE) CloseHandle(hFile); if(f!=NULL) fclose(f); if(bStatus) m_Assync.SetProgress(_T("Finished compressing files...OK"), 100, true); else m_Assync.SetProgress(_T("File compression failed."), 100, true); if(m_bExport) { if(bStatus) m_Assync.SetProgress(_T("[end_exporting_report_ok]"), 100, false); else m_Assync.SetProgress(_T("[end_exporting_report_failed]"), 100, false); } else { m_Assync.SetProgress(_T("[end_compressing_files]"), 100, false); } return bStatus; } // This method sends the error report over the Internet BOOL CErrorReportSender::SendReport() { int status = 1; m_Assync.SetProgress(_T("[sending_report]"), 0); // Arrange priorities in reverse order std::multimap<int, int> order; std::pair<int, int> pair3(m_CrashInfo.m_uPriorities[CR_SMAPI], CR_SMAPI); order.insert(pair3); std::pair<int, int> pair2(m_CrashInfo.m_uPriorities[CR_SMTP], CR_SMTP); order.insert(pair2); std::pair<int, int> pair1(m_CrashInfo.m_uPriorities[CR_HTTP], CR_HTTP); order.insert(pair1); std::multimap<int, int>::reverse_iterator rit; // Walk through priorities for(rit=order.rbegin(); rit!=order.rend(); rit++) { m_Assync.SetProgress(_T("[sending_attempt]"), 0); m_SendAttempt++; // Check if operation was cancelled. if(m_Assync.IsCancelled()){ break; } int id = rit->second; BOOL bResult = FALSE; // Send the report if(id==CR_HTTP) bResult = SendOverHTTP(); else if(id==CR_SMTP) bResult = SendOverSMTP(); else if(id==CR_SMAPI) bResult = SendOverSMAPI(); // Check if this attempt has failed if(bResult==FALSE) continue; // If currently sending through Simple MAPI, do not wait for completion if(id==CR_SMAPI && bResult==TRUE) { status = 0; break; } // else wait for completion if(0==m_Assync.WaitForCompletion()) { status = 0; break; } } // Remove compressed ZIP file and MD5 file Utility::RecycleFile(m_sZipName, true); Utility::RecycleFile(m_sZipName+_T(".md5"), true); // Check status if(status==0) { // Success m_Assync.SetProgress(_T("[status_success]"), 0); m_CrashInfo.GetReport(m_nCurReport)->SetDeliveryStatus(DELIVERED); // Delete report files Utility::RecycleFile(m_CrashInfo.GetReport(m_nCurReport)->GetErrorReportDirName(), true); } else { // Some error occurred m_CrashInfo.GetReport(m_nCurReport)->SetDeliveryStatus(FAILED); m_Assync.SetProgress(_T("[status_failed]"), 0); // Check if we should store files for later delivery or we should remove them if(!m_CrashInfo.m_bQueueEnabled) { // Delete report files Utility::RecycleFile(m_CrashInfo.GetReport(m_nCurReport)->GetErrorReportDirName(), true); } } // Done m_nStatus = status; m_Assync.SetCompleted(status); return status==0?TRUE:FALSE; } // This method sends the report over HTTP request BOOL CErrorReportSender::SendOverHTTP() { strconv_t strconv; // Check our config - should we send the report over HTTP or not? if(m_CrashInfo.m_uPriorities[CR_HTTP]==CR_NEGATIVE_PRIORITY) { m_Assync.SetProgress(_T("Sending error report over HTTP is disabled (negative priority); skipping."), 0); return FALSE; } // Check URL if(m_CrashInfo.m_sUrl.IsEmpty()) { m_Assync.SetProgress(_T("No URL specified for sending error report over HTTP; skipping."), 0); return FALSE; } // Update progress m_Assync.SetProgress(_T("Sending error report over HTTP..."), 0); m_Assync.SetProgress(_T("Preparing HTTP request data..."), 0); // Create HTTP request CHttpRequest request; request.m_sUrl = m_CrashInfo.m_sUrl; CErrorReportInfo* eri = m_CrashInfo.GetReport(m_nCurReport); // Fill in the request fields CString sNum; sNum.Format(_T("%d"), CRASHRPT_VER); request.m_aTextFields[_T("crashrptver")] = strconv.t2utf8(sNum); request.m_aTextFields[_T("appname")] = strconv.t2utf8(eri->GetAppName()); request.m_aTextFields[_T("appversion")] = strconv.t2utf8(eri->GetAppVersion()); request.m_aTextFields[_T("crashguid")] = strconv.t2utf8(eri->GetCrashGUID()); request.m_aTextFields[_T("emailfrom")] = strconv.t2utf8(eri->GetEmailFrom()); request.m_aTextFields[_T("emailsubject")] = strconv.t2utf8(m_CrashInfo.m_sEmailSubject); request.m_aTextFields[_T("description")] = strconv.t2utf8(eri->GetProblemDescription()); request.m_aTextFields[_T("exceptionmodule")] = strconv.t2utf8(eri->GetExceptionModule()); request.m_aTextFields[_T("exceptionmoduleversion")] = strconv.t2utf8(eri->GetExceptionModuleVersion()); sNum.Format(_T("%I64u"), eri->GetExceptionModuleBase()); request.m_aTextFields[_T("exceptionmodulebase")] = strconv.t2utf8(sNum); sNum.Format(_T("%I64u"), eri->GetExceptionAddress()); request.m_aTextFields[_T("exceptionaddress")] = strconv.t2utf8(sNum); // Add an MD5 hash of file attachment CString sMD5Hash; CalcFileMD5Hash(m_sZipName, sMD5Hash); request.m_aTextFields[_T("md5")] = strconv.t2utf8(sMD5Hash); // Set content type CHttpRequestFile f; f.m_sSrcFileName = m_sZipName; f.m_sContentType = _T("application/zip"); request.m_aIncludedFiles[_T("crashrpt")] = f; // Send HTTP request assynchronously BOOL bSend = m_HttpSender.SendAssync(request, &m_Assync); return bSend; } int CErrorReportSender::Base64EncodeAttachment(CString sFileName, std::string& sEncodedFileData) { strconv_t strconv; int uFileSize = 0; BYTE* uchFileData = NULL; struct _stat st; // Get file information int nResult = _tstat(sFileName, &st); if(nResult != 0) return 1; // File not found. // Allocate buffer of file size uFileSize = (int)st.st_size; uchFileData = new BYTE[uFileSize]; // Read file data to buffer. FILE* f = NULL; #if _MSC_VER<1400 f = _tfopen(sFileName, _T("rb")); #else /*errno_t err = */_tfopen_s(&f, sFileName, _T("rb")); #endif if(!f || fread(uchFileData, uFileSize, 1, f)!=1) { delete [] uchFileData; uchFileData = NULL; return 2; // Coudln't read file data. } // Close file fclose(f); // BASE-64 ecode data sEncodedFileData = base64_encode(uchFileData, uFileSize); // Clean up delete [] uchFileData; // OK. return 0; } // This method formats the E-mail message text CString CErrorReportSender::FormatEmailText() { CString sFileTitle = m_sZipName; sFileTitle.Replace('/', '\\'); int pos = sFileTitle.ReverseFind('\\'); if(pos>=0) sFileTitle = sFileTitle.Mid(pos+1); CString sText; sText += _T("This is the error report from ") + m_CrashInfo.m_sAppName + _T(" ") + m_CrashInfo.GetReport(m_nCurReport)->GetAppVersion()+_T(".\n\n"); if(!m_CrashInfo.GetReport(m_nCurReport)->GetEmailFrom().IsEmpty()) { sText += _T("This error report was sent by ") + m_CrashInfo.GetReport(m_nCurReport)->GetEmailFrom() + _T(".\n"); sText += _T("If you need additional info about the problem, you may want to contact this user again.\n\n"); } if(!m_CrashInfo.GetReport(m_nCurReport)->GetProblemDescription().IsEmpty()) { sText += _T("The user has provided the following problem description:\n<<< ") + m_CrashInfo.GetReport(m_nCurReport)->GetProblemDescription() + _T(" >>>\n\n"); } sText += _T("You may find detailed information about the error in files attached to this message:\n\n"); sText += sFileTitle + _T(" is a ZIP archive which contains crash description XML (crashrpt.xml), crash minidump (crashdump.dmp) "); sText += _T("and possibly other files that your application added to the crash report.\n\n"); sText += sFileTitle + _T(".md5 file contains MD5 hash for the ZIP archive. You might want to use this file to check integrity of the error report.\n\n"); sText += _T("For additional information, see FAQ http://code.google.com/p/crashrpt/wiki/FAQ\n"); return sText; } // This method sends the report over SMTP BOOL CErrorReportSender::SendOverSMTP() { strconv_t strconv; // Check our config - should we send the report over SMTP or not? if(m_CrashInfo.m_uPriorities[CR_SMTP]==CR_NEGATIVE_PRIORITY) { m_Assync.SetProgress(_T("Sending error report over SMTP is disabled (negative priority); skipping."), 0); return FALSE; } // Check recipient's email if(m_CrashInfo.m_sEmailTo.IsEmpty()) { m_Assync.SetProgress(_T("No E-mail address is specified for sending error report over SMTP; skipping."), 0); return FALSE; } // Fill in email fields // If the sender is not defined, use the first e-mail address from the recipient list. if (m_CrashInfo.GetReport(m_nCurReport)->GetEmailFrom().IsEmpty()) { // Force a copy of the string. Simple assignment just references the data of g_CrashInfo.m_sEmailTo. // The copy string will be modified by strtok. CString copy((LPCTSTR)m_CrashInfo.m_sEmailTo, m_CrashInfo.m_sEmailTo.GetLength()); TCHAR separators[] = _T(";, "); TCHAR *context = 0; TCHAR *to = _tcstok_s(const_cast<LPTSTR>((LPCTSTR)copy), separators, &context); m_EmailMsg.SetSenderAddress((to == 0 || *to == 0) ? m_CrashInfo.m_sEmailTo : to); } else m_EmailMsg.SetSenderAddress(m_CrashInfo.GetReport(m_nCurReport)->GetEmailFrom()); m_EmailMsg.AddRecipients(m_CrashInfo.m_sEmailTo); m_EmailMsg.SetSubject(m_CrashInfo.m_sEmailSubject); if(m_CrashInfo.m_sEmailText.IsEmpty()) m_EmailMsg.SetText(FormatEmailText()); else m_EmailMsg.SetText(m_CrashInfo.m_sEmailText); m_EmailMsg.AddAttachment(m_sZipName); // Create and attach MD5 hash file CString sErrorRptHash; CalcFileMD5Hash(m_sZipName, sErrorRptHash); CString sFileTitle = m_sZipName; sFileTitle.Replace('/', '\\'); int pos = sFileTitle.ReverseFind('\\'); if(pos>=0) sFileTitle = sFileTitle.Mid(pos+1); sFileTitle += _T(".md5"); CString sTempDir; Utility::getTempDirectory(sTempDir); CString sTmpFileName = sTempDir +_T("\\")+ sFileTitle; FILE* f = NULL; _TFOPEN_S(f, sTmpFileName, _T("wt")); if(f!=NULL) { LPCSTR szErrorRptHash = strconv.t2a(sErrorRptHash.GetBuffer(0)); fwrite(szErrorRptHash, strlen(szErrorRptHash), 1, f); fclose(f); m_EmailMsg.AddAttachment(sTmpFileName); } // Set SMTP proxy server (if specified) if ( !m_CrashInfo.m_sSmtpProxyServer.IsEmpty()) m_SmtpClient.SetSmtpServer( m_CrashInfo.m_sSmtpProxyServer, m_CrashInfo.m_nSmtpProxyPort); // Set SMTP login and password m_SmtpClient.SetAuthParams(m_CrashInfo.m_sSmtpLogin, m_CrashInfo.m_sSmtpPassword); // Send mail assynchronously int res = m_SmtpClient.SendEmailAssync(&m_EmailMsg, &m_Assync); return (res==0); } // This method sends the report over Simple MAPI BOOL CErrorReportSender::SendOverSMAPI() { strconv_t strconv; // Check our config - should we send the report over Simple MAPI or not? if(m_CrashInfo.m_uPriorities[CR_SMAPI]==CR_NEGATIVE_PRIORITY) { m_Assync.SetProgress(_T("Sending error report over SMAPI is disabled (negative priority); skipping."), 0); return FALSE; } // Check recipient's email address if(m_CrashInfo.m_sEmailTo.IsEmpty()) { m_Assync.SetProgress(_T("No E-mail address is specified for sending error report over Simple MAPI; skipping."), 0); return FALSE; } // Do not send if we are in silent mode if(m_CrashInfo.m_bSilentMode) { m_Assync.SetProgress(_T("Simple MAPI may require user interaction (not acceptable for non-GUI mode); skipping."), 0); return FALSE; } // Update progress m_Assync.SetProgress(_T("Sending error report using Simple MAPI"), 0, false); m_Assync.SetProgress(_T("Initializing MAPI"), 1); // Initialize MAPI BOOL bMAPIInit = m_MapiSender.MAPIInitialize(); if(!bMAPIInit) { m_Assync.SetProgress(m_MapiSender.GetLastErrorMsg(), 100, false); return FALSE; } // Request user confirmation if(m_SendAttempt!=0 && m_MailClientConfirm==NOT_CONFIRMED_YET) { m_Assync.SetProgress(_T("[confirm_launch_email_client]"), 0); int confirm = 1; m_Assync.WaitForFeedback(confirm); if(confirm!=0) { m_MailClientConfirm = NOT_ALLOWED; m_Assync.SetProgress(_T("Cancelled by user"), 100, false); return FALSE; } else { m_MailClientConfirm = ALLOWED; } } if(m_MailClientConfirm != ALLOWED) { m_Assync.SetProgress(_T("Not allowed to launch E-mail client."), 100, false); return FALSE; } // Detect mail client (Microsoft Outlook, Mozilla Thunderbird and so on) CString msg; CString sMailClientName; m_MapiSender.DetectMailClient(sMailClientName); msg.Format(_T("Launching the default email client (%s)"), sMailClientName); m_Assync.SetProgress(msg, 10); // Fill in email fields m_MapiSender.SetFrom(m_CrashInfo.GetReport(m_nCurReport)->GetEmailFrom()); // The copy string will be modified by strtok. CString copy = m_CrashInfo.m_sEmailTo; TCHAR separators[] = _T(";, "); TCHAR *context = 0; TCHAR *to = _tcstok_s(const_cast<LPTSTR>((LPCTSTR)copy), separators, &context); while (to != 0) { m_MapiSender.AddRecipient(_T("SMTP:")+CString(to)); to=_tcstok_s(NULL, separators, &context); }; m_MapiSender.SetSubject(m_CrashInfo.m_sEmailSubject); CString sFileTitle = m_sZipName; sFileTitle.Replace('/', '\\'); int pos = sFileTitle.ReverseFind('\\'); if(pos>=0) sFileTitle = sFileTitle.Mid(pos+1); if(m_CrashInfo.m_sEmailText.IsEmpty()) m_MapiSender.SetMessage(FormatEmailText()); else m_MapiSender.SetMessage(m_CrashInfo.m_sEmailText); m_MapiSender.AddAttachment(m_sZipName, sFileTitle); // Create and attach MD5 hash file CString sErrorRptHash; CalcFileMD5Hash(m_sZipName, sErrorRptHash); sFileTitle += _T(".md5"); CString sTempDir; Utility::getTempDirectory(sTempDir); CString sTmpFileName = sTempDir +_T("\\")+ sFileTitle; FILE* f = NULL; _TFOPEN_S(f, sTmpFileName, _T("wt")); if(f!=NULL) { LPCSTR szErrorRptHash = strconv.t2a(sErrorRptHash.GetBuffer(0)); fwrite(szErrorRptHash, strlen(szErrorRptHash), 1, f); fclose(f); m_MapiSender.AddAttachment(sTmpFileName, sFileTitle); } // Send email BOOL bSend = m_MapiSender.Send(); if(!bSend) m_Assync.SetProgress(m_MapiSender.GetLastErrorMsg(), 100, false); else m_Assync.SetProgress(_T("Sent OK"), 100, false); return bSend; } CString CErrorReportSender::GetLangStr(LPCTSTR szSection, LPCTSTR szName) { return Utility::GetINIString(m_CrashInfo.m_sLangFileName, szSection, szName); } void CErrorReportSender::ExportReport(LPCTSTR szOutFileName) { SetExportFlag(TRUE, szOutFileName); DoWork(COMPRESS_REPORT); } BOOL CErrorReportSender::SendRecentReports() { // This method sends all queued error reports in turn. m_bSendingNow = TRUE; m_bErrors = FALSE; // Init log file Utility::RecycleFile(GetLogFilePath(), TRUE); CString sCurTime; Utility::GetSystemTimeUTC(sCurTime); sCurTime.Replace(':', '-'); CString sLogFile; sLogFile.Format(_T("%s\\CrashRpt-Log-%s.txt"), m_CrashInfo.m_sUnsentCrashReportsFolder, sCurTime); m_Assync.InitLogFile(sLogFile); // Send error reports in turn BOOL bSend = TRUE; int nReport = -1; while(bSend) { // Ask GUI for hint what report to send next. // This is needed to send error report in the same order they appear in the list // (list may be sorted in different order). if(IsWindow(m_hWndNotify)) nReport = (int)::SendMessage(m_hWndNotify, WM_NEXT_ITEM_HINT, 0, 0); bSend = SendNextReport(nReport); } // Close log m_Assync.CloseLogFile(); // Notify GUI about completion if(IsWindow(m_hWndNotify)) ::PostMessage(m_hWndNotify, WM_DELIVERY_COMPLETE, 0, 0); // Done m_bSendingNow = FALSE; return TRUE; } BOOL CErrorReportSender::SendNextReport(int nReport) { if(m_Assync.IsCancelled()) return FALSE; // Return FALSE to prevent sending next report CErrorReportInfo* eri = NULL; if(nReport != -1) { eri = m_CrashInfo.GetReport(nReport); if(!eri->IsSelected() || eri->GetDeliveryStatus()!=PENDING) eri = NULL; } if(eri==NULL) { // Walk through error reports int i; for(i=0; i<m_CrashInfo.GetReportCount(); i++) { if(!m_CrashInfo.GetReport(i)->IsSelected()) continue; // Skip this (not selected item) if(m_CrashInfo.GetReport(i)->GetDeliveryStatus()==PENDING) { nReport = i; eri = m_CrashInfo.GetReport(i); break; } } } if(eri==NULL) { // Return FALSE to prevent sending next report return FALSE; } // Save current report index m_nCurReport = nReport; eri->SetDeliveryStatus(INPROGRESS); // Notify GUI about current item change if(IsWindow(m_hWndNotify)) ::PostMessage(m_hWndNotify, WM_ITEM_STATUS_CHANGED, (WPARAM)m_nCurReport, (LPARAM)eri->GetDeliveryStatus()); // Add a message to log CString sMsg; sMsg.Format(_T(">>> Performing actions with error report: '%s'"), m_CrashInfo.GetReport(m_nCurReport)->GetErrorReportDirName()); m_Assync.SetProgress(sMsg, 0, false); // Send report if(!DoWork(COMPRESS_REPORT|SEND_REPORT)) { m_bErrors = TRUE; eri->SetDeliveryStatus(FAILED); } else { eri->SetDeliveryStatus(DELIVERED); } // Notify GUI about current item change if(IsWindow(m_hWndNotify)) ::PostMessage(m_hWndNotify, WM_ITEM_STATUS_CHANGED, (WPARAM)m_nCurReport, (LPARAM)eri->GetDeliveryStatus()); // Return TRUE to indicate next report can be sent return TRUE; } BOOL CErrorReportSender::IsSendingNow() { // Return TRUE if currently sending error report(s) return m_bSendingNow; } BOOL CErrorReportSender::HasErrors() { return m_bErrors; } CString CErrorReportSender::GetLogFilePath() { // Return path to log file return m_Assync.GetLogFilePath(); } int CErrorReportSender::TerminateAllCrashSenderProcesses() { // This method looks for all runing CrashSender.exe processes // and terminates each one. This may be needed when an application's installer // wants to shutdown all crash sender processes running in background // to replace the locked files. // Format process name. CString sProcessName; #ifdef _DEBUG sProcessName.Format(_T("CrashSender%dd.exe"), CRASHRPT_VER); #else sProcessName.Format(_T("CrashSender%d.exe"), CRASHRPT_VER); #endif PROCESSENTRY32 entry; entry.dwSize = sizeof(PROCESSENTRY32); // Create the list of all processes in the system HANDLE snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, NULL); if (Process32First(snapshot, &entry) == TRUE) { // Walk through processes while (Process32Next(snapshot, &entry) == TRUE) { // Compare process name if (_tcsicmp(entry.szExeFile, sProcessName) == 0 && entry.th32ProcessID != GetCurrentProcessId()) { // Open process handle HANDLE hProcess = OpenProcess(PROCESS_TERMINATE, FALSE, entry.th32ProcessID); // Terminate process. TerminateProcess(hProcess, 1); CloseHandle(hProcess); } } } // Clean up CloseHandle(snapshot); return 0; } BOOL CErrorReportSender::RecordVideo() { // The following method enters the video recording loop // and returns when the parent process signals the event. DWORD dwFlags = m_CrashInfo.m_dwVideoFlags; // Show notification dialog if((dwFlags & CR_AV_NO_GUI) == 0) { CVideoRecDlg dlg; INT_PTR res = dlg.DoModal( IsWindow(m_CrashInfo.m_hWndVideoParent)?m_CrashInfo.m_hWndVideoParent:NULL); if(res!=IDOK) return FALSE; } // Determine screenshot type. SCREENSHOT_TYPE type = SCREENSHOT_TYPE_VIRTUAL_SCREEN; if((dwFlags&CR_AV_MAIN_WINDOW)!=0) // We need to capture the main window type = SCREENSHOT_TYPE_MAIN_WINDOW; else if((dwFlags&CR_AV_PROCESS_WINDOWS)!=0) // Capture all process windows type = SCREENSHOT_TYPE_ALL_PROCESS_WINDOWS; else // (dwFlags&CR_AV_VIRTUAL_SCREEN)!=0 // Capture the virtual screen type = SCREENSHOT_TYPE_VIRTUAL_SCREEN; // Determine what encoding quality to use int quality = 10; if((dwFlags&CR_AV_QUALITY_GOOD)!=0) quality = 40; else if((dwFlags&CR_AV_QUALITY_BEST)!=0) quality = 63; // Add a message to log CString sMsg; sMsg.Format(_T("Start video recording.")); m_Assync.SetProgress(sMsg, 0, false); // Open the event we will use for synchronization with the parent process CString sEventName; sEventName.Format(_T("Local\\CrashRptEvent_%s_2"), GetCrashInfo()->GetReport(0)->GetCrashGUID()); HANDLE hEvent = CreateEvent(NULL, FALSE, FALSE, sEventName); if(hEvent==NULL) { // Add a message to log sMsg.Format(_T("Error opening event.")); m_Assync.SetProgress(sMsg, 0, false); return FALSE; } // Init video recorder object if(!m_VideoRec.Init(m_CrashInfo.GetReport(0)->GetErrorReportDirName(), type, m_CrashInfo.m_dwProcessId, m_CrashInfo.m_nVideoDuration, m_CrashInfo.m_nVideoFrameInterval, quality, &m_CrashInfo.m_DesiredFrameSize)) { // Add a message to log sMsg.Format(_T("Error initializing video recorder.")); m_Assync.SetProgress(sMsg, 0, false); return FALSE; } // Video recording loop. for(;;) { // Wait for a while BOOL bExitLoop = WAIT_OBJECT_0==WaitForSingleObject(hEvent, m_CrashInfo.m_nVideoFrameInterval); // This will record a single BMP file m_VideoRec.RecordVideoFrame(); if(bExitLoop) break; // Event is signaled; break the loop // Check if the client app is still alive HANDLE hProcess = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE, m_CrashInfo.m_dwProcessId); if(hProcess==NULL) return FALSE; // Process seems to be terminated! // If process handle is still accessible, check its exit code DWORD dwExitCode = 1; if(GetExitCodeProcess(hProcess, &dwExitCode) && dwExitCode!=STILL_ACTIVE) { CloseHandle(hProcess); return FALSE; // Process seems to exit! } CloseHandle(hProcess); } // Add a message to log sMsg.Format(_T("Video recording completed.")); m_Assync.SetProgress(sMsg, 0, false); // Return TRUE to indicate video recording completed successfully. return TRUE; } BOOL CErrorReportSender::EncodeVideo() { // Add a message to log m_Assync.SetProgress(_T("[encoding_video]"), 0); // Check if video capture is allowed if(!m_VideoRec.IsInitialized()) { // Add a message to log m_Assync.SetProgress(_T("Desktop video recording disabled; skipping."), 0); // Exit, nothing to do here return TRUE; } // Add a message to log m_Assync.SetProgress(_T("Encoding recorded video, please wait..."), 1); // Encode recorded video to a webm file if(!m_VideoRec.EncodeVideo()) { // Add a message to log m_Assync.SetProgress(_T("Error encoding video."), 100, false); return FALSE; } bool bAllowDelete = (m_CrashInfo.m_dwVideoFlags&CR_AV_ALLOW_DELETE)!=0; // Add file to crash report ERIFileItem fi; fi.m_sSrcFile = m_VideoRec.GetOutFile(); fi.m_sDestFile = Utility::GetFileName(fi.m_sSrcFile); fi.m_sDesc = Utility::GetINIString(m_CrashInfo.m_sLangFileName, _T("DetailDlg"), _T("DescVideo")); fi.m_bAllowDelete = bAllowDelete; m_CrashInfo.GetReport(0)->AddFileItem(&fi); // Add a message to log m_Assync.SetProgress(_T("Finished encoding video."), 100, false); return TRUE; }
[ "zexspectrum@gmail.com@821a4644-a21a-0410-aec7-6199d47568cc" ]
zexspectrum@gmail.com@821a4644-a21a-0410-aec7-6199d47568cc
02b208e26c033e827e330e74c76778201cbf781f
d32424b20ae663a143464a9277f8090bd017a7f6
/leetcode/346-MovingAverageFromDataStream.cpp
adde73f9badb127b1f14c0c117fdfd36f84f207a
[]
no_license
Vesion/Misirlou
a8df716c17a3072e5cf84b5e279c06e2eac9e6a7
95274c8ccb3b457d5e884bf26948b03967b40b32
refs/heads/master
2023-05-01T10:05:40.709033
2023-04-22T18:41:29
2023-04-22T18:43:05
51,061,447
1
0
null
null
null
null
UTF-8
C++
false
false
638
cpp
#include <iostream> #include <algorithm> #include <vector> #include <string> #include <deque> using namespace std; class MovingAverage { public: int capacity = 0; int sum = 0; deque<int> nums; MovingAverage(int size) { capacity = size; sum = 0; nums.clear(); } double next(int val) { if (capacity <= 0) { return 0.0; } nums.push_back(val); sum += val; if (nums.size() > capacity) { sum -= nums.front(); nums.pop_front(); } return sum * 1.0 / nums.size(); } }; int main() { return 0; }
[ "xuxiang19930924@126.com" ]
xuxiang19930924@126.com
abdbadf614fb4b2f4fcc349db17e33f7d1693136
61c346203b2b47502db12c1dc2cd64532c2818b2
/QtGL_tut3/QtGL_tut1/MainWindow.cpp
4aa348186b5b13ccf2d523bf44b262bbc8e0e6b9
[]
no_license
CyberSys/Qt_Opengl_tutorial
22423ad512d8d9d2a14e40bd15b935a000de020f
922e91a46ab4b9d971cf00da39137e7dbaac6371
refs/heads/master
2022-02-10T19:29:29.713048
2019-05-12T23:38:18
2019-05-12T23:38:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,302
cpp
#include "MainWindow.h" MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) { ui.setupUi(this); //colors controls connect(ui.RedSlider, &QSlider::valueChanged, ui.Gl_widget , &OpenglWidget::setRed); connect(ui.GreenSlider, &QSlider::valueChanged, ui.Gl_widget, &OpenglWidget::setGreen); connect(ui.BlueSlider, &QSlider::valueChanged, ui.Gl_widget, &OpenglWidget::setBlue); connect(ui.AlphaSlider, &QSlider::valueChanged, ui.Gl_widget, &OpenglWidget::setAlpha); //transformation 2D controls connect(ui.PositionX, qOverload<int>(&QSpinBox::valueChanged), ui.Gl_widget, &OpenglWidget::setPosX); connect(ui.PositionY, qOverload<int>(&QSpinBox::valueChanged), ui.Gl_widget, &OpenglWidget::setPosY); connect(ui.ScaleX, qOverload<int>(&QSpinBox::valueChanged), ui.Gl_widget, &OpenglWidget::setScaleX); connect(ui.ScaleY, qOverload<int>(&QSpinBox::valueChanged), ui.Gl_widget, &OpenglWidget::setScaleY); connect(ui.RotationZ, &QSlider::valueChanged, ui.Gl_widget, &OpenglWidget::setRotationZ); //new sprite button connect(ui.NewSprite, &QPushButton::pressed,ui.Gl_widget, &OpenglWidget::setSpritePath); connect(ui.NewSprite, &QPushButton::pressed, ui.Gl_widget, &OpenglWidget::setSpriteLabel); connect(ui.Gl_widget, &OpenglWidget::SpriteLoaded , this, &MainWindow::setPixmap); }
[ "mohamed_sh3lan61@yahoo.com" ]
mohamed_sh3lan61@yahoo.com
a7698cc9eef209b78a7237b707f02801fe2e8784
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_1480487_0/C++/hustsxh/R12A.cpp
9356d997ea94b9c5bada8952733c3d7c1f9891a1
[]
no_license
alexandraback/datacollection
0bc67a9ace00abbc843f4912562f3a064992e0e9
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
refs/heads/master
2021-01-24T18:27:24.417992
2017-05-23T09:23:38
2017-05-23T09:23:38
84,313,442
2
4
null
null
null
null
UTF-8
C++
false
false
1,405
cpp
#include <cstdio> #include <iostream> #include <cstring> #include <string> #include <vector> #include <queue> #include <set> #include <map> #include <cmath> #include <algorithm> #define N 1000010 using namespace std; struct Node { double p; double need; int id; Node() { need = 0; } static bool byP(const Node& a, const Node& b) { return a.p < b.p; } static bool byId(const Node& a, const Node& b) { return a.id < b.id; } }; int main(int argc, char *argv[]) { freopen("A-small-attempt0.in", "r", stdin); freopen("a.out", "w", stdout); int T; cin >> T; for(int testcase = 1; testcase <= T; ++testcase) { cout << "Case #" << testcase << ":"; int n; double sum = 0, s[200]; Node node[200]; cin >> n; for(int i = 0; i < n; ++i) { cin >> s[i]; sum += s[i]; } for(int i = 0; i < n; ++i) { node[i].id = i, node[i].p = s[i] / sum; } sort(node, node + n, Node::byP); int k = n; double s_need; do { --k; s_need = 0; for(int i = 0; i < k; ++i) { s_need += node[k].p - node[i].p; } } while(s_need > 1.0); double to = (1 - s_need) / (k + 1) + node[k].p; for(int i = 0; i <= k; ++i) { node[i].need = (to - node[i].p) * 100; } sort(node, node + n, Node::byId); for(int i = 0; i < n; ++i) { cout << " " << node[i].need; } cout << endl; } return 0; }
[ "eewestman@gmail.com" ]
eewestman@gmail.com
264d3110d0676a95dc357967f14cd5bf0a905723
350d75d8676656e8d63b90b5db4f564c2c46a846
/linklist.cpp
e4f91e8ea2897a389cd0d40578311be6136aa93d
[]
no_license
AKHIL-S-BABU/Data-Structures-
2bad7ec710d01a8767913323a6f260843442d3d2
485212b5927c5029e761c0b87c39d969d7266e78
refs/heads/master
2023-08-23T05:55:48.877893
2020-10-26T12:18:42
2020-10-26T12:18:42
307,361,127
1
0
null
2020-10-31T14:50:49
2020-10-26T12:13:43
C
UTF-8
C++
false
false
2,035
cpp
#include <stdlib.h> #include <stdio.h> struct linked_list{ int data; struct linked_list* next; }; typedef struct linked_list* node; node head = NULL; void AddNode(int value){ node temp, p; temp = NULL; temp = (node)malloc(sizeof(struct linked_list)); temp -> data = value; temp -> next = NULL; if(head == NULL){ head = temp; } else{ p = head; while(p-> next != NULL){ p = p->next; } p -> next = temp; } } void BegNode(int value) { node temp; temp = NULL; temp = (node)malloc(sizeof(struct linked_list)); temp -> data = value; temp -> next = NULL; if(head == NULL){ head = temp; } else { temp->next=head; head=temp; } } void printlist(){ node p1; p1 = head; printf("->"); while(p1){ printf("%d->", p1->data); p1 = p1 -> next; } } void insert(int pos, int val){ node newptr = NULL; node ptr = head; int steps = 1; newptr = (node)malloc(sizeof(struct linked_list)); newptr->data = val; while(steps < pos - 1){ ptr = ptr -> next; steps++; } /*newptr -> next = ptr->next; ptr->next = newptr; */ if(pos == 1){ newptr-> next = head; head = newptr; } else{ newptr-> next = ptr -> next; ptr -> next = newptr; } } void del_list(){ node ptr; while(head != NULL){ ptr = head; head = head -> next; free(ptr); } } void del(int pos){ node p = head, temp; if(pos == 1){ temp = head; head = head -> next; free(temp); } else{ for(int i=2; i<pos; i++){ p = p -> next; } temp = p -> next; p -> next = temp -> next; free(temp); } } void print(node p) { if(p==NULL) { return; } else { printf("%d->",p->data); print(p->next); } } void revprint(node p) { if(p==NULL) { return; } else { print(p->next); printf("%d->",p->data); } } int main(){ AddNode(2); AddNode(3); AddNode(4); AddNode(5); BegNode(12); print(head); printf("\n"); revprint(head); insert(1,10); insert(3,7); printf("\n"); printlist(); del(3); printlist(); printf("\n"); del_list(); printf("\n"); printlist(); return 0; }
[ "arishalam121@gmail.com" ]
arishalam121@gmail.com
43d145e1aecd0d06264181374e1af02d4fb58ef8
8b19b55825a1c1877138a79716056241c9a2190c
/solutions/goldbachs-test.cpp
8a423ec6c9cf4912f731826733aeff84f3d47587
[]
no_license
codyjrivera/competitive-programming
36b01beca37daf2bc0d202e63195a93e6b1bb350
01aec10a529f408107807290066b7f797e3500fb
refs/heads/master
2020-07-15T13:00:11.169652
2019-10-04T03:37:27
2019-10-04T03:37:27
205,567,944
1
0
null
2019-08-31T16:17:40
2019-08-31T16:17:39
null
UTF-8
C++
false
false
396
cpp
#include <iostream> bool isPrime(int n) { for(int i = 2; i <= n / 2; i++) { if(n % i == 0) { return false; } } return true; } int main() { int i = 0; int n; std::cin >> n; while(n > 3) { for(int j = 2; j <= n / 2; j++) { if(isPrime(j) && isPrime(n - j)) { n = n - j - j; i++; break; // out of for, not while } } } std::cout << i << std::endl; return 0; }
[ "sdgillen@crimson.ua.edu" ]
sdgillen@crimson.ua.edu
0195673ac71da5ca4ccbb05ce069d8ba8a8eb605
e3fe7a08efa329e62090187051a9faac1a139dfa
/src/msg_queue.h
fe345c23ded731d9e255dce822b6bfd46ba6fb1f
[ "Apache-2.0" ]
permissive
corefan/reactor
5a19c573c9ed855f221df7cd33a33c8d576cf8bd
753502e66c58ee080daa8632ddbb6ac595303ce8
refs/heads/master
2021-01-13T13:11:10.822547
2016-01-20T11:36:26
2016-01-20T11:36:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,013
h
// -*- C++ -*- //======================================================================== /** * Author : cuisw * Date : 2012-04-28 09:44 */ //======================================================================== #ifndef MSG_QUEUE_H_ #define MSG_QUEUE_H_ #include "guard.h" #include "mblock.h" #include "condition.h" #include "thread_mutex.h" /** * @class msg_queue * * @brief */ class msg_queue { public: /** * <high_water_mark> is the max number of the mblock in the * msg_queue in concurrent time, If <mb_count_> is greater than * <high_water_mark>, then enqueue_* operation will be failed. */ msg_queue(const size_t high_water_mark); ~msg_queue(); int enqueue_tail(mblock *new_item); int enqueue_head(mblock *new_item); int dequeue_head(mblock *&first_item); int dequeue_head_n(mblock *&items, const int number = -1); int dequeue_tail(mblock *&last_item); int dequeue_tail_n(mblock *&items, const int number = -1); inline size_t size(void) { guard<mtx_t> g(this->queue_mutex_); return this->mb_count_; } inline bool is_empty() { guard<mtx_t> g(this->queue_mutex_); return this->is_empty_i(); } inline bool is_full() { guard<mtx_t> g(this->queue_mutex_); return this->is_full_i(); } protected: // inline bool is_empty_i() { return this->tail_ == NULL; } inline bool is_full_i() { return this->mb_count_ >= this->high_water_mark_; } int wait_not_empty_cond(); int enqueue_tail_i(mblock *new_item); int enqueue_head_i(mblock *new_item); int dequeue_head_i(mblock *&first_item); int dequeue_head_n_i(mblock *&items, int number); int dequeue_tail_i(mblock *&last_item); int dequeue_tail_n_i(mblock *&items, int number); private: size_t mb_count_; size_t high_water_mark_; mblock *head_; mblock *tail_; typedef thread_mutex mtx_t; mtx_t queue_mutex_; condition<thread_mutex> not_empty_cond_; }; #endif // MSG_QUEUE_H_
[ "shaovie@gmail.com" ]
shaovie@gmail.com